Class: Google::Apis::ClouddeployV1::ExecutionConfig

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/clouddeploy_v1/classes.rb,
lib/google/apis/clouddeploy_v1/representations.rb,
lib/google/apis/clouddeploy_v1/representations.rb

Overview

Configuration of the environment to use when calling Skaffold.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ExecutionConfig

Returns a new instance of ExecutionConfig.



507
508
509
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 507

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

Instance Attribute Details

#artifact_storageString

Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs:/ /my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used. Corresponds to the JSON property artifactStorage

Returns:

  • (String)


476
477
478
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 476

def artifact_storage
  @artifact_storage
end

#default_poolGoogle::Apis::ClouddeployV1::DefaultPool

Execution using the default Cloud Build pool. Corresponds to the JSON property defaultPool



481
482
483
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 481

def default_pool
  @default_pool
end

#private_poolGoogle::Apis::ClouddeployV1::PrivatePool

Execution using a private Cloud Build pool. Corresponds to the JSON property privatePool



486
487
488
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 486

def private_pool
  @private_pool
end

#service_accountString

Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used. Corresponds to the JSON property serviceAccount

Returns:

  • (String)


493
494
495
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 493

def 
  @service_account
end

#usagesArray<String>

Required. Usages when this configuration should be applied. Corresponds to the JSON property usages

Returns:

  • (Array<String>)


498
499
500
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 498

def usages
  @usages
end

#worker_poolString

Optional. The resource name of the WorkerPool, with the format projects/ project/locations/location/workerPools/worker_pool`. If this optional field is unspecified, the default Cloud Build pool will be used. Corresponds to the JSON propertyworkerPool`

Returns:

  • (String)


505
506
507
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 505

def worker_pool
  @worker_pool
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



512
513
514
515
516
517
518
519
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 512

def update!(**args)
  @artifact_storage = args[:artifact_storage] if args.key?(:artifact_storage)
  @default_pool = args[:default_pool] if args.key?(:default_pool)
  @private_pool = args[:private_pool] if args.key?(:private_pool)
  @service_account = args[:service_account] if args.key?(:service_account)
  @usages = args[:usages] if args.key?(:usages)
  @worker_pool = args[:worker_pool] if args.key?(:worker_pool)
end