google-apis-cloudresourcemanager_v1 0.4.0 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1de98bac89c5f0ef36be89f3a12110497b6768d548c9d39a0fb4fb929366271c
4
- data.tar.gz: 7084bb52a9ed9ad55612bc68d3d2e1b98ac7312a7019347ed1bd63d20cf9ce27
3
+ metadata.gz: 786cb29f376119672aa1debc5ba291fb18700d6fbddce759c7ae9d263f29c28a
4
+ data.tar.gz: 80bc97b9bf9e44beeb564ec9ac910c34228d834948de24ff0b6e81911ee608fb
5
5
  SHA512:
6
- metadata.gz: 3795fe0d115a1fdef4ff46a95a1e2ed5116671a6837e60cff7eb47d4512f5334f460bdee6209f5db58a52b01dbb6a2a9c2c1dcda83ab262eb3201d3da3356241
7
- data.tar.gz: c8ec1a17ae0ecb5b6c78f4bb0691a821a1901d9f629a607595f051ead1d0d37fb085c3b5ffa256afb062c9d22470665a545cb2e4481b505c5b5da0e7bbf70475
6
+ metadata.gz: 4814a7b0cc77c3bf6028cd91b5d34136762ebb061115a297d6bb86c217ebc8f9e2863d93b6fd4f4fa153530b9124e74a64435db7eb7b5d87b58277008ee5ce10
7
+ data.tar.gz: a7e4c12159ac31bea6f5efd29c141119584cd2402ddf542a9f2f8d9271b996257a48045d827d8c0de166ffe75a3a0619945d6f60c18c03541a6c6eb075ebf887
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-cloudresourcemanager_v1
2
2
 
3
+ ### v0.9.0 (2021-04-08)
4
+
5
+ * Regenerated from discovery document revision 20210331
6
+
7
+ ### v0.8.0 (2021-04-02)
8
+
9
+ * Regenerated from discovery document revision 20210328
10
+
11
+ ### v0.7.0 (2021-03-19)
12
+
13
+ * Regenerated from discovery document revision 20210314
14
+
15
+ ### v0.6.0 (2021-03-13)
16
+
17
+ * Regenerated from discovery document revision 20210309
18
+ * Regenerated using generator version 0.2.0
19
+
20
+ ### v0.5.0 (2021-03-04)
21
+
22
+ * Unspecified changes
23
+
3
24
  ### v0.4.0 (2021-02-26)
4
25
 
5
26
  * Regenerated from discovery document revision 20210222
@@ -30,7 +30,7 @@ module Google
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V1'
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
@@ -420,6 +420,81 @@ 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
461
+ # on 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
+ # Runtime operation information for creating a TagValue.
486
+ class CreateTagBindingMetadata
487
+ include Google::Apis::Core::Hashable
488
+
489
+ def initialize(**args)
490
+ update!(**args)
491
+ end
492
+
493
+ # Update properties of this object
494
+ def update!(**args)
495
+ end
496
+ end
497
+
423
498
  # Runtime operation information for creating a TagKey.
424
499
  class CreateTagKeyMetadata
425
500
  include Google::Apis::Core::Hashable
@@ -446,6 +521,61 @@ module Google
446
521
  end
447
522
  end
448
523
 
524
+ # A status object which is used as the `metadata` field for the `Operation`
525
+ # returned by `DeleteFolder`.
526
+ class DeleteFolderMetadata
527
+ include Google::Apis::Core::Hashable
528
+
529
+ def initialize(**args)
530
+ update!(**args)
531
+ end
532
+
533
+ # Update properties of this object
534
+ def update!(**args)
535
+ end
536
+ end
537
+
538
+ # A status object which is used as the `metadata` field for the operation
539
+ # returned by DeleteOrganization.
540
+ class DeleteOrganizationMetadata
541
+ include Google::Apis::Core::Hashable
542
+
543
+ def initialize(**args)
544
+ update!(**args)
545
+ end
546
+
547
+ # Update properties of this object
548
+ def update!(**args)
549
+ end
550
+ end
551
+
552
+ # A status object which is used as the `metadata` field for the Operation
553
+ # returned by `DeleteProject`.
554
+ class DeleteProjectMetadata
555
+ include Google::Apis::Core::Hashable
556
+
557
+ def initialize(**args)
558
+ update!(**args)
559
+ end
560
+
561
+ # Update properties of this object
562
+ def update!(**args)
563
+ end
564
+ end
565
+
566
+ # Runtime operation information for deleting a TagBinding.
567
+ class DeleteTagBindingMetadata
568
+ include Google::Apis::Core::Hashable
569
+
570
+ def initialize(**args)
571
+ update!(**args)
572
+ end
573
+
574
+ # Update properties of this object
575
+ def update!(**args)
576
+ end
577
+ end
578
+
449
579
  # Runtime operation information for deleting a TagKey.
