google-apis-run_v1 0.49.0 → 0.50.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5e10b5e737291cfff65bbd1f80643e93d1a4e156967f6186291ee9173feaf396
4
- data.tar.gz: 4a82e2a8dcaf3083f6db757bf5fdfec79ec040ec4bd0abdf7bf842e3b92e4b2e
3
+ metadata.gz: 9ec18b9cfb10ccea43b0f8efa3fc7a8ab81dc17808b623fd8754f4c274bab2df
4
+ data.tar.gz: 9a9b0abf3bbe09c5d5724f69970701a81231bf42b55672412c37558b7c78ef04
5
5
  SHA512:
6
- metadata.gz: d1b0796639397eb877ece4297042d4a887ee86b3b1e8eb663b84a25b76b015cf3ed9b633cc9a49142c3dd11a6c73a23742fbbbf0fd9a5b65f7d753b099e47473
7
- data.tar.gz: 297dd7c965c41db445f9972630c25206077085d76c5702b9f0d26c65e04a516ec61d05f02c335ebff94a813b000c1ae68bb675bdc1c3ca58617d35a1ce3a7b42
6
+ metadata.gz: 59289c22eb15e317bcabb12fb6ef74c425a319402499a4bd13890e2520b15e20b2302a396db753d5c4b56f8874f70171c55ebfd6a12dee2103ba17faa2eaa335
7
+ data.tar.gz: '03833ee0c6710ee78c9b39e7cd2321feaaa1800ac14cae97e0495de8349748aede9a244e0d7bedb86f38544dbf29f879be800e76c7ffb989dad85f980002884b'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-run_v1
2
2
 
3
+ ### v0.50.0 (2023-04-23)
4
+
5
+ * Regenerated from discovery document revision 20230416
6
+
3
7
  ### v0.49.0 (2023-04-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20230409
@@ -363,8 +363,7 @@ module Google
363
363
  # and optionally how the containers those revisions reference are built. Users
364
364
  # create new Revisions by updating the Configuration's spec. The "latest created"
365
365
  # revision's name is available under status, as is the "latest ready" revision'
366
- # s name. See also: https://github.com/knative/specs/blob/main/specs/serving/
367
- # overview.md#configuration
366
+ # s name.
368
367
  class Configuration
369
368
  include Google::Apis::Core::Hashable
370
369
 
@@ -416,8 +415,7 @@ module Google
416
415
  include Google::Apis::Core::Hashable
417
416
 
418
417
  # RevisionTemplateSpec describes the data a revision should have when created
419
- # from a template. Based on: https://github.com/kubernetes/api/blob/e771f807/
420
- # core/v1/types.go#L3179-L3190
418
+ # from a template.
421
419
  # Corresponds to the JSON property `template`
422
420
  # @return [Google::Apis::RunV1::RevisionTemplate]
423
421
  attr_accessor :template
@@ -512,14 +510,13 @@ module Google
512
510
 
513
511
  # Required. Name of the container image in Dockerhub, Google Artifact Registry,
514
512
  # or Google Container Registry. If the host is not provided, Dockerhub is
515
- # assumed. More info: https://kubernetes.io/docs/concepts/containers/images
513
+ # assumed.
516
514
  # Corresponds to the JSON property `image`
517
515
  # @return [String]
518
516
  attr_accessor :image
519
517
 
520
518
  # Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :
521
- # latest tag is specified, or IfNotPresent otherwise. More info: https://
522
- # kubernetes.io/docs/concepts/containers/images#updating-images
519
+ # latest tag is specified, or IfNotPresent otherwise.
523
520
  # Corresponds to the JSON property `imagePullPolicy`
524
521
  # @return [String]
525
522
  attr_accessor :image_pull_policy
@@ -530,9 +527,7 @@ module Google
530
527
  # @return [Google::Apis::RunV1::Probe]
531
528
  attr_accessor :liveness_probe
532
529
 
533
- # Name of the container specified as a DNS_LABEL (RFC 1123). More info: https://
534
- # kubernetes.io/docs/concepts/overview/working-with-objects/names/#dns-label-
535
- # names
530
+ # Name of the container specified as a DNS_LABEL (RFC 1123).
536
531
  # Corresponds to the JSON property `name`
537
532
  # @return [String]
538
533
  attr_accessor :name
@@ -951,16 +946,14 @@ module Google
951
946
 
