Class: Google::Apis::ConnectorsV1::MarketplaceConnectorDetails

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/connectors_v1/classes.rb,
lib/google/apis/connectors_v1/representations.rb,
lib/google/apis/connectors_v1/representations.rb

Overview

Marketplace connector details.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MarketplaceConnectorDetails

Returns a new instance of MarketplaceConnectorDetails.



5035
5036
5037
# File 'lib/google/apis/connectors_v1/classes.rb', line 5035

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#marketplace_productString

Marketplace product name. Corresponds to the JSON property marketplaceProduct

Returns:

  • (String)


5018
5019
5020
# File 'lib/google/apis/connectors_v1/classes.rb', line 5018

def marketplace_product
  @marketplace_product
end

#marketplace_product_idString

Marketplace product ID. Corresponds to the JSON property marketplaceProductId

Returns:

  • (String)


5023
5024
5025
# File 'lib/google/apis/connectors_v1/classes.rb', line 5023

def marketplace_product_id
  @marketplace_product_id
end

#marketplace_product_uriString

Marketplace product URL. Corresponds to the JSON property marketplaceProductUri

Returns:

  • (String)


5028
5029
5030
# File 'lib/google/apis/connectors_v1/classes.rb', line 5028

def marketplace_product_uri
  @marketplace_product_uri
end

#partnerString

The name of the partner. Corresponds to the JSON property partner

Returns:

  • (String)


5033
5034
5035
# File 'lib/google/apis/connectors_v1/classes.rb', line 5033

def partner
  @partner
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5040
5041
5042
5043
5044
5045
# File 'lib/google/apis/connectors_v1/classes.rb', line 5040

def update!(**args)
  @marketplace_product = args[:marketplace_product] if args.key?(:marketplace_product)
  @marketplace_product_id = args[:marketplace_product_id] if args.key?(:marketplace_product_id)
  @marketplace_product_uri = args[:marketplace_product_uri] if args.key?(:marketplace_product_uri)
  @partner = args[:partner] if args.key?(:partner)
end