google-cloud-resource_manager-v3 0.5.0 → 0.5.1
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/lib/google/cloud/resource_manager/v3/projects/client.rb +20 -26
- data/lib/google/cloud/resource_manager/v3/projects/rest/client.rb +20 -26
- data/lib/google/cloud/resource_manager/v3/tag_keys/client.rb +3 -2
- data/lib/google/cloud/resource_manager/v3/tag_keys/rest/client.rb +3 -2
- data/lib/google/cloud/resource_manager/v3/version.rb +1 -1
- data/proto_docs/google/api/client.rb +10 -1
- data/proto_docs/google/cloud/resourcemanager/v3/projects.rb +20 -26
- data/proto_docs/google/cloud/resourcemanager/v3/tag_bindings.rb +10 -7
- data/proto_docs/google/cloud/resourcemanager/v3/tag_keys.rb +18 -10
- data/proto_docs/google/cloud/resourcemanager/v3/tag_values.rb +4 -4
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4ce80b7a20806fd70f73a21b33dab7e23d2fd0074ec3e799b466129aeed81c89
|
|
4
|
+
data.tar.gz: 515d2179248a51b5bdfecfd231eb105b5cd3ba2435e5ab399678cfac6137eb67
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7d56ea3e66247fce5ee953dee8afbefaf2daf191aa57a818844ea7031f2fb22fd28506382b9577845ea3a07423de38d25d9d9b4475cbb02f17ee1dd715c23145
|
|
7
|
+
data.tar.gz: 9c278cc225d69d099e2fe4d81df12bdacea221a136ba3424d82bb3c007f25581b21e52f34b04eb667facbda8e4bad1a7b4078aa122ff3026fd67cb80d99e2d22
|
|
@@ -411,37 +411,31 @@ module Google
|
|
|
411
411
|
# included in the query, then it will return results that match any of the
|
|
412
412
|
# fields. Some eligible fields are:
|
|
413
413
|
#
|
|
414
|
-
#
|
|
415
|
-
#
|
|
416
|
-
#
|
|
417
|
-
#
|
|
418
|
-
#
|
|
419
|
-
#
|
|
420
|
-
#
|
|
421
|
-
#
|
|
422
|
-
#
|
|
423
|
-
#
|
|
424
|
-
#
|
|
425
|
-
# labels.\<key\> (where *key* is the name of a label) | Filters by label
|
|
426
|
-
# name.|
|
|
427
|
-
# ```
|
|
414
|
+
# - **`displayName`, `name`**: Filters by displayName.
|
|
415
|
+
# - **`parent`**: Project's parent (for example: `folders/123`,
|
|
416
|
+
# `organizations/*`). Prefer `parent` field over `parent.type` and
|
|
417
|
+
# `parent.id`.
|
|
418
|
+
# - **`parent.type`**: Parent's type: `folder` or `organization`.
|
|
419
|
+
# - **`parent.id`**: Parent's id number (for example: `123`).
|
|
420
|
+
# - **`id`, `projectId`**: Filters by projectId.
|
|
421
|
+
# - **`state`, `lifecycleState`**: Filters by state.
|
|
422
|
+
# - **`labels`**: Filters by label name or value.
|
|
423
|
+
# - **`labels.<key>` (where `<key>` is the name of a label)**: Filters by label
|
|
424
|
+
# name.
|
|
428
425
|
#
|
|
429
426
|
# Search expressions are case insensitive.
|
|
430
427
|
#
|
|
431
428
|
# Some examples queries:
|
|
432
429
|
#
|
|
433
|
-
#
|
|
434
|
-
#
|
|
435
|
-
#
|
|
436
|
-
#
|
|
437
|
-
#
|
|
438
|
-
#
|
|
439
|
-
#
|
|
440
|
-
#
|
|
441
|
-
#
|
|
442
|
-
# | labels.color:red labels.size:big | The project's label `color` has the
|
|
443
|
-
# value `red` or its label `size` has the value `big`. |
|
|
444
|
-
# ```
|
|
430
|
+
#
|
|
431
|
+
# - **`name:how*`**: The project's name starts with "how".
|
|
432
|
+
# - **`name:Howl`**: The project's name is `Howl` or `howl`.
|
|
433
|
+
# - **`name:HOWL`**: Equivalent to above.
|
|
434
|
+
# - **`NAME:howl`**: Equivalent to above.
|
|
435
|
+
# - **`labels.color:*`**: The project has the label `color`.
|
|
436
|
+
# - **`labels.color:red`**: The project's label `color` has the value `red`.
|
|
437
|
+
# - **`labels.color:red labels.size:big`**: The project's label `color` has
|
|
438
|
+
# the value `red` or its label `size` has the value `big`.
|
|
445
439
|
#
|
|
446
440
|
# If no query is specified, the call will return projects for which the user
|
|
447
441
|
# has the `resourcemanager.projects.get` permission.
|
|
@@ -360,37 +360,31 @@ module Google
|
|
|
360
360
|
# included in the query, then it will return results that match any of the
|
|
361
361
|
# fields. Some eligible fields are:
|
|
362
362
|
#
|
|
363
|
-
#
|
|
364
|
-
#
|
|
365
|
-
#
|
|
366
|
-
#
|
|
367
|
-
#
|
|
368
|
-
#
|
|
369
|
-
#
|
|
370
|
-
#
|
|
371
|
-
#
|
|
372
|
-
#
|
|
373
|
-
#
|
|
374
|
-
# labels.\<key\> (where *key* is the name of a label) | Filters by label
|
|
375
|
-
# name.|
|
|
376
|
-
# ```
|
|
363
|
+
# - **`displayName`, `name`**: Filters by displayName.
|
|
364
|
+
# - **`parent`**: Project's parent (for example: `folders/123`,
|
|
365
|
+
# `organizations/*`). Prefer `parent` field over `parent.type` and
|
|
366
|
+
# `parent.id`.
|
|
367
|
+
# - **`parent.type`**: Parent's type: `folder` or `organization`.
|
|
368
|
+
# - **`parent.id`**: Parent's id number (for example: `123`).
|
|
369
|
+
# - **`id`, `projectId`**: Filters by projectId.
|
|
370
|
+
# - **`state`, `lifecycleState`**: Filters by state.
|
|
371
|
+
# - **`labels`**: Filters by label name or value.
|
|
372
|
+
# - **`labels.<key>` (where `<key>` is the name of a label)**: Filters by label
|
|
373
|
+
# name.
|
|
377
374
|
#
|
|
378
375
|
# Search expressions are case insensitive.
|
|
379
376
|
#
|
|
380
377
|
# Some examples queries:
|
|
381
378
|
#
|
|
382
|
-
#
|
|
383
|
-
#
|
|
384
|
-
#
|
|
385
|
-
#
|
|
386
|
-
#
|
|
387
|
-
#
|
|
388
|
-
#
|
|
389
|
-
#
|
|
390
|
-
#
|
|
391
|
-
# | labels.color:red labels.size:big | The project's label `color` has the
|
|
392
|
-
# value `red` or its label `size` has the value `big`. |
|
|
393
|
-
# ```
|
|
379
|
+
#
|
|
380
|
+
# - **`name:how*`**: The project's name starts with "how".
|
|
381
|
+
# - **`name:Howl`**: The project's name is `Howl` or `howl`.
|
|
382
|
+
# - **`name:HOWL`**: Equivalent to above.
|
|
383
|
+
# - **`NAME:howl`**: Equivalent to above.
|
|
384
|
+
# - **`labels.color:*`**: The project has the label `color`.
|
|
385
|
+
# - **`labels.color:red`**: The project's label `color` has the value `red`.
|
|
386
|
+
# - **`labels.color:red labels.size:big`**: The project's label `color` has
|
|
387
|
+
# the value `red` or its label `size` has the value `big`.
|
|
394
388
|
#
|
|
395
389
|
# If no query is specified, the call will return projects for which the user
|
|
396
390
|
# has the `resourcemanager.projects.get` permission.
|
|
@@ -199,8 +199,9 @@ module Google
|
|
|
199
199
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
|
200
200
|
#
|
|
201
201
|
# @param parent [::String]
|
|
202
|
-
# Required. The resource name of the
|
|
203
|
-
# Must be of the form `
|
|
202
|
+
# Required. The resource name of the TagKey's parent.
|
|
203
|
+
# Must be of the form `organizations/{org_id}` or `projects/{project_id}` or
|
|
204
|
+
# `projects/{project_number}`
|
|
204
205
|
# @param page_size [::Integer]
|
|
205
206
|
# Optional. The maximum number of TagKeys to return in the response. The
|
|
206
207
|
# server allows a maximum of 300 TagKeys to return. If unspecified, the
|
|
@@ -190,8 +190,9 @@ module Google
|
|
|
190
190
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
|
191
191
|
#
|
|
192
192
|
# @param parent [::String]
|
|
193
|
-
# Required. The resource name of the
|
|
194
|
-
# Must be of the form `
|
|
193
|
+
# Required. The resource name of the TagKey's parent.
|
|
194
|
+
# Must be of the form `organizations/{org_id}` or `projects/{project_id}` or
|
|
195
|
+
# `projects/{project_number}`
|
|
195
196
|
# @param page_size [::Integer]
|
|
196
197
|
# Optional. The maximum number of TagKeys to return in the response. The
|
|
197
198
|
# server allows a maximum of 300 TagKeys to return. If unspecified, the
|
|
@@ -83,7 +83,7 @@ module Google
|
|
|
83
83
|
# long-running operation pattern.
|
|
84
84
|
# @!attribute [rw] new_issue_uri
|
|
85
85
|
# @return [::String]
|
|
86
|
-
# Link to a
|
|
86
|
+
# Link to a *public* URI where users can report issues. Example:
|
|
87
87
|
# https://issuetracker.google.com/issues/new?component=190865&template=1161103
|
|
88
88
|
# @!attribute [rw] documentation_uri
|
|
89
89
|
# @return [::String]
|
|
@@ -353,6 +353,15 @@ module Google
|
|
|
353
353
|
|
|
354
354
|
# Street View Org.
|
|
355
355
|
STREET_VIEW = 4
|
|
356
|
+
|
|
357
|
+
# Shopping Org.
|
|
358
|
+
SHOPPING = 5
|
|
359
|
+
|
|
360
|
+
# Geo Org.
|
|
361
|
+
GEO = 6
|
|
362
|
+
|
|
363
|
+
# Generative AI - https://developers.generativeai.google
|
|
364
|
+
GENERATIVE_AI = 7
|
|
356
365
|
end
|
|
357
366
|
|
|
358
367
|
# To where should client libraries be published?
|
|
@@ -197,37 +197,31 @@ module Google
|
|
|
197
197
|
# included in the query, then it will return results that match any of the
|
|
198
198
|
# fields. Some eligible fields are:
|
|
199
199
|
#
|
|
200
|
-
#
|
|
201
|
-
#
|
|
202
|
-
#
|
|
203
|
-
#
|
|
204
|
-
#
|
|
205
|
-
#
|
|
206
|
-
#
|
|
207
|
-
#
|
|
208
|
-
#
|
|
209
|
-
#
|
|
210
|
-
#
|
|
211
|
-
# labels.\<key\> (where *key* is the name of a label) | Filters by label
|
|
212
|
-
# name.|
|
|
213
|
-
# ```
|
|
200
|
+
# - **`displayName`, `name`**: Filters by displayName.
|
|
201
|
+
# - **`parent`**: Project's parent (for example: `folders/123`,
|
|
202
|
+
# `organizations/*`). Prefer `parent` field over `parent.type` and
|
|
203
|
+
# `parent.id`.
|
|
204
|
+
# - **`parent.type`**: Parent's type: `folder` or `organization`.
|
|
205
|
+
# - **`parent.id`**: Parent's id number (for example: `123`).
|
|
206
|
+
# - **`id`, `projectId`**: Filters by projectId.
|
|
207
|
+
# - **`state`, `lifecycleState`**: Filters by state.
|
|
208
|
+
# - **`labels`**: Filters by label name or value.
|
|
209
|
+
# - **`labels.<key>` (where `<key>` is the name of a label)**: Filters by label
|
|
210
|
+
# name.
|
|
214
211
|
#
|
|
215
212
|
# Search expressions are case insensitive.
|
|
216
213
|
#
|
|
217
214
|
# Some examples queries:
|
|
218
215
|
#
|
|
219
|
-
#
|
|
220
|
-
#
|
|
221
|
-
#
|
|
222
|
-
#
|
|
223
|
-
#
|
|
224
|
-
#
|
|
225
|
-
#
|
|
226
|
-
#
|
|
227
|
-
#
|
|
228
|
-
# | labels.color:red labels.size:big | The project's label `color` has the
|
|
229
|
-
# value `red` or its label `size` has the value `big`. |
|
|
230
|
-
# ```
|
|
216
|
+
#
|
|
217
|
+
# - **`name:how*`**: The project's name starts with "how".
|
|
218
|
+
# - **`name:Howl`**: The project's name is `Howl` or `howl`.
|
|
219
|
+
# - **`name:HOWL`**: Equivalent to above.
|
|
220
|
+
# - **`NAME:howl`**: Equivalent to above.
|
|
221
|
+
# - **`labels.color:*`**: The project has the label `color`.
|
|
222
|
+
# - **`labels.color:red`**: The project's label `color` has the value `red`.
|
|
223
|
+
# - **`labels.color:red labels.size:big`**: The project's label `color` has
|
|
224
|
+
# the value `red` or its label `size` has the value `big`.
|
|
231
225
|
#
|
|
232
226
|
# If no query is specified, the call will return projects for which the user
|
|
233
227
|
# has the `resourcemanager.projects.get` permission.
|
|
@@ -181,22 +181,25 @@ module Google
|
|
|
181
181
|
# Resource name for TagValue in the format `tagValues/456`.
|
|
182
182
|
# @!attribute [rw] namespaced_tag_value
|
|
183
183
|
# @return [::String]
|
|
184
|
-
#
|
|
185
|
-
# `{organization_id}/{tag_key_short_name}/{tag_value_short_name}
|
|
186
|
-
#
|
|
184
|
+
# The namespaced name of the TagValue. Can be in the form
|
|
185
|
+
# `{organization_id}/{tag_key_short_name}/{tag_value_short_name}` or
|
|
186
|
+
# `{project_id}/{tag_key_short_name}/{tag_value_short_name}` or
|
|
187
|
+
# `{project_number}/{tag_key_short_name}/{tag_value_short_name}`.
|
|
187
188
|
# @!attribute [rw] tag_key
|
|
188
189
|
# @return [::String]
|
|
189
190
|
# The name of the TagKey, in the format `tagKeys/{id}`, such as
|
|
190
191
|
# `tagKeys/123`.
|
|
191
192
|
# @!attribute [rw] namespaced_tag_key
|
|
192
193
|
# @return [::String]
|
|
193
|
-
# The
|
|
194
|
-
# `{organization_id}/{tag_key_short_name}
|
|
195
|
-
#
|
|
194
|
+
# The namespaced name of the TagKey. Can be in the form
|
|
195
|
+
# `{organization_id}/{tag_key_short_name}` or
|
|
196
|
+
# `{project_id}/{tag_key_short_name}` or
|
|
197
|
+
# `{project_number}/{tag_key_short_name}`.
|
|
196
198
|
# @!attribute [rw] tag_key_parent_name
|
|
197
199
|
# @return [::String]
|
|
198
200
|
# The parent name of the tag key.
|
|
199
|
-
# Must be in the format `organizations/{organization_id}
|
|
201
|
+
# Must be in the format `organizations/{organization_id}` or
|
|
202
|
+
# `projects/{project_number}`
|
|
200
203
|
# @!attribute [rw] inherited
|
|
201
204
|
# @return [::Boolean]
|
|
202
205
|
# Indicates the inheritance status of a tag value
|
|
@@ -29,8 +29,11 @@ module Google
|
|
|
29
29
|
# the TagKey.
|
|
30
30
|
# @!attribute [rw] parent
|
|
31
31
|
# @return [::String]
|
|
32
|
-
# Immutable. The resource name of the
|
|
33
|
-
#
|
|
32
|
+
# Immutable. The resource name of the TagKey's parent. A TagKey can be
|
|
33
|
+
# parented by an Organization or a Project. For a TagKey parented by an
|
|
34
|
+
# Organization, its parent must be in the form `organizations/{org_id}`. For
|
|
35
|
+
# a TagKey parented by a Project, its parent can be in the form
|
|
36
|
+
# `projects/{project_id}` or `projects/{project_number}`.
|
|
34
37
|
# @!attribute [rw] short_name
|
|
35
38
|
# @return [::String]
|
|
36
39
|
# Required. Immutable. The user friendly name for a TagKey. The short name
|
|
@@ -91,8 +94,9 @@ module Google
|
|
|
91
94
|
# The request message for listing all TagKeys under a parent resource.
|
|
92
95
|
# @!attribute [rw] parent
|
|
93
96
|
# @return [::String]
|
|
94
|
-
# Required. The resource name of the
|
|
95
|
-
# Must be of the form `
|
|
97
|
+
# Required. The resource name of the TagKey's parent.
|
|
98
|
+
# Must be of the form `organizations/{org_id}` or `projects/{project_id}` or
|
|
99
|
+
# `projects/{project_number}`
|
|
96
100
|
# @!attribute [rw] page_size
|
|
97
101
|
# @return [::Integer]
|
|
98
102
|
# Optional. The maximum number of TagKeys to return in the response. The
|
|
@@ -222,15 +226,19 @@ module Google
|
|
|
222
226
|
PURPOSE_UNSPECIFIED = 0
|
|
223
227
|
|
|
224
228
|
# Purpose for Compute Engine firewalls.
|
|
225
|
-
# A corresponding purpose_data should be set for the network the tag is
|
|
226
|
-
# intended for. The key should be
|
|
229
|
+
# A corresponding `purpose_data` should be set for the network the tag is
|
|
230
|
+
# intended for. The key should be `network` and the value should be in
|
|
227
231
|
# either of these two formats:
|
|
228
|
-
#
|
|
229
|
-
#
|
|
232
|
+
#
|
|
233
|
+
# -
|
|
234
|
+
# `https://www.googleapis.com/compute/{compute_version}/projects/{project_id}/global/networks/{network_id}`
|
|
235
|
+
# - `{project_id}/{network_name}`
|
|
230
236
|
#
|
|
231
237
|
# Examples:
|
|
232
|
-
#
|
|
233
|
-
# -
|
|
238
|
+
#
|
|
239
|
+
# -
|
|
240
|
+
# `https://www.googleapis.com/compute/staging_v1/projects/fail-closed-load-testing/global/networks/6992953698831725600`
|
|
241
|
+
# - `fail-closed-load-testing/load-testing-network`
|
|
234
242
|
GCE_FIREWALL = 1
|
|
235
243
|
end
|
|
236
244
|
end
|
|
@@ -40,10 +40,10 @@ module Google
|
|
|
40
40
|
# dots (.), and alphanumerics between.
|
|
41
41
|
# @!attribute [r] namespaced_name
|
|
42
42
|
# @return [::String]
|
|
43
|
-
# Output only.
|
|
44
|
-
#
|
|
45
|
-
# `{
|
|
46
|
-
#
|
|
43
|
+
# Output only. The namespaced name of the TagValue. Can be in the form
|
|
44
|
+
# `{organization_id}/{tag_key_short_name}/{tag_value_short_name}` or
|
|
45
|
+
# `{project_id}/{tag_key_short_name}/{tag_value_short_name}` or
|
|
46
|
+
# `{project_number}/{tag_key_short_name}/{tag_value_short_name}`.
|
|
47
47
|
# @!attribute [rw] description
|
|
48
48
|
# @return [::String]
|
|
49
49
|
# Optional. User-assigned description of the TagValue.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-resource_manager-v3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.1
|
|
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
|
|
11
|
+
date: 2023-05-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gapic-common
|