google-apis-cloudresourcemanager_v1beta1 0.3.0 → 0.8.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_v1beta1.rb +1 -1
- data/lib/google/apis/cloudresourcemanager_v1beta1/classes.rb +245 -0
- data/lib/google/apis/cloudresourcemanager_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/cloudresourcemanager_v1beta1/representations.rb +176 -0
- 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: ad4aa5819590e296c239aae233c8a46365d3c2843c2901797f5d179e5d6a4830
|
4
|
+
data.tar.gz: 4fdbb1082c9466d46971ff3d9be4c654067b59e71984e06ec8cd8d810de0919d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f9690a308666e23256106ee1a192b53830cbc9c4517e93a1e5fd2428c7e03474195bce117d639a7942e29cb0462a89f89be497d2579f1a5e91c7c395fa8daac3
|
7
|
+
data.tar.gz: 03b9d4ea236a34906695f59dbd7fb1d64fb72c71924ec37515c1e60425becab4badedefba767d891831810faa1a0f9997065e9fbd0179567a5b0052b827ea08d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Release history for google-apis-cloudresourcemanager_v1beta1
|
2
2
|
|
3
|
+
### v0.8.0 (2021-05-19)
|
4
|
+
|
5
|
+
* Unspecified changes
|
6
|
+
|
7
|
+
### v0.7.0 (2021-04-08)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210331
|
10
|
+
|
11
|
+
### v0.6.0 (2021-04-02)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210328
|
14
|
+
|
15
|
+
### v0.5.0 (2021-03-19)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210314
|
18
|
+
* Regenerated using generator version 0.2.0
|
19
|
+
|
20
|
+
### v0.4.0 (2021-03-04)
|
21
|
+
|
22
|
+
* Unspecified changes
|
23
|
+
|
3
24
|
### v0.3.0 (2021-02-19)
|
4
25
|
|
5
26
|
* Regenerated from discovery document revision 20210215
|
@@ -30,7 +30,7 @@ module Google
|
|
30
30
|
# This is NOT the gem version.
|
31
31
|
VERSION = 'V1beta1'
|
32
32
|
|
33
|
-
#
|
33
|
+
# See, edit, configure, and delete your Google Cloud Platform data
|
34
34
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
35
35
|
|
36
36
|
# View your data across Google Cloud Platform services
|
@@ -264,6 +264,81 @@ module Google
|
|
264
264
|
end
|
265
265
|
end
|
266
266
|
|
267
|
+
# Metadata pertaining to the Folder creation process.
|
268
|
+
class CreateFolderMetadata
|
269
|
+
include Google::Apis::Core::Hashable
|
270
|
+
|
271
|
+
# The display name of the folder.
|
272
|
+
# Corresponds to the JSON property `displayName`
|
273
|
+
# @return [String]
|
274
|
+
attr_accessor :display_name
|
275
|
+
|
276
|
+
# The resource name of the folder or organization we are creating the folder
|
277
|
+
# under.
|
278
|
+
# Corresponds to the JSON property `parent`
|
279
|
+
# @return [String]
|
280
|
+
attr_accessor :parent
|
281
|
+
|
282
|
+
def initialize(**args)
|
283
|
+
update!(**args)
|
284
|
+
end
|
285
|
+
|
286
|
+
# Update properties of this object
|
287
|
+
def update!(**args)
|
288
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
289
|
+
@parent = args[:parent] if args.key?(:parent)
|
290
|
+
end
|
291
|
+
end
|
292
|
+
|
293
|
+
# A status object which is used as the `metadata` field for the Operation
|
294
|
+
# returned by CreateProject. It provides insight for when significant phases of
|
295
|
+
# Project creation have completed.
|
296
|
+
class CreateProjectMetadata
|
297
|
+
include Google::Apis::Core::Hashable
|
298
|
+
|
299
|
+
# Creation time of the project creation workflow.
|
300
|
+
# Corresponds to the JSON property `createTime`
|
301
|
+
# @return [String]
|
302
|
+
attr_accessor :create_time
|
303
|
+
|
304
|
+
# True if the project can be retrieved using `GetProject`. No other operations
|
305
|
+
# on the project are guaranteed to work until the project creation is complete.
|
306
|
+
# Corresponds to the JSON property `gettable`
|
307
|
+
# @return [Boolean]
|
308
|
+
attr_accessor :gettable
|
309
|
+
alias_method :gettable?, :gettable
|
310
|
+
|
311
|
+
# True if the project creation process is complete.
|
312
|
+
# Corresponds to the JSON property `ready`
|
313
|
+
# @return [Boolean]
|
314
|
+
attr_accessor :ready
|
315
|
+
alias_method :ready?, :ready
|
316
|
+
|
317
|
+
def initialize(**args)
|
318
|
+
update!(**args)
|
319
|
+
end
|
320
|
+
|
321
|
+
# Update properties of this object
|
322
|
+
def update!(**args)
|
323
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
324
|
+
@gettable = args[:gettable] if args.key?(:gettable)
|
325
|
+
@ready = args[:ready] if args.key?(:ready)
|
326
|
+
end
|
327
|
+
end
|
328
|
+
|
329
|
+
# Runtime operation information for creating a TagValue.
|
330
|
+
class CreateTagBindingMetadata
|
331
|
+
include Google::Apis::Core::Hashable
|
332
|
+
|
333
|
+
def initialize(**args)
|
334
|
+
update!(**args)
|
335
|
+
end
|
336
|
+
|
337
|
+
# Update properties of this object
|
338
|
+
def update!(**args)
|
339
|
+
end
|
340
|
+
end
|
341
|
+
|
267
342
|
# Runtime operation information for creating a TagKey.
|
268
343
|
class CreateTagKeyMetadata
|
269
344
|
include Google::Apis::Core::Hashable
|
@@ -290,6 +365,61 @@ module Google
|
|
290
365
|
end
|
291
366
|
end
|
292
367
|
|
368
|
+
# A status object which is used as the `metadata` field for the `Operation`
|
369
|
+
# returned by `DeleteFolder`.
|
370
|
+
class DeleteFolderMetadata
|
371
|
+
include Google::Apis::Core::Hashable
|
372
|
+
|
373
|
+
def initialize(**args)
|
374
|
+
update!(**args)
|
375
|
+
end
|
376
|
+
|
377
|
+
# Update properties of this object
|
378
|
+
def update!(**args)
|
379
|
+
end
|
380
|
+
end
|
381
|
+
|
382
|
+
# A status object which is used as the `metadata` field for the operation
|
383
|
+
# returned by DeleteOrganization.
|
384
|
+
class DeleteOrganizationMetadata
|
385
|
+
include Google::Apis::Core::Hashable
|
386
|
+
|
387
|
+
def initialize(**args)
|
388
|
+
update!(**args)
|
389
|
+
end
|
390
|
+
|
391
|
+
# Update properties of this object
|
392
|
+
def update!(**args)
|
393
|
+
end
|
394
|
+
end
|
395
|
+
|
396
|
+
# A status object which is used as the `metadata` field for the Operation
|
397
|
+
# returned by `DeleteProject`.
|
398
|
+
class DeleteProjectMetadata
|
399
|
+
include Google::Apis::Core::Hashable
|
400
|
+
|
401
|
+
def initialize(**args)
|
402
|
+
update!(**args)
|
403
|
+
end
|
404
|
+
|
405
|
+
# Update properties of this object
|
406
|
+
def update!(**args)
|
407
|
+
end
|
408
|
+
end
|
409
|
+
|
410
|
+
# Runtime operation information for deleting a TagBinding.
|
411
|
+
class DeleteTagBindingMetadata
|
412
|
+
include Google::Apis::Core::Hashable
|
413
|
+
|
414
|
+
def initialize(**args)
|
415
|
+
update!(**args)
|
416
|
+
end
|
417
|
+
|
418
|
+
# Update properties of this object
|
419
|
+
def update!(**args)
|
420
|
+
end
|
421
|
+
end
|
422
|
+
|
293
423
|
# Runtime operation information for deleting a TagKey.
|
294
424
|
class DeleteTagKeyMetadata
|
295
425
|
include Google::Apis::Core::Hashable
|
@@ -584,6 +714,51 @@ module Google
|
|
584
714
|
end
|
585
715
|
end
|
586
716
|
|
717
|
+
# Metadata pertaining to the folder move process.
|
718
|
+
class MoveFolderMetadata
|
719
|
+
include Google::Apis::Core::Hashable
|
720
|
+
|
721
|
+
# The resource name of the folder or organization to move the folder to.
|
722
|
+
# Corresponds to the JSON property `destinationParent`
|
723
|
+
# @return [String]
|
724
|
+
attr_accessor :destination_parent
|
725
|
+
|
726
|
+
# The display name of the folder.
|
727
|
+
# Corresponds to the JSON property `displayName`
|
728
|
+
# @return [String]
|
729
|
+
attr_accessor :display_name
|
730
|
+
|
731
|
+
# The resource name of the folder's parent.
|
732
|
+
# Corresponds to the JSON property `sourceParent`
|
733
|
+
# @return [String]
|
734
|
+
attr_accessor :source_parent
|
735
|
+
|
736
|
+
def initialize(**args)
|
737
|
+
update!(**args)
|
738
|
+
end
|
739
|
+
|
740
|
+
# Update properties of this object
|
741
|
+
def update!(**args)
|
742
|
+
@destination_parent = args[:destination_parent] if args.key?(:destination_parent)
|
743
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
744
|
+
@source_parent = args[:source_parent] if args.key?(:source_parent)
|
745
|
+
end
|
746
|
+
end
|
747
|
+
|
748
|
+
# A status object which is used as the `metadata` field for the Operation
|
749
|
+
# returned by MoveProject.
|
750
|
+
class MoveProjectMetadata
|
751
|
+
include Google::Apis::Core::Hashable
|
752
|
+
|
753
|
+
def initialize(**args)
|
754
|
+
update!(**args)
|
755
|
+
end
|
756
|
+
|
757
|
+
# Update properties of this object
|
758
|
+
def update!(**args)
|
759
|
+
end
|
760
|
+
end
|
761
|
+
|
587
762
|
# The root node in the resource hierarchy to which a particular entity's (e.g.,
|
588
763
|
# company) resources belong.
|
589
764
|
class Organization
|
@@ -984,6 +1159,48 @@ module Google
|
|
984
1159
|
end
|
985
1160
|
end
|
986
1161
|
|
1162
|
+
# A status object which is used as the `metadata` field for the `Operation`
|
1163
|
+
# returned by `UndeleteFolder`.
|
1164
|
+
class UndeleteFolderMetadata
|
1165
|
+
include Google::Apis::Core::Hashable
|
1166
|
+
|
1167
|
+
def initialize(**args)
|
1168
|
+
update!(**args)
|
1169
|
+
end
|
1170
|
+
|
1171
|
+
# Update properties of this object
|
1172
|
+
def update!(**args)
|
1173
|
+
end
|
1174
|
+
end
|
1175
|
+
|
1176
|
+
# A status object which is used as the `metadata` field for the Operation
|
1177
|
+
# returned by UndeleteOrganization.
|
1178
|
+
class UndeleteOrganizationMetadata
|
1179
|
+
include Google::Apis::Core::Hashable
|
1180
|
+
|
1181
|
+
def initialize(**args)
|
1182
|
+
update!(**args)
|
1183
|
+
end
|
1184
|
+
|
1185
|
+
# Update properties of this object
|
1186
|
+
def update!(**args)
|
1187
|
+
end
|
1188
|
+
end
|
1189
|
+
|
1190
|
+
# A status object which is used as the `metadata` field for the Operation
|
1191
|
+
# returned by `UndeleteProject`.
|
1192
|
+
class UndeleteProjectMetadata
|
1193
|
+
include Google::Apis::Core::Hashable
|
1194
|
+
|
1195
|
+
def initialize(**args)
|
1196
|
+
update!(**args)
|
1197
|
+
end
|
1198
|
+
|
1199
|
+
# Update properties of this object
|
1200
|
+
def update!(**args)
|
1201
|
+
end
|
1202
|
+
end
|
1203
|
+
|
987
1204
|
# The request sent to the UndeleteProject method.
|
988
1205
|
class UndeleteProjectRequest
|
989
1206
|
include Google::Apis::Core::Hashable
|
@@ -997,6 +1214,34 @@ module Google
|
|
997
1214
|
end
|
998
1215
|
end
|
999
1216
|
|
1217
|
+
# A status object which is used as the `metadata` field for the Operation
|
1218
|
+
# returned by UpdateFolder.
|
1219
|
+
class UpdateFolderMetadata
|
1220
|
+
include Google::Apis::Core::Hashable
|
1221
|
+
|
1222
|
+
def initialize(**args)
|
1223
|
+
update!(**args)
|
1224
|
+
end
|
1225
|
+
|
1226
|
+
# Update properties of this object
|
1227
|
+
def update!(**args)
|
1228
|
+
end
|
1229
|
+
end
|
1230
|
+
|
1231
|
+
# A status object which is used as the `metadata` field for the Operation
|
1232
|
+
# returned by UpdateProject.
|
1233
|
+
class UpdateProjectMetadata
|
1234
|
+
include Google::Apis::Core::Hashable
|
1235
|
+
|
1236
|
+
def initialize(**args)
|
1237
|
+
update!(**args)
|
1238
|
+
end
|
1239
|
+
|
1240
|
+
# Update properties of this object
|
1241
|
+
def update!(**args)
|
1242
|
+
end
|
1243
|
+
end
|
1244
|
+
|
1000
1245
|
# Runtime operation information for updating a TagKey.
|
1001
1246
|
class UpdateTagKeyMetadata
|
1002
1247
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudresourcemanagerV1beta1
|
18
18
|
# Version of the google-apis-cloudresourcemanager_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.8.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210331"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -58,6 +58,24 @@ module Google
|
|
58
58
|
include Google::Apis::Core::JsonObjectSupport
|
59
59
|
end
|
60
60
|
|
61
|
+
class CreateFolderMetadata
|
62
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
|
+
|
64
|
+
include Google::Apis::Core::JsonObjectSupport
|
65
|
+
end
|
66
|
+
|
67
|
+
class CreateProjectMetadata
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
+
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
71
|
+
end
|
72
|
+
|
73
|
+
class CreateTagBindingMetadata
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
61
79
|
class CreateTagKeyMetadata
|
62
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
81
|
|
@@ -70,6 +88,30 @@ module Google
|
|
70
88
|
include Google::Apis::Core::JsonObjectSupport
|
71
89
|
end
|
72
90
|
|
91
|
+
class DeleteFolderMetadata
|
92
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
|
+
|
94
|
+
include Google::Apis::Core::JsonObjectSupport
|
95
|
+
end
|
96
|
+
|
97
|
+
class DeleteOrganizationMetadata
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
+
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
101
|
+
end
|
102
|
+
|
103
|
+
class DeleteProjectMetadata
|
104
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
|
+
|
106
|
+
include Google::Apis::Core::JsonObjectSupport
|
107
|
+
end
|
108
|
+
|
109
|
+
class DeleteTagBindingMetadata
|
110
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
|
+
|
112
|
+
include Google::Apis::Core::JsonObjectSupport
|
113
|
+
end
|
114
|
+
|
73
115
|
class DeleteTagKeyMetadata
|
74
116
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
117
|
|
@@ -142,6 +184,18 @@ module Google
|
|
142
184
|
include Google::Apis::Core::JsonObjectSupport
|
143
185
|
end
|
144
186
|
|
187
|
+
class MoveFolderMetadata
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
+
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
191
|
+
end
|
192
|
+
|
193
|
+
class MoveProjectMetadata
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
145
199
|
class Organization
|
146
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
201
|
|
@@ -196,12 +250,42 @@ module Google
|
|
196
250
|
include Google::Apis::Core::JsonObjectSupport
|
197
251
|
end
|
198
252
|
|
253
|
+
class UndeleteFolderMetadata
|
254
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
|
+
|
256
|
+
include Google::Apis::Core::JsonObjectSupport
|
257
|
+
end
|
258
|
+
|
259
|
+
class UndeleteOrganizationMetadata
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
|
+
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
263
|
+
end
|
264
|
+
|
265
|
+
class UndeleteProjectMetadata
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
|
+
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
269
|
+
end
|
270
|
+
|
199
271
|
class UndeleteProjectRequest
|
200
272
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
273
|
|
202
274
|
include Google::Apis::Core::JsonObjectSupport
|
203
275
|
end
|
204
276
|
|
277
|
+
class UpdateFolderMetadata
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
|
+
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
281
|
+
end
|
282
|
+
|
283
|
+
class UpdateProjectMetadata
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
+
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
287
|
+
end
|
288
|
+
|
205
289
|
class UpdateTagKeyMetadata
|
206
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
291
|
|
@@ -269,6 +353,29 @@ module Google
|
|
269
353
|
end
|
270
354
|
end
|
271
355
|
|
356
|
+
class CreateFolderMetadata
|
357
|
+
# @private
|
358
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
359
|
+
property :display_name, as: 'displayName'
|
360
|
+
property :parent, as: 'parent'
|
361
|
+
end
|
362
|
+
end
|
363
|
+
|
364
|
+
class CreateProjectMetadata
|
365
|
+
# @private
|
366
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
367
|
+
property :create_time, as: 'createTime'
|
368
|
+
property :gettable, as: 'gettable'
|
369
|
+
property :ready, as: 'ready'
|
370
|
+
end
|
371
|
+
end
|
372
|
+
|
373
|
+
class CreateTagBindingMetadata
|
374
|
+
# @private
|
375
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
376
|
+
end
|
377
|
+
end
|
378
|
+
|
272
379
|
class CreateTagKeyMetadata
|
273
380
|
# @private
|
274
381
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -281,6 +388,30 @@ module Google
|
|
281
388
|
end
|
282
389
|
end
|
283
390
|
|
391
|
+
class DeleteFolderMetadata
|
392
|
+
# @private
|
393
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
394
|
+
end
|
395
|
+
end
|
396
|
+
|
397
|
+
class DeleteOrganizationMetadata
|
398
|
+
# @private
|
399
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
400
|
+
end
|
401
|
+
end
|
402
|
+
|
403
|
+
class DeleteProjectMetadata
|
404
|
+
# @private
|
405
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
406
|
+
end
|
407
|
+
end
|
408
|
+
|
409
|
+
class DeleteTagBindingMetadata
|
410
|
+
# @private
|
411
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
412
|
+
end
|
413
|
+
end
|
414
|
+
|
284
415
|
class DeleteTagKeyMetadata
|
285
416
|
# @private
|
286
417
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -373,6 +504,21 @@ module Google
|
|
373
504
|
end
|
374
505
|
end
|
375
506
|
|
507
|
+
class MoveFolderMetadata
|
508
|
+
# @private
|
509
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
510
|
+
property :destination_parent, as: 'destinationParent'
|
511
|
+
property :display_name, as: 'displayName'
|
512
|
+
property :source_parent, as: 'sourceParent'
|
513
|
+
end
|
514
|
+
end
|
515
|
+
|
516
|
+
class MoveProjectMetadata
|
517
|
+
# @private
|
518
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
519
|
+
end
|
520
|
+
end
|
521
|
+
|
376
522
|
class Organization
|
377
523
|
# @private
|
378
524
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -459,12 +605,42 @@ module Google
|
|
459
605
|
end
|
460
606
|
end
|
461
607
|
|
608
|
+
class UndeleteFolderMetadata
|
609
|
+
# @private
|
610
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
611
|
+
end
|
612
|
+
end
|
613
|
+
|
614
|
+
class UndeleteOrganizationMetadata
|
615
|
+
# @private
|
616
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
617
|
+
end
|
618
|
+
end
|
619
|
+
|
620
|
+
class UndeleteProjectMetadata
|
621
|
+
# @private
|
622
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
623
|
+
end
|
624
|
+
end
|
625
|
+
|
462
626
|
class UndeleteProjectRequest
|
463
627
|
# @private
|
464
628
|
class Representation < Google::Apis::Core::JsonRepresentation
|
465
629
|
end
|
466
630
|
end
|
467
631
|
|
632
|
+
class UpdateFolderMetadata
|
633
|
+
# @private
|
634
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
635
|
+
end
|
636
|
+
end
|
637
|
+
|
638
|
+
class UpdateProjectMetadata
|
639
|
+
# @private
|
640
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
641
|
+
end
|
642
|
+
end
|
643
|
+
|
468
644
|
class UpdateTagKeyMetadata
|
469
645
|
# @private
|
470
646
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudresourcemanager_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.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-05-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudresourcemanager_v1beta1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v1beta1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v1beta1/v0.8.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudresourcemanager_v1beta1
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|
@@ -62,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
62
62
|
requirements:
|
63
63
|
- - ">="
|
64
64
|
- !ruby/object:Gem::Version
|
65
|
-
version: '2.
|
65
|
+
version: '2.5'
|
66
66
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
67
|
requirements:
|
68
68
|
- - ">="
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
72
|
+
rubygems_version: 3.2.17
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Cloud Resource Manager API V1beta1
|