952
947
  # Optional. APIVersion defines the versioned schema of this representation of an
953
948
  # object. Servers should convert recognized schemas to the latest internal value,
954
- # and may reject unrecognized values. More info: https://git.k8s.io/community/
955
- # contributors/devel/sig-architecture/api-conventions.md#resources
949
+ # and may reject unrecognized values.
956
950
  # Corresponds to the JSON property `apiVersion`
957
951
  # @return [String]
958
952
  attr_accessor :api_version
959
953
 
960
954
  # Optional. Kind is a string value representing the REST resource this object
961
955
  # represents. Servers may infer this from the endpoint the client submits
962
- # requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/
963
- # community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
956
+ # requests to. Cannot be updated. In CamelCase.
964
957
  # Corresponds to the JSON property `kind`
965
958
  # @return [String]
966
959
  attr_accessor :kind
@@ -1150,8 +1143,7 @@ module Google
1150
1143
  end
1151
1144
 
1152
1145
  # ExecutionTemplateSpec describes the metadata and spec an Execution should have
1153
- # when created from a job. Based on: https://github.com/kubernetes/api/blob/
1154
- # e771f807/core/v1/types.go#L3179-L3190
1146
+ # when created from a job.
1155
1147
  class ExecutionTemplateSpec
1156
1148
  include Google::Apis::Core::Hashable
1157
1149
 
@@ -1240,9 +1232,8 @@ module Google
1240
1232
  # @return [Fixnum]
1241
1233
  attr_accessor :port
1242
1234
 
1243
- # Service is the name of the service to place in the gRPC HealthCheckRequest (
1244
- # see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this
1245
- # is not specified, the default behavior is defined by gRPC.
1235
+ # Service is the name of the service to place in the gRPC HealthCheckRequest. If
1236
+ # this is not specified, the default behavior is defined by gRPC.
1246
1237
  # Corresponds to the JSON property `service`
1247
1238
  # @return [String]
1248
1239
  attr_accessor :service
@@ -1296,10 +1287,9 @@ module Google
1296
1287
  # @return [String]
1297
1288
  attr_accessor :status
1298
1289
 
1299
- # type is used to communicate the status of the reconciliation process. See also:
1300
- # https://github.com/knative/serving/blob/main/docs/spec/errors.md#error-
1301
- # conditions-and-reporting Types common to all resources include: * "Ready" or "
1302
- # Completed": True when the Resource is ready.
1290
+ # type is used to communicate the status of the reconciliation process. Types
1291
+ # common to all resources include: * "Ready" or "Completed": True when the
1292
+ # Resource is ready.
1303
1293
  # Corresponds to the JSON property `type`
1304
1294
  # @return [String]
1305
1295
  attr_accessor :type
@@ -1433,16 +1423,14 @@ module Google
1433
1423
 
1434
1424
  # Optional. APIVersion defines the versioned schema of this representation of an
1435
1425
  # object. Servers should convert recognized schemas to the latest internal value,
1436
- # and may reject unrecognized values. More info: https://git.k8s.io/community/
1437
- # contributors/devel/sig-architecture/api-conventions.md#resources
1426
+ # and may reject unrecognized values.
1438
1427
  # Corresponds to the JSON property `apiVersion`
1439
1428
  # @return [String]
1440
1429
  attr_accessor :api_version
1441
1430
 
1442
1431
  # Optional. Kind is a string value representing the REST resource this object
1443
1432
  # represents. Servers may infer this from the endpoint the client submits
1444
- # requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/
1445
- # community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
1433
+ # requests to. Cannot be updated. In CamelCase.
1446
1434
  # Corresponds to the JSON property `kind`
1447
1435
  # @return [String]
1448
1436
  attr_accessor :kind
@@ -1482,8 +1470,7 @@ module Google
1482
1470
  include Google::Apis::Core::Hashable
1483
1471
 
1484
1472
  # ExecutionTemplateSpec describes the metadata and spec an Execution should have
1485
- # when created from a job. Based on: https://github.com/kubernetes/api/blob/
1486
- # e771f807/core/v1/types.go#L3179-L3190
1473
+ # when created from a job.
1487
1474
  # Corresponds to the JSON property `template`
1488
1475
  # @return [Google::Apis::RunV1::ExecutionTemplateSpec]
