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.



4264
4265
4266
# File 'lib/google/apis/connectors_v1/classes.rb', line 4264

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

Instance Attribute Details

#marketplace_productString

Marketplace product name. Corresponds to the JSON property marketplaceProduct

Returns:

  • (String)


4247
4248
4249
# File 'lib/google/apis/connectors_v1/classes.rb', line 4247

def marketplace_product
  @marketplace_product
end

#marketplace_product_idString

Marketplace product ID. Corresponds to the JSON property marketplaceProductId

Returns:

  • (String)


4252
4253
4254
# File 'lib/google/apis/connectors_v1/classes.rb', line 4252

def marketplace_product_id
  @marketplace_product_id
end

#marketplace_product_uriString

Marketplace product URL. Corresponds to the JSON property marketplaceProductUri

Returns:

  • (String)


4257
4258
4259
# File 'lib/google/apis/connectors_v1/classes.rb', line 4257

def marketplace_product_uri
  @marketplace_product_uri
end

#partnerString

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

Returns:

  • (String)


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