Class: Google::Apis::DeploymentmanagerAlpha::ConfigurableService

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/deploymentmanager_alpha/classes.rb,
generated/google/apis/deploymentmanager_alpha/representations.rb,
generated/google/apis/deploymentmanager_alpha/representations.rb

Overview

BaseType that describes a service-backed Type.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ConfigurableService

Returns a new instance of ConfigurableService



438
439
440
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 438

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

Instance Attribute Details

#collection_overridesArray<Google::Apis::DeploymentmanagerAlpha::CollectionOverride>

Allows resource handling overrides for specific collections Corresponds to the JSON property collectionOverrides



421
422
423
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 421

def collection_overrides
  @collection_overrides
end

#credentialGoogle::Apis::DeploymentmanagerAlpha::Credential

Credential used by ConfigurableResourceTypes. Corresponds to the JSON property credential



426
427
428
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 426

def credential
  @credential
end

#descriptor_urlString

Descriptor Url for the this type. Corresponds to the JSON property descriptorUrl

Returns:

  • (String)


431
432
433
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 431

def descriptor_url
  @descriptor_url
end

#optionsGoogle::Apis::DeploymentmanagerAlpha::Options

Options allows customized resource handling by Deployment Manager. Corresponds to the JSON property options



436
437
438
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 436

def options
  @options
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



443
444
445
446
447
448
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 443

def update!(**args)
  @collection_overrides = args[:collection_overrides] if args.key?(:collection_overrides)
  @credential = args[:credential] if args.key?(:credential)
  @descriptor_url = args[:descriptor_url] if args.key?(:descriptor_url)
  @options = args[:options] if args.key?(:options)
end