google-apis-cloudresourcemanager_v1 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: e5dd025ba383abc7411f4eb5ba7bef1efe9d7b38e34f828d3292ceb087d62f78
4
- data.tar.gz: df3654d9c29ea21606d0daa82df1cbd17f134c3755e1fa1a96e0b3b1476090bf
3
+ metadata.gz: 39b9f3e8058dc2cfa6f3613c3bf9ef95f18e361626a91fb1b589aea79f987d78
4
+ data.tar.gz: 489d8f99a7c8d31c87595d99bbc252fdf98958f7cbb9bd19990be9c8c1382b03
5
5
  SHA512:
6
- metadata.gz: 4037546989050214f199c75b53900c8a798a60509b6e3baec09834f0e60d59f9b69e7925407059e5c39b4acc0afebf810405df97840f16b23c08bff4447cafa8
7
- data.tar.gz: 5e20cd4feeba5e98fb2613c269da2546298d198b5861bc3574d7320cb0108f8ed82f9c2f6ca283193f2a29d5036449fd605f95b1470b29a5a5c1ba574523b889
6
+ metadata.gz: 6b2d7728b63c38a75848087d66c6d301fd3821b401cb7a41c0987da0406559a881fd0840efdc248b713841d97f3ed8a1726686b3653909618a79909f6badb63c
7
+ data.tar.gz: 2e22b4a066d9f49e2575663c1c8dd2353a26e679b1005c0da9a9e5a70a90aa4c6259c7e71ad965f10b2f3ba07d105924b3efe0c376ffc3ea92780c2f5d4f3204
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudresourcemanager_v1
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
@@ -420,68 +420,6 @@ module Google
420
420
  end
421
421
  end
422
422
 
423
- # Metadata pertaining to the Folder creation process.
424
- class CreateFolderMetadata
425
- include Google::Apis::Core::Hashable
426
-
427
- # The display name of the folder.
428
- # Corresponds to the JSON property `displayName`
429
- # @return [String]
430
- attr_accessor :display_name
431
-
432
- # The resource name of the folder or organization we are creating the folder
433
- # under.
434
- # Corresponds to the JSON property `parent`
435
- # @return [String]
436
- attr_accessor :parent
437
-
438
- def initialize(**args)
439
- update!(**args)
440
- end
441
-
442
- # Update properties of this object
443
- def update!(**args)
444
- @display_name = args[:display_name] if args.key?(:display_name)
445
- @parent = args[:parent] if args.key?(:parent)
446
- end
447
- end
448
-
449
- # A status object which is used as the `metadata` field for the Operation
450
- # returned by CreateProject. It provides insight for when significant phases of
451
- # Project creation have completed.
452
- class CreateProjectMetadata
453
- include Google::Apis::Core::Hashable
454
-
455
- # Creation time of the project creation workflow.
456
- # Corresponds to the JSON property `createTime`
457
- # @return [String]
458
- attr_accessor :create_time
459
-
460
- # True if the project can be retrieved using GetProject. No other operations on
461
- # the project are guaranteed to work until the project creation is complete.
462
- # Corresponds to the JSON property `gettable`
463
- # @return [Boolean]
464
- attr_accessor :gettable
465
- alias_method :gettable?, :gettable
466
-
467
- # True if the project creation process is complete.
468
- # Corresponds to the JSON property `ready`
469
- # @return [Boolean]
470
- attr_accessor :ready
471
- alias_method :ready?, :ready
472
-
473
- def initialize(**args)
474
- update!(**args)
475
- end
476
-
477
- # Update properties of this object
478
- def update!(**args)
479
- @create_time = args[:create_time] if args.key?(:create_time)
480
- @gettable = args[:gettable] if args.key?(:gettable)
481
- @ready = args[:ready] if args.key?(:ready)
482
- end
483
- end
484
-
485
423
  # Runtime operation information for creating a TagKey.
486
424
  class CreateTagKeyMetadata
487
425
  include Google::Apis::Core::Hashable
@@ -508,48 +446,6 @@ module Google
508
446
  end
509
447
  end
510
448
 
