google-apis-cloudresourcemanager_v2beta1 0.5.0 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5ac7050af2baef02d69122aeeba16d40af79d9936a465194b7f40207386cc4e0
4
- data.tar.gz: 189f13c31ea619a4d97074b3abe4e40b91fc90a1df17228c123ac53fd7cda3cc
3
+ metadata.gz: 2bfe045a2fe970484d5a62b6ef40f68cad2e502b2b7c7126b6bc475a20602867
4
+ data.tar.gz: c87002080b3973364c1d9d185cf3da2242869d577ffe4b569e5ba053e30cd131
5
5
  SHA512:
6
- metadata.gz: de8d3a19044b107faa87fb3d3f863c20906eeea5dc24318f7edae12401ee072621999c8c9a81f7236e6f80b1eb8f33f7dc88c099b0993cf477789e8c3049f505
7
- data.tar.gz: 5b54b30786a4cccad6b20a52c0a267b1a7f1c26c7da34160c06c5d18a9d435fb7fa8e0ba37c67ff0cd786dcf6f1aa48541bf5eb71a75ccaa2dc8b50958c1e0d7
6
+ metadata.gz: bf0bb74bf3b4b287d7feb775bd14b04c06f929e4942690109fb1f1145d73055ceabcca7ceb74626c25e18ba81b6b6fc539fa2229f07bfe3683e365281386e863
7
+ data.tar.gz: 70a8b714fbb3e626156ebb49b2a2a080d2e01250897386572cf27c19e304bf4868dfbd0bd777e6e4bec83100005d4523c937fa44592e6b9e52bf2fa67d18e3cf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Release history for google-apis-cloudresourcemanager_v2beta1
2
2
 
3
+ ### v0.10.0 (2021-06-24)
4
+
5
+ * Regenerated using generator version 0.3.0
6
+
7
+ ### v0.9.0 (2021-05-19)
8
+
9
+ * Unspecified changes
10
+
11
+ ### v0.8.0 (2021-04-08)
12
+
13
+ * Regenerated from discovery document revision 20210331
14
+
15
+ ### v0.7.0 (2021-04-02)
16
+
17
+ * Regenerated from discovery document revision 20210328
18
+
19
+ ### v0.6.0 (2021-03-19)
20
+
21
+ * Regenerated from discovery document revision 20210314
22
+
3
23
  ### v0.5.0 (2021-03-13)
4
24
 
5
25
  * Regenerated from discovery document revision 20210309
@@ -242,6 +242,81 @@ module Google
242
242
  end
243
243
  end
244
244
 
245
+ # Metadata pertaining to the Folder creation process.
246
+ class CreateFolderMetadata
247
+ include Google::Apis::Core::Hashable
248
+
249
+ # The display name of the folder.
250
+ # Corresponds to the JSON property `displayName`
251
+ # @return [String]
252
+ attr_accessor :display_name
253
+
254
+ # The resource name of the folder or organization we are creating the folder
255
+ # under.
256
+ # Corresponds to the JSON property `parent`
257
+ # @return [String]
258
+ attr_accessor :parent
259
+
260
+ def initialize(**args)
261
+ update!(**args)
262
+ end
263
+
264
+ # Update properties of this object
265
+ def update!(**args)
266
+ @display_name = args[:display_name] if args.key?(:display_name)
267
+ @parent = args[:parent] if args.key?(:parent)
268
+ end
269
+ end
270
+
271
+ # A status object which is used as the `metadata` field for the Operation
272
+ # returned by CreateProject. It provides insight for when significant phases of
273
+ # Project creation have completed.
274
+ class CreateProjectMetadata
275
+ include Google::Apis::Core::Hashable
276
+
277
+ # Creation time of the project creation workflow.
278
+ # Corresponds to the JSON property `createTime`
279
+ # @return [String]
280
+ attr_accessor :create_time
281
+
282
+ # True if the project can be retrieved using `GetProject`. No other operations
283
+ # on the project are guaranteed to work until the project creation is complete.
284
+ # Corresponds to the JSON property `gettable`
285
+ # @return [Boolean]
286
+ attr_accessor :gettable
287
+ alias_method :gettable?, :gettable
288
+
289
+ # True if the project creation process is complete.
290
+ # Corresponds to the JSON property `ready`
291
+ # @return [Boolean]
292
+ attr_accessor :ready
293
+ alias_method :ready?, :ready
294
+
295
+ def initialize(**args)
296
+ update!(**args)
297
+ end
298
+
299
+ # Update properties of this object
300
+ def update!(**args)
301
+ @create_time = args[:create_time] if args.key?(:create_time)
302
+ @gettable = args[:gettable] if args.key?(:gettable)
303
+ @ready = args[:ready] if args.key?(:ready)
304
+ end
305
+ end
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
+
245
320
  # Runtime operation information for creating a TagKey.