1489
1476
  attr_accessor :template
@@ -1821,9 +1808,7 @@ module Google
1821
1808
 
1822
1809
  # Opaque string that identifies the server's internal version of this object. It
1823
1810
  # can be used by clients to determine when objects have changed. If the message
1824
- # is passed back to the server, it must be left unmodified. https://git.k8s.io/
1825
- # community/contributors/devel/api-conventions.md#concurrency-control-and-
1826
- # consistency
1811
+ # is passed back to the server, it must be left unmodified.
1827
1812
  # Corresponds to the JSON property `resourceVersion`
1828
1813
  # @return [String]
1829
1814
  attr_accessor :resource_version
@@ -2027,8 +2012,7 @@ module Google
2027
2012
  class LocalObjectReference
2028
2013
  include Google::Apis::Core::Hashable
2029
2014
 
2030
- # Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/
2031
- # working-with-objects/names/#names
2015
+ # Name of the referent.
2032
2016
  # Corresponds to the JSON property `name`
2033
2017
  # @return [String]
2034
2018
  attr_accessor :name
@@ -2117,8 +2101,7 @@ module Google
2117
2101
  # `run.googleapis.com/secure-session-agent`: Revision. * `run.googleapis.com/
2118
2102
  # sessionAffinity`: Revision. * `run.googleapis.com/startup-cpu-boost`: Revision.
2119
2103
  # * `run.googleapis.com/vpc-access-connector`: Revision, Execution. * `run.
2120
- # googleapis.com/vpc-access-egress`: Revision, Execution. Execution. More info:
2121
- # https://kubernetes.io/docs/user-guide/annotations
2104
+ # googleapis.com/vpc-access-egress`: Revision, Execution.
2122
2105
  # Corresponds to the JSON property `annotations`
2123
2106
  # @return [Hash<String,String>]
2124
2107
  attr_accessor :annotations
@@ -2128,9 +2111,7 @@ module Google
2128
2111
  # @return [String]
2129
2112
  attr_accessor :cluster_name
2130
2113
 
2131
- # UTC timestamp representing the server time when this object was created. More
2132
- # info: https://git.k8s.io/community/contributors/devel/api-conventions.md#
2133
- # metadata
2114
+ # UTC timestamp representing the server time when this object was created.
2134
2115
  # Corresponds to the JSON property `creationTimestamp`
2135
2116
  # @return [String]
2136
2117
  attr_accessor :creation_timestamp
@@ -2165,15 +2146,14 @@ module Google
2165
2146
 
2166
2147
  # Map of string keys and values that can be used to organize and categorize (
2167
2148
  # scope and select) objects. May match selectors of replication controllers and
2168
- # routes. More info: https://kubernetes.io/docs/user-guide/labels
2149
+ # routes.
2169
2150
  # Corresponds to the JSON property `labels`
2170
2151
  # @return [Hash<String,String>]
2171
2152
  attr_accessor :labels
2172
2153
 
2173
- # Required. The name of the resource. In Cloud Run, name is required when
2174
- # creating top-level resources (Service, Job), must be unique within a Cloud Run
2175
- # project/region, and cannot be changed once created. More info: https://
2176
- # kubernetes.io/docs/user-guide/identifiers#names
2154
+ # Required. The name of the resource. Name is required when creating top-level
2155
+ # resources (Service, Job), must be unique within a Cloud Run project/region,
2156
+ # and cannot be changed once created.
2177
2157
  # Corresponds to the JSON property `name`
2178
2158
  # @return [String]
2179
2159
  attr_accessor :name
@@ -2194,8 +2174,7 @@ module Google
2194
2174
  # be used for optimistic concurrency, change detection, and the watch operation
2195
2175
  # on a resource or set of resources. Clients must treat these values as opaque
2196
2176
  # and passed unmodified back to the server or omit the value to disable conflict-
2197
- # detection. More info: https://git.k8s.io/community/contributors/devel/sig-
2198
- # architecture/api-conventions.md#concurrency-control-and-consistency
2177
+ # detection.
2199
2178
  # Corresponds to the JSON property `resourceVersion`
2200
2179
  # @return [String]
2201
2180
  attr_accessor :resource_version
@@ -2205,8 +2184,7 @@ module Google
2205
2184
  # @return [String]
2206
2185
  attr_accessor :self_link
2207
2186
 