511
- # A status object which is used as the `metadata` field for the Operation
512
- # returned by DeleteFolder.
513
- class DeleteFolderMetadata
514
- include Google::Apis::Core::Hashable
515
-
516
- def initialize(**args)
517
- update!(**args)
518
- end
519
-
520
- # Update properties of this object
521
- def update!(**args)
522
- end
523
- end
524
-
525
- # A status object which is used as the `metadata` field for the Operation
526
- # returned by DeleteOrganization.
527
- class DeleteOrganizationMetadata
528
- include Google::Apis::Core::Hashable
529
-
530
- def initialize(**args)
531
- update!(**args)
532
- end
533
-
534
- # Update properties of this object
535
- def update!(**args)
536
- end
537
- end
538
-
539
- # A status object which is used as the `metadata` field for the Operation
540
- # returned by DeleteProject.
541
- class DeleteProjectMetadata
542
- include Google::Apis::Core::Hashable
543
-
544
- def initialize(**args)
545
- update!(**args)
546
- end
547
-
548
- # Update properties of this object
549
- def update!(**args)
550
- end
551
- end
552
-
553
449
  # Runtime operation information for deleting a TagKey.
554
450
  class DeleteTagKeyMetadata
555
451
  include Google::Apis::Core::Hashable
@@ -1196,51 +1092,6 @@ module Google
1196
1092
  end
1197
1093
  end
1198
1094
 
1199
- # Metadata pertaining to the Folder move process.
1200
- class MoveFolderMetadata
1201
- include Google::Apis::Core::Hashable
1202
-
1203
- # The resource name of the folder or organization to move the folder to.
1204
- # Corresponds to the JSON property `destinationParent`
1205
- # @return [String]
1206
- attr_accessor :destination_parent
1207
-
1208
- # The display name of the folder.
1209
- # Corresponds to the JSON property `displayName`
1210
- # @return [String]
1211
- attr_accessor :display_name
1212
-
1213
- # The resource name of the folder's parent.
1214
- # Corresponds to the JSON property `sourceParent`
1215
- # @return [String]
1216
- attr_accessor :source_parent
1217
-
1218
- def initialize(**args)
1219
- update!(**args)
1220
- end
1221
-
1222
- # Update properties of this object
1223
- def update!(**args)
1224
- @destination_parent = args[:destination_parent] if args.key?(:destination_parent)
1225
- @display_name = args[:display_name] if args.key?(:display_name)
1226
- @source_parent = args[:source_parent] if args.key?(:source_parent)
1227
- end
1228
- end
1229
-
1230
- # A status object which is used as the `metadata` field for the Operation
1231
- # returned by MoveProject.
1232
- class MoveProjectMetadata
1233
- include Google::Apis::Core::Hashable
1234
-
1235
- def initialize(**args)
1236
- update!(**args)
1237
- end
1238
-
1239
- # Update properties of this object
1240
- def update!(**args)
1241
- end
1242
- end
1243
-
1244
1095
  # This resource represents a long-running operation that is the result of a
1245
1096
  # network API call.
1246
1097
  class Operation
@@ -1939,48 +1790,6 @@ module Google
1939
1790
  end
1940
1791
  end
1941
1792
 
1942
- # A status object which is used as the `metadata` field for the Operation
1943
- # returned by UndeleteFolder.
1944
- class UndeleteFolderMetadata
1945
- include Google::Apis::Core::Hashable
1946
-
1947
- def initialize(**args)
1948
- update!(**args)
1949
- end
1950
-
1951
- # Update properties of this object
1952
- def update!(**args)
1953
- end
1954
- end
1955
-
1956
- # A status object which is used as the `metadata` field for the Operation
1957
- # returned by UndeleteOrganization.
1958
- class UndeleteOrganizationMetadata
1959
- include Google::Apis::Core::Hashable
1960
-
1961
- def initialize(**args)
1962
- update!(**args)
1963
- end
1964
-
1965
- # Update properties of this object
1966
- def update!(**args)
1967
- end
1968
- end
1969
-
1970
- # A status object which is used as the `metadata` field for the Operation
1971
- # returned by UndeleteProject.
1972
- class UndeleteProjectMetadata
1973
- include Google::Apis::Core::Hashable
1974
-
1975
- def initialize(**args)
1976
- update!(**args)
1977
- end
1978
-
1979
- # Update properties of this object
1980
- def update!(**args)
1981
- end
1982
- end
1983
-
1984
1793
  # The request sent to the UndeleteProject method.