450
580
  class DeleteTagKeyMetadata
451
581
  include Google::Apis::Core::Hashable
@@ -1092,6 +1222,51 @@ module Google
1092
1222
  end
1093
1223
  end
1094
1224
 
1225
+ # Metadata pertaining to the folder move process.
1226
+ class MoveFolderMetadata
1227
+ include Google::Apis::Core::Hashable
1228
+
1229
+ # The resource name of the folder or organization to move the folder to.
1230
+ # Corresponds to the JSON property `destinationParent`
1231
+ # @return [String]
1232
+ attr_accessor :destination_parent
1233
+
1234
+ # The display name of the folder.
1235
+ # Corresponds to the JSON property `displayName`
1236
+ # @return [String]
1237
+ attr_accessor :display_name
1238
+
1239
+ # The resource name of the folder's parent.
1240
+ # Corresponds to the JSON property `sourceParent`
1241
+ # @return [String]
1242
+ attr_accessor :source_parent
1243
+
1244
+ def initialize(**args)
1245
+ update!(**args)
1246
+ end
1247
+
1248
+ # Update properties of this object
1249
+ def update!(**args)
1250
+ @destination_parent = args[:destination_parent] if args.key?(:destination_parent)
1251
+ @display_name = args[:display_name] if args.key?(:display_name)
1252
+ @source_parent = args[:source_parent] if args.key?(:source_parent)
1253
+ end
1254
+ end
1255
+
1256
+ # A status object which is used as the `metadata` field for the Operation
1257
+ # returned by MoveProject.
1258
+ class MoveProjectMetadata
1259
+ include Google::Apis::Core::Hashable
1260
+
1261
+ def initialize(**args)
1262
+ update!(**args)
1263
+ end
1264
+
1265
+ # Update properties of this object
1266
+ def update!(**args)
1267
+ end
1268
+ end
1269
+
1095
1270
  # This resource represents a long-running operation that is the result of a
1096
1271
  # network API call.
1097
1272
  class Operation
@@ -1790,6 +1965,48 @@ module Google
1790
1965
  end
1791
1966
  end
1792
1967
 
1968
+ # A status object which is used as the `metadata` field for the `Operation`
1969
+ # returned by `UndeleteFolder`.
1970
+ class UndeleteFolderMetadata
1971
+ include Google::Apis::Core::Hashable
1972
+
1973
+ def initialize(**args)
1974
+ update!(**args)
1975
+ end
1976
+
1977
+ # Update properties of this object
1978
+ def update!(**args)
1979
+ end
1980
+ end
1981
+
1982
+ # A status object which is used as the `metadata` field for the Operation
1983
+ # returned by UndeleteOrganization.
1984
+ class UndeleteOrganizationMetadata
1985
+ include Google::Apis::Core::Hashable
1986
+
1987
+ def initialize(**args)
1988
+ update!(**args)
1989
+ end
1990
+
1991
+ # Update properties of this object
1992
+ def update!(**args)
1993
+ end
1994
+ end
1995
+
1996
+ # A status object which is used as the `metadata` field for the Operation
1997
+ # returned by `UndeleteProject`.
1998
+ class UndeleteProjectMetadata
1999
+ include Google::Apis::Core::Hashable
2000
+
2001
+ def initialize(**args)
2002
+ update!(**args)
2003
+ end
2004
+
2005
+ # Update properties of this object
2006
+ def update!(**args)
2007
+ end
2008
+ end
2009
+
1793
2010
  # The request sent to the UndeleteProject method.
1794
2011
  class UndeleteProjectRequest
1795
2012
  include Google::Apis::Core::Hashable
@@ -1803,6 +2020,34 @@ module Google
1803
2020
  end
1804
2021
  end
1805
2022
 
