@@ -3931,8 +3931,8 @@ def update!(**args)
39313931 end
39323932 end
39333933
3934- # Instance represents the configuration of a single Instance, which references a
3935- # container image which is run to completion.
3934+ # An Instance represents the configuration of a single instance that references
3935+ # a container image and runs to completion.
39363936 class Instance
39373937 include Google ::Apis ::Core ::Hashable
39383938
@@ -3961,7 +3961,7 @@ class Instance
39613961 # @return [Google::Apis::RunV1::InstanceSpec]
39623962 attr_accessor :spec
39633963
3964- # InstanceStatus represents the current state of a Instance.
3964+ # InstanceStatus represents the current state of an Instance.
39653965 # Corresponds to the JSON property `status`
39663966 # @return [Google::Apis::RunV1::InstanceStatus]
39673967 attr_accessor :status
@@ -4066,7 +4066,7 @@ def update!(**args)
40664066 end
40674067 end
40684068
4069- # InstanceStatus represents the current state of a Instance.
4069+ # InstanceStatus represents the current state of an Instance.
40704070 class InstanceStatus
40714071 include Google ::Apis ::Core ::Hashable
40724072
@@ -4926,26 +4926,26 @@ class ObjectMeta
49264926 # googleapis.com/build-service-account`: Service. * `run.googleapis.com/build-
49274927 # source-location`: Service, Revision. * `run.googleapis.com/build-worker-pool`:
49284928 # Service. * `run.googleapis.com/client-name`: All resources. * `run.googleapis.
4929- # com/cloudsql-instances`: Revision, Execution . * `run.googleapis.com/container-
4930- # dependencies`: Revision . * `run.googleapis.com/cpu-throttling`: Revision. * `
4931- # run.googleapis.com/custom-audiences`: Service. * `run.googleapis.com/default-
4932- # url-disabled`: Service. * `run.googleapis.com/description`: Service. * `run.
4933- # googleapis.com/encryption-key-shutdown-hours`: Revision * `run.googleapis.com/
4934- # encryption-key`: Revision, Execution . * `run.googleapis.com/execution-
4935- # environment`: Revision, Execution . * `run.googleapis.com/gc-traffic-tags`:
4936- # Service. * `run.googleapis.com/gpu-zonal-redundancy-disabled`: Revision. * `
4937- # run.googleapis.com/health-check-disabled`: Revision. * `run.googleapis.com/
4938- # ingress`: Service, Instance. * `run.googleapis.com/invoker-iam-disabled`:
4939- # Service, Instance. * `run.googleapis.com/launch-stage`: Service, Job. * `run.
4940- # googleapis.com/minScale`: Service. * `run.googleapis.com/maxScale`: Service. *
4941- # `run.googleapis.com/manualInstanceCount`: Service. * `run.googleapis.com/
4942- # network-interfaces`: Revision, Execution. * `run.googleapis.com/post-key-
4943- # revocation-action-type`: Revision. `run.googleapis.com/scalingMode`: Service. *
4944- # ` run.googleapis.com/secrets`: Revision, Execution. * `run.googleapis.com/
4945- # secure-session-agent`: Revision. * `run.googleapis.com/sessionAffinity`:
4946- # Revision. * `run.googleapis.com/startup-cpu-boost`: Revision. * `run .
4947- # googleapis.com/vpc-access-connector`: Revision, Execution . * `run.googleapis .
4948- # com/vpc-access-egress`: Revision, Execution.
4929+ # com/cloudsql-instances`: Revision, Execution, Instance . * `run.googleapis.com/
4930+ # container- dependencies`: Revision . * `run.googleapis.com/cpu-throttling`:
4931+ # Revision. * ` run.googleapis.com/custom-audiences`: Service. * `run.googleapis.
4932+ # com/default- url-disabled`: Service. * `run.googleapis.com/description`:
4933+ # Service. * `run. googleapis.com/encryption-key-shutdown-hours`: Revision * `run.
4934+ # googleapis.com/ encryption-key`: Revision, Execution, Instance . * `run.
4935+ # googleapis.com/execution- environment`: Revision, Execution. * `run.googleapis.
4936+ # com/gc-traffic-tags`: Service. * `run.googleapis.com/gpu-zonal-redundancy-
4937+ # disabled`: Revision. * ` run.googleapis.com/health-check-disabled`: Revision. *
4938+ # `run.googleapis.com/ ingress`: Service, Instance. * `run.googleapis.com/invoker-
4939+ # iam-disabled`: Service, Instance. * `run.googleapis.com/launch-stage`: Service,
4940+ # Job. * `run. googleapis.com/minScale`: Service. * `run.googleapis.com/maxScale`
4941+ # : Service. * `run.googleapis.com/manualInstanceCount`: Service. * `run.
4942+ # googleapis.com/ network-interfaces`: Revision, Execution, Instance . * `run.
4943+ # googleapis.com/post-key- revocation-action-type`: Revision. `run.googleapis.com/
4944+ # scalingMode`: Service. * ` run.googleapis.com/secrets`: Revision, Execution. * `
4945+ # run.googleapis.com/ secure-session-agent`: Revision. * `run.googleapis.com/
4946+ # sessionAffinity`: Revision. * `run.googleapis.com/startup-cpu-boost`: Revision.
4947+ # * `run. googleapis.com/vpc-access-connector`: Revision, Execution. * `run.
4948+ # googleapis. com/vpc-access-egress`: Revision, Execution, Instance .
49494949 # Corresponds to the JSON property `annotations`
49504950 # @return [Hash<String,String>]
49514951 attr_accessor :annotations
@@ -5469,11 +5469,6 @@ class RevisionSpec
54695469 # @return [String]
54705470 attr_accessor :runtime_class_name
54715471
5472- # Optional. Container templates that can be launched through the `sandbox` CLI.
5473- # Corresponds to the JSON property `sandboxes`
5474- # @return [Array<Google::Apis::RunV1::Container>]
5475- attr_accessor :sandboxes
5476-
54775472 # Email address of the IAM service account associated with the revision of the
54785473 # service. The service account represents the identity of the running revision,
54795474 # and determines what permissions the revision has. If not provided, the
@@ -5506,7 +5501,6 @@ def update!(**args)
55065501 @image_pull_secrets = args [ :image_pull_secrets ] if args . key? ( :image_pull_secrets )
55075502 @node_selector = args [ :node_selector ] if args . key? ( :node_selector )
55085503 @runtime_class_name = args [ :runtime_class_name ] if args . key? ( :runtime_class_name )
5509- @sandboxes = args [ :sandboxes ] if args . key? ( :sandboxes )
55105504 @service_account_name = args [ :service_account_name ] if args . key? ( :service_account_name )
55115505 @timeout_seconds = args [ :timeout_seconds ] if args . key? ( :timeout_seconds )
55125506 @volumes = args [ :volumes ] if args . key? ( :volumes )
@@ -6121,12 +6115,19 @@ def update!(**args)
61216115 class StartInstanceRequest
61226116 include Google ::Apis ::Core ::Hashable
61236117
6118+ # Optional. Indicates that the server should validate the request and populate
6119+ # default values without persisting the request. Supported values: `all`
6120+ # Corresponds to the JSON property `dryRun`
6121+ # @return [String]
6122+ attr_accessor :dry_run
6123+
61246124 def initialize ( **args )
61256125 update! ( **args )
61266126 end
61276127
61286128 # Update properties of this object
61296129 def update! ( **args )
6130+ @dry_run = args [ :dry_run ] if args . key? ( :dry_run )
61306131 end
61316132 end
61326133
@@ -6288,12 +6289,19 @@ def update!(**args)
62886289 class StopInstanceRequest
62896290 include Google ::Apis ::Core ::Hashable
62906291
6292+ # Optional. Indicates that the server should validate the request and populate
6293+ # default values without persisting the request. Supported values: `all`
6294+ # Corresponds to the JSON property `dryRun`
6295+ # @return [String]
6296+ attr_accessor :dry_run
6297+
62916298 def initialize ( **args )
62926299 update! ( **args )
62936300 end
62946301
62956302 # Update properties of this object
62966303 def update! ( **args )
6304+ @dry_run = args [ :dry_run ] if args . key? ( :dry_run )
62976305 end
62986306 end
62996307
0 commit comments