google-apis-workloadmanager_v1 0.22.0 → 0.24.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: c144d435f1d21f56f29ce66ac8e55e35351532689f1da70a2aec2c54cfea0f53
4
- data.tar.gz: 3ed7d1ef020f7661bd1edd1ba463072093a879b5af05936326a10e7237dca9e6
3
+ metadata.gz: a8c7f5a25d8dce9a321bc0ac448b3210c7013f238995c7f55e7f668ea2103c50
4
+ data.tar.gz: 8cf9b0aee0afb986a6c2db5b1f845851f800adda91d2b5099cf16a581ef17f1f
5
5
  SHA512:
6
- metadata.gz: 23425cc0c61edcba8b608bbbc12ce1909de62f617f3ab414fee17821b5e4e81a0fd7139d5913db04235f830277b972fde0b72a16b2b90439d25445e66bf3bf51
7
- data.tar.gz: e9e9986ba2fa8e6fb9200dfae4445285bef6fdfaefdce96b582bd0abe21270d2b39769968feb836c63ed75088bdebfaa7c5a8276780cb17f174afd35702e7d1a
6
+ metadata.gz: b32ec8e1a6f5a9703f62bbc63ed35e59e250b019f9dbe73a37f1b25e9efdf9f0615899d5d92948eac572e091bd12412506568b03ed21ba3af36afb857e19dbc2
7
+ data.tar.gz: 003a5de8433154017644b10ad57dbe5f8bdfb9d788c61c7e73b3d10bcef96ebcdfecff94d088b2916840d54099af873579a4fb554619a951dafb577dd57184b2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-workloadmanager_v1
2
2
 
3
+ ### v0.24.0 (2024-08-04)
4
+
5
+ * Regenerated from discovery document revision 20240717
6
+ * Regenerated using generator version 0.15.1
7
+
8
+ ### v0.23.0 (2024-07-25)
9
+
10
+ * Regenerated from discovery document revision 20240701
11
+
3
12
  ### v0.22.0 (2024-06-26)
4
13
 
5
14
  * Regenerated from discovery document revision 20240619
@@ -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)
@@ -467,8 +474,9 @@ module Google
467
474
  class ExternalDataSources
468
475
  include Google::Apis::Core::Hashable
469
476
 
470
- # Required. The asset type of the external data source must be one of go/cai-
471
- # asset-types
477
+ # Required. The asset type of the external data source this can be one of go/cai-
478
+ # asset-types to override the default asset type or it can be a custom type
479
+ # defined by the user custom type must match the asset type in the rule
472
480
  # Corresponds to the JSON property `assetType`
473
481
  # @return [String]
474
482
  attr_accessor :asset_type
@@ -591,6 +599,12 @@ module Google
591
599
  class IsolationExpectations
592
600
  include Google::Apis::Core::Hashable
593
601
 
602
+ # Explicit overrides for ZI and ZS requirements to be used for resources that
603
+ # should be excluded from ZI/ZS verification logic.
604
+ # Corresponds to the JSON property `requirementOverride`
605
+ # @return [Google::Apis::WorkloadmanagerV1::RequirementOverride]
606
+ attr_accessor :requirement_override
607
+
594
608
  #
595
609
  # Corresponds to the JSON property `ziOrgPolicy`
596
610
  # @return [String]
@@ -634,6 +648,7 @@ module Google
634
648
 
635
649
  # Update properties of this object
636
650
  def update!(**args)
651
+ @requirement_override = args[:requirement_override] if args.key?(:requirement_override)
637
652
  @zi_org_policy = args[:zi_org_policy] if args.key?(:zi_org_policy)
638
653
  @zi_region_policy = args[:zi_region_policy] if args.key?(:zi_region_policy)
639
654
  @zi_region_state = args[:zi_region_state] if args.key?(:zi_region_state)
@@ -1125,6 +1140,31 @@ module Google
1125
1140
  end
1126
1141
  end
1127
1142
 
