aws-sdk-emrserverless 1.2.0 → 1.3.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: '09a40b53b47baee462f827754bafd762deac786c16fdaa22fb72aa87033beb44'
4
- data.tar.gz: dc9923bbe6808f358597ff861d1c451039aa014fea1170b749fd46ed733aef2a
3
+ metadata.gz: f5f05eb090108223cdebe13e273e04a8ba7eb499271205368bbbc248e127d6f8
4
+ data.tar.gz: c0011ce16b9894b71edd3798ec5c9232efb7bf44c550ea6ad755aac03d8601f0
5
5
  SHA512:
6
- metadata.gz: f824db4041d8e8ad346a784962d500937ff2e326ded4cc3a79c9b0a178014fe93e95e100a7bf4e199171c4ca3d3243f681f7d4859385c1293062b3158d437254
7
- data.tar.gz: 7c83aba64b4bcb9a67d7e0868a319939b02894d53375defc54a14cacc58b7b383e7e961cdb67824005f596be5f8d05094e69fa63b3ed59ca7a0085f83dbfc21e
6
+ metadata.gz: 0d59e584a9a2e3777d6738f1007f643c001d0960bf72936ceeafd79dd6fffbf221cdc70eb7e53f3ca0eb3e53515268bfdeb7ece64c6d3d8d2ac57e14f9dd0582
7
+ data.tar.gz: 8c5a5f53a5db27fad39ee96316717a2c31bba29ae6fd3f0c59bf85f48b6b307f95f88e91c3d6c9ce2469c2ffb626f32d75283af53881cded302024ce0643cc1f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.3.0 (2022-11-17)
5
+ ------------------
6
+
7
+ * Feature - Adds support for AWS Graviton2 based applications. You can now select CPU architecture when creating new applications or updating existing ones.
8
+
4
9
  1.2.0 (2022-10-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.0
1
+ 1.3.0
@@ -443,6 +443,9 @@ module Aws::EMRServerless
443
443
  # @option params [Types::NetworkConfiguration] :network_configuration
444
444
  # The network configuration for customer VPC connectivity.
445
445
  #
446
+ # @option params [String] :architecture
447
+ # The CPU architecture of an application.
448
+ #
446
449
  # @return [Types::CreateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
447
450
  #
448
451
  # * {Types::CreateApplicationResponse#application_id #application_id} => String
@@ -485,6 +488,7 @@ module Aws::EMRServerless
485
488
  # subnet_ids: ["SubnetString"],
486
489
  # security_group_ids: ["SecurityGroupString"],
487
490
  # },
491
+ # architecture: "ARM64", # accepts ARM64, X86_64
488
492
  # })
489
493
  #
490
494
  # @example Response structure
@@ -568,6 +572,7 @@ module Aws::EMRServerless
568
572
  # resp.application.network_configuration.subnet_ids[0] #=> String
569
573
  # resp.application.network_configuration.security_group_ids #=> Array
570
574
  # resp.application.network_configuration.security_group_ids[0] #=> String
575
+ # resp.application.architecture #=> String, one of "ARM64", "X86_64"
571
576
  #
572
577
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/GetApplication AWS API Documentation
573
578
  #
@@ -718,6 +723,7 @@ module Aws::EMRServerless
718
723
  # resp.applications[0].state_details #=> String
719
724
  # resp.applications[0].created_at #=> Time
720
725
  # resp.applications[0].updated_at #=> Time
726
+ # resp.applications[0].architecture #=> String, one of "ARM64", "X86_64"
721
727
  # resp.next_token #=> String
722
728
  #
723
729
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/ListApplications AWS API Documentation
@@ -1069,6 +1075,9 @@ module Aws::EMRServerless
1069
1075
  # @option params [Types::NetworkConfiguration] :network_configuration
1070
1076
  # The network configuration for customer VPC connectivity.
1071
1077
  #
1078
+ # @option params [String] :architecture
1079
+ # The CPU architecture of an application.
1080
+ #
1072
1081
  # @return [Types::UpdateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1073
1082
  #
1074
1083
  # * {Types::UpdateApplicationResponse#application #application} => Types::Application
@@ -1104,6 +1113,7 @@ module Aws::EMRServerless
1104
1113
  # subnet_ids: ["SubnetString"],
1105
1114
  # security_group_ids: ["SecurityGroupString"],
1106
1115
  # },
1116
+ # architecture: "ARM64", # accepts ARM64, X86_64
1107
1117
  # })
1108
1118
  #
1109
1119
  # @example Response structure
@@ -1134,6 +1144,7 @@ module Aws::EMRServerless
1134
1144
  # resp.application.network_configuration.subnet_ids[0] #=> String
1135
1145
  # resp.application.network_configuration.security_group_ids #=> Array
1136
1146
  # resp.application.network_configuration.security_group_ids[0] #=> String
1147
+ # resp.application.architecture #=> String, one of "ARM64", "X86_64"
1137
1148
  #
1138
1149
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/UpdateApplication AWS API Documentation
1139
1150
  #
@@ -1157,7 +1168,7 @@ module Aws::EMRServerless
1157
1168
  params: params,
1158
1169
  config: config)
