google-apis-workloadmanager_v1 0.23.0 → 0.24.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: a8c7f5a25d8dce9a321bc0ac448b3210c7013f238995c7f55e7f668ea2103c50
|
|
4
|
+
data.tar.gz: 8cf9b0aee0afb986a6c2db5b1f845851f800adda91d2b5099cf16a581ef17f1f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b32ec8e1a6f5a9703f62bbc63ed35e59e250b019f9dbe73a37f1b25e9efdf9f0615899d5d92948eac572e091bd12412506568b03ed21ba3af36afb857e19dbc2
|
|
7
|
+
data.tar.gz: 003a5de8433154017644b10ad57dbe5f8bdfb9d788c61c7e73b3d10bcef96ebcdfecff94d088b2916840d54099af873579a4fb554619a951dafb577dd57184b2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
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
|
+
|
|
3
8
|
### v0.23.0 (2024-07-25)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20240701
|
|
@@ -474,8 +474,9 @@ module Google
|
|
|
474
474
|
class ExternalDataSources
|
|
475
475
|
include Google::Apis::Core::Hashable
|
|
476
476
|
|
|
477
|
-
# Required. The asset type of the external data source
|
|
478
|
-
# 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
|
|
479
480
|
# Corresponds to the JSON property `assetType`
|
|
480
481
|
# @return [String]
|
|
481
482
|
attr_accessor :asset_type
|
|
@@ -598,6 +599,12 @@ module Google
|
|
|
598
599
|
class IsolationExpectations
|
|
599
600
|
include Google::Apis::Core::Hashable
|
|
600
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
|
+
|
|
601
608
|
#
|
|
602
609
|
# Corresponds to the JSON property `ziOrgPolicy`
|
|
603
610
|
# @return [String]
|
|
@@ -641,6 +648,7 @@ module Google
|
|
|
641
648
|
|
|
642
649
|
# Update properties of this object
|
|
643
650
|
def update!(**args)
|
|
651
|
+
@requirement_override = args[:requirement_override] if args.key?(:requirement_override)
|
|
644
652
|
@zi_org_policy = args[:zi_org_policy] if args.key?(:zi_org_policy)
|
|
645
653
|
@zi_region_policy = args[:zi_region_policy] if args.key?(:zi_region_policy)
|
|
646
654
|
@zi_region_state = args[:zi_region_state] if args.key?(:zi_region_state)
|
|
@@ -1132,6 +1140,31 @@ module Google
|
|
|
1132
1140
|
end
|
|
1133
1141
|
end
|
|
1134
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
|
+
|
|
1135
1168
|
# Message represent resource in execution result
|
|
1136
1169
|
class Resource
|
|
1137
1170
|
include Google::Apis::Core::Hashable
|
|
@@ -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.24.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.15.
|
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
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
|
|
|
@@ -573,6 +579,8 @@ module Google
|
|
|
573
579
|
class IsolationExpectations
|
|
574
580
|
# @private
|
|
575
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
|
+
|
|
576
584
|
property :zi_org_policy, as: 'ziOrgPolicy'
|
|
577
585
|
property :zi_region_policy, as: 'ziRegionPolicy'
|
|
578
586
|
property :zi_region_state, as: 'ziRegionState'
|
|
@@ -726,6 +734,14 @@ module Google
|
|
|
726
734
|
end
|
|
727
735
|
end
|
|
728
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
|
+
|
|
729
745
|
class Resource
|
|
730
746
|
# @private
|
|
731
747
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.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-
|
|
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.
|
|
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: []
|