Class: Google::Apis::RunV2::GoogleCloudRunV2Container
- Inherits:
-
Object
- Object
- Google::Apis::RunV2::GoogleCloudRunV2Container
- 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
A single application container. This specifies both the container to run, the command to run in the container and the arguments to supply to it. Note that additional arguments can be supplied by the system to the container at runtime.
Instance Attribute Summary collapse
-
#args ⇒ Array<String>
Arguments to the entrypoint.
-
#command ⇒ Array<String>
Entrypoint array.
-
#depends_on ⇒ Array<String>
Names of the containers that must start before this container.
-
#env ⇒ Array<Google::Apis::RunV2::GoogleCloudRunV2EnvVar>
List of environment variables to set in the container.
-
#image ⇒ String
Required.
-
#liveness_probe ⇒ Google::Apis::RunV2::GoogleCloudRunV2Probe
Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.
-
#name ⇒ String
Name of the container specified as a DNS_LABEL (RFC 1123).
-
#ports ⇒ Array<Google::Apis::RunV2::GoogleCloudRunV2ContainerPort>
List of ports to expose from the container.
-
#resources ⇒ Google::Apis::RunV2::GoogleCloudRunV2ResourceRequirements
ResourceRequirements describes the compute resource requirements.
-
#startup_probe ⇒ Google::Apis::RunV2::GoogleCloudRunV2Probe
Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.
-
#volume_mounts ⇒ Array<Google::Apis::RunV2::GoogleCloudRunV2VolumeMount>
Volume to mount into the container's filesystem.
-
#working_dir ⇒ String
Container's working directory.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRunV2Container
constructor
A new instance of GoogleCloudRunV2Container.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRunV2Container
Returns a new instance of GoogleCloudRunV2Container.
255 256 257 |
# File 'lib/google/apis/run_v2/classes.rb', line 255 def initialize(**args) update!(**args) end |
Instance Attribute Details
#args ⇒ Array<String>
Arguments to the entrypoint. The docker image's CMD is used if this is not
provided.
Corresponds to the JSON property args
188 189 190 |
# File 'lib/google/apis/run_v2/classes.rb', line 188 def args @args end |
#command ⇒ Array<String>
Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT
is used if this is not provided.
Corresponds to the JSON property command
194 195 196 |
# File 'lib/google/apis/run_v2/classes.rb', line 194 def command @command end |
#depends_on ⇒ Array<String>
Names of the containers that must start before this container.
Corresponds to the JSON property dependsOn
199 200 201 |
# File 'lib/google/apis/run_v2/classes.rb', line 199 def depends_on @depends_on end |
#env ⇒ Array<Google::Apis::RunV2::GoogleCloudRunV2EnvVar>
List of environment variables to set in the container.
Corresponds to the JSON property env
204 205 206 |
# File 'lib/google/apis/run_v2/classes.rb', line 204 def env @env end |
#image ⇒ String
Required. Name of the container image in Dockerhub, Google Artifact Registry,
or Google Container Registry. If the host is not provided, Dockerhub is
assumed.
Corresponds to the JSON property image
211 212 213 |
# File 'lib/google/apis/run_v2/classes.rb', line 211 def image @image end |
#liveness_probe ⇒ Google::Apis::RunV2::GoogleCloudRunV2Probe
Probe describes a health check to be performed against a container to
determine whether it is alive or ready to receive traffic.
Corresponds to the JSON property livenessProbe
217 218 219 |
# File 'lib/google/apis/run_v2/classes.rb', line 217 def liveness_probe @liveness_probe end |
#name ⇒ String
Name of the container specified as a DNS_LABEL (RFC 1123).
Corresponds to the JSON property name
222 223 224 |
# File 'lib/google/apis/run_v2/classes.rb', line 222 def name @name end |
#ports ⇒ Array<Google::Apis::RunV2::GoogleCloudRunV2ContainerPort>
List of ports to expose from the container. Only a single port can be
specified. The specified ports must be listening on all interfaces (0.0.0.0)
within the container to be accessible. If omitted, a port number will be
chosen and passed to the container through the PORT environment variable for
the container to listen on.
Corresponds to the JSON property ports
231 232 233 |
# File 'lib/google/apis/run_v2/classes.rb', line 231 def ports @ports end |
#resources ⇒ Google::Apis::RunV2::GoogleCloudRunV2ResourceRequirements
ResourceRequirements describes the compute resource requirements.
Corresponds to the JSON property resources
236 237 238 |
# File 'lib/google/apis/run_v2/classes.rb', line 236 def resources @resources end |
#startup_probe ⇒ Google::Apis::RunV2::GoogleCloudRunV2Probe
Probe describes a health check to be performed against a container to
determine whether it is alive or ready to receive traffic.
Corresponds to the JSON property startupProbe
242 243 244 |
# File 'lib/google/apis/run_v2/classes.rb', line 242 def startup_probe @startup_probe end |
#volume_mounts ⇒ Array<Google::Apis::RunV2::GoogleCloudRunV2VolumeMount>
Volume to mount into the container's filesystem.
Corresponds to the JSON property volumeMounts
247 248 249 |
# File 'lib/google/apis/run_v2/classes.rb', line 247 def volume_mounts @volume_mounts end |
#working_dir ⇒ String
Container's working directory. If not specified, the container runtime's
default will be used, which might be configured in the container image.
Corresponds to the JSON property workingDir
253 254 255 |
# File 'lib/google/apis/run_v2/classes.rb', line 253 def working_dir @working_dir end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
# File 'lib/google/apis/run_v2/classes.rb', line 260 def update!(**args) @args = args[:args] if args.key?(:args) @command = args[:command] if args.key?(:command) @depends_on = args[:depends_on] if args.key?(:depends_on) @env = args[:env] if args.key?(:env) @image = args[:image] if args.key?(:image) @liveness_probe = args[:liveness_probe] if args.key?(:liveness_probe) @name = args[:name] if args.key?(:name) @ports = args[:ports] if args.key?(:ports) @resources = args[:resources] if args.key?(:resources) @startup_probe = args[:startup_probe] if args.key?(:startup_probe) @volume_mounts = args[:volume_mounts] if args.key?(:volume_mounts) @working_dir = args[:working_dir] if args.key?(:working_dir) end |