2208
- # Unique, system-generated identifier for this resource. More info: https://
2209
- # kubernetes.io/docs/user-guide/identifiers#uids
2187
+ # Unique, system-generated identifier for this resource.
2210
2188
  # Corresponds to the JSON property `uid`
2211
2189
  # @return [String]
2212
2190
  attr_accessor :uid
@@ -2443,9 +2421,7 @@ module Google
2443
2421
 
2444
2422
  # Number of seconds after the container has started before the probe is
2445
2423
  # initiated. Defaults to 0 seconds. Minimum value is 0. Maximum value for
2446
- # liveness probe is 3600. Maximum value for startup probe is 240. More info:
2447
- # https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-
2448
- # probes
2424
+ # liveness probe is 3600. Maximum value for startup probe is 240.
2449
2425
  # Corresponds to the JSON property `initialDelaySeconds`
2450
2426
  # @return [Fixnum]
2451
2427
  attr_accessor :initial_delay_seconds
@@ -2470,8 +2446,6 @@ module Google
2470
2446
 
2471
2447
  # Number of seconds after which the probe times out. Defaults to 1 second.
2472
2448
  # Minimum value is 1. Maximum value is 3600. Must be smaller than period_seconds.
2473
- # More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#
2474
- # container-probes
2475
2449
  # Corresponds to the JSON property `timeoutSeconds`
2476
2450
  # @return [Fixnum]
2477
2451
  attr_accessor :timeout_seconds
@@ -2531,20 +2505,20 @@ module Google
2531
2505
  class ResourceRequirements
2532
2506
  include Google::Apis::Core::Hashable
2533
2507
 
2534
- # Only memory and CPU are supported. Limits describes the maximum amount of
2535
- # compute resources allowed. The values of the map is string form of the '
2536
- # quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/
2537
- # staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go
2508
+ # Limits describes the maximum amount of compute resources allowed. Only 'cpu'
2509
+ # and 'memory' keys are supported. * For supported 'cpu' values, go to https://
2510
+ # cloud.google.com/run/docs/configuring/cpu. * For supported 'memory' values and
2511
+ # syntax, go to https://cloud.google.com/run/docs/configuring/memory-limits
2538
2512
  # Corresponds to the JSON property `limits`
2539
2513
  # @return [Hash<String,String>]
2540
2514
  attr_accessor :limits
2541
2515
 
2542
- # Only memory and CPU are supported. Requests describes the minimum amount of
2543
- # compute resources required. If Requests is omitted for a container, it
2516
+ # Requests describes the minimum amount of compute resources required. Only `cpu`
2517
+ # and `memory` are supported. If Requests is omitted for a container, it
2544
2518
  # defaults to Limits if that is explicitly specified, otherwise to an
2545
- # implementation-defined value. The values of the map is string form of the '
2546
- # quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/
2547
- # staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go
2519
+ # implementation-defined value. * For supported 'cpu' values, go to https://
2520
+ # cloud.google.com/run/docs/configuring/cpu. * For supported 'memory' values and
2521
+ # syntax, go to https://cloud.google.com/run/docs/configuring/memory-limits
2548
2522
  # Corresponds to the JSON property `requests`
2549
2523
  # @return [Hash<String,String>]
2550
2524
  attr_accessor :requests
@@ -2622,8 +2596,7 @@ module Google
2622
2596
  # Containers holds the single container that defines the unit of execution for
2623
2597
  # this Revision. In the context of a Revision, we disallow a number of fields on
2624
2598
  # this Container, including: name and lifecycle. In Cloud Run, only a single
2625
- # container may be provided. The runtime contract is documented here: https://
2626
- # github.com/knative/specs/blob/main/specs/serving/runtime-contract.md
2599
+ # container may be provided.
2627
2600
  # Corresponds to the JSON property `containers`
2628
2601
  # @return [Array<Google::Apis::RunV1::Container>]
2629
2602
  attr_accessor :containers
@@ -2733,8 +2706,7 @@ module Google
2733
2706
  end
2734
2707
 
2735
2708
  # RevisionTemplateSpec describes the data a revision should have when created
2736
- # from a template. Based on: https://github.com/kubernetes/api/blob/e771f807/
2737
- # core/v1/types.go#L3179-L3190
2709
+ # from a template.
2738
2710
  class RevisionTemplate
