google-apis-run_v1 0.37.0 → 0.39.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/run_v1/classes.rb +41 -40
- data/lib/google/apis/run_v1/gem_version.rb +2 -2
- data/lib/google/apis/run_v1/service.rb +52 -42
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6b5a265160c412e54bc7dcca459508e2e23d0656df32757df28ebae24b19ec44
|
4
|
+
data.tar.gz: af7edcebe9b0224ce24d8eeee7c90e369e786a9f9707b26ee901645f32a0482c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e3099bdde315dae7c926bbb2477e69bdbc6f7a65fc4f6aade111e6f18cabb482804f667d76050a5acaa0de54ef0a300264e659c34c93d2c7023199a62a1a193
|
7
|
+
data.tar.gz: e7db2748dfdaf29483748addced5a3e6f2af0d8ac5fc1d5a1be98e9d5ced83efef56f78fc173df645aa42c448f1035084f1f0a9ac2896be8bcf461e2b3a10545
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-run_v1
|
2
2
|
|
3
|
+
### v0.39.0 (2022-09-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220911
|
6
|
+
|
7
|
+
### v0.38.0 (2022-09-03)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220828
|
10
|
+
|
3
11
|
### v0.37.0 (2022-08-27)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20220821
|
@@ -167,31 +167,33 @@ module Google
|
|
167
167
|
# members` can have the following values: * `allUsers`: A special identifier
|
168
168
|
# that represents anyone who is on the internet; with or without a Google
|
169
169
|
# account. * `allAuthenticatedUsers`: A special identifier that represents
|
170
|
-
# anyone who is authenticated with a Google account or a service account.
|
171
|
-
#
|
172
|
-
#
|
173
|
-
#
|
174
|
-
#
|
175
|
-
#
|
176
|
-
#
|
177
|
-
#
|
178
|
-
# .
|
179
|
-
#
|
180
|
-
# email address
|
181
|
-
#
|
182
|
-
#
|
183
|
-
#
|
184
|
-
# emailid
|
185
|
-
#
|
186
|
-
#
|
187
|
-
#
|
188
|
-
#
|
189
|
-
#
|
190
|
-
#
|
191
|
-
#
|
192
|
-
#
|
193
|
-
#
|
194
|
-
#
|
170
|
+
# anyone who is authenticated with a Google account or a service account. Does
|
171
|
+
# not include identities that come from external identity providers (IdPs)
|
172
|
+
# through identity federation. * `user:`emailid``: An email address that
|
173
|
+
# represents a specific Google account. For example, `alice@example.com` . * `
|
174
|
+
# serviceAccount:`emailid``: An email address that represents a Google service
|
175
|
+
# account. For example, `my-other-app@appspot.gserviceaccount.com`. * `
|
176
|
+
# serviceAccount:`projectid`.svc.id.goog[`namespace`/`kubernetes-sa`]`: An
|
177
|
+
# identifier for a [Kubernetes service account](https://cloud.google.com/
|
178
|
+
# kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-
|
179
|
+
# project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:`emailid``: An
|
180
|
+
# email address that represents a Google group. For example, `admins@example.com`
|
181
|
+
# . * `deleted:user:`emailid`?uid=`uniqueid``: An email address (plus unique
|
182
|
+
# identifier) representing a user that has been recently deleted. For example, `
|
183
|
+
# alice@example.com?uid=123456789012345678901`. If the user is recovered, this
|
184
|
+
# value reverts to `user:`emailid`` and the recovered user retains the role in
|
185
|
+
# the binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email
|
186
|
+
# address (plus unique identifier) representing a service account that has been
|
187
|
+
# recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
|
188
|
+
# 123456789012345678901`. If the service account is undeleted, this value
|
189
|
+
# reverts to `serviceAccount:`emailid`` and the undeleted service account
|
190
|
+
# retains the role in the binding. * `deleted:group:`emailid`?uid=`uniqueid``:
|
191
|
+
# An email address (plus unique identifier) representing a Google group that has
|
192
|
+
# been recently deleted. For example, `admins@example.com?uid=
|
193
|
+
# 123456789012345678901`. If the group is recovered, this value reverts to `
|
194
|
+
# group:`emailid`` and the recovered group retains the role in the binding. * `
|
195
|
+
# domain:`domain``: The G Suite domain (primary) that represents all the users
|
196
|
+
# of that domain. For example, `google.com` or `example.com`.
|
195
197
|
# Corresponds to the JSON property `members`
|
196
198
|
# @return [Array<String>]
|
197
199
|
attr_accessor :members
|
@@ -2125,17 +2127,17 @@ module Google
|
|
2125
2127
|
# @return [Hash<String,String>]
|
2126
2128
|
attr_accessor :labels
|
2127
2129
|
|
2128
|
-
# The
|
2129
|
-
# creating top-level resources (Service, Job),
|
2130
|
-
#
|
2131
|
-
# identifiers#names If ObjectMeta is part of a
|
2132
|
-
# contain fewer than 50 characters.
|
2130
|
+
# Required. The name of the resource. In Cloud Run, name is required when
|
2131
|
+
# creating top-level resources (Service, Job), must be unique within a Cloud Run
|
2132
|
+
# project/region, and cannot be changed once created. More info: https://
|
2133
|
+
# kubernetes.io/docs/user-guide/identifiers#names If ObjectMeta is part of a
|
2134
|
+
# CreateServiceRequest, name must contain fewer than 50 characters.
|
2133
2135
|
# Corresponds to the JSON property `name`
|
2134
2136
|
# @return [String]
|
2135
2137
|
attr_accessor :name
|
2136
2138
|
|
2137
|
-
# Defines the space within each name must be unique within a Cloud Run
|
2138
|
-
# In Cloud Run, it must be project ID or number.
|
2139
|
+
# Required. Defines the space within each name must be unique within a Cloud Run
|
2140
|
+
# region. In Cloud Run, it must be project ID or number.
|
2139
2141
|
# Corresponds to the JSON property `namespace`
|
2140
2142
|
# @return [String]
|
2141
2143
|
attr_accessor :namespace
|
@@ -2145,14 +2147,13 @@ module Google
|
|
2145
2147
|
# @return [Array<Google::Apis::RunV1::OwnerReference>]
|
2146
2148
|
attr_accessor :owner_references
|
2147
2149
|
|
2148
|
-
#
|
2149
|
-
#
|
2150
|
-
#
|
2151
|
-
#
|
2152
|
-
#
|
2153
|
-
#
|
2154
|
-
#
|
2155
|
-
# consistency
|
2150
|
+
# Opaque, system-generated value that represents the internal version of this
|
2151
|
+
# object that can be used by clients to determine when objects have changed. May
|
2152
|
+
# be used for optimistic concurrency, change detection, and the watch operation
|
2153
|
+
# on a resource or set of resources. Clients must treat these values as opaque
|
2154
|
+
# and passed unmodified back to the server or omit the value to disable conflict-
|
2155
|
+
# detection. More info: https://git.k8s.io/community/contributors/devel/sig-
|
2156
|
+
# architecture/api-conventions.md#concurrency-control-and-consistency
|
2156
2157
|
# Corresponds to the JSON property `resourceVersion`
|
2157
2158
|
# @return [String]
|
2158
2159
|
attr_accessor :resource_version
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.39.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220911"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -980,9 +980,10 @@ module Google
|
|
980
980
|
# Creates a new Service. Service creation will trigger a new deployment. Use
|
981
981
|
# GetService, and check service.status to determine if the Service is ready.
|
982
982
|
# @param [String] parent
|
983
|
-
# The resource's parent. In Cloud Run, it may be one of the following:
|
984
|
-
# namespaces/`project_id_or_number`` * `
|
985
|
-
#
|
983
|
+
# Required. The resource's parent. In Cloud Run, it may be one of the following:
|
984
|
+
# * ``project_id_or_number`` * `namespaces/`project_id_or_number`` * `namespaces/
|
985
|
+
# `project_id_or_number`/services` * `projects/`project_id_or_number`/locations/`
|
986
|
+
# region`` * `projects/`project_id_or_number`/regions/`region``
|
986
987
|
# @param [Google::Apis::RunV1::Service] service_object
|
987
988
|
# @param [String] dry_run
|
988
989
|
# Indicates that the server should validate the request and populate default
|
@@ -1020,10 +1021,11 @@ module Google
|
|
1020
1021
|
# Deletes the provided service. This will cause the Service to stop serving
|
1021
1022
|
# traffic and will delete all associated Revisions.
|
1022
1023
|
# @param [String] name
|
1023
|
-
# The fully qualified name of the service to delete. It can be any of
|
1024
|
-
# following forms: * `namespaces/`project_id_or_number`/services/`
|
1025
|
-
# * `projects/`project_id_or_number`/locations/`region`/services/`
|
1026
|
-
# * `projects/`project_id_or_number`/regions/`region`/services/`
|
1024
|
+
# Required. The fully qualified name of the service to delete. It can be any of
|
1025
|
+
# the following forms: * `namespaces/`project_id_or_number`/services/`
|
1026
|
+
# service_name`` * `projects/`project_id_or_number`/locations/`region`/services/`
|
1027
|
+
# service_name`` * `projects/`project_id_or_number`/regions/`region`/services/`
|
1028
|
+
# service_name``
|
1027
1029
|
# @param [String] api_version
|
1028
1030
|
# Not supported, and ignored by Cloud Run.
|
1029
1031
|
# @param [String] dry_run
|
@@ -1066,10 +1068,11 @@ module Google
|
|
1066
1068
|
|
1067
1069
|
# Gets information about a service.
|
1068
1070
|
# @param [String] name
|
1069
|
-
# The fully qualified name of the service to retrieve. It can be any
|
1070
|
-
# following forms: * `namespaces/`project_id_or_number`/services/`
|
1071
|
-
# * `projects/`project_id_or_number`/locations/`region`/services/`
|
1072
|
-
# * `projects/`project_id_or_number`/regions/`region`/services/`
|
1071
|
+
# Required. The fully qualified name of the service to retrieve. It can be any
|
1072
|
+
# of the following forms: * `namespaces/`project_id_or_number`/services/`
|
1073
|
+
# service_name`` * `projects/`project_id_or_number`/locations/`region`/services/`
|
1074
|
+
# service_name`` * `projects/`project_id_or_number`/regions/`region`/services/`
|
1075
|
+
# service_name``
|
1073
1076
|
# @param [String] fields
|
1074
1077
|
# Selector specifying which fields to include in a partial response.
|
1075
1078
|
# @param [String] quota_user
|
@@ -1099,12 +1102,13 @@ module Google
|
|
1099
1102
|
|
1100
1103
|
# Lists services for the given project and region.
|
1101
1104
|
# @param [String] parent
|
1102
|
-
# The parent from where the resources should be listed. In Cloud Run,
|
1103
|
-
# one of the following: *
|
1104
|
-
# project_id_or_number
|
1105
|
-
#
|
1105
|
+
# Required. The parent from where the resources should be listed. In Cloud Run,
|
1106
|
+
# it may be one of the following: * ``project_id_or_number`` * `namespaces/`
|
1107
|
+
# project_id_or_number`` * `namespaces/`project_id_or_number`/services` * `
|
1108
|
+
# projects/`project_id_or_number`/locations/`region`` * `projects/`
|
1109
|
+
# project_id_or_number`/regions/`region``
|
1106
1110
|
# @param [String] continue
|
1107
|
-
#
|
1111
|
+
# Encoded string to continue paging.
|
1108
1112
|
# @param [String] field_selector
|
1109
1113
|
# Not supported, and ignored by Cloud Run.
|
1110
1114
|
# @param [Boolean] include_uninitialized
|
@@ -1113,7 +1117,7 @@ module Google
|
|
1113
1117
|
# Allows to filter resources based on a label. Supported operations are =, !=,
|
1114
1118
|
# exists, in, and notIn.
|
1115
1119
|
# @param [Fixnum] limit
|
1116
|
-
#
|
1120
|
+
# The maximum number of records that should be returned.
|
1117
1121
|
# @param [String] resource_version
|
1118
1122
|
# Not supported, and ignored by Cloud Run.
|
1119
1123
|
# @param [Boolean] watch
|
@@ -1157,10 +1161,11 @@ module Google
|
|
1157
1161
|
# match the requested 'spec'. May provide metadata.resourceVersion to enforce
|
1158
1162
|
# update from last read for optimistic concurrency control.
|
1159
1163
|
# @param [String] name
|
1160
|
-
# The fully qualified name of the service to replace. It can be any of
|
1161
|
-
# following forms: * `namespaces/`project_id_or_number`/services/`
|
1162
|
-
# * `projects/`project_id_or_number`/locations/`region`/services/`
|
1163
|
-
# * `projects/`project_id_or_number`/regions/`region`/services/`
|
1164
|
+
# Required. The fully qualified name of the service to replace. It can be any of
|
1165
|
+
# the following forms: * `namespaces/`project_id_or_number`/services/`
|
1166
|
+
# service_name`` * `projects/`project_id_or_number`/locations/`region`/services/`
|
1167
|
+
# service_name`` * `projects/`project_id_or_number`/regions/`region`/services/`
|
1168
|
+
# service_name``
|
1164
1169
|
# @param [Google::Apis::RunV1::Service] service_object
|
1165
1170
|
# @param [String] dry_run
|
1166
1171
|
# Indicates that the server should validate the request and populate default
|
@@ -2013,9 +2018,10 @@ module Google
|
|
2013
2018
|
# Creates a new Service. Service creation will trigger a new deployment. Use
|
2014
2019
|
# GetService, and check service.status to determine if the Service is ready.
|
2015
2020
|
# @param [String] parent
|
2016
|
-
# The resource's parent. In Cloud Run, it may be one of the following:
|
2017
|
-
# namespaces/`project_id_or_number`` * `
|
2018
|
-
#
|
2021
|
+
# Required. The resource's parent. In Cloud Run, it may be one of the following:
|
2022
|
+
# * ``project_id_or_number`` * `namespaces/`project_id_or_number`` * `namespaces/
|
2023
|
+
# `project_id_or_number`/services` * `projects/`project_id_or_number`/locations/`
|
2024
|
+
# region`` * `projects/`project_id_or_number`/regions/`region``
|
2019
2025
|
# @param [Google::Apis::RunV1::Service] service_object
|
2020
2026
|
# @param [String] dry_run
|
2021
2027
|
# Indicates that the server should validate the request and populate default
|
@@ -2053,10 +2059,11 @@ module Google
|
|
2053
2059
|
# Deletes the provided service. This will cause the Service to stop serving
|
2054
2060
|
# traffic and will delete all associated Revisions.
|
2055
2061
|
# @param [String] name
|
2056
|
-
# The fully qualified name of the service to delete. It can be any of
|
2057
|
-
# following forms: * `namespaces/`project_id_or_number`/services/`
|
2058
|
-
# * `projects/`project_id_or_number`/locations/`region`/services/`
|
2059
|
-
# * `projects/`project_id_or_number`/regions/`region`/services/`
|
2062
|
+
# Required. The fully qualified name of the service to delete. It can be any of
|
2063
|
+
# the following forms: * `namespaces/`project_id_or_number`/services/`
|
2064
|
+
# service_name`` * `projects/`project_id_or_number`/locations/`region`/services/`
|
2065
|
+
# service_name`` * `projects/`project_id_or_number`/regions/`region`/services/`
|
2066
|
+
# service_name``
|
2060
2067
|
# @param [String] api_version
|
2061
2068
|
# Not supported, and ignored by Cloud Run.
|
2062
2069
|
# @param [String] dry_run
|
@@ -2099,10 +2106,11 @@ module Google
|
|
2099
2106
|
|
2100
2107
|
# Gets information about a service.
|
2101
2108
|
# @param [String] name
|
2102
|
-
# The fully qualified name of the service to retrieve. It can be any
|
2103
|
-
# following forms: * `namespaces/`project_id_or_number`/services/`
|
2104
|
-
# * `projects/`project_id_or_number`/locations/`region`/services/`
|
2105
|
-
# * `projects/`project_id_or_number`/regions/`region`/services/`
|
2109
|
+
# Required. The fully qualified name of the service to retrieve. It can be any
|
2110
|
+
# of the following forms: * `namespaces/`project_id_or_number`/services/`
|
2111
|
+
# service_name`` * `projects/`project_id_or_number`/locations/`region`/services/`
|
2112
|
+
# service_name`` * `projects/`project_id_or_number`/regions/`region`/services/`
|
2113
|
+
# service_name``
|
2106
2114
|
# @param [String] fields
|
2107
2115
|
# Selector specifying which fields to include in a partial response.
|
2108
2116
|
# @param [String] quota_user
|
@@ -2177,12 +2185,13 @@ module Google
|
|
2177
2185
|
|
2178
2186
|
# Lists services for the given project and region.
|
2179
2187
|
# @param [String] parent
|
2180
|
-
# The parent from where the resources should be listed. In Cloud Run,
|
2181
|
-
# one of the following: *
|
2182
|
-
# project_id_or_number
|
2183
|
-
#
|
2188
|
+
# Required. The parent from where the resources should be listed. In Cloud Run,
|
2189
|
+
# it may be one of the following: * ``project_id_or_number`` * `namespaces/`
|
2190
|
+
# project_id_or_number`` * `namespaces/`project_id_or_number`/services` * `
|
2191
|
+
# projects/`project_id_or_number`/locations/`region`` * `projects/`
|
2192
|
+
# project_id_or_number`/regions/`region``
|
2184
2193
|
# @param [String] continue
|
2185
|
-
#
|
2194
|
+
# Encoded string to continue paging.
|
2186
2195
|
# @param [String] field_selector
|
2187
2196
|
# Not supported, and ignored by Cloud Run.
|
2188
2197
|
# @param [Boolean] include_uninitialized
|
@@ -2191,7 +2200,7 @@ module Google
|
|
2191
2200
|
# Allows to filter resources based on a label. Supported operations are =, !=,
|
2192
2201
|
# exists, in, and notIn.
|
2193
2202
|
# @param [Fixnum] limit
|
2194
|
-
#
|
2203
|
+
# The maximum number of records that should be returned.
|
2195
2204
|
# @param [String] resource_version
|
2196
2205
|
# Not supported, and ignored by Cloud Run.
|
2197
2206
|
# @param [Boolean] watch
|
@@ -2235,10 +2244,11 @@ module Google
|
|
2235
2244
|
# match the requested 'spec'. May provide metadata.resourceVersion to enforce
|
2236
2245
|
# update from last read for optimistic concurrency control.
|
2237
2246
|
# @param [String] name
|
2238
|
-
# The fully qualified name of the service to replace. It can be any of
|
2239
|
-
# following forms: * `namespaces/`project_id_or_number`/services/`
|
2240
|
-
# * `projects/`project_id_or_number`/locations/`region`/services/`
|
2241
|
-
# * `projects/`project_id_or_number`/regions/`region`/services/`
|
2247
|
+
# Required. The fully qualified name of the service to replace. It can be any of
|
2248
|
+
# the following forms: * `namespaces/`project_id_or_number`/services/`
|
2249
|
+
# service_name`` * `projects/`project_id_or_number`/locations/`region`/services/`
|
2250
|
+
# service_name`` * `projects/`project_id_or_number`/regions/`region`/services/`
|
2251
|
+
# service_name``
|
2242
2252
|
# @param [Google::Apis::RunV1::Service] service_object
|
2243
2253
|
# @param [String] dry_run
|
2244
2254
|
# Indicates that the server should validate the request and populate default
|
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.
|
4
|
+
version: 0.39.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: 2022-
|
11
|
+
date: 2022-09-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 0.7.2
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
29
|
+
version: 0.7.2
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.39.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: []
|