google-apis-cloudresourcemanager_v1 0.6.0 → 0.7.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7272ab6d923bae23d6e9011eb37bde6144e467e625d8b3d6252caa6201704118
|
4
|
+
data.tar.gz: c30b23786905c68b39b6029360f002a3eaebc4ac272e591ae57ac62eff3fc376
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c9481a677a62a5b8cade8cf2e28897759ead5a27399bcec05b479f0b03f2d012666e1ece474b41bee8ec5fdb81e3e9e45a1f6f26cd837df57fe34c00daa42fb
|
7
|
+
data.tar.gz: 84e2c908d525ad47d5c0c47821b195c1fbbb6b26732817f3c9e3cc6e872477053ee43def334446ad10d869be659ccbe3398e007409a031cbe106f4b4ca8670c5
|
data/CHANGELOG.md
CHANGED
@@ -420,6 +420,68 @@ 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
|
+
|
423
485
|
# Runtime operation information for creating a TagKey.
|
424
486
|
class CreateTagKeyMetadata
|
425
487
|
include Google::Apis::Core::Hashable
|
@@ -446,6 +508,48 @@ module Google
|
|
446
508
|
end
|
447
509
|
end
|
448
510
|
|
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
|
+
|
449
553
|
# Runtime operation information for deleting a TagKey.
|
450
554
|
class DeleteTagKeyMetadata
|
451
555
|
include Google::Apis::Core::Hashable
|
@@ -1092,6 +1196,51 @@ module Google
|
|
1092
1196
|
end
|
1093
1197
|
end
|
1094
1198
|
|
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
|
+
|
1095
1244
|
# This resource represents a long-running operation that is the result of a
|
1096
1245
|
# network API call.
|
1097
1246
|
class Operation
|
@@ -1790,6 +1939,48 @@ module Google
|
|
1790
1939
|
end
|
1791
1940
|
end
|
1792
1941
|
|
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
|
+
|
1793
1984
|
# The request sent to the UndeleteProject method.
|
1794
1985
|
class UndeleteProjectRequest
|
1795
1986
|
include Google::Apis::Core::Hashable
|
@@ -1803,6 +1994,34 @@ module Google
|
|
1803
1994
|
end
|
1804
1995
|
end
|
1805
1996
|
|
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
|
+
|
1806
2025
|
# Runtime operation information for updating a TagKey.
|
1807
2026
|
class UpdateTagKeyMetadata
|
1808
2027
|
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.
|
19
|
+
GEM_VERSION = "0.7.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210314"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -82,6 +82,18 @@ 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
|
+
|
85
97
|
class CreateTagKeyMetadata
|
86
98
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
99
|
|
@@ -94,6 +106,24 @@ module Google
|
|
94
106
|
include Google::Apis::Core::JsonObjectSupport
|
95
107
|
end
|
96
108
|
|
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
|
+
|
97
127
|
class DeleteTagKeyMetadata
|
98
128
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
129
|
|
@@ -220,6 +250,18 @@ module Google
|
|
220
250
|
include Google::Apis::Core::JsonObjectSupport
|
221
251
|
end
|
222
252
|
|
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
|
+
|
223
265
|
class Operation
|
224
266
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
225
267
|
|
@@ -316,12 +358,42 @@ module Google
|
|
316
358
|
include Google::Apis::Core::JsonObjectSupport
|
317
359
|
end
|
318
360
|
|
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
|
+
|
319
379
|
class UndeleteProjectRequest
|
320
380
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
381
|
|
322
382
|
include Google::Apis::Core::JsonObjectSupport
|
323
383
|
end
|
324
384
|
|
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
|
+
|
325
397
|
class UpdateTagKeyMetadata
|
326
398
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
399
|
|
@@ -425,6 +497,23 @@ module Google
|
|
425
497
|
end
|
426
498
|
end
|
427
499
|
|
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
|
+
|
428
517
|
class CreateTagKeyMetadata
|
429
518
|
# @private
|
430
519
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -437,6 +526,24 @@ module Google
|
|
437
526
|
end
|
438
527
|
end
|
439
528
|
|
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
|
+
|
440
547
|
class DeleteTagKeyMetadata
|
441
548
|
# @private
|
442
549
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -608,6 +715,21 @@ module Google
|
|
608
715
|
end
|
609
716
|
end
|
610
717
|
|
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
|
+
|
611
733
|
class Operation
|
612
734
|
# @private
|
613
735
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -762,12 +884,42 @@ module Google
|
|
762
884
|
end
|
763
885
|
end
|
764
886
|
|
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
|
+
|
765
905
|
class UndeleteProjectRequest
|
766
906
|
# @private
|
767
907
|
class Representation < Google::Apis::Core::JsonRepresentation
|
768
908
|
end
|
769
909
|
end
|
770
910
|
|
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
|
+
|
771
923
|
class UpdateTagKeyMetadata
|
772
924
|
# @private
|
773
925
|
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
|
+
version: 0.7.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-
|
11
|
+
date: 2021-03-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.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v1/v0.7.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: []
|