google-apis-workloadmanager_v1 0.46.0 → 0.47.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: 0226d79407c1d0799d7ba47e9bf6591a77d5bcc827aa12c083bce06f324a0d89
|
|
4
|
+
data.tar.gz: 1e43d3ea2f4a9535b37c1c9bbb570e282d708839d6ee108e717b223631fbe2cc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b2c6247fc93801c0bb8636dde2f2e800e97d8257361adcf5cd797d67b3d0880f13c93deb6522146740d79e8dbee2e40fa84b8875d87ce00019147475b7065cba
|
|
7
|
+
data.tar.gz: ac096f973b6f8f5373f5362f6e2ece8ed802917a2c0fcaff928d03bb1b3ccbad09ed45d695e4149f0021abdc003c854f58bb7b34106cc9360914511068fc34d9
|
data/CHANGELOG.md
CHANGED
|
@@ -750,9 +750,10 @@ module Google
|
|
|
750
750
|
class ExternalDataSources
|
|
751
751
|
include Google::Apis::Core::Hashable
|
|
752
752
|
|
|
753
|
-
# Required. The asset type of the external data source
|
|
754
|
-
#
|
|
755
|
-
#
|
|
753
|
+
# Required. The asset type of the external data source. This can be a supported
|
|
754
|
+
# Cloud Asset Inventory asset type (see https://cloud.google.com/asset-inventory/
|
|
755
|
+
# docs/supported-asset-types) to override the default asset type, or it can be a
|
|
756
|
+
# custom type defined by the user.
|
|
756
757
|
# Corresponds to the JSON property `assetType`
|
|
757
758
|
# @return [String]
|
|
758
759
|
attr_accessor :asset_type
|
|
@@ -1696,6 +1697,31 @@ module Google
|
|
|
1696
1697
|
end
|
|
1697
1698
|
end
|
|
1698
1699
|
|
|
1700
|
+
# The rule output of the violation.
|
|
1701
|
+
class RuleOutput
|
|
1702
|
+
include Google::Apis::Core::Hashable
|
|
1703
|
+
|
|
1704
|
+
# Output only. Violation details generated by rule.
|
|
1705
|
+
# Corresponds to the JSON property `details`
|
|
1706
|
+
# @return [Hash<String,String>]
|
|
1707
|
+
attr_accessor :details
|
|
1708
|
+
|
|
1709
|
+
# Output only. The message generated by rule.
|
|
1710
|
+
# Corresponds to the JSON property `message`
|
|
1711
|
+
# @return [String]
|
|
1712
|
+
attr_accessor :message
|
|
1713
|
+
|
|
1714
|
+
def initialize(**args)
|
|
1715
|
+
update!(**args)
|
|
1716
|
+
end
|
|
1717
|
+
|
|
1718
|
+
# Update properties of this object
|
|
1719
|
+
def update!(**args)
|
|
1720
|
+
@details = args[:details] if args.key?(:details)
|
|
1721
|
+
@message = args[:message] if args.key?(:message)
|
|
1722
|
+
end
|
|
1723
|
+
end
|
|
1724
|
+
|
|
1699
1725
|
# Message for creating a Execution
|
|
1700
1726
|
class RunEvaluationRequest
|
|
1701
1727
|
include Google::Apis::Core::Hashable
|
|
@@ -2894,11 +2920,16 @@ module Google
|
|
|
2894
2920
|
# @return [String]
|
|
2895
2921
|
attr_accessor :asset
|
|
2896
2922
|
|
|
2897
|
-
# Details of the violation.
|
|
2923
|
+
# Details of the violation.
|
|
2898
2924
|
# Corresponds to the JSON property `observed`
|
|
2899
2925
|
# @return [Hash<String,String>]
|
|
2900
2926
|
attr_accessor :observed
|
|
2901
2927
|
|
|
2928
|
+
# Output only. The rule output of the violation.
|
|
2929
|
+
# Corresponds to the JSON property `ruleOutput`
|
|
2930
|
+
# @return [Array<Google::Apis::WorkloadmanagerV1::RuleOutput>]
|
|
2931
|
+
attr_accessor :rule_output
|
|
2932
|
+
|
|
2902
2933
|
# The service account associated with the resource.
|
|
2903
2934
|
# Corresponds to the JSON property `serviceAccount`
|
|
2904
2935
|
# @return [String]
|
|
@@ -2912,6 +2943,7 @@ module Google
|
|
|
2912
2943
|
def update!(**args)
|
|
2913
2944
|
@asset = args[:asset] if args.key?(:asset)
|
|
2914
2945
|
@observed = args[:observed] if args.key?(:observed)
|
|
2946
|
+
@rule_output = args[:rule_output] if args.key?(:rule_output)
|
|
2915
2947
|
@service_account = args[:service_account] if args.key?(:service_account)
|
|
2916
2948
|
end
|
|
2917
2949
|
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.47.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260107"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -280,6 +280,12 @@ module Google
|
|
|
280
280
|
include Google::Apis::Core::JsonObjectSupport
|
|
281
281
|
end
|
|
282
282
|
|
|
283
|
+
class RuleOutput
|
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
285
|
+
|
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
287
|
+
end
|
|
288
|
+
|
|
283
289
|
class RunEvaluationRequest
|
|
284
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
285
291
|
|
|
@@ -966,6 +972,14 @@ module Google
|
|
|
966
972
|
end
|
|
967
973
|
end
|
|
968
974
|
|
|
975
|
+
class RuleOutput
|
|
976
|
+
# @private
|
|
977
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
978
|
+
hash :details, as: 'details'
|
|
979
|
+
property :message, as: 'message'
|
|
980
|
+
end
|
|
981
|
+
end
|
|
982
|
+
|
|
969
983
|
class RunEvaluationRequest
|
|
970
984
|
# @private
|
|
971
985
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1309,6 +1323,8 @@ module Google
|
|
|
1309
1323
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1310
1324
|
property :asset, as: 'asset'
|
|
1311
1325
|
hash :observed, as: 'observed'
|
|
1326
|
+
collection :rule_output, as: 'ruleOutput', class: Google::Apis::WorkloadmanagerV1::RuleOutput, decorator: Google::Apis::WorkloadmanagerV1::RuleOutput::Representation
|
|
1327
|
+
|
|
1312
1328
|
property :service_account, as: 'serviceAccount'
|
|
1313
1329
|
end
|
|
1314
1330
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.47.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-workloadmanager_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-workloadmanager_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-workloadmanager_v1/v0.47.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workloadmanager_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|