1143
+ #
1144
+ class RequirementOverride
1145
+ include Google::Apis::Core::Hashable
1146
+
1147
+ #
1148
+ # Corresponds to the JSON property `ziOverride`
1149
+ # @return [String]
1150
+ attr_accessor :zi_override
1151
+
1152
+ #
1153
+ # Corresponds to the JSON property `zsOverride`
1154
+ # @return [String]
1155
+ attr_accessor :zs_override
1156
+
1157
+ def initialize(**args)
1158
+ update!(**args)
1159
+ end
1160
+
1161
+ # Update properties of this object
1162
+ def update!(**args)
1163
+ @zi_override = args[:zi_override] if args.key?(:zi_override)
1164
+ @zs_override = args[:zs_override] if args.key?(:zs_override)
1165
+ end
1166
+ end
1167
+
1128
1168
  # Message represent resource in execution result
1129
1169
  class Resource
1130
1170
  include Google::Apis::Core::Hashable
@@ -1940,7 +1980,13 @@ module Google
1940
1980
  class SpannerLocation
1941
1981
  include Google::Apis::Core::Hashable
1942
1982
 
1943
- #
1983
+ # Set of backups used by the resource with name in the same format as what is
1984
+ # available at http://table/spanner_automon.backup_metadata
1985
+ # Corresponds to the JSON property `backupName`
1986
+ # @return [Array<String>]
1987
+ attr_accessor :backup_name
1988
+
1989
+ # Set of databases used by the resource in format /span//
1944
1990
  # Corresponds to the JSON property `dbName`
1945
1991
  # @return [Array<String>]
1946
1992
  attr_accessor :db_name
@@ -1951,6 +1997,7 @@ module Google
1951
1997
 
1952
1998
  # Update properties of this object
1953
1999
  def update!(**args)
2000
+ @backup_name = args[:backup_name] if args.key?(:backup_name)
1954
2001
  @db_name = args[:db_name] if args.key?(:db_name)
1955
2002
  end
1956
2003
  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.22.0"
19
+ GEM_VERSION = "0.24.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240619"
25
+ REVISION = "20240717"
26
26
  end
27
27
  end
28
28
  end
@@ -214,6 +214,12 @@ module Google
214
214
  include Google::Apis::Core::JsonObjectSupport
215
215
  end
216
216
 
217
+ class RequirementOverride
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
217
223
  class Resource
218
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
219
225
 
@@ -405,6 +411,7 @@ module Google
405
411
  class AssetLocation
406
412
  # @private
407
413
  class Representation < Google::Apis::Core::JsonRepresentation
414
+ property :ccfe_rms_path, as: 'ccfeRmsPath'
408
415
  property :expected, as: 'expected', class: Google::Apis::WorkloadmanagerV1::IsolationExpectations, decorator: Google::Apis::WorkloadmanagerV1::IsolationExpectations::Representation
409
416
 
410
417
  collection :extra_parameters, as: 'extraParameters', class: Google::Apis::WorkloadmanagerV1::ExtraParameter, decorator: Google::Apis::WorkloadmanagerV1::ExtraParameter::Representation
@@ -572,6 +579,8 @@ module Google
572
579
  class IsolationExpectations
573
580
  # @private
574
581
  class Representation < Google::Apis::Core::JsonRepresentation
582
+ property :requirement_override, as: 'requirementOverride', class: Google::Apis::WorkloadmanagerV1::RequirementOverride, decorator: Google::Apis::WorkloadmanagerV1::RequirementOverride::Representation
583
+
575
584
  property :zi_org_policy, as: 'ziOrgPolicy'
576
585
  property :zi_region_policy, as: 'ziRegionPolicy'
577
586
  property :zi_region_state, as: 'ziRegionState'
@@ -725,6 +734,14 @@ module Google
725
734
  end
726
735
  end
727
736
 
737
+ class RequirementOverride
738
+ # @private
739
+ class Representation < Google::Apis::Core::JsonRepresentation
740
+ property :zi_override, as: 'ziOverride'
741
+ property :zs_override, as: 'zsOverride'
742
+ end
743
+ end
744
+
728
745
  class Resource
729
746
  # @private
730
747
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -951,6 +968,7 @@ module Google
951
968
  class SpannerLocation
952
969
  # @private
953
970
  class Representation < Google::Apis::Core::JsonRepresentation
971
+ collection :backup_name, as: 'backupName'
954
972
  collection :db_name, as: 'dbName'
955
973
  end
956
974
  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.22.0
4
+ version: 0.24.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-06-27 00:00:00.000000000 Z
11
+ date: 2024-08-04 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.22.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workloadmanager_v1/v0.24.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: []