google-apis-cloudresourcemanager_v1 0.6.0 → 0.11.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: 235c587c7844323a540b2d551117db829be2b87b0346c837d1df55ee96c47a73
4
- data.tar.gz: 17f43a91c484a03aaa6e273fd0da19694cb67f7a8276eea89adfaf893ac64ca2
3
+ metadata.gz: 1b453abd89b23605e2e2dfaabec7b898b3cae01055cc6e90a314cd1659650470
4
+ data.tar.gz: 4496049b86bb318f6fe1bccadd3d6eb692baff43c0b4b145c4fa9ded3c16ea75
5
5
  SHA512:
6
- metadata.gz: b89d03d6713a0cd52965a2a9dbf3022b5d7e0cb877aab8661a082966f22ff6f8ad0dbea025d7473708efcbfca60358cd640673ac31f9d63fd7bf8bd18713d27b
7
- data.tar.gz: e0381217d8c5dd96ad9989f1fd3abc599e3e1569cf8acb443f599bd2c5389e36c651de371aacaf0f0ae59e0a3ae05c6be3316f00d3ad40a554ca80172093f41f
6
+ metadata.gz: 5c23a8cf72982dd8ff55768a3e7f35c888b03a70a2529ba988a51b44217d9e30e8141e3a739f9cc7a90dc66fe64489630899f0b4eaf67997694c7df1cc2f755d
7
+ data.tar.gz: 7e5d7c46a17125e31941425fefa28fd76fd1ba6c8c3c75d107dccd90c05c1f407de17cc8d545cfc62e808969c64f6752cf2f45d7c5e8d823a3d71dc9c0be623d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-cloudresourcemanager_v1
2
2
 
3
+ ### v0.11.0 (2021-06-17)
4
+
5
+ * Regenerated from discovery document revision 20210613
6
+ * Regenerated using generator version 0.3.0
7
+
8
+ ### v0.10.0 (2021-05-19)
9
+
10
+ * Unspecified changes
11
+
12
+ ### v0.9.0 (2021-04-08)
13
+
14
+ * Regenerated from discovery document revision 20210331
15
+
16
+ ### v0.8.0 (2021-04-02)
17
+
18
+ * Regenerated from discovery document revision 20210328
19
+
20
+ ### v0.7.0 (2021-03-19)
21
+
22
+ * Regenerated from discovery document revision 20210314
23
+
3
24
  ### v0.6.0 (2021-03-13)
4
25
 
5
26
  * Regenerated from discovery document revision 20210309
@@ -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.6.0"
19
+ GEM_VERSION = "0.11.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.2.0"
22
+ GENERATOR_VERSION = "0.3.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210309"
25
+ REVISION = "20210613"
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
@@ -1121,22 +1121,21 @@ module Google
1121
1121
  # query will return results that match any of the fields. Some eligible fields
1122
1122
  # for filtering are: + `name` + `id` + `labels.` (where *key* is the name of a
1123
1123
  # label) + `parent.type` + `parent.id` + `lifecycleState` Some examples of
1124
- # filter strings: | Filter | Description | |------------------|------------------
1125
- # -----------------------------------| | name:how* | The project's name starts
1124
+ # filter queries: | Query | Description | |------------------|-------------------
1125
+ # ----------------------------------| | name:how* | The project's name starts
1126
1126
  # with "how". | | name:Howl | The project's name is `Howl` or `howl`. | | name:
1127
1127
  # HOWL | Equivalent to above. | | NAME:howl | Equivalent to above. | | labels.
1128
1128
  # color:* | The project has the label `color`. | | labels.color:red | The
1129
1129
  # project's label `color` has the value `red`. | | labels.color:red labels.size:
1130
- # big | The project's label `color` | : : has the value `red` and its : : :
1131
- # label`size` has the value : : : `big`. : | lifecycleState:DELETE_REQUESTED |
1132
- # Only show projects that are | : : pending deletion. : If no filter is
1133
- # specified, the call will return projects for which the user has the `
1134
- # resourcemanager.projects.get` permission. NOTE: To perform a by-parent query (
1135
- # eg., what projects are directly in a Folder), the caller must have the `
1136
- # resourcemanager.projects.list` permission on the parent and the filter must
1137
- # contain both a `parent.type` and a `parent.id` restriction (example: "parent.
1138
- # type:folder parent.id:123"). In this case an alternate search index is used
1139
- # which provides more consistent results.
1130
+ # big | The project's label `color` has the value `red` and its label `size` has
1131
+ # the value `big`.| | lifecycleState:DELETE_REQUESTED | Only show projects that
1132
+ # are pending deletion.| If no filter is specified, the call will return
1133
+ # projects for which the user has the `resourcemanager.projects.get` permission.
1134
+ # NOTE: To perform a by-parent query (eg., what projects are directly in a
1135
+ # Folder), the caller must have the `resourcemanager.projects.list` permission
1136
+ # on the parent and the filter must contain both a `parent.type` and a `parent.
1137
+ # id` restriction (example: "parent.type:folder parent.id:123"). In this case an
1138
+ # alternate search index is used which provides more consistent results.
1140
1139
  # @param [Fixnum] page_size
1141
1140
  # Optional. The maximum number of Projects to return in the response. The server
1142
1141
  # can return fewer Projects than requested. If unspecified, server picks an
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.6.0
4
+ version: 0.11.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-15 00:00:00.000000000 Z
11
+ date: 2021-06-21 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.6.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v1/v0.11.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: []
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.13
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