google-apis-assuredworkloads_v1 0.57.0 → 0.59.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: f12d1b220652f34b55457f65f9bee18d12d256cbb4566961100046fa459c0288
4
- data.tar.gz: a473e7c9975a1507954b262cc4372ef7415c3e701f22c575e252195e596d3188
3
+ metadata.gz: d9145873e11baed25cf2d5831ee42fabacee08daa6cd59391d95372fb5779b63
4
+ data.tar.gz: 22e8e3d890a12539d2f331ae807aa8d7544e293a9d537aeb20d783fde0df2731
5
5
  SHA512:
6
- metadata.gz: 2f4fbf8a47e2eebb473354a41b38968321f1f5b057a877c5a45fab5ac6c1d2e43b1db78389cbbe2c9dc223440ab4c88b32df9c81576cbcabc926e9e2b3dfbf09
7
- data.tar.gz: ffbae1ffbe60827ab21a2db157ec186e296444629e1a5d8b2a1c08b090e7991a17942fa35a32f079f6c12706a99e08b6c33da5715e5cfd6a7956eea78e1d0b01
6
+ metadata.gz: c93e3404800b6d084ce3c1a687a6db4d65f37842c9a49b71ac8ad151646249ad54e6bd606f8581c50824407857fd4ba6b7e134d071326ec625cb26056f8e9694
7
+ data.tar.gz: 9a7204945c4972ff5676b5606b7265c529730a7680e699a2612807ced1a1b811eca26323b1c102c60094fd28799689a85e29e5a7d25d59e562149907c55507a0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-assuredworkloads_v1
2
2
 
3
+ ### v0.59.0 (2024-12-15)
4
+
5
+ * Regenerated from discovery document revision 20241206
6
+
7
+ ### v0.58.0 (2024-10-13)
8
+
9
+ * Regenerated from discovery document revision 20241007
10
+
3
11
  ### v0.57.0 (2024-09-01)
4
12
 
5
13
  * Regenerated from discovery document revision 20240823
@@ -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
 
@@ -917,7 +923,7 @@ module Google
917
923
  # @return [String]
918
924
  attr_accessor :ekm_provisioning_error_mapping
919
925
 
920
- # Indicates Ekm enrollment Provisioning of a given workload.
926
+ # Output only. Indicates Ekm enrollment Provisioning of a given workload.
921
927
  # Corresponds to the JSON property `ekmProvisioningState`
922
928
  # @return [String]
923
929
  attr_accessor :ekm_provisioning_state
@@ -979,7 +985,8 @@ module Google
979
985
  attr_accessor :assured_workloads_monitoring
980
986
  alias_method :assured_workloads_monitoring?, :assured_workloads_monitoring
981
987
 
982
- # Allow the partner to view inspectability logs and monitoring violations.
988
+ # Optional. Allow the partner to view inspectability logs and monitoring
989
+ # violations.
983
990
  # Corresponds to the JSON property `dataLogsViewer`
984
991
  # @return [Boolean]
985
992
  attr_accessor :data_logs_viewer
@@ -1008,7 +1015,7 @@ module Google
1008
1015
  class GoogleCloudAssuredworkloadsV1WorkloadResourceInfo
1009
1016
  include Google::Apis::Core::Hashable
1010
1017
 
1011
- # Resource identifier. For a project this represents project_number.
1018
+ # Output only. Resource identifier. For a project this represents project_number.
1012
1019
  # Corresponds to the JSON property `resourceId`
1013
1020
  # @return [Fixnum]
1014
1021
  attr_accessor :resource_id
@@ -1074,7 +1081,7 @@ module Google
1074
1081
  # @return [Array<String>]
1075
1082
  attr_accessor :setup_errors
1076
1083
 
1077
- # Indicates SAA enrollment status of a given workload.
1084
+ # Output only. Indicates SAA enrollment status of a given workload.
1078
1085
  # Corresponds to the JSON property `setupStatus`
1079
1086
  # @return [String]
1080
1087
  attr_accessor :setup_status
@@ -1090,6 +1097,25 @@ module Google
1090
1097
  end
1091
1098
  end
1092
1099
 
1100
+ # Options to be set for the given created workload.
1101
+ class GoogleCloudAssuredworkloadsV1WorkloadWorkloadOptions
1102
+ include Google::Apis::Core::Hashable
1103
+
1104
+ # Optional. Specifies type of KAJ Enrollment if provided.
1105
+ # Corresponds to the JSON property `kajEnrollmentType`
1106
+ # @return [String]
1107
+ attr_accessor :kaj_enrollment_type
1108
+
1109
+ def initialize(**args)
1110
+ update!(**args)
1111
+ end
1112
+
1113
+ # Update properties of this object
1114
+ def update!(**args)
1115
+ @kaj_enrollment_type = args[:kaj_enrollment_type] if args.key?(:kaj_enrollment_type)
1116
+ end
1117
+ end
1118
+
1093
1119
  # The response message for Operations.ListOperations.
1094
1120
  class GoogleLongrunningListOperationsResponse
1095
1121
  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.57.0"
19
+ GEM_VERSION = "0.59.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 = "20240823"
25
+ REVISION = "20241206"
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.57.0
4
+ version: 0.59.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-09-01 00:00:00.000000000 Z
11
+ date: 2024-12-15 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.57.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-assuredworkloads_v1/v0.59.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.6
78
+ rubygems_version: 3.5.23
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Assured Workloads API V1