aws-sdk-emrcontainers 1.31.0 → 1.33.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-emrcontainers/client.rb +197 -1
- data/lib/aws-sdk-emrcontainers/client_api.rb +130 -0
- data/lib/aws-sdk-emrcontainers/endpoints.rb +42 -0
- data/lib/aws-sdk-emrcontainers/errors.rb +16 -0
- data/lib/aws-sdk-emrcontainers/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-emrcontainers/types.rb +349 -3
- data/lib/aws-sdk-emrcontainers.rb +1 -1
- data/sig/client.rbs +63 -2
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +99 -0
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -8,6 +8,12 @@
|
|
8
8
|
module Aws::EMRContainers
|
9
9
|
module Types
|
10
10
|
|
11
|
+
class AuthorizationConfiguration
|
12
|
+
attr_accessor lake_formation_configuration: Types::LakeFormationConfiguration
|
13
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
11
17
|
class CancelJobRunRequest
|
12
18
|
attr_accessor id: ::String
|
13
19
|
attr_accessor virtual_cluster_id: ::String
|
@@ -107,11 +113,27 @@ module Aws::EMRContainers
|
|
107
113
|
SENSITIVE: []
|
108
114
|
end
|
109
115
|
|
116
|
+
class CreateSecurityConfigurationRequest
|
117
|
+
attr_accessor client_token: ::String
|
118
|
+
attr_accessor name: ::String
|
119
|
+
attr_accessor security_configuration_data: Types::SecurityConfigurationData
|
120
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
121
|
+
SENSITIVE: []
|
122
|
+
end
|
123
|
+
|
124
|
+
class CreateSecurityConfigurationResponse
|
125
|
+
attr_accessor id: ::String
|
126
|
+
attr_accessor name: ::String
|
127
|
+
attr_accessor arn: ::String
|
128
|
+
SENSITIVE: []
|
129
|
+
end
|
130
|
+
|
110
131
|
class CreateVirtualClusterRequest
|
111
132
|
attr_accessor name: ::String
|
112
133
|
attr_accessor container_provider: Types::ContainerProvider
|
113
134
|
attr_accessor client_token: ::String
|
114
135
|
attr_accessor tags: ::Hash[::String, ::String]
|
136
|
+
attr_accessor security_configuration_id: ::String
|
115
137
|
SENSITIVE: []
|
116
138
|
end
|
117
139
|
|
@@ -197,6 +219,16 @@ module Aws::EMRContainers
|
|
197
219
|
SENSITIVE: []
|
198
220
|
end
|
199
221
|
|
222
|
+
class DescribeSecurityConfigurationRequest
|
223
|
+
attr_accessor id: ::String
|
224
|
+
SENSITIVE: []
|
225
|
+
end
|
226
|
+
|
227
|
+
class DescribeSecurityConfigurationResponse
|
228
|
+
attr_accessor security_configuration: Types::SecurityConfiguration
|
229
|
+
SENSITIVE: []
|
230
|
+
end
|
231
|
+
|
200
232
|
class DescribeVirtualClusterRequest
|
201
233
|
attr_accessor id: ::String
|
202
234
|
SENSITIVE: []
|
@@ -207,11 +239,21 @@ module Aws::EMRContainers
|
|
207
239
|
SENSITIVE: []
|
208
240
|
end
|
209
241
|
|
242
|
+
class EKSRequestThrottledException
|
243
|
+
attr_accessor message: ::String
|
244
|
+
SENSITIVE: []
|
245
|
+
end
|
246
|
+
|
210
247
|
class EksInfo
|
211
248
|
attr_accessor namespace: ::String
|
212
249
|
SENSITIVE: []
|
213
250
|
end
|
214
251
|
|
252
|
+
class EncryptionConfiguration
|
253
|
+
attr_accessor in_transit_encryption_configuration: Types::InTransitEncryptionConfiguration
|
254
|
+
SENSITIVE: []
|
255
|
+
end
|
256
|
+
|
215
257
|
class Endpoint
|
216
258
|
attr_accessor id: ::String
|
217
259
|
attr_accessor name: ::String
|
@@ -252,6 +294,11 @@ module Aws::EMRContainers
|
|
252
294
|
SENSITIVE: []
|
253
295
|
end
|
254
296
|
|
297
|
+
class InTransitEncryptionConfiguration
|
298
|
+
attr_accessor tls_certificate_configuration: Types::TLSCertificateConfiguration
|
299
|
+
SENSITIVE: []
|
300
|
+
end
|
301
|
+
|
255
302
|
class InternalServerException
|
256
303
|
attr_accessor message: ::String
|
257
304
|
SENSITIVE: []
|
@@ -308,6 +355,13 @@ module Aws::EMRContainers
|
|
308
355
|
SENSITIVE: []
|
309
356
|
end
|
310
357
|
|
358
|
+
class LakeFormationConfiguration
|
359
|
+
attr_accessor authorized_session_tag_value: ::String
|
360
|
+
attr_accessor secure_namespace_info: Types::SecureNamespaceInfo
|
361
|
+
attr_accessor query_engine_role_arn: ::String
|
362
|
+
SENSITIVE: []
|
363
|
+
end
|
364
|
+
|
311
365
|
class ListJobRunsRequest
|
312
366
|
attr_accessor virtual_cluster_id: ::String
|
313
367
|
attr_accessor created_before: ::Time
|
@@ -356,6 +410,20 @@ module Aws::EMRContainers
|
|
356
410
|
SENSITIVE: []
|
357
411
|
end
|
358
412
|
|
413
|
+
class ListSecurityConfigurationsRequest
|
414
|
+
attr_accessor created_after: ::Time
|
415
|
+
attr_accessor created_before: ::Time
|
416
|
+
attr_accessor max_results: ::Integer
|
417
|
+
attr_accessor next_token: ::String
|
418
|
+
SENSITIVE: []
|
419
|
+
end
|
420
|
+
|
421
|
+
class ListSecurityConfigurationsResponse
|
422
|
+
attr_accessor security_configurations: ::Array[Types::SecurityConfiguration]
|
423
|
+
attr_accessor next_token: ::String
|
424
|
+
SENSITIVE: []
|
425
|
+
end
|
426
|
+
|
359
427
|
class ListTagsForResourceRequest
|
360
428
|
attr_accessor resource_arn: ::String
|
361
429
|
SENSITIVE: []
|
@@ -374,6 +442,7 @@ module Aws::EMRContainers
|
|
374
442
|
attr_accessor states: ::Array[("RUNNING" | "TERMINATING" | "TERMINATED" | "ARRESTED")]
|
375
443
|
attr_accessor max_results: ::Integer
|
376
444
|
attr_accessor next_token: ::String
|
445
|
+
attr_accessor eks_access_entry_integrated: bool
|
377
446
|
SENSITIVE: []
|
378
447
|
end
|
379
448
|
|
@@ -440,6 +509,28 @@ module Aws::EMRContainers
|
|
440
509
|
SENSITIVE: []
|
441
510
|
end
|
442
511
|
|
512
|
+
class SecureNamespaceInfo
|
513
|
+
attr_accessor cluster_id: ::String
|
514
|
+
attr_accessor namespace: ::String
|
515
|
+
SENSITIVE: []
|
516
|
+
end
|
517
|
+
|
518
|
+
class SecurityConfiguration
|
519
|
+
attr_accessor id: ::String
|
520
|
+
attr_accessor name: ::String
|
521
|
+
attr_accessor arn: ::String
|
522
|
+
attr_accessor created_at: ::Time
|
523
|
+
attr_accessor created_by: ::String
|
524
|
+
attr_accessor security_configuration_data: Types::SecurityConfigurationData
|
525
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
526
|
+
SENSITIVE: []
|
527
|
+
end
|
528
|
+
|
529
|
+
class SecurityConfigurationData
|
530
|
+
attr_accessor authorization_configuration: Types::AuthorizationConfiguration
|
531
|
+
SENSITIVE: []
|
532
|
+
end
|
533
|
+
|
443
534
|
class SparkSqlJobDriver
|
444
535
|
attr_accessor entry_point: ::String
|
445
536
|
attr_accessor spark_sql_parameters: ::String
|
@@ -476,6 +567,13 @@ module Aws::EMRContainers
|
|
476
567
|
SENSITIVE: []
|
477
568
|
end
|
478
569
|
|
570
|
+
class TLSCertificateConfiguration
|
571
|
+
attr_accessor certificate_provider_type: ("PEM")
|
572
|
+
attr_accessor public_certificate_secret_arn: ::String
|
573
|
+
attr_accessor private_certificate_secret_arn: ::String
|
574
|
+
SENSITIVE: []
|
575
|
+
end
|
576
|
+
|
479
577
|
class TagResourceRequest
|
480
578
|
attr_accessor resource_arn: ::String
|
481
579
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -513,6 +611,7 @@ module Aws::EMRContainers
|
|
513
611
|
attr_accessor container_provider: Types::ContainerProvider
|
514
612
|
attr_accessor created_at: ::Time
|
515
613
|
attr_accessor tags: ::Hash[::String, ::String]
|
614
|
+
attr_accessor security_configuration_id: ::String
|
516
615
|
SENSITIVE: []
|
517
616
|
end
|
518
617
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-emrcontainers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.33.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-04-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|