246
321
  class CreateTagKeyMetadata
247
322
  include Google::Apis::Core::Hashable
@@ -268,6 +343,61 @@ module Google
268
343
  end
269
344
  end
270
345
 
346
+ # A status object which is used as the `metadata` field for the `Operation`
347
+ # returned by `DeleteFolder`.
348
+ class DeleteFolderMetadata
349
+ include Google::Apis::Core::Hashable
350
+
351
+ def initialize(**args)
352
+ update!(**args)
353
+ end
354
+
355
+ # Update properties of this object
356
+ def update!(**args)
357
+ end
358
+ end
359
+
360
+ # A status object which is used as the `metadata` field for the operation
361
+ # returned by DeleteOrganization.
362
+ class DeleteOrganizationMetadata
363
+ include Google::Apis::Core::Hashable
364
+
365
+ def initialize(**args)
366
+ update!(**args)
367
+ end
368
+
369
+ # Update properties of this object
370
+ def update!(**args)
371
+ end
372
+ end
373
+
374
+ # A status object which is used as the `metadata` field for the Operation
375
+ # returned by `DeleteProject`.
376
+ class DeleteProjectMetadata
377
+ include Google::Apis::Core::Hashable
378
+
379
+ def initialize(**args)
380
+ update!(**args)
381
+ end
382
+
383
+ # Update properties of this object
384
+ def update!(**args)
385
+ end
386
+ end
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
+
271
401
  # Runtime operation information for deleting a TagKey.
272
402
  class DeleteTagKeyMetadata
273
403
  include Google::Apis::Core::Hashable
@@ -529,6 +659,37 @@ module Google
529
659
  end
530
660
  end
531
661
 
662
+ # Metadata pertaining to the folder move process.
663
+ class MoveFolderMetadata
664
+ include Google::Apis::Core::Hashable
665
+
666
+ # The resource name of the folder or organization to move the folder to.
667
+ # Corresponds to the JSON property `destinationParent`
668
+ # @return [String]
669
+ attr_accessor :destination_parent
670
+
671
+ # The display name of the folder.
672
+ # Corresponds to the JSON property `displayName`
673
+ # @return [String]
674
+ attr_accessor :display_name
675
+
676
+ # The resource name of the folder's parent.
677
+ # Corresponds to the JSON property `sourceParent`
678
+ # @return [String]
679
+ attr_accessor :source_parent
680
+
681
+ def initialize(**args)
682
+ update!(**args)
683
+ end
684
+
685
+ # Update properties of this object
686
+ def update!(**args)
687
+ @destination_parent = args[:destination_parent] if args.key?(:destination_parent)
688
+ @display_name = args[:display_name] if args.key?(:display_name)
689
+ @source_parent = args[:source_parent] if args.key?(:source_parent)
690
+ end
691
+ end
692
+
532
693
  # The MoveFolder request message.
533
694
  class MoveFolderRequest
534
695
  include Google::Apis::Core::Hashable
@@ -550,6 +711,20 @@ module Google
550
711
  end
551
712
  end
552
713
 
714
+ # A status object which is used as the `metadata` field for the Operation
715
+ # returned by MoveProject.
716
+ class MoveProjectMetadata
717
+ include Google::Apis::Core::Hashable
718
+
719
+ def initialize(**args)
720
+ update!(**args)
721
+ end
722
+
723
+ # Update properties of this object
724
+ def update!(**args)
725
+ end
726
+ end
727
+
553
728
  # This resource represents a long-running operation that is the result of a
554
729
  # network API call.
555
730
  class Operation
@@ -941,6 +1116,20 @@ module Google
941
1116
  end
942
1117
  end
943
1118
 
1119
+ # A status object which is used as the `metadata` field for the `Operation`
1120
+ # returned by `UndeleteFolder`.
1121
+ class UndeleteFolderMetadata
1122
+ include Google::Apis::Core::Hashable
1123
+
1124
+ def initialize(**args)
1125
+ update!(**args)
1126
+ end
1127
+
1128
+ # Update properties of this object
1129
+ def update!(**args)
1130
+ end
1131
+ end
1132
+
944
1133
  # The UndeleteFolder request message.
945
1134
  class UndeleteFolderRequest
946
1135
  include Google::Apis::Core::Hashable
@@ -954,6 +1143,62 @@ module Google
954
1143
  end
955
1144
  end
956
1145
 
