google-apis-cloudresourcemanager_v1beta1 0.2.0 → 0.3.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: d604cb166923d102fdc37e881172aa57c85f643e28f5494684a33da75df5fd60
4
- data.tar.gz: 130959def5845936c847ad109693088baf4751e9b03d476cff763da4d1423d16
3
+ metadata.gz: 4b9638a829cb2256779e22af247cfbce63ced3970033f55fc8b7ae706f9dba53
4
+ data.tar.gz: 5d90d706ac4a008088e3fe9bcfb7639d847e665a739a3d6e1284f713c267cb53
5
5
  SHA512:
6
- metadata.gz: 6b87b302213a61bbca1601ea81eac5fac99b613b200f5c9930132cd7fe6caf684f9900500381f16dfb25e1367928fc4a91e2f1dd4a109dec6070efaaba86d74d
7
- data.tar.gz: 1820f19c276560c1dff0fb84f7723074e8efed1230d4c3714d2d544732225ad3b789fe7cb9a5cc268039909e228d7607be3e0d49417bedfbc702be667ec14f61
6
+ metadata.gz: a7a214c6ad3280fb88e5429dd7f42061c313dd88c1caad531bac6245e17fd6a876c9851052dedc4433ae183622433952c5a99828688139e7afeed949e69d5a7e
7
+ data.tar.gz: f27c4b68a188b70f2b1f79c08c264936a633c02ef06d96f0472ceefbb59ee5ac114a3b7316eb344286274ed523346998c56b20d8545ea0451b132865219f93ed
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudresourcemanager_v1beta1
2
2
 
3
+ ### v0.3.0 (2021-02-19)
4
+
5
+ * Regenerated from discovery document revision 20210215
6
+
3
7
  ### v0.2.0 (2021-01-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20210114
@@ -264,68 +264,6 @@ 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
-
329
267
  # Runtime operation information for creating a TagKey.
330
268
  class CreateTagKeyMetadata
331
269
  include Google::Apis::Core::Hashable
@@ -352,48 +290,6 @@ module Google
352
290
  end
353
291
  end
354
292
 
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
-
397
293
  # Runtime operation information for deleting a TagKey.
398
294
  class DeleteTagKeyMetadata
399
295
  include Google::Apis::Core::Hashable
@@ -688,51 +584,6 @@ module Google
688
584
  end
689
585
  end
690
586
 
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
-
736
587
  # The root node in the resource hierarchy to which a particular entity's (e.g.,
737
588
  # company) resources belong.
738
589
  class Organization
@@ -1133,48 +984,6 @@ module Google
1133
984
  end
1134
985
  end
1135
986
 
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
-
1178
987
  # The request sent to the UndeleteProject method.
1179
988
  class UndeleteProjectRequest
1180
989
  include Google::Apis::Core::Hashable
@@ -1188,34 +997,6 @@ module Google
1188
997
  end
1189
998
  end
1190
999
 
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
-
1219
1000
  # Runtime operation information for updating a TagKey.
1220
1001
  class UpdateTagKeyMetadata
1221
1002
  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.2.0"
19
+ GEM_VERSION = "0.3.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.1.2"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210114"
25
+ REVISION = "20210215"
26
26
  end
27
27
  end
28
28
  end
@@ -58,18 +58,6 @@ 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
61
  class CreateTagKeyMetadata
74
62
  class Representation < Google::Apis::Core::JsonRepresentation; end
75
63
 
@@ -82,24 +70,6 @@ module Google
82
70
  include Google::Apis::Core::JsonObjectSupport
83
71
  end
84
72
 
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
73
  class DeleteTagKeyMetadata
104
74
  class Representation < Google::Apis::Core::JsonRepresentation; end
105
75
 
@@ -172,18 +142,6 @@ module Google
172
142
  include Google::Apis::Core::JsonObjectSupport
173
143
  end
174
144
 
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
-
187
145
  class Organization
188
146
  class Representation < Google::Apis::Core::JsonRepresentation; end
189
147
 
@@ -238,42 +196,12 @@ module Google
238
196
  include Google::Apis::Core::JsonObjectSupport
239
197
  end
240
198
 
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
-
259
199
  class UndeleteProjectRequest
260
200
  class Representation < Google::Apis::Core::JsonRepresentation; end
261
201
 
262
202
  include Google::Apis::Core::JsonObjectSupport
263
203
  end
264
204
 
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
-
277
205
  class UpdateTagKeyMetadata
278
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
279
207
 
@@ -341,23 +269,6 @@ module Google
341
269
  end
342
270
  end
343
271
 
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
-
361
272
  class CreateTagKeyMetadata
362
273
  # @private
363
274
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -370,24 +281,6 @@ module Google
370
281
  end
371
282
  end
372
283
 
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
-
391
284
  class DeleteTagKeyMetadata
392
285
  # @private
393
286
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -480,21 +373,6 @@ module Google
480
373
  end
481
374
  end
482
375
 
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
-
498
376
  class Organization
499
377
  # @private
500
378
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -581,42 +459,12 @@ module Google
581
459
  end
582
460
  end
583
461
 
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
-
602
462
  class UndeleteProjectRequest
603
463
  # @private
604
464
  class Representation < Google::Apis::Core::JsonRepresentation
605
465
  end
606
466
  end
607
467
 
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
-
620
468
  class UpdateTagKeyMetadata
621
469
  # @private
622
470
  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.2.0
4
+ version: 0.3.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-08 00:00:00.000000000 Z
11
+ date: 2021-02-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.2.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v1beta1/v0.3.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: []