google-apis-cloudresourcemanager_v2beta1 0.3.0 → 0.8.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: f5fa0af9953d2ca5ac455aa53240522e60967edb3a696fe05c4fda9dd53448a0
4
- data.tar.gz: ec1cff4cda5cfced39b08043a45d34d53410ad5fd4ee24782f3b77e817038b78
3
+ metadata.gz: 1c5a4d95fa3994bd8f03f0bfad1d33bb4d72873f871e7792997b4694299ee64b
4
+ data.tar.gz: b53927394a29a024d8b376ff5142d1c67e44976fd5c03c58679771ef8898855e
5
5
  SHA512:
6
- metadata.gz: 0b01204b35a2632f8560c9389fafc9f29aa443d556209743a43c41789dfe3dff5570f3438332ef5943623c024167c41f49da73b43a32ada5151de6afe761cf8c
7
- data.tar.gz: df1abf1ea47872ee25f5df1c5b6428f30a335c6525652187c9011d38e9dea54853790a7e4e8143f741985c1af253f29851fbca247799f09976bee0f696452a77
6
+ metadata.gz: c919d7d41e133a53a65f718842ec23fa65407599ffc545c0c1183b2befdc7f763fb3681da5a2ad5535a0e351736c6d95e4d08b367fc5e776d4f9bbc89830e487
7
+ data.tar.gz: 40dd862cbc7eef99659fb6640a84752ba053e327f2b02944e56c780aa46e9802182780b1f97b53a8ded3c1e57485729caaa32691a1f5174b0b2a3d4f7b9389f2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-cloudresourcemanager_v2beta1
2
2
 
3
+ ### v0.8.0 (2021-04-08)
4
+
5
+ * Regenerated from discovery document revision 20210331
6
+
7
+ ### v0.7.0 (2021-04-02)
8
+
9
+ * Regenerated from discovery document revision 20210328
10
+
11
+ ### v0.6.0 (2021-03-19)
12
+
13
+ * Regenerated from discovery document revision 20210314
14
+
15
+ ### v0.5.0 (2021-03-13)
16
+
17
+ * Regenerated from discovery document revision 20210309
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 = 'V2beta1'
32
32
 
33
- # View and manage your data across Google Cloud Platform services
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
@@ -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.3.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.1.2"
22
+ GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210215"
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,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudresourcemanager_v2beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.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-02-22 00:00:00.000000000 Z
11
+ date: 2021-05-18 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_v2beta1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v2beta1/v0.3.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v2beta1/v0.8.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudresourcemanager_v2beta1
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.4'
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.6
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 V2beta1