google-apis-cloudresourcemanager_v3 0.63.0 → 0.64.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: 19562f547151fd06d648558f242287e219aafb57dc54156f79159dae920ff780
|
|
4
|
+
data.tar.gz: 68d25efffb9dbefa9add2e06624d96f38df1f2c0665d508454bada8d2a4e2ad9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 16c4fb321fad58ca970d3cbf7fb201759278e54947ee2b2d58416a760693bb4e66668db5727320850630ae91473eb9df0822d3e658d5c7181ac9f81b248535ec
|
|
7
|
+
data.tar.gz: 79e7e7c5aaaeaa9352b1e3ea478f45f0c9197fb85f1cc7535f5cf1427cef9dff4b14540d366d9a6cdb59851eeb48e0e0120f652ffc4520eded03e81536d6b155
|
data/CHANGELOG.md
CHANGED
|
@@ -301,6 +301,34 @@ module Google
|
|
|
301
301
|
end
|
|
302
302
|
end
|
|
303
303
|
|
|
304
|
+
# A status object which is used as the `metadata` field for the Operation
|
|
305
|
+
# returned by CreateBoundary. Currently empty.
|
|
306
|
+
class CreateBoundaryMetadata
|
|
307
|
+
include Google::Apis::Core::Hashable
|
|
308
|
+
|
|
309
|
+
def initialize(**args)
|
|
310
|
+
update!(**args)
|
|
311
|
+
end
|
|
312
|
+
|
|
313
|
+
# Update properties of this object
|
|
314
|
+
def update!(**args)
|
|
315
|
+
end
|
|
316
|
+
end
|
|
317
|
+
|
|
318
|
+
# A status object which is used as the `metadata` field for the Operation
|
|
319
|
+
# returned by CreateCapabilityConfig. Currently empty.
|
|
320
|
+
class CreateCapabilityConfigMetadata
|
|
321
|
+
include Google::Apis::Core::Hashable
|
|
322
|
+
|
|
323
|
+
def initialize(**args)
|
|
324
|
+
update!(**args)
|
|
325
|
+
end
|
|
326
|
+
|
|
327
|
+
# Update properties of this object
|
|
328
|
+
def update!(**args)
|
|
329
|
+
end
|
|
330
|
+
end
|
|
331
|
+
|
|
304
332
|
# Metadata pertaining to the Folder creation process.
|
|
305
333
|
class CreateFolderMetadata
|
|
306
334
|
include Google::Apis::Core::Hashable
|
|
@@ -402,6 +430,34 @@ module Google
|
|
|
402
430
|
end
|
|
403
431
|
end
|
|
404
432
|
|
|
433
|
+
# A status object which is used as the `metadata` field for the Operation
|
|
434
|
+
# returned by DeleteBoundary. Currently empty.
|
|
435
|
+
class DeleteBoundaryMetadata
|
|
436
|
+
include Google::Apis::Core::Hashable
|
|
437
|
+
|
|
438
|
+
def initialize(**args)
|
|
439
|
+
update!(**args)
|
|
440
|
+
end
|
|
441
|
+
|
|
442
|
+
# Update properties of this object
|
|
443
|
+
def update!(**args)
|
|
444
|
+
end
|
|
445
|
+
end
|
|
446
|
+
|
|
447
|
+
# A status object which is used as the `metadata` field for the Operation
|
|
448
|
+
# returned by DeleteCapabilityConfig. Currently empty.
|
|
449
|
+
class DeleteCapabilityConfigMetadata
|
|
450
|
+
include Google::Apis::Core::Hashable
|
|
451
|
+
|
|
452
|
+
def initialize(**args)
|
|
453
|
+
update!(**args)
|
|
454
|
+
end
|
|
455
|
+
|
|
456
|
+
# Update properties of this object
|
|
457
|
+
def update!(**args)
|
|
458
|
+
end
|
|
459
|
+
end
|
|
460
|
+
|
|
405
461
|
# A status object which is used as the `metadata` field for the `Operation`
|
|
406
462
|
# returned by `DeleteFolder`.
|
|
407
463
|
class DeleteFolderMetadata
|
|
@@ -1518,6 +1574,14 @@ module Google
|
|
|
1518
1574
|
# @return [String]
|
|
1519
1575
|
attr_accessor :etag
|
|
1520
1576
|
|
|
1577
|
+
# Output only. If `true`, this project is a Management Project. A Management
|
|
1578
|
+
# Project manages dedicated project groups for specific purposes (e.g., agent
|
|
1579
|
+
# management or app management).
|
|
1580
|
+
# Corresponds to the JSON property `isManagementProject`
|
|
1581
|
+
# @return [Boolean]
|
|
1582
|
+
attr_accessor :is_management_project
|
|
1583
|
+
alias_method :is_management_project?, :is_management_project
|
|
1584
|
+
|
|
1521
1585
|
# Optional. The labels associated with this project. Label keys must be between
|
|
1522
1586
|
# 1 and 63 characters long and must conform to the following regular expression:
|
|
1523
1587
|
# \[a-z\](\[-a-z0-9\]*\[a-z0-9\])?. Label values must be between 0 and 63
|
|
@@ -1578,6 +1642,7 @@ module Google
|
|
|
1578
1642
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
|
1579
1643
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
1580
1644
|
@etag = args[:etag] if args.key?(:etag)
|
|
1645
|
+
@is_management_project = args[:is_management_project] if args.key?(:is_management_project)
|
|
1581
1646
|
@labels = args[:labels] if args.key?(:labels)
|
|
1582
1647
|
@name = args[:name] if args.key?(:name)
|
|
1583
1648
|
@parent = args[:parent] if args.key?(:parent)
|
|
@@ -2225,6 +2290,48 @@ module Google
|
|
|
2225
2290
|
end
|
|
2226
2291
|
end
|
|
2227
2292
|
|
|
2293
|
+
# A status object which is used as the `metadata` field for the Operation
|
|
2294
|
+
# returned by UpdateBoundaryConfig. Currently empty.
|
|
2295
|
+
class UpdateBoundaryConfigMetadata
|
|
2296
|
+
include Google::Apis::Core::Hashable
|
|
2297
|
+
|
|
2298
|
+
def initialize(**args)
|
|
2299
|
+
update!(**args)
|
|
2300
|
+
end
|
|
2301
|
+
|
|
2302
|
+
# Update properties of this object
|
|
2303
|
+
def update!(**args)
|
|
2304
|
+
end
|
|
2305
|
+
end
|
|
2306
|
+
|
|
2307
|
+
# A status object which is used as the `metadata` field for the Operation
|
|
2308
|
+
# returned by UpdateBoundary. Currently empty.
|
|
2309
|
+
class UpdateBoundaryMetadata
|
|
2310
|
+
include Google::Apis::Core::Hashable
|
|
2311
|
+
|
|
2312
|
+
def initialize(**args)
|
|
2313
|
+
update!(**args)
|
|
2314
|
+
end
|
|
2315
|
+
|
|
2316
|
+
# Update properties of this object
|
|
2317
|
+
def update!(**args)
|
|
2318
|
+
end
|
|
2319
|
+
end
|
|
2320
|
+
|
|
2321
|
+
# A status object which is used as the `metadata` field for the Operation
|
|
2322
|
+
# returned by UpdateCapabilityConfig. Currently empty.
|
|
2323
|
+
class UpdateCapabilityConfigMetadata
|
|
2324
|
+
include Google::Apis::Core::Hashable
|
|
2325
|
+
|
|
2326
|
+
def initialize(**args)
|
|
2327
|
+
update!(**args)
|
|
2328
|
+
end
|
|
2329
|
+
|
|
2330
|
+
# Update properties of this object
|
|
2331
|
+
def update!(**args)
|
|
2332
|
+
end
|
|
2333
|
+
end
|
|
2334
|
+
|
|
2228
2335
|
# A status object which is used as the `metadata` field for the Operation
|
|
2229
2336
|
# returned by UpdateFolder.
|
|
2230
2337
|
class UpdateFolderMetadata
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module CloudresourcemanagerV3
|
|
18
18
|
# Version of the google-apis-cloudresourcemanager_v3 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.64.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260820"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -58,6 +58,18 @@ module Google
|
|
|
58
58
|
include Google::Apis::Core::JsonObjectSupport
|
|
59
59
|
end
|
|
60
60
|
|
|
61
|
+
class CreateBoundaryMetadata
|
|
62
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
63
|
+
|
|
64
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
class CreateCapabilityConfigMetadata
|
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
69
|
+
|
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
71
|
+
end
|
|
72
|
+
|
|
61
73
|
class CreateFolderMetadata
|
|
62
74
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
63
75
|
|
|
@@ -88,6 +100,18 @@ module Google
|
|
|
88
100
|
include Google::Apis::Core::JsonObjectSupport
|
|
89
101
|
end
|
|
90
102
|
|
|
103
|
+
class DeleteBoundaryMetadata
|
|
104
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
105
|
+
|
|
106
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
class DeleteCapabilityConfigMetadata
|
|
110
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
111
|
+
|
|
112
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
113
|
+
end
|
|
114
|
+
|
|
91
115
|
class DeleteFolderMetadata
|
|
92
116
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
93
117
|
|
|
@@ -394,6 +418,24 @@ module Google
|
|
|
394
418
|
include Google::Apis::Core::JsonObjectSupport
|
|
395
419
|
end
|
|
396
420
|
|
|
421
|
+
class UpdateBoundaryConfigMetadata
|
|
422
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
423
|
+
|
|
424
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
425
|
+
end
|
|
426
|
+
|
|
427
|
+
class UpdateBoundaryMetadata
|
|
428
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
429
|
+
|
|
430
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
431
|
+
end
|
|
432
|
+
|
|
433
|
+
class UpdateCapabilityConfigMetadata
|
|
434
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
435
|
+
|
|
436
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
437
|
+
end
|
|
438
|
+
|
|
397
439
|
class UpdateFolderMetadata
|
|
398
440
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
399
441
|
|
|
@@ -473,6 +515,18 @@ module Google
|
|
|
473
515
|
end
|
|
474
516
|
end
|
|
475
517
|
|
|
518
|
+
class CreateBoundaryMetadata
|
|
519
|
+
# @private
|
|
520
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
521
|
+
end
|
|
522
|
+
end
|
|
523
|
+
|
|
524
|
+
class CreateCapabilityConfigMetadata
|
|
525
|
+
# @private
|
|
526
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
527
|
+
end
|
|
528
|
+
end
|
|
529
|
+
|
|
476
530
|
class CreateFolderMetadata
|
|
477
531
|
# @private
|
|
478
532
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -508,6 +562,18 @@ module Google
|
|
|
508
562
|
end
|
|
509
563
|
end
|
|
510
564
|
|
|
565
|
+
class DeleteBoundaryMetadata
|
|
566
|
+
# @private
|
|
567
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
568
|
+
end
|
|
569
|
+
end
|
|
570
|
+
|
|
571
|
+
class DeleteCapabilityConfigMetadata
|
|
572
|
+
# @private
|
|
573
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
574
|
+
end
|
|
575
|
+
end
|
|
576
|
+
|
|
511
577
|
class DeleteFolderMetadata
|
|
512
578
|
# @private
|
|
513
579
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -797,6 +863,7 @@ module Google
|
|
|
797
863
|
property :delete_time, as: 'deleteTime'
|
|
798
864
|
property :display_name, as: 'displayName'
|
|
799
865
|
property :etag, as: 'etag'
|
|
866
|
+
property :is_management_project, as: 'isManagementProject'
|
|
800
867
|
hash :labels, as: 'labels'
|
|
801
868
|
property :name, as: 'name'
|
|
802
869
|
property :parent, as: 'parent'
|
|
@@ -967,6 +1034,24 @@ module Google
|
|
|
967
1034
|
end
|
|
968
1035
|
end
|
|
969
1036
|
|
|
1037
|
+
class UpdateBoundaryConfigMetadata
|
|
1038
|
+
# @private
|
|
1039
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1040
|
+
end
|
|
1041
|
+
end
|
|
1042
|
+
|
|
1043
|
+
class UpdateBoundaryMetadata
|
|
1044
|
+
# @private
|
|
1045
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1046
|
+
end
|
|
1047
|
+
end
|
|
1048
|
+
|
|
1049
|
+
class UpdateCapabilityConfigMetadata
|
|
1050
|
+
# @private
|
|
1051
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1052
|
+
end
|
|
1053
|
+
end
|
|
1054
|
+
|
|
970
1055
|
class UpdateFolderMetadata
|
|
971
1056
|
# @private
|
|
972
1057
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-cloudresourcemanager_v3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.64.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudresourcemanager_v3/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v3/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v3/v0.64.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudresourcemanager_v3
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|