google-apis-cloudresourcemanager_v1 0.3.0 → 0.8.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: 39b9f3e8058dc2cfa6f3613c3bf9ef95f18e361626a91fb1b589aea79f987d78
4
- data.tar.gz: 489d8f99a7c8d31c87595d99bbc252fdf98958f7cbb9bd19990be9c8c1382b03
3
+ metadata.gz: 3125401feb55a104563e65a5e78598b96767b7295200d483cf879db93f495309
4
+ data.tar.gz: f59222339acc54bdbb6d8102a48915a92f956feb72bf609c1b665df0e15db59e
5
5
  SHA512:
6
- metadata.gz: 6b2d7728b63c38a75848087d66c6d301fd3821b401cb7a41c0987da0406559a881fd0840efdc248b713841d97f3ed8a1726686b3653909618a79909f6badb63c
7
- data.tar.gz: 2e22b4a066d9f49e2575663c1c8dd2353a26e679b1005c0da9a9e5a70a90aa4c6259c7e71ad965f10b2f3ba07d105924b3efe0c376ffc3ea92780c2f5d4f3204
6
+ metadata.gz: c574bbaba26fb268d7d3aa0de3e1701515c664927157d0737baf4a307faaaf52bdb49512c8bceb775edbb4e6e1b7e2294d57697eb54b972c861c80ae079b0085
7
+ data.tar.gz: d68491829aac7eb393e28e8f1d54d057813a4db22004cb3e3774636affb279a7e937e76fca33b6547a906b00d1fc4ed6e330d0f706f9c1f7f6861562c209aa05
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-cloudresourcemanager_v1
2
2
 
3
+ ### v0.8.0 (2021-04-02)
4
+
5
+ * Regenerated from discovery document revision 20210328
6
+
7
+ ### v0.7.0 (2021-03-19)
8
+
9
+ * Regenerated from discovery document revision 20210314
10
+
11
+ ### v0.6.0 (2021-03-13)
12
+
13
+ * Regenerated from discovery document revision 20210309
14
+ * Regenerated using generator version 0.2.0
15
+
16
+ ### v0.5.0 (2021-03-04)
17
+
18
+ * Unspecified changes
19
+
20
+ ### v0.4.0 (2021-02-26)
21
+
22
+ * Regenerated from discovery document revision 20210222
23
+
3
24
  ### v0.3.0 (2021-02-19)
4
25
 
5
26
  * Regenerated from discovery document revision 20210215
@@ -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,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
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
+
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.3.0"
19
+ GEM_VERSION = "0.8.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 = "20210215"
25
+ REVISION = "20210328"
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
@@ -326,8 +326,7 @@ module Google
326
326
 
327
327
  # Retrieve a Lien by `name`. Callers of this method will require permission on
328
328
  # the `parent` resource. For example, a Lien with a `parent` of `projects/1234`
329
- # requires permission requires permission `resourcemanager.projects.get` or `
330
- # resourcemanager.projects.updateLiens`.
329
+ # requires permission `resourcemanager.projects.get`
331
330
  # @param [String] name
332
331
  # Required. The name/identifier of the Lien.
333
332
  # @param [String] fields
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.3.0
4
+ version: 0.8.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-22 00:00:00.000000000 Z
11
+ date: 2021-04-05 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.3.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v1/v0.8.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.6
72
+ rubygems_version: 3.2.13
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Cloud Resource Manager API V1