2739
2711
  include Google::Apis::Core::Hashable
2740
2712
 
@@ -2764,9 +2736,8 @@ module Google
2764
2736
  # Some of the Revisions a Route distributes traffic over may be specified by
2765
2737
  # referencing the Configuration responsible for creating them; in these cases
2766
2738
  # the Route is additionally responsible for monitoring the Configuration for "
2767
- # latest ready" revision changes, and smoothly rolling out latest revisions. See
2768
- # also: https://github.com/knative/specs/blob/main/specs/serving/overview.md#
2769
- # route Cloud Run currently supports referencing a single Configuration to
2739
+ # latest ready" revision changes, and smoothly rolling out latest revisions.
2740
+ # Cloud Run currently supports referencing a single Configuration to
2770
2741
  # automatically deploy the "latest ready" Revision from that Configuration.
2771
2742
  class Route
2772
2743
  include Google::Apis::Core::Hashable
@@ -3081,8 +3052,6 @@ module Google
3081
3052
  # Routes and Configurations (much as a kubernetes Deployment orchestrates
3082
3053
  # ReplicaSets). The Service's controller will track the statuses of its owned
3083
3054
  # Configuration and Route, reflecting their statuses and conditions as its own.
3084
- # See also: https://github.com/knative/serving/blob/main/docs/spec/overview.md#
3085
- # service
3086
3055
  class Service
3087
3056
  include Google::Apis::Core::Hashable
3088
3057
 
@@ -3133,8 +3102,7 @@ module Google
3133
3102
  include Google::Apis::Core::Hashable
3134
3103
 
3135
3104
  # RevisionTemplateSpec describes the data a revision should have when created
3136
- # from a template. Based on: https://github.com/kubernetes/api/blob/e771f807/
3137
- # core/v1/types.go#L3179-L3190
3105
+ # from a template.
3138
3106
  # Corresponds to the JSON property `template`
3139
3107
  # @return [Google::Apis::RunV1::RevisionTemplate]
3140
3108
  attr_accessor :template
@@ -3313,9 +3281,7 @@ module Google
3313
3281
  # @return [String]
3314
3282
  attr_accessor :reason
3315
3283
 
3316
- # Status of the operation. One of: "Success" or "Failure". More info: https://
3317
- # git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#
3318
- # spec-and-status
3284
+ # Status of the operation. One of: "Success" or "Failure".
3319
3285
  # Corresponds to the JSON property `status`
3320
3286
  # @return [String]
3321
3287
  attr_accessor :status
@@ -3394,9 +3360,7 @@ module Google
3394
3360
  attr_accessor :group
3395
3361
 
3396
3362
  # The kind attribute of the resource associated with the status StatusReason. On
3397
- # some operations may differ from the requested resource Kind. More info: https:/
3398
- # /git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#
3399
- # types-kinds
3363
+ # some operations may differ from the requested resource Kind.
3400
3364
  # Corresponds to the JSON property `kind`
3401
3365
  # @return [String]
3402
3366
  attr_accessor :kind
@@ -3416,7 +3380,6 @@ module Google
3416
3380
  attr_accessor :retry_after_seconds
3417
3381
 
3418
3382
  # UID of the resource. (when there is a single resource which can be described).
3419
- # More info: https://kubernetes.io/docs/user-guide/identifiers#uids
3420
3383
  # Corresponds to the JSON property `uid`
3421
3384
  # @return [String]
3422
3385
  attr_accessor :uid
@@ -3467,16 +3430,14 @@ module Google
3467
3430
 
3468
3431
  # Optional. APIVersion defines the versioned schema of this representation of an
3469
3432
  # object. Servers should convert recognized schemas to the latest internal value,
3470
- # and may reject unrecognized values. More info: https://git.k8s.io/community/
3471
- # contributors/devel/sig-architecture/api-conventions.md#resources
3433
+ # and may reject unrecognized values.
3472
3434
  # Corresponds to the JSON property `apiVersion`
3473
3435
  # @return [String]
3474
3436
  attr_accessor :api_version
3475
3437
 
3476
3438
  # Optional. Kind is a string value representing the REST resource this object
3477
3439
  # represents. Servers may infer this from the endpoint the client submits
3478
- # requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/
3479
- # community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
3440
+ # requests to. Cannot be updated. In CamelCase.
3480
3441
  # Corresponds to the JSON property `kind`