2023
+ # A status object which is used as the `metadata` field for the Operation
2024
+ # returned by UpdateFolder.
2025
+ class UpdateFolderMetadata
2026
+ include Google::Apis::Core::Hashable
2027
+
2028
+ def initialize(**args)
2029
+ update!(**args)
2030
+ end
2031
+
2032
+ # Update properties of this object
2033
+ def update!(**args)
2034
+ end
2035
+ end
2036
+
2037
+ # A status object which is used as the `metadata` field for the Operation
2038
+ # returned by UpdateProject.
2039
+ class UpdateProjectMetadata
2040
+ include Google::Apis::Core::Hashable
2041
+
2042
+ def initialize(**args)
2043
+ update!(**args)
2044
+ end
2045
+
2046
+ # Update properties of this object
2047
+ def update!(**args)
2048
+ end
2049
+ end
2050
+
1806
2051
  # Runtime operation information for updating a TagKey.
1807
2052
  class UpdateTagKeyMetadata
1808
2053
  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.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.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210222"
25
+ REVISION = "20210331"
26
26
  end
27
27
  end
28
28
  end
@@ -82,6 +82,24 @@ 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
+ class CreateTagBindingMetadata
98
+ class Representation < Google::Apis::Core::JsonRepresentation; end
99
+
100
+ include Google::Apis::Core::JsonObjectSupport
101
+ end
102
+
85
103
  class CreateTagKeyMetadata
86
104
  class Representation < Google::Apis::Core::JsonRepresentation; end
87
105
 
@@ -94,6 +112,30 @@ module Google
94
112
  include Google::Apis::Core::JsonObjectSupport
95
113
  end
96
114
 
115
+ class DeleteFolderMetadata
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
121
+ class DeleteOrganizationMetadata
122
+ class Representation < Google::Apis::Core::JsonRepresentation; end
123
+
124
+ include Google::Apis::Core::JsonObjectSupport
125
+ end
126
+
127
+ class DeleteProjectMetadata
128
+ class Representation < Google::Apis::Core::JsonRepresentation; end
129
+
130
+ include Google::Apis::Core::JsonObjectSupport
131
+ end
132
+
133
+ class DeleteTagBindingMetadata
134
+ class Representation < Google::Apis::Core::JsonRepresentation; end
135
+
136
+ include Google::Apis::Core::JsonObjectSupport
137
+ end
138
+
97
139
  class DeleteTagKeyMetadata
98
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
141
 
@@ -220,6 +262,18 @@ module Google
220
262
  include Google::Apis::Core::JsonObjectSupport
221
263
  end
222
264
 
265
+ class MoveFolderMetadata
266
+ class Representation < Google::Apis::Core::JsonRepresentation; end
267
+
268
+ include Google::Apis::Core::JsonObjectSupport
269
+ end
270
+
271
+ class MoveProjectMetadata
272
+ class Representation < Google::Apis::Core::JsonRepresentation; end
273
+
274
+ include Google::Apis::Core::JsonObjectSupport
275
+ end
276
+
223
277
  class Operation
224
278
  class Representation < Google::Apis::Core::JsonRepresentation; end
225
279
 
@@ -316,12 +370,42 @@ module Google
316
370
  include Google::Apis::Core::JsonObjectSupport
317
371
  end
318
372
 
373
+ class UndeleteFolderMetadata
374
+ class Representation < Google::Apis::Core::JsonRepresentation; end
375
+
376
+ include Google::Apis::Core::JsonObjectSupport
377
+ end
378
+
379
+ class UndeleteOrganizationMetadata
380
+ class Representation < Google::Apis::Core::JsonRepresentation; end
381
+
382
+ include Google::Apis::Core::JsonObjectSupport
383
+ end
384
+
385
+ class UndeleteProjectMetadata
386
+ class Representation < Google::Apis::Core::JsonRepresentation; end
387
+
388
+ include Google::Apis::Core::JsonObjectSupport
389
+ end
390
+
319
391
  class UndeleteProjectRequest
320
392
  class Representation < Google::Apis::Core::JsonRepresentation; end
321
393
 
322
394
  include Google::Apis::Core::JsonObjectSupport
323
395
  end
324
396
 