1159
1170
  context[:gem_name] = 'aws-sdk-emrserverless'
1160
- context[:gem_version] = '1.2.0'
1171
+ context[:gem_version] = '1.3.0'
1161
1172
  Seahorse::Client::Request.new(handlers, context)
1162
1173
  end
1163
1174
 
@@ -21,6 +21,7 @@ module Aws::EMRServerless
21
21
  ApplicationState = Shapes::StringShape.new(name: 'ApplicationState')
22
22
  ApplicationStateSet = Shapes::ListShape.new(name: 'ApplicationStateSet')
23
23
  ApplicationSummary = Shapes::StructureShape.new(name: 'ApplicationSummary')
24
+ Architecture = Shapes::StringShape.new(name: 'Architecture')
24
25
  AutoStartConfig = Shapes::StructureShape.new(name: 'AutoStartConfig')
25
26
  AutoStopConfig = Shapes::StructureShape.new(name: 'AutoStopConfig')
26
27
  AutoStopConfigIdleTimeoutMinutesInteger = Shapes::IntegerShape.new(name: 'AutoStopConfigIdleTimeoutMinutesInteger')
@@ -138,6 +139,7 @@ module Aws::EMRServerless
138
139
  Application.add_member(:auto_start_configuration, Shapes::ShapeRef.new(shape: AutoStartConfig, location_name: "autoStartConfiguration"))
139
140
  Application.add_member(:auto_stop_configuration, Shapes::ShapeRef.new(shape: AutoStopConfig, location_name: "autoStopConfiguration"))
140
141
  Application.add_member(:network_configuration, Shapes::ShapeRef.new(shape: NetworkConfiguration, location_name: "networkConfiguration"))
142
+ Application.add_member(:architecture, Shapes::ShapeRef.new(shape: Architecture, location_name: "architecture"))
141
143
  Application.struct_class = Types::Application
142
144
 
143
145
  ApplicationList.member = Shapes::ShapeRef.new(shape: ApplicationSummary)
@@ -153,6 +155,7 @@ module Aws::EMRServerless
153
155
  ApplicationSummary.add_member(:state_details, Shapes::ShapeRef.new(shape: String256, location_name: "stateDetails"))
154
156
  ApplicationSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Date, required: true, location_name: "createdAt"))
155
157
  ApplicationSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: Date, required: true, location_name: "updatedAt"))
158
+ ApplicationSummary.add_member(:architecture, Shapes::ShapeRef.new(shape: Architecture, location_name: "architecture"))
156
159
  ApplicationSummary.struct_class = Types::ApplicationSummary
157
160
 
158
161
  AutoStartConfig.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
@@ -194,6 +197,7 @@ module Aws::EMRServerless
194
197
  CreateApplicationRequest.add_member(:auto_start_configuration, Shapes::ShapeRef.new(shape: AutoStartConfig, location_name: "autoStartConfiguration"))
195
198
  CreateApplicationRequest.add_member(:auto_stop_configuration, Shapes::ShapeRef.new(shape: AutoStopConfig, location_name: "autoStopConfiguration"))
196
199
  CreateApplicationRequest.add_member(:network_configuration, Shapes::ShapeRef.new(shape: NetworkConfiguration, location_name: "networkConfiguration"))
200
+ CreateApplicationRequest.add_member(:architecture, Shapes::ShapeRef.new(shape: Architecture, location_name: "architecture"))
197
201
  CreateApplicationRequest.struct_class = Types::CreateApplicationRequest
198
202
 
199
203
  CreateApplicationResponse.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, required: true, location_name: "applicationId"))
@@ -408,6 +412,7 @@ module Aws::EMRServerless
408
412
  UpdateApplicationRequest.add_member(:auto_start_configuration, Shapes::ShapeRef.new(shape: AutoStartConfig, location_name: "autoStartConfiguration"))
409
413
  UpdateApplicationRequest.add_member(:auto_stop_configuration, Shapes::ShapeRef.new(shape: AutoStopConfig, location_name: "autoStopConfiguration"))
410
414
  UpdateApplicationRequest.add_member(:network_configuration, Shapes::ShapeRef.new(shape: NetworkConfiguration, location_name: "networkConfiguration"))
