aws-sdk-cloud9 1.62.0 → 1.64.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: 0e851939bbbba74520c1ce2095e217331ea9fcf4cde734467a4f2923bd8d192b
4
- data.tar.gz: a3aaf8381242d9a3d759e22b9b3094e76699fd0a18f8c5e26dcc6b88f1d13c94
3
+ metadata.gz: ae8809461aecc6a6aab39af33787906221d24f2d84811c4c998b42dba7ee702b
4
+ data.tar.gz: da30989f07e73cbbc16bbd5fde7e13c5f767f16249a735849889f0071a2eed8c
5
5
  SHA512:
6
- metadata.gz: 49ebef6b7bd3928da620ace4dde549bf86bc72859641fda08268ee6fd82066ae01aefeb643aef15f6b3eaf67532bb516a0e8ed7482a1a2a515625782c0e60f1e
7
- data.tar.gz: 39ecb92a0c069920c5dcebf8f16d0c09eabdab8c94934d5a88ccb48d63d4d213742f7b2ed94d4fb96ce6d303459cae13e51940e5eea0026f761e1671a24932f0
6
+ metadata.gz: ac8ab6bd2b894ee24183fdbad9532675ccdbfe02198b2aef5a6704803659a895d370577d21b5c219183bf58fa3be8e926e37bda31abeb683453a90f7fd14cf1d
7
+ data.tar.gz: 8beaf89a0b66ed69487d8b001e8d9ce0dc30c7c29dd32524d77c5c1d76af7ccafbd1db8ab74b57e6c3a12bf81f679219521b1d1a3b2f852c36a97bac3c68e62c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.64.0 (2023-12-04)
5
+ ------------------
6
+
7
+ * Feature - This release adds the requirement to include the imageId parameter in the CreateEnvironmentEC2 API call.
8
+
9
+ 1.63.0 (2023-11-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.62.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.62.0
1
+ 1.64.0
@@ -430,7 +430,7 @@ module Aws::Cloud9
430
430
  # The ID of the subnet in Amazon VPC that Cloud9 will use to communicate
431
431
  # with the Amazon EC2 instance.
432
432
  #
433
- # @option params [String] :image_id
433
+ # @option params [required, String] :image_id
434
434
  # The identifier for the Amazon Machine Image (AMI) that's used to
435
435
  # create the EC2 instance. To choose an AMI for the instance, you must
436
436
  # specify a valid AMI alias or a valid Amazon EC2 Systems Manager (SSM)
@@ -456,7 +456,7 @@ module Aws::Cloud9
456
456
  #
457
457
  # <b>AMI aliases </b>
458
458
  #
459
- # * Amazon Linux (default): `amazonlinux-1-x86_64`
459
+ # * Amazon Linux: `amazonlinux-1-x86_64`
460
460
  #
461
461
  # * Amazon Linux 2: `amazonlinux-2-x86_64`
462
462
  #
@@ -466,7 +466,7 @@ module Aws::Cloud9
466
466
  #
467
467
  # **SSM paths**
468
468
  #
469
- # * Amazon Linux (default):
469
+ # * Amazon Linux:
470
470
  # `resolve:ssm:/aws/service/cloud9/amis/amazonlinux-1-x86_64`
471
471
  #
472
472
  # * Amazon Linux 2:
@@ -539,7 +539,7 @@ module Aws::Cloud9
539
539
  # client_request_token: "ClientRequestToken",
540
540
  # instance_type: "InstanceType", # required
541
541
  # subnet_id: "SubnetId",
542
- # image_id: "ImageId",
542
+ # image_id: "ImageId", # required
543
543
  # automatic_stop_time_minutes: 1,
544
544
  # owner_arn: "UserArn",
545
545
  # tags: [
@@ -1266,7 +1266,7 @@ module Aws::Cloud9
1266
1266
  params: params,
1267
1267
  config: config)
1268
1268
  context[:gem_name] = 'aws-sdk-cloud9'
1269
- context[:gem_version] = '1.62.0'
1269
+ context[:gem_version] = '1.64.0'
1270
1270
  Seahorse::Client::Request.new(handlers, context)
1271
1271
  end
1272
1272
 
@@ -96,7 +96,7 @@ module Aws::Cloud9
96
96
  CreateEnvironmentEC2Request.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "clientRequestToken"))
97
97
  CreateEnvironmentEC2Request.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, required: true, location_name: "instanceType"))
98
98
  CreateEnvironmentEC2Request.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, location_name: "subnetId"))
99
- CreateEnvironmentEC2Request.add_member(:image_id, Shapes::ShapeRef.new(shape: ImageId, location_name: "imageId"))
99
+ CreateEnvironmentEC2Request.add_member(:image_id, Shapes::ShapeRef.new(shape: ImageId, required: true, location_name: "imageId"))
100
100
  CreateEnvironmentEC2Request.add_member(:automatic_stop_time_minutes, Shapes::ShapeRef.new(shape: AutomaticStopTimeMinutes, location_name: "automaticStopTimeMinutes"))
101
101
  CreateEnvironmentEC2Request.add_member(:owner_arn, Shapes::ShapeRef.new(shape: UserArn, location_name: "ownerArn"))
102
102
  CreateEnvironmentEC2Request.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
@@ -25,16 +25,17 @@ module Aws::Cloud9
25
25
  # @api private
26
26
  class Handler < Seahorse::Client::Handler
27
27
  def call(context)
28
- # If endpoint was discovered, do not resolve or apply the endpoint.
29
28
  unless context[:discovered_endpoint]
30
29
  params = parameters_for_operation(context)
31
30
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
31
 
33
32
  context.http_request.endpoint = endpoint.url
34
33
  apply_endpoint_headers(context, endpoint.headers)
34
+
35
+ context[:endpoint_params] = params
36
+ context[:endpoint_properties] = endpoint.properties
35
37
  end
36
38
 
37
- context[:endpoint_params] = params
38
39
  context[:auth_scheme] =
39
40
  Aws::Endpoints.resolve_auth_scheme(context, endpoint)
40
41
 
@@ -87,7 +87,7 @@ module Aws::Cloud9
87
87
  #
88
88
  # <b>AMI aliases </b>
89
89
  #
90
- # * Amazon Linux (default): `amazonlinux-1-x86_64`
90
+ # * Amazon Linux: `amazonlinux-1-x86_64`
91
91
  #
92
92
  # * Amazon Linux 2: `amazonlinux-2-x86_64`
93
93
  #
@@ -97,7 +97,7 @@ module Aws::Cloud9
97
97
  #
98
98
  # **SSM paths**
99
99
  #
100
- # * Amazon Linux (default):
100
+ # * Amazon Linux:
101
101
  # `resolve:ssm:/aws/service/cloud9/amis/amazonlinux-1-x86_64`
102
102
  #
103
103
  # * Amazon Linux 2:
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-cloud9/customizations'
52
52
  # @!group service
53
53
  module Aws::Cloud9
54
54
 
55
- GEM_VERSION = '1.62.0'
55
+ GEM_VERSION = '1.64.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloud9
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.62.0
4
+ version: 1.64.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: 2023-11-22 00:00:00.000000000 Z
11
+ date: 2023-12-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core