397
+ class UpdateFolderMetadata
398
+ class Representation < Google::Apis::Core::JsonRepresentation; end
399
+
400
+ include Google::Apis::Core::JsonObjectSupport
401
+ end
402
+
403
+ class UpdateProjectMetadata
404
+ class Representation < Google::Apis::Core::JsonRepresentation; end
405
+
406
+ include Google::Apis::Core::JsonObjectSupport
407
+ end
408
+
325
409
  class UpdateTagKeyMetadata
326
410
  class Representation < Google::Apis::Core::JsonRepresentation; end
327
411
 
@@ -425,6 +509,29 @@ module Google
425
509
  end
426
510
  end
427
511
 
512
+ class CreateFolderMetadata
513
+ # @private
514
+ class Representation < Google::Apis::Core::JsonRepresentation
515
+ property :display_name, as: 'displayName'
516
+ property :parent, as: 'parent'
517
+ end
518
+ end
519
+
520
+ class CreateProjectMetadata
521
+ # @private
522
+ class Representation < Google::Apis::Core::JsonRepresentation
523
+ property :create_time, as: 'createTime'
524
+ property :gettable, as: 'gettable'
525
+ property :ready, as: 'ready'
526
+ end
527
+ end
528
+
529
+ class CreateTagBindingMetadata
530
+ # @private
531
+ class Representation < Google::Apis::Core::JsonRepresentation
532
+ end
533
+ end
534
+
428
535
  class CreateTagKeyMetadata
429
536
  # @private
430
537
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -437,6 +544,30 @@ module Google
437
544
  end
438
545
  end
439
546
 
547
+ class DeleteFolderMetadata
548
+ # @private
549
+ class Representation < Google::Apis::Core::JsonRepresentation
550
+ end
551
+ end
552
+
553
+ class DeleteOrganizationMetadata
554
+ # @private
555
+ class Representation < Google::Apis::Core::JsonRepresentation
556
+ end
557
+ end
558
+
559
+ class DeleteProjectMetadata
560
+ # @private
561
+ class Representation < Google::Apis::Core::JsonRepresentation
562
+ end
563
+ end
564
+
565
+ class DeleteTagBindingMetadata
566
+ # @private
567
+ class Representation < Google::Apis::Core::JsonRepresentation
568
+ end
569
+ end
570
+
440
571
  class DeleteTagKeyMetadata
441
572
  # @private
442
573
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -608,6 +739,21 @@ module Google
608
739
  end
609
740
  end
610
741
 
742
+ class MoveFolderMetadata
743
+ # @private
744
+ class Representation < Google::Apis::Core::JsonRepresentation
745
+ property :destination_parent, as: 'destinationParent'
746
+ property :display_name, as: 'displayName'
747
+ property :source_parent, as: 'sourceParent'
748
+ end
749
+ end
750
+
751
+ class MoveProjectMetadata
752
+ # @private
753
+ class Representation < Google::Apis::Core::JsonRepresentation
754
+ end
755
+ end
756
+
611
757
  class Operation
612
758
  # @private
613
759
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -762,12 +908,42 @@ module Google
762
908
  end
763
909
  end
764
910
 
911
+ class UndeleteFolderMetadata
912
+ # @private
913
+ class Representation < Google::Apis::Core::JsonRepresentation
914
+ end
915
+ end
916
+
917
+ class UndeleteOrganizationMetadata
918
+ # @private
919
+ class Representation < Google::Apis::Core::JsonRepresentation
920
+ end
921
+ end
922
+
923
+ class UndeleteProjectMetadata
924
+ # @private
925
+ class Representation < Google::Apis::Core::JsonRepresentation
926
+ end
927
+ end
928
+
765
929
  class UndeleteProjectRequest
766
930
  # @private
767
931
  class Representation < Google::Apis::Core::JsonRepresentation
768
932
  end
769
933
  end
770
934
 
935
+ class UpdateFolderMetadata
936
+ # @private
937
+ class Representation < Google::Apis::Core::JsonRepresentation
938
+ end
939
+ end
940
+
941
+ class UpdateProjectMetadata
942
+ # @private
943
+ class Representation < Google::Apis::Core::JsonRepresentation
944
+ end
945
+ end
946
+
771
947
  class UpdateTagKeyMetadata
772
948
  # @private
773
949
  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.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-01 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_v1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v1/v0.4.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v1/v0.9.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: []
@@ -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.11
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 V1