3481
3442
  # @return [String]
3482
3443
  attr_accessor :kind
@@ -3576,7 +3537,7 @@ module Google
3576
3537
  attr_accessor :timeout_seconds
3577
3538
 
3578
3539
  # Optional. List of volumes that can be mounted by containers belonging to the
3579
- # task. More info: https://kubernetes.io/docs/concepts/storage/volumes
3540
+ # task.
3580
3541
  # Corresponds to the JSON property `volumes`
3581
3542
  # @return [Array<Google::Apis::RunV1::Volume>]
3582
3543
  attr_accessor :volumes
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module RunV1
18
18
  # Version of the google-apis-run_v1 gem
19
- GEM_VERSION = "0.49.0"
19
+ GEM_VERSION = "0.50.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230409"
25
+ REVISION = "20230416"
26
26
  end
27
27
  end
28
28
  end
@@ -174,9 +174,9 @@ module Google
174
174
 
175
175
  # Create a new domain mapping.
176
176
  # @param [String] parent
177
- # The namespace in which the domain mapping should be created. For Cloud Run (
178
- # fully managed), replace `namespace` with the project ID or number. It takes
179
- # the form namespaces/`namespace`. For example: namespaces/PROJECT_ID
177
+ # Required. The namespace in which the domain mapping should be created. For
178
+ # Cloud Run (fully managed), replace `namespace` with the project ID or number.
179
+ # It takes the form namespaces/`namespace`. For example: namespaces/PROJECT_ID
180
180
  # @param [Google::Apis::RunV1::DomainMapping] domain_mapping_object
181
181
  # @param [String] dry_run
182
182
  # Indicates that the server should validate the request and populate default
@@ -213,8 +213,8 @@ module Google
213
213
 
214
214
  # Delete a domain mapping.
215
215
  # @param [String] name
216
- # The name of the domain mapping to delete. For Cloud Run (fully managed),
217
- # replace `namespace` with the project ID or number. It takes the form
216
+ # Required. The name of the domain mapping to delete. For Cloud Run (fully
217
+ # managed), replace `namespace` with the project ID or number. It takes the form
218
218
  # namespaces/`namespace`. For example: namespaces/PROJECT_ID
219
219
  # @param [String] api_version
220
220
  # Cloud Run currently ignores this parameter.
@@ -260,8 +260,8 @@ module Google
260
260
 
261
261
  # Get information about a domain mapping.
262
262
  # @param [String] name
263
- # The name of the domain mapping to retrieve. For Cloud Run (fully managed),
264
- # replace `namespace` with the project ID or number. It takes the form
263
+ # Required. The name of the domain mapping to retrieve. For Cloud Run (fully
264
+ # managed), replace `namespace` with the project ID or number. It takes the form
265
265
  # namespaces/`namespace`. For example: namespaces/PROJECT_ID
266
266
  # @param [String] fields
267
267
  # Selector specifying which fields to include in a partial response.
@@ -292,9 +292,9 @@ module Google
292
292
 
293
293
  # List all domain mappings.
294
294
  # @param [String] parent
295
- # The namespace from which the domain mappings should be listed. For Cloud Run (
296
- # fully managed), replace `namespace` with the project ID or number. It takes
297
- # the form namespaces/`namespace`. For example: namespaces/PROJECT_ID
295
+ # Required. The namespace from which the domain mappings should be listed. For
296
+ # Cloud Run (fully managed), replace `namespace` with the project ID or number.
297
+ # It takes the form namespaces/`namespace`. For example: namespaces/PROJECT_ID
298
298
  # @param [String] continue
299
299
  # Optional. Encoded string to continue paging.
300
300
  # @param [String] field_selector
@@ -394,9 +394,7 @@ module Google
394
394
  # Optional. Cloud Run currently ignores this parameter.
395
395
  # @param [String] propagation_policy
396
396
  # Optional. Specifies the propagation policy of delete. Cloud Run currently
397
- # ignores this setting, and deletes in the background. Please see https://
398
- # kubernetes.io/docs/concepts/workloads/controllers/garbage-collection/ for more
399
- # information.
397
+ # ignores this setting.
400
398
  # @param [String] fields
401
399
  # Selector specifying which fields to include in a partial response.
402
400
  # @param [String] quota_user