1985
1794
  class UndeleteProjectRequest
1986
1795
  include Google::Apis::Core::Hashable
@@ -1994,34 +1803,6 @@ module Google
1994
1803
  end
1995
1804
  end
1996
1805
 
1997
- # A status object which is used as the `metadata` field for the Operation
1998
- # returned by UpdateFolder.
1999
- class UpdateFolderMetadata
2000
- include Google::Apis::Core::Hashable
2001
-
2002
- def initialize(**args)
2003
- update!(**args)
2004
- end
2005
-
2006
- # Update properties of this object
2007
- def update!(**args)
2008
- end
2009
- end
2010
-
2011
- # A status object which is used as the `metadata` field for the Operation
2012
- # returned by UpdateProject.
2013
- class UpdateProjectMetadata
2014
- include Google::Apis::Core::Hashable
2015
-
2016
- def initialize(**args)
2017
- update!(**args)
2018
- end
2019
-
2020
- # Update properties of this object
2021
- def update!(**args)
2022
- end
2023
- end
2024
-
2025
1806
  # Runtime operation information for updating a TagKey.
2026
1807
  class UpdateTagKeyMetadata
2027
1808
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudresourcemanagerV1
18
18
  # Version of the google-apis-cloudresourcemanager_v1 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
@@ -82,18 +82,6 @@ module Google
82
82
  include Google::Apis::Core::JsonObjectSupport
83
83
  end
84
84
 
85
- class CreateFolderMetadata
86
- class Representation < Google::Apis::Core::JsonRepresentation; end
87
-
88
- include Google::Apis::Core::JsonObjectSupport
89
- end
90
-
91
- class CreateProjectMetadata
92
- class Representation < Google::Apis::Core::JsonRepresentation; end
93
-
94
- include Google::Apis::Core::JsonObjectSupport
95
- end
96
-
97
85
  class CreateTagKeyMetadata
98
86
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
87
 
@@ -106,24 +94,6 @@ module Google
106
94
  include Google::Apis::Core::JsonObjectSupport
107
95
  end
108
96
 
109
- class DeleteFolderMetadata
110
- class Representation < Google::Apis::Core::JsonRepresentation; end
111
-
112
- include Google::Apis::Core::JsonObjectSupport
113
- end
114
-
115
- class DeleteOrganizationMetadata
116
- class Representation < Google::Apis::Core::JsonRepresentation; end
117
-
118
- include Google::Apis::Core::JsonObjectSupport
119
- end
120
-
121
- class DeleteProjectMetadata
122
- class Representation < Google::Apis::Core::JsonRepresentation; end
123
-
124
- include Google::Apis::Core::JsonObjectSupport
125
- end
126
-
127
97
  class DeleteTagKeyMetadata
128
98
  class Representation < Google::Apis::Core::JsonRepresentation; end
129
99
 
@@ -250,18 +220,6 @@ module Google
250
220
  include Google::Apis::Core::JsonObjectSupport
251
221
  end
252
222
 
253
- class MoveFolderMetadata
254
- class Representation < Google::Apis::Core::JsonRepresentation; end
255
-
256
- include Google::Apis::Core::JsonObjectSupport
257
- end
258
-
259
- class MoveProjectMetadata
260
- class Representation < Google::Apis::Core::JsonRepresentation; end
261
-
262
- include Google::Apis::Core::JsonObjectSupport
263
- end
264
-
265
223
  class Operation
266
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
267
225
 
@@ -358,42 +316,12 @@ module Google
358
316
  include Google::Apis::Core::JsonObjectSupport
359
317
  end
360
318
 
361
- class UndeleteFolderMetadata
362
- class Representation < Google::Apis::Core::JsonRepresentation; end
363
-
364
- include Google::Apis::Core::JsonObjectSupport
365
- end
366
-
367
- class UndeleteOrganizationMetadata
368
- class Representation < Google::Apis::Core::JsonRepresentation; end
369
-
370
- include Google::Apis::Core::JsonObjectSupport
371
- end
372
-
373
- class UndeleteProjectMetadata
374
- class Representation < Google::Apis::Core::JsonRepresentation; end
375
-
376
- include Google::Apis::Core::JsonObjectSupport
377
- end
378
-
379
319
  class UndeleteProjectRequest
