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.
5035 5036 5037 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5035 def initialize(**args) update!(**args) end |
Instance Attribute Details
#marketplace_product ⇒ String
Marketplace product name.
Corresponds to the JSON property marketplaceProduct
5018 5019 5020 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5018 def marketplace_product @marketplace_product end |
#marketplace_product_id ⇒ String
Marketplace product ID.
Corresponds to the JSON property marketplaceProductId
5023 5024 5025 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5023 def marketplace_product_id @marketplace_product_id end |
#marketplace_product_uri ⇒ String
Marketplace product URL.
Corresponds to the JSON property marketplaceProductUri
5028 5029 5030 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5028 def marketplace_product_uri @marketplace_product_uri end |
#partner ⇒ String
The name of the partner.
Corresponds to the JSON property partner
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 |