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.



5083
5084
5085
# File 'lib/google/apis/connectors_v1/classes.rb', line 5083

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

Instance Attribute Details

#marketplace_productString

Marketplace product name. Corresponds to the JSON property marketplaceProduct

Returns:

  • (String)


5066
5067
5068
# File 'lib/google/apis/connectors_v1/classes.rb', line 5066

def marketplace_product
  @marketplace_product
end

#marketplace_product_idString

Marketplace product ID. Corresponds to the JSON property marketplaceProductId

Returns:

  • (String)


5071
5072
5073
# File 'lib/google/apis/connectors_v1/classes.rb', line 5071

def marketplace_product_id
  @marketplace_product_id
end

#marketplace_product_uriString

Marketplace product URL. Corresponds to the JSON property marketplaceProductUri

Returns:

  • (String)


5076
5077
5078
# File 'lib/google/apis/connectors_v1/classes.rb', line 5076

def marketplace_product_uri
  @marketplace_product_uri
end

#partnerString

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

Returns:

  • (String)


5081
5082
5083
# File 'lib/google/apis/connectors_v1/classes.rb', line 5081

def partner
  @partner
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5088
5089
5090
5091
5092
5093
# File 'lib/google/apis/connectors_v1/classes.rb', line 5088

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