Class: Google::Apis::RunV2::GoogleCloudRunV2RevisionTemplate

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

Overview

RevisionTemplate describes the data a revision should have when created from a template.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRunV2RevisionTemplate

Returns a new instance of GoogleCloudRunV2RevisionTemplate.



1404
1405
1406
# File 'lib/google/apis/run_v2/classes.rb', line 1404

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

Instance Attribute Details

#annotationsHash<String,String>

KRM-style annotations for the resource. Cloud Run API v2 does not support annotations with run.googleapis.com, cloud.googleapis.com, serving. knative.dev, or autoscaling.knative.dev namespaces, and they will be rejected. All system annotations in v1 now have a corresponding field in v2 RevisionTemplate. Corresponds to the JSON property annotations

Returns:

  • (Hash<String,String>)


1334
1335
1336
# File 'lib/google/apis/run_v2/classes.rb', line 1334

def annotations
  @annotations
end

#containersArray<Google::Apis::RunV2::GoogleCloudRunV2Container>

Holds the single container that defines the unit of execution for this Revision. Corresponds to the JSON property containers



1340
1341
1342
# File 'lib/google/apis/run_v2/classes.rb', line 1340

def containers
  @containers
end

#encryption_keyString

A reference to a customer managed encryption key (CMEK) to use to encrypt this container image. For more information, go to https://cloud.google.com/run/docs/ securing/using-cmek Corresponds to the JSON property encryptionKey

Returns:

  • (String)


1347
1348
1349
# File 'lib/google/apis/run_v2/classes.rb', line 1347

def encryption_key
  @encryption_key
end

#execution_environmentString

The sandbox environment to host this Revision. Corresponds to the JSON property executionEnvironment

Returns:

  • (String)


1352
1353
1354
# File 'lib/google/apis/run_v2/classes.rb', line 1352

def execution_environment
  @execution_environment
end

#labelsHash<String,String>

KRM-style labels for the resource. Cloud Run API v2 does not support labels with run.googleapis.com, cloud.googleapis.com, serving.knative.dev, or autoscaling.knative.dev namespaces, and they will be rejected. All system labels in v1 now have a corresponding field in v2 RevisionTemplate. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


1360
1361
1362
# File 'lib/google/apis/run_v2/classes.rb', line 1360

def labels
  @labels
end

#max_instance_request_concurrencyFixnum

Sets the maximum number of requests that each serving instance can receive. Corresponds to the JSON property maxInstanceRequestConcurrency

Returns:

  • (Fixnum)


1365
1366
1367
# File 'lib/google/apis/run_v2/classes.rb', line 1365

def max_instance_request_concurrency
  @max_instance_request_concurrency
end

#revisionString

The unique name for the revision. If this field is omitted, it will be automatically generated based on the Service name. Corresponds to the JSON property revision

Returns:

  • (String)


1371
1372
1373
# File 'lib/google/apis/run_v2/classes.rb', line 1371

def revision
  @revision
end

#scalingGoogle::Apis::RunV2::GoogleCloudRunV2RevisionScaling

Settings for revision-level scaling settings. Corresponds to the JSON property scaling



1376
1377
1378
# File 'lib/google/apis/run_v2/classes.rb', line 1376

def scaling
  @scaling
end

#service_accountString

Email address of the IAM service account associated with the revision of the service. The service account represents the identity of the running revision, and determines what permissions the revision has. If not provided, the revision will use the project's default service account. Corresponds to the JSON property serviceAccount

Returns:

  • (String)


1384
1385
1386
# File 'lib/google/apis/run_v2/classes.rb', line 1384

def 
  @service_account
end

#timeoutString

Max allowed time for an instance to respond to a request. Corresponds to the JSON property timeout

Returns:

  • (String)


1389
1390
1391
# File 'lib/google/apis/run_v2/classes.rb', line 1389

def timeout
  @timeout
end

#volumesArray<Google::Apis::RunV2::GoogleCloudRunV2Volume>

A list of Volumes to make available to containers. Corresponds to the JSON property volumes



1394
1395
1396
# File 'lib/google/apis/run_v2/classes.rb', line 1394

def volumes
  @volumes
end

#vpc_accessGoogle::Apis::RunV2::GoogleCloudRunV2VpcAccess

VPC Access settings. For more information on creating a VPC Connector, visit https://cloud.google.com/vpc/docs/configure-serverless-vpc-access For information on how to configure Cloud Run with an existing VPC Connector, visit https://cloud.google.com/run/docs/configuring/connecting-vpc Corresponds to the JSON property vpcAccess



1402
1403
1404
# File 'lib/google/apis/run_v2/classes.rb', line 1402

def vpc_access
  @vpc_access
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
# File 'lib/google/apis/run_v2/classes.rb', line 1409

def update!(**args)
  @annotations = args[:annotations] if args.key?(:annotations)
  @containers = args[:containers] if args.key?(:containers)
  @encryption_key = args[:encryption_key] if args.key?(:encryption_key)
  @execution_environment = args[:execution_environment] if args.key?(:execution_environment)
  @labels = args[:labels] if args.key?(:labels)
  @max_instance_request_concurrency = args[:max_instance_request_concurrency] if args.key?(:max_instance_request_concurrency)
  @revision = args[:revision] if args.key?(:revision)
  @scaling = args[:scaling] if args.key?(:scaling)
  @service_account = args[:service_account] if args.key?(:service_account)
  @timeout = args[:timeout] if args.key?(:timeout)
  @volumes = args[:volumes] if args.key?(:volumes)
  @vpc_access = args[:vpc_access] if args.key?(:vpc_access)
end