Class: Google::Apis::ConnectorsV1::MarketplaceConnectorDetails
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::MarketplaceConnectorDetails
- 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
-
#marketplace_product ⇒ String
Marketplace product name.
-
#marketplace_product_id ⇒ String
Marketplace product ID.
-
#marketplace_product_uri ⇒ String
Marketplace product URL.
-
#partner ⇒ String
The name of the partner.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MarketplaceConnectorDetails
constructor
A new instance of MarketplaceConnectorDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MarketplaceConnectorDetails
Returns a new instance of MarketplaceConnectorDetails.
4264 4265 4266 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4264 def initialize(**args) update!(**args) end |
Instance Attribute Details
#marketplace_product ⇒ String
Marketplace product name.
Corresponds to the JSON property marketplaceProduct
4247 4248 4249 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4247 def marketplace_product @marketplace_product end |
#marketplace_product_id ⇒ String
Marketplace product ID.
Corresponds to the JSON property marketplaceProductId
4252 4253 4254 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4252 def marketplace_product_id @marketplace_product_id end |
#marketplace_product_uri ⇒ String
Marketplace product URL.
Corresponds to the JSON property marketplaceProductUri
4257 4258 4259 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4257 def marketplace_product_uri @marketplace_product_uri end |
#partner ⇒ String
The name of the partner.
Corresponds to the JSON property partner
4262 4263 4264 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4262 def partner @partner end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4269 4270 4271 4272 4273 4274 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4269 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 |