1146
+ # A status object which is used as the `metadata` field for the Operation
1147
+ # returned by UndeleteOrganization.
1148
+ class UndeleteOrganizationMetadata
1149
+ include Google::Apis::Core::Hashable
1150
+
1151
+ def initialize(**args)
1152
+ update!(**args)
1153
+ end
1154
+
1155
+ # Update properties of this object
1156
+ def update!(**args)
1157
+ end
1158
+ end
1159
+
1160
+ # A status object which is used as the `metadata` field for the Operation
1161
+ # returned by `UndeleteProject`.
1162
+ class UndeleteProjectMetadata
1163
+ include Google::Apis::Core::Hashable
1164
+
1165
+ def initialize(**args)
1166
+ update!(**args)
1167
+ end
1168
+
1169
+ # Update properties of this object
1170
+ def update!(**args)
1171
+ end
1172
+ end
1173
+
1174
+ # A status object which is used as the `metadata` field for the Operation
1175
+ # returned by UpdateFolder.
1176
+ class UpdateFolderMetadata
1177
+ include Google::Apis::Core::Hashable
1178
+
1179
+ def initialize(**args)
1180
+ update!(**args)
1181
+ end
1182
+
1183
+ # Update properties of this object
1184
+ def update!(**args)
1185
+ end
1186
+ end
1187
+
1188
+ # A status object which is used as the `metadata` field for the Operation
1189
+ # returned by UpdateProject.
1190
+ class UpdateProjectMetadata
1191
+ include Google::Apis::Core::Hashable
1192
+
1193
+ def initialize(**args)
1194
+ update!(**args)
1195
+ end
1196
+
1197
+ # Update properties of this object
1198
+ def update!(**args)
1199
+ end
1200
+ end
1201
+
957
1202
  # Runtime operation information for updating a TagKey.
958
1203
  class UpdateTagKeyMetadata
959
1204
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudresourcemanagerV2beta1
18
18
  # Version of the google-apis-cloudresourcemanager_v2beta1 gem
19
- GEM_VERSION = "0.5.0"
19
+ GEM_VERSION = "0.10.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.2.0"
22
+ GENERATOR_VERSION = "0.3.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210309"
25
+ REVISION = "20210331"
26
26
  end
27
27
  end
28
28
  end
@@ -52,6 +52,24 @@ module Google
52
52
  include Google::Apis::Core::JsonObjectSupport
53
53
  end
54
54
 
55
+ class CreateFolderMetadata
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
61
+ class CreateProjectMetadata
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
67
+ class CreateTagBindingMetadata
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
55
73
  class CreateTagKeyMetadata
56
74
  class Representation < Google::Apis::Core::JsonRepresentation; end
57
75
 
@@ -64,6 +82,30 @@ module Google
64
82
  include Google::Apis::Core::JsonObjectSupport
65
83
  end
66
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
+
103
+ class DeleteTagBindingMetadata
104
+ class Representation < Google::Apis::Core::JsonRepresentation; end
105
+
106
+ include Google::Apis::Core::JsonObjectSupport
107
+ end
108
+
67
109
  class DeleteTagKeyMetadata
68
110
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
111
 
@@ -118,12 +160,24 @@ module Google
118
160
  include Google::Apis::Core::JsonObjectSupport
119
161
  end
120
162
 
163
+ class MoveFolderMetadata
164
+ class Representation < Google::Apis::Core::JsonRepresentation; end
165
+
166
+ include Google::Apis::Core::JsonObjectSupport
167
+ end
168
+
121
169
  class MoveFolderRequest
122
170
  class Representation < Google::Apis::Core::JsonRepresentation; end
123
171
 
124
172
  include Google::Apis::Core::JsonObjectSupport
125
173
  end
126
174
 
175
+ class MoveProjectMetadata
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
127
181
  class Operation
128
182
  class Representation < Google::Apis::Core::JsonRepresentation; end
129
183
 
@@ -178,12 +232,42 @@ module Google
178
232
  include Google::Apis::Core::JsonObjectSupport
179
233
  end
180
234
 
235
+ class UndeleteFolderMetadata
236
+ class Representation < Google::Apis::Core::JsonRepresentation; end
237
+
238
+ include Google::Apis::Core::JsonObjectSupport
239
+ end
240
+
181
241
  class UndeleteFolderRequest
182
242
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
243
 
184
244
  include Google::Apis::Core::JsonObjectSupport
185
245
  end
186
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
+
259
+ class UpdateFolderMetadata
260
+ class Representation < Google::Apis::Core::JsonRepresentation; end
261
+
262
+ include Google::Apis::Core::JsonObjectSupport
263
+ end
264
+
265
+ class UpdateProjectMetadata
266
+ class Representation < Google::Apis::Core::JsonRepresentation; end
267
+
268
+ include Google::Apis::Core::JsonObjectSupport
269
+ end
270
+
187
271
  class UpdateTagKeyMetadata
