google-cloud-assured_workloads-v1beta1 0.7.1 → 0.8.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: ddd2e2c405653a02a4852a2dda985b370c3a9ad92c97e4c4fde36cd3066b20c3
|
4
|
+
data.tar.gz: 763705e05dc28c3b9904593c5f58e91b3270f033c6e382c975a824e975759d20
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 12f0c94ebfaa8fdc98afda4e5247c3f73c67b3daf754961794663f5ff12e6ae8f73e2aca8654bb5b39c2f12031426f9bdf5b6f23683a9a957e0e34c22b17facd
|
7
|
+
data.tar.gz: e2af00469999791739794651a9f3b0a616f4e2f46db74363a27b2d270748667f1b6babd5986ffe86eff7ef45828df1edafbde0ec7f60f8ba0f385399e3f8ce48
|
@@ -66,7 +66,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
66
66
|
add_enum "google.cloud.assuredworkloads.v1beta1.Workload.ResourceInfo.ResourceType" do
|
67
67
|
value :RESOURCE_TYPE_UNSPECIFIED, 0
|
68
68
|
value :CONSUMER_PROJECT, 1
|
69
|
+
value :CONSUMER_FOLDER, 4
|
69
70
|
value :ENCRYPTION_KEYS_PROJECT, 2
|
71
|
+
value :KEYRING, 3
|
70
72
|
end
|
71
73
|
add_message "google.cloud.assuredworkloads.v1beta1.Workload.KMSSettings" do
|
72
74
|
optional :next_rotation_time, :message, 1, "google.protobuf.Timestamp"
|
@@ -87,6 +89,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
87
89
|
add_message "google.cloud.assuredworkloads.v1beta1.Workload.ResourceSettings" do
|
88
90
|
optional :resource_id, :string, 1
|
89
91
|
optional :resource_type, :enum, 2, "google.cloud.assuredworkloads.v1beta1.Workload.ResourceInfo.ResourceType"
|
92
|
+
optional :display_name, :string, 3
|
90
93
|
end
|
91
94
|
add_enum "google.cloud.assuredworkloads.v1beta1.Workload.ComplianceRegime" do
|
92
95
|
value :COMPLIANCE_REGIME_UNSPECIFIED, 0
|
@@ -98,12 +101,14 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
98
101
|
value :HIPAA, 6
|
99
102
|
value :HITRUST, 7
|
100
103
|
value :EU_REGIONS_AND_SUPPORT, 8
|
104
|
+
value :CA_REGIONS_AND_SUPPORT, 9
|
101
105
|
end
|
102
106
|
add_message "google.cloud.assuredworkloads.v1beta1.CreateWorkloadOperationMetadata" do
|
103
107
|
optional :create_time, :message, 1, "google.protobuf.Timestamp"
|
104
108
|
optional :display_name, :string, 2
|
105
109
|
optional :parent, :string, 3
|
106
110
|
optional :compliance_regime, :enum, 4, "google.cloud.assuredworkloads.v1beta1.Workload.ComplianceRegime"
|
111
|
+
repeated :resource_settings, :message, 5, "google.cloud.assuredworkloads.v1beta1.Workload.ResourceSettings"
|
107
112
|
end
|
108
113
|
end
|
109
114
|
end
|
@@ -148,7 +148,7 @@ module Google
|
|
148
148
|
# Output only. Immutable. The Workload creation timestamp.
|
149
149
|
# @!attribute [rw] billing_account
|
150
150
|
# @return [::String]
|
151
|
-
#
|
151
|
+
# Input only. The billing account used for the resources which are
|
152
152
|
# direct children of workload. This billing account is initially associated
|
153
153
|
# with the resources created as part of Workload creation.
|
154
154
|
# After the initial creation of these resources, the customer can change
|
@@ -178,12 +178,11 @@ module Google
|
|
178
178
|
# @!attribute [rw] provisioned_resources_parent
|
179
179
|
# @return [::String]
|
180
180
|
# Input only. The parent resource for the resources managed by this Assured Workload. May
|
181
|
-
# be either
|
181
|
+
# be either empty or a folder resource which is a child of the
|
182
182
|
# Workload parent. If not specified all resources are created under the
|
183
|
-
#
|
184
|
-
#
|
183
|
+
# parent organization.
|
184
|
+
# Format:
|
185
185
|
# folders/\\{folder_id}
|
186
|
-
# organizations/\\{organization_id}
|
187
186
|
# @!attribute [rw] kms_settings
|
188
187
|
# @return [::Google::Cloud::AssuredWorkloads::V1beta1::Workload::KMSSettings]
|
189
188
|
# Input only. Settings used to create a CMEK crypto key. When set a project with a KMS
|
@@ -215,11 +214,18 @@ module Google
|
|
215
214
|
# Unknown resource type.
|
216
215
|
RESOURCE_TYPE_UNSPECIFIED = 0
|
217
216
|
|
218
|
-
#
|
217
|
+
# Deprecated. Existing workloads will continue to support this, but new
|
218
|
+
# CreateWorkloadRequests should not specify this as an input value.
|
219
219
|
CONSUMER_PROJECT = 1
|
220
220
|
|
221
|
+
# Consumer Folder.
|
222
|
+
CONSUMER_FOLDER = 4
|
223
|
+
|
221
224
|
# Consumer project containing encryption keys.
|
222
225
|
ENCRYPTION_KEYS_PROJECT = 2
|
226
|
+
|
227
|
+
# Keyring resource that hosts encryption keys.
|
228
|
+
KEYRING = 3
|
223
229
|
end
|
224
230
|
end
|
225
231
|
|
@@ -285,6 +291,11 @@ module Google
|
|
285
291
|
# Indicates the type of resource. This field should be specified to
|
286
292
|
# correspond the id to the right project type (CONSUMER_PROJECT or
|
287
293
|
# ENCRYPTION_KEYS_PROJECT)
|
294
|
+
# @!attribute [rw] display_name
|
295
|
+
# @return [::String]
|
296
|
+
# User-assigned resource display name.
|
297
|
+
# If not empty it will be used to create a resource with the specified
|
298
|
+
# name.
|
288
299
|
class ResourceSettings
|
289
300
|
include ::Google::Protobuf::MessageExts
|
290
301
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -327,6 +338,9 @@ module Google
|
|
327
338
|
|
328
339
|
# Assured Workloads For EU Regions and Support controls
|
329
340
|
EU_REGIONS_AND_SUPPORT = 8
|
341
|
+
|
342
|
+
# Assured Workloads For Canada Regions and Support controls
|
343
|
+
CA_REGIONS_AND_SUPPORT = 9
|
330
344
|
end
|
331
345
|
end
|
332
346
|
|
@@ -344,6 +358,10 @@ module Google
|
|
344
358
|
# @return [::Google::Cloud::AssuredWorkloads::V1beta1::Workload::ComplianceRegime]
|
345
359
|
# Optional. Compliance controls that should be applied to the resources managed by
|
346
360
|
# the workload.
|
361
|
+
# @!attribute [rw] resource_settings
|
362
|
+
# @return [::Array<::Google::Cloud::AssuredWorkloads::V1beta1::Workload::ResourceSettings>]
|
363
|
+
# Optional. Resource properties in the input that are used for creating/customizing
|
364
|
+
# workload resources.
|
347
365
|
class CreateWorkloadOperationMetadata
|
348
366
|
include ::Google::Protobuf::MessageExts
|
349
367
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
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.8.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-08-
|
11
|
+
date: 2021-08-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|