google-cloud-assured_workloads-v1beta1 0.5.0 → 0.6.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: 9785e037645adcc43a5a5fe3f3016c29935856a52ea8b01b558e76ec39df482c
|
4
|
+
data.tar.gz: 6aea2fbb3e66e452ce0a753268cb0013bbcd97d65d03c63ccafe743169e30876
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ca330110b83d1ca7a03133e34502910e3e72b7898c720e7b7c2e0f36427b17b409d5914664fdd10257ac60457cc7af91c74a4def2b2fa462099be8721a15e51
|
7
|
+
data.tar.gz: e99f935ec8b568d04ca08cff4b411e410e25e233f60607024c64a9a53676a758cbba5b9102e4e6b91b98ceb998d81c2c3850c2ee3908719385b41caa940da269
|
@@ -51,6 +51,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
51
51
|
map :labels, :string, :string, 10
|
52
52
|
optional :provisioned_resources_parent, :string, 13
|
53
53
|
optional :kms_settings, :message, 14, "google.cloud.assuredworkloads.v1beta1.Workload.KMSSettings"
|
54
|
+
repeated :resource_settings, :message, 15, "google.cloud.assuredworkloads.v1beta1.Workload.ResourceSettings"
|
54
55
|
oneof :compliance_regime_settings do
|
55
56
|
optional :il4_settings, :message, 7, "google.cloud.assuredworkloads.v1beta1.Workload.IL4Settings"
|
56
57
|
optional :cjis_settings, :message, 8, "google.cloud.assuredworkloads.v1beta1.Workload.CJISSettings"
|
@@ -83,6 +84,10 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
83
84
|
add_message "google.cloud.assuredworkloads.v1beta1.Workload.FedrampModerateSettings" do
|
84
85
|
optional :kms_settings, :message, 1, "google.cloud.assuredworkloads.v1beta1.Workload.KMSSettings"
|
85
86
|
end
|
87
|
+
add_message "google.cloud.assuredworkloads.v1beta1.Workload.ResourceSettings" do
|
88
|
+
optional :resource_id, :string, 1
|
89
|
+
optional :resource_type, :enum, 2, "google.cloud.assuredworkloads.v1beta1.Workload.ResourceInfo.ResourceType"
|
90
|
+
end
|
86
91
|
add_enum "google.cloud.assuredworkloads.v1beta1.Workload.ComplianceRegime" do
|
87
92
|
value :COMPLIANCE_REGIME_UNSPECIFIED, 0
|
88
93
|
value :IL4, 1
|
@@ -90,6 +95,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
90
95
|
value :FEDRAMP_HIGH, 3
|
91
96
|
value :FEDRAMP_MODERATE, 4
|
92
97
|
value :US_REGIONAL_ACCESS, 5
|
98
|
+
value :HIPAA, 6
|
99
|
+
value :HITRUST, 7
|
93
100
|
end
|
94
101
|
add_message "google.cloud.assuredworkloads.v1beta1.CreateWorkloadOperationMetadata" do
|
95
102
|
optional :create_time, :message, 1, "google.protobuf.Timestamp"
|
@@ -118,6 +125,7 @@ module Google
|
|
118
125
|
Workload::CJISSettings = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.assuredworkloads.v1beta1.Workload.CJISSettings").msgclass
|
119
126
|
Workload::FedrampHighSettings = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.assuredworkloads.v1beta1.Workload.FedrampHighSettings").msgclass
|
120
127
|
Workload::FedrampModerateSettings = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.assuredworkloads.v1beta1.Workload.FedrampModerateSettings").msgclass
|
128
|
+
Workload::ResourceSettings = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.assuredworkloads.v1beta1.Workload.ResourceSettings").msgclass
|
121
129
|
Workload::ComplianceRegime = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.assuredworkloads.v1beta1.Workload.ComplianceRegime").enummodule
|
122
130
|
CreateWorkloadOperationMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.assuredworkloads.v1beta1.CreateWorkloadOperationMetadata").msgclass
|
123
131
|
end
|
@@ -189,6 +189,11 @@ module Google
|
|
189
189
|
# Input only. Settings used to create a CMEK crypto key. When set a project with a KMS
|
190
190
|
# CMEK key is provisioned. This field is mandatory for a subset of Compliance
|
191
191
|
# Regimes.
|
192
|
+
# @!attribute [rw] resource_settings
|
193
|
+
# @return [::Array<::Google::Cloud::AssuredWorkloads::V1beta1::Workload::ResourceSettings>]
|
194
|
+
# Input only. Resource properties that are used to customize workload resources.
|
195
|
+
# These properties (such as custom project id) will be used to create
|
196
|
+
# workload resources if possible. This field is optional.
|
192
197
|
class Workload
|
193
198
|
include ::Google::Protobuf::MessageExts
|
194
199
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -269,6 +274,22 @@ module Google
|
|
269
274
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
270
275
|
end
|
271
276
|
|
277
|
+
# Represent the custom settings for the resources to be created.
|
278
|
+
# @!attribute [rw] resource_id
|
279
|
+
# @return [::String]
|
280
|
+
# Resource identifier.
|
281
|
+
# For a project this represents project_id. If the project is already
|
282
|
+
# taken, the workload creation will fail.
|
283
|
+
# @!attribute [rw] resource_type
|
284
|
+
# @return [::Google::Cloud::AssuredWorkloads::V1beta1::Workload::ResourceInfo::ResourceType]
|
285
|
+
# Indicates the type of resource. This field should be specified to
|
286
|
+
# correspond the id to the right project type (CONSUMER_PROJECT or
|
287
|
+
# ENCRYPTION_KEYS_PROJECT)
|
288
|
+
class ResourceSettings
|
289
|
+
include ::Google::Protobuf::MessageExts
|
290
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
291
|
+
end
|
292
|
+
|
272
293
|
# @!attribute [rw] key
|
273
294
|
# @return [::String]
|
274
295
|
# @!attribute [rw] value
|
@@ -297,6 +318,12 @@ module Google
|
|
297
318
|
|
298
319
|
# Assured Workloads For US Regions data protection controls
|
299
320
|
US_REGIONAL_ACCESS = 5
|
321
|
+
|
322
|
+
# Health Insurance Portability and Accountability Act controls
|
323
|
+
HIPAA = 6
|
324
|
+
|
325
|
+
# Health Information Trust Alliance controls
|
326
|
+
HITRUST = 7
|
300
327
|
end
|
301
328
|
end
|
302
329
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-assured_workloads-v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.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: 2021-03-
|
11
|
+
date: 2021-03-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '0.
|
26
|
+
version: '0.4'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: google-cloud-errors
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|