google-apis-cloudresourcemanager_v3 0.7.0 → 0.12.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 +21 -0
- data/lib/google/apis/cloudresourcemanager_v3/classes.rb +27 -2
- data/lib/google/apis/cloudresourcemanager_v3/gem_version.rb +3 -3
- data/lib/google/apis/cloudresourcemanager_v3/representations.rb +24 -0
- data/lib/google/apis/cloudresourcemanager_v3/service.rb +16 -14
- metadata +14 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 70e14ea936bad2d09778aba90e18a2738ccff61895265fa3d18155f8a49aaca7
|
4
|
+
data.tar.gz: 4f482bbc9fa9242ee55c024fc5c92df5ad87f069ac9492b7f7928016a3bba38c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd19ac5f43ee1f3e19ad4954073821047b7bfd9da059869632cd3ba79e1c9153fdde8d12785ac4bd88f77d8a3629e16cc161a73197d8e7bc8fac648cae35c19f
|
7
|
+
data.tar.gz: fd8dc73357f420bd8d30e16bb22167174436c3c07e448ec80d1ae7d42bff01f01558b8a95351e3f2e181c4f89e4aae550adf8123d79bd573e1de00e884520a8e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Release history for google-apis-cloudresourcemanager_v3
|
2
2
|
|
3
|
+
### v0.12.0 (2021-06-29)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.4.0
|
6
|
+
|
7
|
+
### v0.11.0 (2021-06-24)
|
8
|
+
|
9
|
+
* Unspecified changes
|
10
|
+
|
11
|
+
### v0.10.0 (2021-06-03)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210601
|
14
|
+
* Regenerated using generator version 0.3.0
|
15
|
+
|
16
|
+
### v0.9.0 (2021-05-19)
|
17
|
+
|
18
|
+
* Unspecified changes
|
19
|
+
|
20
|
+
### v0.8.0 (2021-04-20)
|
21
|
+
|
22
|
+
* Regenerated from discovery document revision 20210411
|
23
|
+
|
3
24
|
### v0.7.0 (2021-04-02)
|
4
25
|
|
5
26
|
* Regenerated from discovery document revision 20210328
|
@@ -304,6 +304,19 @@ module Google
|
|
304
304
|
end
|
305
305
|
end
|
306
306
|
|
307
|
+
# Runtime operation information for creating a TagValue.
|
308
|
+
class CreateTagBindingMetadata
|
309
|
+
include Google::Apis::Core::Hashable
|
310
|
+
|
311
|
+
def initialize(**args)
|
312
|
+
update!(**args)
|
313
|
+
end
|
314
|
+
|
315
|
+
# Update properties of this object
|
316
|
+
def update!(**args)
|
317
|
+
end
|
318
|
+
end
|
319
|
+
|
307
320
|
# Runtime operation information for creating a TagKey.
|
308
321
|
class CreateTagKeyMetadata
|
309
322
|
include Google::Apis::Core::Hashable
|
@@ -372,6 +385,19 @@ module Google
|
|
372
385
|
end
|
373
386
|
end
|
374
387
|
|
388
|
+
# Runtime operation information for deleting a TagBinding.
|
389
|
+
class DeleteTagBindingMetadata
|
390
|
+
include Google::Apis::Core::Hashable
|
391
|
+
|
392
|
+
def initialize(**args)
|
393
|
+
update!(**args)
|
394
|
+
end
|
395
|
+
|
396
|
+
# Update properties of this object
|
397
|
+
def update!(**args)
|
398
|
+
end
|
399
|
+
end
|
400
|
+
|
375
401
|
# Runtime operation information for deleting a TagKey.
|
376
402
|
class DeleteTagKeyMetadata
|
377
403
|
include Google::Apis::Core::Hashable
|
@@ -802,8 +828,7 @@ module Google
|
|
802
828
|
# @return [String]
|
803
829
|
attr_accessor :next_page_token
|
804
830
|
|
805
|
-
# A possibly paginated list of TagBindings for the specified
|
806
|
-
# resource.
|
831
|
+
# A possibly paginated list of TagBindings for the specified resource.
|
807
832
|
# Corresponds to the JSON property `tagBindings`
|
808
833
|
# @return [Array<Google::Apis::CloudresourcemanagerV3::TagBinding>]
|
809
834
|
attr_accessor :tag_bindings
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudresourcemanagerV3
|
18
18
|
# Version of the google-apis-cloudresourcemanager_v3 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.12.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210601"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -64,6 +64,12 @@ module Google
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
65
65
|
end
|
66
66
|
|
67
|
+
class CreateTagBindingMetadata
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
+
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
71
|
+
end
|
72
|
+
|
67
73
|
class CreateTagKeyMetadata
|
68
74
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
75
|
|
@@ -94,6 +100,12 @@ module Google
|
|
94
100
|
include Google::Apis::Core::JsonObjectSupport
|
95
101
|
end
|
96
102
|
|
103
|
+
class DeleteTagBindingMetadata
|
104
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
|
+
|
106
|
+
include Google::Apis::Core::JsonObjectSupport
|
107
|
+
end
|
108
|
+
|
97
109
|
class DeleteTagKeyMetadata
|
98
110
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
111
|
|
@@ -422,6 +434,12 @@ module Google
|
|
422
434
|
end
|
423
435
|
end
|
424
436
|
|
437
|
+
class CreateTagBindingMetadata
|
438
|
+
# @private
|
439
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
440
|
+
end
|
441
|
+
end
|
442
|
+
|
425
443
|
class CreateTagKeyMetadata
|
426
444
|
# @private
|
427
445
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -452,6 +470,12 @@ module Google
|
|
452
470
|
end
|
453
471
|
end
|
454
472
|
|
473
|
+
class DeleteTagBindingMetadata
|
474
|
+
# @private
|
475
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
476
|
+
end
|
477
|
+
end
|
478
|
+
|
455
479
|
class DeleteTagKeyMetadata
|
456
480
|
# @private
|
457
481
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1078,7 +1078,9 @@ module Google
|
|
1078
1078
|
# will be populated with the moved project. The caller must have `
|
1079
1079
|
# resourcemanager.projects.update` permission on the project and have `
|
1080
1080
|
# resourcemanager.projects.move` permission on the project's current and
|
1081
|
-
# proposed new parent.
|
1081
|
+
# proposed new parent. If project has no current parent, or it currently does
|
1082
|
+
# not have an associated organization resource, you will also need the `
|
1083
|
+
# resourcemanager.projects.setIamPolicy` permission in the project.
|
1082
1084
|
# @param [String] name
|
1083
1085
|
# Required. The name of the project to move.
|
1084
1086
|
# @param [Google::Apis::CloudresourcemanagerV3::MoveProjectRequest] move_project_request_object
|
@@ -1171,22 +1173,22 @@ module Google
|
|
1171
1173
|
# in the query, the it will return results that match any of the fields. Some
|
1172
1174
|
# eligible fields are: | Field | Description | |-------------------------|-------
|
1173
1175
|
# ---------------------------------------| | displayName, name | Filters by
|
1174
|
-
# displayName. | | parent | Project's parent
|
1175
|
-
# organizations/*) Prefer parent field over parent.type and parent.id
|
1176
|
+
# displayName. | | parent | Project's parent (for example: folders/123,
|
1177
|
+
# organizations/*). Prefer parent field over parent.type and parent.id.| |
|
1176
1178
|
# parent.type | Parent's type: `folder` or `organization`. | | parent.id |
|
1177
1179
|
# Parent's id number (for example: 123) | | id, projectId | Filters by projectId.
|
1178
1180
|
# | | state, lifecycleState | Filters by state. | | labels | Filters by label
|
1179
|
-
# name or value. | | labels
|
1180
|
-
# label name
|
1181
|
-
# Query | Description |
|
1182
|
-
#
|
1183
|
-
#
|
1184
|
-
#
|
1185
|
-
#
|
1186
|
-
#
|
1187
|
-
#
|
1188
|
-
#
|
1189
|
-
#
|
1181
|
+
# name or value. | | labels.\ (where *key* is the name of a label) | Filters by
|
1182
|
+
# label name.| Search expressions are case insensitive. Some examples queries: |
|
1183
|
+
# Query | Description | |------------------|-------------------------------------
|
1184
|
+
# ----------------| | name:how* | The project's name starts with "how". | | name:
|
1185
|
+
# Howl | The project's name is `Howl` or `howl`. | | name:HOWL | Equivalent to
|
1186
|
+
# above. | | NAME:howl | Equivalent to above. | | labels.color:* | The project
|
1187
|
+
# has the label `color`. | | labels.color:red | The project's label `color` has
|
1188
|
+
# the value `red`. | | labels.color:red labels.size:big | The project's label `
|
1189
|
+
# color` has the value `red` and its label `size` has the value `big`.| If no
|
1190
|
+
# query is specified, the call will return projects for which the user has the `
|
1191
|
+
# resourcemanager.projects.get` permission.
|
1190
1192
|
# @param [String] fields
|
1191
1193
|
# Selector specifying which fields to include in a partial response.
|
1192
1194
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudresourcemanager_v3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.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: 2021-
|
11
|
+
date: 2021-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.4'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Cloud Resource Manager API V3. Simple
|
28
34
|
REST clients are Ruby client libraries that provide access to Google services via
|
29
35
|
their HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudresourcemanager_v3/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v3/v0.12.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudresourcemanager_v3
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|
@@ -69,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
75
|
- !ruby/object:Gem::Version
|
70
76
|
version: '0'
|
71
77
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
78
|
+
rubygems_version: 3.2.17
|
73
79
|
signing_key:
|
74
80
|
specification_version: 4
|
75
81
|
summary: Simple REST client for Cloud Resource Manager API V3
|