google-apis-cloudresourcemanager_v1beta1 0.4.0 → 0.9.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: b0830ea98e9d12dbc3147304cd5c29cb045675fa900edd0b2a776852d0521f58
4
- data.tar.gz: fccb78089d2c1fdb12ca0e22d4fad14f02ef78e34502fd586ac9abbc798e7b5a
3
+ metadata.gz: d649bc4f1a4c099c3d721e0cabd0951493b7dfa266a5ebd77f61ae6731bb2adb
4
+ data.tar.gz: 86e397150807a561675abfd9ebafc503633160f899918cb4df3eab5427142dbb
5
5
  SHA512:
6
- metadata.gz: 42c72b3c3340c315e11b7610b6339a9709898fe40b722d44e73cfe5f8c114e01d9c84c927f397a35931c69d994071c1808e4d3fbf766b5736d0e49feec92cefe
7
- data.tar.gz: 550fcdd4458d7b7bdcbb0bbbda2cb90461fd49b80a06bc81d35b35cb093dff835303435fc6a70cf3154facbfbd41eda3372ae24bd75976c0c75bcc6f43ad2fbe
6
+ metadata.gz: 93fe8a017a890a96c15d4be618dc0d86ed48008913002970aaa2fdfb966ef4ff70cc3d44c0abacb994f0f21b8bb0e713def1f00f129d6a40f1e0f52ca769e6fc
7
+ data.tar.gz: 3f64bfd11c0ffaf2dc739f9bb5868b442ecec5cc50f72ed6d82b3fc2bc29441c954d4d9d3d9282645cd42a76c8494a6868888c62d4f2246ddad886453cd7193f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-cloudresourcemanager_v1beta1
2
2
 
3
+ ### v0.9.0 (2021-06-24)
4
+
5
+ * Regenerated using generator version 0.3.0
6
+
7
+ ### v0.8.0 (2021-05-19)
8
+
9
+ * Unspecified changes
10
+
11
+ ### v0.7.0 (2021-04-08)
12
+
13
+ * Regenerated from discovery document revision 20210331
14
+
15
+ ### v0.6.0 (2021-04-02)
16
+
17
+ * Regenerated from discovery document revision 20210328
18
+
19
+ ### v0.5.0 (2021-03-19)
20
+
21
+ * Regenerated from discovery document revision 20210314
22
+ * Regenerated using generator version 0.2.0
23
+
3
24
  ### v0.4.0 (2021-03-04)
4
25
 
5
26
  * Unspecified changes
@@ -30,7 +30,7 @@ module Google
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V1beta1'
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
@@ -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.4.0"
19
+ GEM_VERSION = "0.9.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.3.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
@@ -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,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudresourcemanager_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.9.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-08 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 V1beta1.
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_v1beta1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v1beta1/v0.4.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v1beta1/v0.9.0
56
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudresourcemanager_v1beta1
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 V1beta1