415
+ UpdateApplicationRequest.add_member(:architecture, Shapes::ShapeRef.new(shape: Architecture, location_name: "architecture"))
411
416
  UpdateApplicationRequest.struct_class = Types::UpdateApplicationRequest
412
417
 
413
418
  UpdateApplicationResponse.add_member(:application, Shapes::ShapeRef.new(shape: Application, required: true, location_name: "application"))
@@ -79,6 +79,10 @@ module Aws::EMRServerless
79
79
  # application.
80
80
  # @return [Types::NetworkConfiguration]
81
81
  #
82
+ # @!attribute [rw] architecture
83
+ # The CPU architecture of an application.
84
+ # @return [String]
85
+ #
82
86
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/Application AWS API Documentation
83
87
  #
84
88
  class Application < Struct.new(
@@ -96,7 +100,8 @@ module Aws::EMRServerless
96
100
  :tags,
97
101
  :auto_start_configuration,
98
102
  :auto_stop_configuration,
99
- :network_configuration)
103
+ :network_configuration,
104
+ :architecture)
100
105
  SENSITIVE = []
101
106
  include Aws::Structure
102
107
  end
@@ -139,6 +144,10 @@ module Aws::EMRServerless
139
144
  # The date and time when the application was last updated.
140
145
  # @return [Time]
141
146
  #
147
+ # @!attribute [rw] architecture
148
+ # The CPU architecture of an application.
149
+ # @return [String]
150
+ #
142
151
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/ApplicationSummary AWS API Documentation
143
152
  #
144
153
  class ApplicationSummary < Struct.new(
@@ -150,7 +159,8 @@ module Aws::EMRServerless
150
159
  :state,
151
160
  :state_details,
152
161
  :created_at,
153
- :updated_at)
162
+ :updated_at,
163
+ :architecture)
154
164
  SENSITIVE = []
155
165
  include Aws::Structure
156
166
  end
@@ -399,6 +409,7 @@ module Aws::EMRServerless
399
409
  # subnet_ids: ["SubnetString"],
400
410
  # security_group_ids: ["SecurityGroupString"],
401
411
  # },
412
+ # architecture: "ARM64", # accepts ARM64, X86_64
402
413
  # }
403
414
  #
404
415
  # @!attribute [rw] name
@@ -450,6 +461,10 @@ module Aws::EMRServerless
450
461
  # The network configuration for customer VPC connectivity.
451
462
  # @return [Types::NetworkConfiguration]
452
463
  #
464
+ # @!attribute [rw] architecture
465
+ # The CPU architecture of an application.
466
+ # @return [String]
467
+ #
453
468
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/CreateApplicationRequest AWS API Documentation
454
469
  #
455
470
  class CreateApplicationRequest < Struct.new(
@@ -462,7 +477,8 @@ module Aws::EMRServerless
462
477
  :tags,
463
478
  :auto_start_configuration,
464
479
  :auto_stop_configuration,
465
- :network_configuration)
480
+ :network_configuration,
481
+ :architecture)
466
482
  SENSITIVE = []
467
483
  include Aws::Structure
468
484
  end
@@ -1558,6 +1574,7 @@ module Aws::EMRServerless
1558
1574
  # subnet_ids: ["SubnetString"],
1559
1575
  # security_group_ids: ["SecurityGroupString"],
1560
1576
  # },
1577
+ # architecture: "ARM64", # accepts ARM64, X86_64
1561
1578
  # }
1562
1579
  #
1563
1580
  # @!attribute [rw] application_id
@@ -1597,6 +1614,10 @@ module Aws::EMRServerless
1597
1614
  # The network configuration for customer VPC connectivity.
1598
1615
  # @return [Types::NetworkConfiguration]
1599
1616
  #
1617
+ # @!attribute [rw] architecture
1618
+ # The CPU architecture of an application.
1619
+ # @return [String]
1620
+ #
1600
1621
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/UpdateApplicationRequest AWS API Documentation
1601
1622
  #
1602
1623
  class UpdateApplicationRequest < Struct.new(
@@ -1606,7 +1627,8 @@ module Aws::EMRServerless
1606
1627
  :maximum_capacity,
1607
1628
  :auto_start_configuration,
1608
1629
  :auto_stop_configuration,
1609
- :network_configuration)
1630
+ :network_configuration,
1631
+ :architecture)
1610
1632
  SENSITIVE = []
1611
1633
  include Aws::Structure
1612
1634
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-emrserverless/customizations'
52
52
  # @!group service
53
53
  module Aws::EMRServerless
54
54
 
55
- GEM_VERSION = '1.2.0'
55
+ GEM_VERSION = '1.3.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-emrserverless
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.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: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2022-11-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core