@@ -764,8 +762,7 @@ module Google
764
762
  # Cloud Run currently ignores this parameter.
765
763
  # @param [String] propagation_policy
766
764
  # Specifies the propagation policy of delete. Cloud Run currently ignores this
767
- # setting, and deletes in the background. Please see https://kubernetes.io/docs/
768
- # concepts/architecture/garbage-collection/ for more information.
765
+ # setting, and deletes in the background.
769
766
  # @param [String] fields
770
767
  # Selector specifying which fields to include in a partial response.
771
768
  # @param [String] quota_user
@@ -1497,9 +1494,9 @@ module Google
1497
1494
 
1498
1495
  # Create a new domain mapping.
1499
1496
  # @param [String] parent
1500
- # The namespace in which the domain mapping should be created. For Cloud Run (
1501
- # fully managed), replace `namespace` with the project ID or number. It takes
1502
- # the form namespaces/`namespace`. For example: namespaces/PROJECT_ID
1497
+ # Required. The namespace in which the domain mapping should be created. For
1498
+ # Cloud Run (fully managed), replace `namespace` with the project ID or number.
1499
+ # It takes the form namespaces/`namespace`. For example: namespaces/PROJECT_ID
1503
1500
  # @param [Google::Apis::RunV1::DomainMapping] domain_mapping_object
1504
1501
  # @param [String] dry_run
1505
1502
  # Indicates that the server should validate the request and populate default
@@ -1536,8 +1533,8 @@ module Google
1536
1533
 
1537
1534
  # Delete a domain mapping.
1538
1535
  # @param [String] name
1539
- # The name of the domain mapping to delete. For Cloud Run (fully managed),
1540
- # replace `namespace` with the project ID or number. It takes the form
1536
+ # Required. The name of the domain mapping to delete. For Cloud Run (fully
1537
+ # managed), replace `namespace` with the project ID or number. It takes the form
1541
1538
  # namespaces/`namespace`. For example: namespaces/PROJECT_ID
1542
1539
  # @param [String] api_version
1543
1540
  # Cloud Run currently ignores this parameter.
@@ -1583,8 +1580,8 @@ module Google
1583
1580
 
1584
1581
  # Get information about a domain mapping.
1585
1582
  # @param [String] name
1586
- # The name of the domain mapping to retrieve. For Cloud Run (fully managed),
1587
- # replace `namespace` with the project ID or number. It takes the form
1583
+ # Required. The name of the domain mapping to retrieve. For Cloud Run (fully
1584
+ # managed), replace `namespace` with the project ID or number. It takes the form
1588
1585
  # namespaces/`namespace`. For example: namespaces/PROJECT_ID
1589
1586
  # @param [String] fields
1590
1587
  # Selector specifying which fields to include in a partial response.
@@ -1615,9 +1612,9 @@ module Google
1615
1612
 
1616
1613
  # List all domain mappings.
1617
1614
  # @param [String] parent
1618
- # The namespace from which the domain mappings should be listed. For Cloud Run (
1619
- # fully managed), replace `namespace` with the project ID or number. It takes
1620
- # the form namespaces/`namespace`. For example: namespaces/PROJECT_ID
1615
+ # Required. The namespace from which the domain mappings should be listed. For
1616
+ # Cloud Run (fully managed), replace `namespace` with the project ID or number.
1617
+ # It takes the form namespaces/`namespace`. For example: namespaces/PROJECT_ID
1621
1618
  # @param [String] continue
1622
1619
  # Optional. Encoded string to continue paging.
1623
1620
  # @param [String] field_selector
@@ -1802,8 +1799,7 @@ module Google
1802
1799
  # Cloud Run currently ignores this parameter.
1803
1800
  # @param [String] propagation_policy
1804
1801
  # Specifies the propagation policy of delete. Cloud Run currently ignores this
1805
- # setting, and deletes in the background. Please see https://kubernetes.io/docs/
1806
- # concepts/architecture/garbage-collection/ for more information.
1802
+ # setting, and deletes in the background.
1807
1803
  # @param [String] fields
1808
1804
  # Selector specifying which fields to include in a partial response.
1809
1805
  # @param [String] quota_user
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-run_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.49.0
4
+ version: 0.50.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-16 00:00:00.000000000 Z
11
+ date: 2023-04-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.49.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.50.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v1
63
63
  post_install_message:
64
64
  rdoc_options: []