188
272
  class Representation < Google::Apis::Core::JsonRepresentation; end
189
273
 
@@ -243,6 +327,29 @@ module Google
243
327
  end
244
328
  end
245
329
 
330
+ class CreateFolderMetadata
331
+ # @private
332
+ class Representation < Google::Apis::Core::JsonRepresentation
333
+ property :display_name, as: 'displayName'
334
+ property :parent, as: 'parent'
335
+ end
336
+ end
337
+
338
+ class CreateProjectMetadata
339
+ # @private
340
+ class Representation < Google::Apis::Core::JsonRepresentation
341
+ property :create_time, as: 'createTime'
342
+ property :gettable, as: 'gettable'
343
+ property :ready, as: 'ready'
344
+ end
345
+ end
346
+
347
+ class CreateTagBindingMetadata
348
+ # @private
349
+ class Representation < Google::Apis::Core::JsonRepresentation
350
+ end
351
+ end
352
+
246
353
  class CreateTagKeyMetadata
247
354
  # @private
248
355
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -255,6 +362,30 @@ module Google
255
362
  end
256
363
  end
257
364
 
365
+ class DeleteFolderMetadata
366
+ # @private
367
+ class Representation < Google::Apis::Core::JsonRepresentation
368
+ end
369
+ end
370
+
371
+ class DeleteOrganizationMetadata
372
+ # @private
373
+ class Representation < Google::Apis::Core::JsonRepresentation
374
+ end
375
+ end
376
+
377
+ class DeleteProjectMetadata
378
+ # @private
379
+ class Representation < Google::Apis::Core::JsonRepresentation
380
+ end
381
+ end
382
+
383
+ class DeleteTagBindingMetadata
384
+ # @private
385
+ class Representation < Google::Apis::Core::JsonRepresentation
386
+ end
387
+ end
388
+
258
389
  class DeleteTagKeyMetadata
259
390
  # @private
260
391
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -329,6 +460,15 @@ module Google
329
460
  end
330
461
  end
331
462
 
463
+ class MoveFolderMetadata
464
+ # @private
465
+ class Representation < Google::Apis::Core::JsonRepresentation
466
+ property :destination_parent, as: 'destinationParent'
467
+ property :display_name, as: 'displayName'
468
+ property :source_parent, as: 'sourceParent'
469
+ end
470
+ end
471
+
332
472
  class MoveFolderRequest
333
473
  # @private
334
474
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -336,6 +476,12 @@ module Google
336
476
  end
337
477
  end
338
478
 
479
+ class MoveProjectMetadata
480
+ # @private
481
+ class Representation < Google::Apis::Core::JsonRepresentation
482
+ end
483
+ end
484
+
339
485
  class Operation
340
486
  # @private
341
487
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -419,12 +565,42 @@ module Google
419
565
  end
420
566
  end
421
567
 
568
+ class UndeleteFolderMetadata
569
+ # @private
570
+ class Representation < Google::Apis::Core::JsonRepresentation
571
+ end
572
+ end
573
+
422
574
  class UndeleteFolderRequest
423
575
  # @private
424
576
  class Representation < Google::Apis::Core::JsonRepresentation
425
577
  end
426
578
  end
427
579
 
580
+ class UndeleteOrganizationMetadata
581
+ # @private
582
+ class Representation < Google::Apis::Core::JsonRepresentation
583
+ end
584
+ end
585
+
586
+ class UndeleteProjectMetadata
587
+ # @private
588
+ class Representation < Google::Apis::Core::JsonRepresentation
589
+ end
590
+ end
591
+
592
+ class UpdateFolderMetadata
593
+ # @private
594
+ class Representation < Google::Apis::Core::JsonRepresentation
595
+ end
596
+ end
597
+
598
+ class UpdateProjectMetadata
599
+ # @private
600
+ class Representation < Google::Apis::Core::JsonRepresentation
601
+ end
602
+ end
603
+
428
604
  class UpdateTagKeyMetadata
429
605
  # @private
430
606
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudresourcemanager_v2beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.10.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-15 00:00:00.000000000 Z
11
+ date: 2021-06-28 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.1'
19
+ version: '0.3'
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.3'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: '0.1'
32
+ version: 2.a
27
33
  description: This is the simple REST client for Cloud Resource Manager API V2beta1.
28
34
  Simple REST clients are Ruby client libraries that provide access to Google services
29
35
  via 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_v2beta1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v2beta1/v0.5.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v2beta1/v0.10.0
56
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudresourcemanager_v2beta1
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.13
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 V2beta1