google-apis-assuredworkloads_v1 0.57.0 → 0.58.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e58ad9df8c83709c7f3f548dc9e6ba76e1b2295ef3cdfb821b10e1504c0710cc
|
4
|
+
data.tar.gz: 48e44d0f5daa2e0d2bd1c82f7345af155f40615b9e4cd429291d8faf17b3082c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 99174b7cdee7493f2b335ad8cc5f8beae647425a69812a9213181bf6c3a7c3409db11243962f5d576d44219af988c4c691efbf3a51540b682b15e513f444957a
|
7
|
+
data.tar.gz: 7e4358875cdeafee33ab5f30d1f16392084a8e9b392b0b05e796ccab4b2a9a4b830b2d4f44bfa0dba16579175efa2ab40c98e7d57a50e8429a5fcee61c991d00
|
data/CHANGELOG.md
CHANGED
@@ -835,6 +835,11 @@ module Google
|
|
835
835
|
attr_accessor :violation_notifications_enabled
|
836
836
|
alias_method :violation_notifications_enabled?, :violation_notifications_enabled
|
837
837
|
|
838
|
+
# Options to be set for the given created workload.
|
839
|
+
# Corresponds to the JSON property `workloadOptions`
|
840
|
+
# @return [Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1WorkloadWorkloadOptions]
|
841
|
+
attr_accessor :workload_options
|
842
|
+
|
838
843
|
def initialize(**args)
|
839
844
|
update!(**args)
|
840
845
|
end
|
@@ -863,6 +868,7 @@ module Google
|
|
863
868
|
@resources = args[:resources] if args.key?(:resources)
|
864
869
|
@saa_enrollment_response = args[:saa_enrollment_response] if args.key?(:saa_enrollment_response)
|
865
870
|
@violation_notifications_enabled = args[:violation_notifications_enabled] if args.key?(:violation_notifications_enabled)
|
871
|
+
@workload_options = args[:workload_options] if args.key?(:workload_options)
|
866
872
|
end
|
867
873
|
end
|
868
874
|
|
@@ -1090,6 +1096,25 @@ module Google
|
|
1090
1096
|
end
|
1091
1097
|
end
|
1092
1098
|
|
1099
|
+
# Options to be set for the given created workload.
|
1100
|
+
class GoogleCloudAssuredworkloadsV1WorkloadWorkloadOptions
|
1101
|
+
include Google::Apis::Core::Hashable
|
1102
|
+
|
1103
|
+
# Optional. Specifies type of KAJ Enrollment if provided.
|
1104
|
+
# Corresponds to the JSON property `kajEnrollmentType`
|
1105
|
+
# @return [String]
|
1106
|
+
attr_accessor :kaj_enrollment_type
|
1107
|
+
|
1108
|
+
def initialize(**args)
|
1109
|
+
update!(**args)
|
1110
|
+
end
|
1111
|
+
|
1112
|
+
# Update properties of this object
|
1113
|
+
def update!(**args)
|
1114
|
+
@kaj_enrollment_type = args[:kaj_enrollment_type] if args.key?(:kaj_enrollment_type)
|
1115
|
+
end
|
1116
|
+
end
|
1117
|
+
|
1093
1118
|
# The response message for Operations.ListOperations.
|
1094
1119
|
class GoogleLongrunningListOperationsResponse
|
1095
1120
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AssuredworkloadsV1
|
18
18
|
# Version of the google-apis-assuredworkloads_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.58.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241007"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -190,6 +190,12 @@ module Google
|
|
190
190
|
include Google::Apis::Core::JsonObjectSupport
|
191
191
|
end
|
192
192
|
|
193
|
+
class GoogleCloudAssuredworkloadsV1WorkloadWorkloadOptions
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
193
199
|
class GoogleLongrunningListOperationsResponse
|
194
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
201
|
|
@@ -440,6 +446,8 @@ module Google
|
|
440
446
|
property :saa_enrollment_response, as: 'saaEnrollmentResponse', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1WorkloadSaaEnrollmentResponse, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1WorkloadSaaEnrollmentResponse::Representation
|
441
447
|
|
442
448
|
property :violation_notifications_enabled, as: 'violationNotificationsEnabled'
|
449
|
+
property :workload_options, as: 'workloadOptions', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1WorkloadWorkloadOptions, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1WorkloadWorkloadOptions::Representation
|
450
|
+
|
443
451
|
end
|
444
452
|
end
|
445
453
|
|
@@ -505,6 +513,13 @@ module Google
|
|
505
513
|
end
|
506
514
|
end
|
507
515
|
|
516
|
+
class GoogleCloudAssuredworkloadsV1WorkloadWorkloadOptions
|
517
|
+
# @private
|
518
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
519
|
+
property :kaj_enrollment_type, as: 'kajEnrollmentType'
|
520
|
+
end
|
521
|
+
end
|
522
|
+
|
508
523
|
class GoogleLongrunningListOperationsResponse
|
509
524
|
# @private
|
510
525
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-assuredworkloads_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.58.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-10-13 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-assuredworkloads_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-assuredworkloads_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-assuredworkloads_v1/v0.58.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-assuredworkloads_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.21
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Assured Workloads API V1
|