google-apis-workloadmanager_v1 0.22.0 → 0.23.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: 76393bd000a95acf03373413040dad25a0323f07db68ef28c3dd16bb928cadb1
|
|
4
|
+
data.tar.gz: 5d7a76ce22df5ce4040691d6dfb4d64a12ece72dfdcadfa27ba69dcfe8ad41da
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cd2e0a6034c7b7a2e58a0cc1eff84f306a2ff8a00000b98cbfd39f7cbb35ff1bb34739d29531c3fa485924cda1823c1994acd3062c28f0c1bceb59d17c906d85
|
|
7
|
+
data.tar.gz: fc23d8169d0c076f6a9a8b3abcc455671fb9dfc56a8dda5b4d23c9ba4b78eae491a68c23262c8b1ba6aee356710d26f8fa8e8a26fad7a355663e564d1b926ceb
|
data/CHANGELOG.md
CHANGED
|
@@ -53,6 +53,12 @@ module Google
|
|
|
53
53
|
class AssetLocation
|
|
54
54
|
include Google::Apis::Core::Hashable
|
|
55
55
|
|
|
56
|
+
# Spanner path of the CCFE RMS database. It is only applicable for CCFE tenants
|
|
57
|
+
# that use CCFE RMS for storing resource metadata.
|
|
58
|
+
# Corresponds to the JSON property `ccfeRmsPath`
|
|
59
|
+
# @return [String]
|
|
60
|
+
attr_accessor :ccfe_rms_path
|
|
61
|
+
|
|
56
62
|
# Defines the customer expectation around ZI/ZS for this asset and ZI/ZS state
|
|
57
63
|
# of the region at the time of asset creation.
|
|
58
64
|
# Corresponds to the JSON property `expected`
|
|
@@ -81,6 +87,7 @@ module Google
|
|
|
81
87
|
|
|
82
88
|
# Update properties of this object
|
|
83
89
|
def update!(**args)
|
|
90
|
+
@ccfe_rms_path = args[:ccfe_rms_path] if args.key?(:ccfe_rms_path)
|
|
84
91
|
@expected = args[:expected] if args.key?(:expected)
|
|
85
92
|
@extra_parameters = args[:extra_parameters] if args.key?(:extra_parameters)
|
|
86
93
|
@location_data = args[:location_data] if args.key?(:location_data)
|
|
@@ -1940,7 +1947,13 @@ module Google
|
|
|
1940
1947
|
class SpannerLocation
|
|
1941
1948
|
include Google::Apis::Core::Hashable
|
|
1942
1949
|
|
|
1943
|
-
#
|
|
1950
|
+
# Set of backups used by the resource with name in the same format as what is
|
|
1951
|
+
# available at http://table/spanner_automon.backup_metadata
|
|
1952
|
+
# Corresponds to the JSON property `backupName`
|
|
1953
|
+
# @return [Array<String>]
|
|
1954
|
+
attr_accessor :backup_name
|
|
1955
|
+
|
|
1956
|
+
# Set of databases used by the resource in format /span//
|
|
1944
1957
|
# Corresponds to the JSON property `dbName`
|
|
1945
1958
|
# @return [Array<String>]
|
|
1946
1959
|
attr_accessor :db_name
|
|
@@ -1951,6 +1964,7 @@ module Google
|
|
|
1951
1964
|
|
|
1952
1965
|
# Update properties of this object
|
|
1953
1966
|
def update!(**args)
|
|
1967
|
+
@backup_name = args[:backup_name] if args.key?(:backup_name)
|
|
1954
1968
|
@db_name = args[:db_name] if args.key?(:db_name)
|
|
1955
1969
|
end
|
|
1956
1970
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module WorkloadmanagerV1
|
|
18
18
|
# Version of the google-apis-workloadmanager_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.23.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20240701"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -405,6 +405,7 @@ module Google
|
|
|
405
405
|
class AssetLocation
|
|
406
406
|
# @private
|
|
407
407
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
408
|
+
property :ccfe_rms_path, as: 'ccfeRmsPath'
|
|
408
409
|
property :expected, as: 'expected', class: Google::Apis::WorkloadmanagerV1::IsolationExpectations, decorator: Google::Apis::WorkloadmanagerV1::IsolationExpectations::Representation
|
|
409
410
|
|
|
410
411
|
collection :extra_parameters, as: 'extraParameters', class: Google::Apis::WorkloadmanagerV1::ExtraParameter, decorator: Google::Apis::WorkloadmanagerV1::ExtraParameter::Representation
|
|
@@ -951,6 +952,7 @@ module Google
|
|
|
951
952
|
class SpannerLocation
|
|
952
953
|
# @private
|
|
953
954
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
955
|
+
collection :backup_name, as: 'backupName'
|
|
954
956
|
collection :db_name, as: 'dbName'
|
|
955
957
|
end
|
|
956
958
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-workloadmanager_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.23.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: 2024-
|
|
11
|
+
date: 2024-07-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workloadmanager_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-workloadmanager_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-workloadmanager_v1/v0.23.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workloadmanager_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|