380
320
  class Representation < Google::Apis::Core::JsonRepresentation; end
381
321
 
382
322
  include Google::Apis::Core::JsonObjectSupport
383
323
  end
384
324
 
385
- class UpdateFolderMetadata
386
- class Representation < Google::Apis::Core::JsonRepresentation; end
387
-
388
- include Google::Apis::Core::JsonObjectSupport
389
- end
390
-
391
- class UpdateProjectMetadata
392
- class Representation < Google::Apis::Core::JsonRepresentation; end
393
-
394
- include Google::Apis::Core::JsonObjectSupport
395
- end
396
-
397
325
  class UpdateTagKeyMetadata
398
326
  class Representation < Google::Apis::Core::JsonRepresentation; end
399
327
 
@@ -497,23 +425,6 @@ module Google
497
425
  end
498
426
  end
499
427
 
500
- class CreateFolderMetadata
501
- # @private
502
- class Representation < Google::Apis::Core::JsonRepresentation
503
- property :display_name, as: 'displayName'
504
- property :parent, as: 'parent'
505
- end
506
- end
507
-
508
- class CreateProjectMetadata
509
- # @private
510
- class Representation < Google::Apis::Core::JsonRepresentation
511
- property :create_time, as: 'createTime'
512
- property :gettable, as: 'gettable'
513
- property :ready, as: 'ready'
514
- end
515
- end
516
-
517
428
  class CreateTagKeyMetadata
518
429
  # @private
519
430
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -526,24 +437,6 @@ module Google
526
437
  end
527
438
  end
528
439
 
529
- class DeleteFolderMetadata
530
- # @private
531
- class Representation < Google::Apis::Core::JsonRepresentation
532
- end
533
- end
534
-
535
- class DeleteOrganizationMetadata
536
- # @private
537
- class Representation < Google::Apis::Core::JsonRepresentation
538
- end
539
- end
540
-
541
- class DeleteProjectMetadata
542
- # @private
543
- class Representation < Google::Apis::Core::JsonRepresentation
544
- end
545
- end
546
-
547
440
  class DeleteTagKeyMetadata
548
441
  # @private
549
442
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -715,21 +608,6 @@ module Google
715
608
  end
716
609
  end
717
610
 
718
- class MoveFolderMetadata
719
- # @private
720
- class Representation < Google::Apis::Core::JsonRepresentation
721
- property :destination_parent, as: 'destinationParent'
722
- property :display_name, as: 'displayName'
723
- property :source_parent, as: 'sourceParent'
724
- end
725
- end
726
-
727
- class MoveProjectMetadata
728
- # @private
729
- class Representation < Google::Apis::Core::JsonRepresentation
730
- end
731
- end
732
-
733
611
  class Operation
734
612
  # @private
735
613
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -884,42 +762,12 @@ module Google
884
762
  end
885
763
  end
886
764
 
887
- class UndeleteFolderMetadata
888
- # @private
889
- class Representation < Google::Apis::Core::JsonRepresentation
890
- end
891
- end
892
-
893
- class UndeleteOrganizationMetadata
894
- # @private
895
- class Representation < Google::Apis::Core::JsonRepresentation
896
- end
897
- end
898
-
899
- class UndeleteProjectMetadata
900
- # @private
901
- class Representation < Google::Apis::Core::JsonRepresentation
902
- end
903
- end
904
-
905
765
  class UndeleteProjectRequest
906
766
  # @private
907
767
  class Representation < Google::Apis::Core::JsonRepresentation
908
768
  end
909
769
  end
910
770
 
911
- class UpdateFolderMetadata
912
- # @private
913
- class Representation < Google::Apis::Core::JsonRepresentation
914
- end
915
- end
916
-
917
- class UpdateProjectMetadata
918
- # @private
919
- class Representation < Google::Apis::Core::JsonRepresentation
920
- end
921
- end
922
-
923
771
  class UpdateTagKeyMetadata
924
772
  # @private
925
773
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudresourcemanager_v1
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_v1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v1/v0.2.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v1/v0.3.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudresourcemanager_v1
57
57
  post_install_message:
58
58
  rdoc_options: []