google-apis-cloudresourcemanager_v1beta1 0.4.0 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/google/apis/cloudresourcemanager_v1beta1.rb +1 -1
- data/lib/google/apis/cloudresourcemanager_v1beta1/classes.rb +219 -0
- data/lib/google/apis/cloudresourcemanager_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/cloudresourcemanager_v1beta1/representations.rb +152 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 69ed81683caf45f44fd1d625f1179a432ee2cef34236c5d12aa4a3fbd6f87e82
|
4
|
+
data.tar.gz: dd9e27cdb725f33b3a91abd73a33df97192e55c38c2bfe2c20073cabb13bd04d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c62bf037d04b7ac2b82cf557de28500706600cdbcd20d582ee3197badf1b7f4c41aba6626cea5a5f1e48eeba1f5165c2cf6b4701ccf4cc956dc310493d9ed231
|
7
|
+
data.tar.gz: a2a5575c234177a9d5f8160ddb5e203b8756a74ea7ffbb5ab2bdf18423d29309d4d7dcb66c880ed22e47a21c7fa09e6dc952a0e51f96c3ea229a502d0e8712c0
|
data/CHANGELOG.md
CHANGED
@@ -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,68 @@ 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 on
|
305
|
+
# 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
|
+
|
267
329
|
# Runtime operation information for creating a TagKey.
|
268
330
|
class CreateTagKeyMetadata
|
269
331
|
include Google::Apis::Core::Hashable
|
@@ -290,6 +352,48 @@ module Google
|
|
290
352
|
end
|
291
353
|
end
|
292
354
|
|
355
|
+
# A status object which is used as the `metadata` field for the Operation
|
356
|
+
# returned by DeleteFolder.
|
357
|
+
class DeleteFolderMetadata
|
358
|
+
include Google::Apis::Core::Hashable
|
359
|
+
|
360
|
+
def initialize(**args)
|
361
|
+
update!(**args)
|
362
|
+
end
|
363
|
+
|
364
|
+
# Update properties of this object
|
365
|
+
def update!(**args)
|
366
|
+
end
|
367
|
+
end
|
368
|
+
|
369
|
+
# A status object which is used as the `metadata` field for the Operation
|
370
|
+
# returned by DeleteOrganization.
|
371
|
+
class DeleteOrganizationMetadata
|
372
|
+
include Google::Apis::Core::Hashable
|
373
|
+
|
374
|
+
def initialize(**args)
|
375
|
+
update!(**args)
|
376
|
+
end
|
377
|
+
|
378
|
+
# Update properties of this object
|
379
|
+
def update!(**args)
|
380
|
+
end
|
381
|
+
end
|
382
|
+
|
383
|
+
# A status object which is used as the `metadata` field for the Operation
|
384
|
+
# returned by DeleteProject.
|
385
|
+
class DeleteProjectMetadata
|
386
|
+
include Google::Apis::Core::Hashable
|
387
|
+
|
388
|
+
def initialize(**args)
|
389
|
+
update!(**args)
|
390
|
+
end
|
391
|
+
|
392
|
+
# Update properties of this object
|
393
|
+
def update!(**args)
|
394
|
+
end
|
395
|
+
end
|
396
|
+
|
293
397
|
# Runtime operation information for deleting a TagKey.
|
294
398
|
class DeleteTagKeyMetadata
|
295
399
|
include Google::Apis::Core::Hashable
|
@@ -584,6 +688,51 @@ module Google
|
|
584
688
|
end
|
585
689
|
end
|
586
690
|
|
691
|
+
# Metadata pertaining to the Folder move process.
|
692
|
+
class MoveFolderMetadata
|
693
|
+
include Google::Apis::Core::Hashable
|
694
|
+
|
695
|
+
# The resource name of the folder or organization to move the folder to.
|
696
|
+
# Corresponds to the JSON property `destinationParent`
|
697
|
+
# @return [String]
|
698
|
+
attr_accessor :destination_parent
|
699
|
+
|
700
|
+
# The display name of the folder.
|
701
|
+
# Corresponds to the JSON property `displayName`
|
702
|
+
# @return [String]
|
703
|
+
attr_accessor :display_name
|
704
|
+
|
705
|
+
# The resource name of the folder's parent.
|
706
|
+
# Corresponds to the JSON property `sourceParent`
|
707
|
+
# @return [String]
|
708
|
+
attr_accessor :source_parent
|
709
|
+
|
710
|
+
def initialize(**args)
|
711
|
+
update!(**args)
|
712
|
+
end
|
713
|
+
|
714
|
+
# Update properties of this object
|
715
|
+
def update!(**args)
|
716
|
+
@destination_parent = args[:destination_parent] if args.key?(:destination_parent)
|
717
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
718
|
+
@source_parent = args[:source_parent] if args.key?(:source_parent)
|
719
|
+
end
|
720
|
+
end
|
721
|
+
|
722
|
+
# A status object which is used as the `metadata` field for the Operation
|
723
|
+
# returned by MoveProject.
|
724
|
+
class MoveProjectMetadata
|
725
|
+
include Google::Apis::Core::Hashable
|
726
|
+
|
727
|
+
def initialize(**args)
|
728
|
+
update!(**args)
|
729
|
+
end
|
730
|
+
|
731
|
+
# Update properties of this object
|
732
|
+
def update!(**args)
|
733
|
+
end
|
734
|
+
end
|
735
|
+
|
587
736
|
# The root node in the resource hierarchy to which a particular entity's (e.g.,
|
588
737
|
# company) resources belong.
|
589
738
|
class Organization
|
@@ -984,6 +1133,48 @@ module Google
|
|
984
1133
|
end
|
985
1134
|
end
|
986
1135
|
|
1136
|
+
# A status object which is used as the `metadata` field for the Operation
|
1137
|
+
# returned by UndeleteFolder.
|
1138
|
+
class UndeleteFolderMetadata
|
1139
|
+
include Google::Apis::Core::Hashable
|
1140
|
+
|
1141
|
+
def initialize(**args)
|
1142
|
+
update!(**args)
|
1143
|
+
end
|
1144
|
+
|
1145
|
+
# Update properties of this object
|
1146
|
+
def update!(**args)
|
1147
|
+
end
|
1148
|
+
end
|
1149
|
+
|
1150
|
+
# A status object which is used as the `metadata` field for the Operation
|
1151
|
+
# returned by UndeleteOrganization.
|
1152
|
+
class UndeleteOrganizationMetadata
|
1153
|
+
include Google::Apis::Core::Hashable
|
1154
|
+
|
1155
|
+
def initialize(**args)
|
1156
|
+
update!(**args)
|
1157
|
+
end
|
1158
|
+
|
1159
|
+
# Update properties of this object
|
1160
|
+
def update!(**args)
|
1161
|
+
end
|
1162
|
+
end
|
1163
|
+
|
1164
|
+
# A status object which is used as the `metadata` field for the Operation
|
1165
|
+
# returned by UndeleteProject.
|
1166
|
+
class UndeleteProjectMetadata
|
1167
|
+
include Google::Apis::Core::Hashable
|
1168
|
+
|
1169
|
+
def initialize(**args)
|
1170
|
+
update!(**args)
|
1171
|
+
end
|
1172
|
+
|
1173
|
+
# Update properties of this object
|
1174
|
+
def update!(**args)
|
1175
|
+
end
|
1176
|
+
end
|
1177
|
+
|
987
1178
|
# The request sent to the UndeleteProject method.
|
988
1179
|
class UndeleteProjectRequest
|
989
1180
|
include Google::Apis::Core::Hashable
|
@@ -997,6 +1188,34 @@ module Google
|
|
997
1188
|
end
|
998
1189
|
end
|
999
1190
|
|
1191
|
+
# A status object which is used as the `metadata` field for the Operation
|
1192
|
+
# returned by UpdateFolder.
|
1193
|
+
class UpdateFolderMetadata
|
1194
|
+
include Google::Apis::Core::Hashable
|
1195
|
+
|
1196
|
+
def initialize(**args)
|
1197
|
+
update!(**args)
|
1198
|
+
end
|
1199
|
+
|
1200
|
+
# Update properties of this object
|
1201
|
+
def update!(**args)
|
1202
|
+
end
|
1203
|
+
end
|
1204
|
+
|
1205
|
+
# A status object which is used as the `metadata` field for the Operation
|
1206
|
+
# returned by UpdateProject.
|
1207
|
+
class UpdateProjectMetadata
|
1208
|
+
include Google::Apis::Core::Hashable
|
1209
|
+
|
1210
|
+
def initialize(**args)
|
1211
|
+
update!(**args)
|
1212
|
+
end
|
1213
|
+
|
1214
|
+
# Update properties of this object
|
1215
|
+
def update!(**args)
|
1216
|
+
end
|
1217
|
+
end
|
1218
|
+
|
1000
1219
|
# Runtime operation information for updating a TagKey.
|
1001
1220
|
class UpdateTagKeyMetadata
|
1002
1221
|
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.5.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 = "20210314"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -58,6 +58,18 @@ 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
|
+
|
61
73
|
class CreateTagKeyMetadata
|
62
74
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
75
|
|
@@ -70,6 +82,24 @@ module Google
|
|
70
82
|
include Google::Apis::Core::JsonObjectSupport
|
71
83
|
end
|
72
84
|
|
85
|
+
class DeleteFolderMetadata
|
86
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
|
+
|
88
|
+
include Google::Apis::Core::JsonObjectSupport
|
89
|
+
end
|
90
|
+
|
91
|
+
class DeleteOrganizationMetadata
|
92
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
|
+
|
94
|
+
include Google::Apis::Core::JsonObjectSupport
|
95
|
+
end
|
96
|
+
|
97
|
+
class DeleteProjectMetadata
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
+
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
101
|
+
end
|
102
|
+
|
73
103
|
class DeleteTagKeyMetadata
|
74
104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
105
|
|
@@ -142,6 +172,18 @@ module Google
|
|
142
172
|
include Google::Apis::Core::JsonObjectSupport
|
143
173
|
end
|
144
174
|
|
175
|
+
class MoveFolderMetadata
|
176
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
|
+
|
178
|
+
include Google::Apis::Core::JsonObjectSupport
|
179
|
+
end
|
180
|
+
|
181
|
+
class MoveProjectMetadata
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
|
+
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
185
|
+
end
|
186
|
+
|
145
187
|
class Organization
|
146
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
189
|
|
@@ -196,12 +238,42 @@ module Google
|
|
196
238
|
include Google::Apis::Core::JsonObjectSupport
|
197
239
|
end
|
198
240
|
|
241
|
+
class UndeleteFolderMetadata
|
242
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
|
+
|
244
|
+
include Google::Apis::Core::JsonObjectSupport
|
245
|
+
end
|
246
|
+
|
247
|
+
class UndeleteOrganizationMetadata
|
248
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
|
+
|
250
|
+
include Google::Apis::Core::JsonObjectSupport
|
251
|
+
end
|
252
|
+
|
253
|
+
class UndeleteProjectMetadata
|
254
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
|
+
|
256
|
+
include Google::Apis::Core::JsonObjectSupport
|
257
|
+
end
|
258
|
+
|
199
259
|
class UndeleteProjectRequest
|
200
260
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
261
|
|
202
262
|
include Google::Apis::Core::JsonObjectSupport
|
203
263
|
end
|
204
264
|
|
265
|
+
class UpdateFolderMetadata
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
|
+
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
269
|
+
end
|
270
|
+
|
271
|
+
class UpdateProjectMetadata
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
+
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
275
|
+
end
|
276
|
+
|
205
277
|
class UpdateTagKeyMetadata
|
206
278
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
279
|
|
@@ -269,6 +341,23 @@ module Google
|
|
269
341
|
end
|
270
342
|
end
|
271
343
|
|
344
|
+
class CreateFolderMetadata
|
345
|
+
# @private
|
346
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
347
|
+
property :display_name, as: 'displayName'
|
348
|
+
property :parent, as: 'parent'
|
349
|
+
end
|
350
|
+
end
|
351
|
+
|
352
|
+
class CreateProjectMetadata
|
353
|
+
# @private
|
354
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
355
|
+
property :create_time, as: 'createTime'
|
356
|
+
property :gettable, as: 'gettable'
|
357
|
+
property :ready, as: 'ready'
|
358
|
+
end
|
359
|
+
end
|
360
|
+
|
272
361
|
class CreateTagKeyMetadata
|
273
362
|
# @private
|
274
363
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -281,6 +370,24 @@ module Google
|
|
281
370
|
end
|
282
371
|
end
|
283
372
|
|
373
|
+
class DeleteFolderMetadata
|
374
|
+
# @private
|
375
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
376
|
+
end
|
377
|
+
end
|
378
|
+
|
379
|
+
class DeleteOrganizationMetadata
|
380
|
+
# @private
|
381
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
382
|
+
end
|
383
|
+
end
|
384
|
+
|
385
|
+
class DeleteProjectMetadata
|
386
|
+
# @private
|
387
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
388
|
+
end
|
389
|
+
end
|
390
|
+
|
284
391
|
class DeleteTagKeyMetadata
|
285
392
|
# @private
|
286
393
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -373,6 +480,21 @@ module Google
|
|
373
480
|
end
|
374
481
|
end
|
375
482
|
|
483
|
+
class MoveFolderMetadata
|
484
|
+
# @private
|
485
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
486
|
+
property :destination_parent, as: 'destinationParent'
|
487
|
+
property :display_name, as: 'displayName'
|
488
|
+
property :source_parent, as: 'sourceParent'
|
489
|
+
end
|
490
|
+
end
|
491
|
+
|
492
|
+
class MoveProjectMetadata
|
493
|
+
# @private
|
494
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
495
|
+
end
|
496
|
+
end
|
497
|
+
|
376
498
|
class Organization
|
377
499
|
# @private
|
378
500
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -459,12 +581,42 @@ module Google
|
|
459
581
|
end
|
460
582
|
end
|
461
583
|
|
584
|
+
class UndeleteFolderMetadata
|
585
|
+
# @private
|
586
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
587
|
+
end
|
588
|
+
end
|
589
|
+
|
590
|
+
class UndeleteOrganizationMetadata
|
591
|
+
# @private
|
592
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
593
|
+
end
|
594
|
+
end
|
595
|
+
|
596
|
+
class UndeleteProjectMetadata
|
597
|
+
# @private
|
598
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
599
|
+
end
|
600
|
+
end
|
601
|
+
|
462
602
|
class UndeleteProjectRequest
|
463
603
|
# @private
|
464
604
|
class Representation < Google::Apis::Core::JsonRepresentation
|
465
605
|
end
|
466
606
|
end
|
467
607
|
|
608
|
+
class UpdateFolderMetadata
|
609
|
+
# @private
|
610
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
611
|
+
end
|
612
|
+
end
|
613
|
+
|
614
|
+
class UpdateProjectMetadata
|
615
|
+
# @private
|
616
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
617
|
+
end
|
618
|
+
end
|
619
|
+
|
468
620
|
class UpdateTagKeyMetadata
|
469
621
|
# @private
|
470
622
|
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.5.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-03-
|
11
|
+
date: 2021-03-22 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.5.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: []
|