aws-sdk-cloud9 1.81.0 → 1.83.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: 7b3567ac76955da803cadd4249f2b4bd8e3b4b93938039250061b1b7ac5f1fc5
4
- data.tar.gz: a9bdef2316fcc3fb653068d16449c494fd262bd443a339884d8615c4faec9b07
3
+ metadata.gz: fa697d62b793985d0630a4a6577727acf82f8250db6134911ef5ddf8513ba125
4
+ data.tar.gz: 3c80f1a6e1ed13a21354bcc5fc4d6c6a32321988e0ca04d0d54255eef8c48e16
5
5
  SHA512:
6
- metadata.gz: f08f9638d652a1b54125debc9d3d5140d5d354138d6cca95274aa8702e6629a48099bf2e79c15bfce0ec79d95038589db0f8388e0627b5a87a772a3b1187d31d
7
- data.tar.gz: 86e4a3889213560f1c7645c078f21b4d9165f492b817fb28a2356860ff1cdca75249041c748fd0c3467748157b5a74b5f250a3c4a63b61f3ddaa044bc98d3109
6
+ metadata.gz: 92aef2fd9d4a43abe8de856716004cd74132f1e49721b565f5e1fa206add8a82caf6000c14d7c13bb6878a4fa8d1dc502ebb5ba4e636b0dadc2aeab55f6e3c49
7
+ data.tar.gz: c62eaed26bec022daf0127b34eddeea2d2fa6eb1c6e8389aed5cca7e8594e1e50a37ee8738acbd813726dbd7067df9f5a285b9e5298515763c2128e9f3b34c13
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.83.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.82.0 (2024-12-16)
10
+ ------------------
11
+
12
+ * Feature - Added information about Ubuntu 18.04 will be removed from the available imageIds for Cloud9 because Ubuntu 18.04 has ended standard support on May 31, 2023.
13
+
4
14
  1.81.0 (2024-10-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.81.0
1
+ 1.83.0
@@ -257,11 +257,34 @@ module Aws::Cloud9
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -458,6 +481,13 @@ module Aws::Cloud9
458
481
  # Compute Cloud (Amazon EC2) instance, and then connects from the
459
482
  # instance to the environment.
460
483
  #
484
+ # Cloud9 is no longer available to new customers. Existing customers of
485
+ # Cloud9 can continue to use the service as normal. [Learn more"][1]
486
+ #
487
+ #
488
+ #
489
+ # [1]: http://aws.amazon.com/blogs/devops/how-to-migrate-from-aws-cloud9-to-aws-ide-toolkits-or-aws-cloudshell/
490
+ #
461
491
  # @option params [required, String] :name
462
492
  # The name of the environment to create.
463
493
  #
@@ -492,16 +522,16 @@ module Aws::Cloud9
492
522
  # specify a valid AMI alias or a valid Amazon EC2 Systems Manager (SSM)
493
523
  # path.
494
524
  #
495
- # From December 04, 2023, you will be required to include the `imageId`
496
- # parameter for the `CreateEnvironmentEC2` action. This change will be
497
- # reflected across all direct methods of communicating with the API,
498
- # such as Amazon Web Services SDK, Amazon Web Services CLI and Amazon
499
- # Web Services CloudFormation. This change will only affect direct API
500
- # consumers, and not Cloud9 console users.
525
+ #
501
526
  #
502
527
  # We recommend using Amazon Linux 2023 as the AMI to create your
503
528
  # environment as it is fully supported.
504
529
  #
530
+ # From December 16, 2024, Ubuntu 18.04 will be removed from the list of
531
+ # available `imageIds` for Cloud9. This change is necessary as Ubuntu
532
+ # 18.04 has ended standard support on May 31, 2023. This change will
533
+ # only affect direct API consumers, and not Cloud9 console users.
534
+ #
505
535
  # Since Ubuntu 18.04 has ended standard support as of May 31, 2023, we
506
536
  # recommend you choose Ubuntu 22.04.
507
537
  #
@@ -618,6 +648,13 @@ module Aws::Cloud9
618
648
 
619
649
  # Adds an environment member to an Cloud9 development environment.
620
650
  #
651
+ # Cloud9 is no longer available to new customers. Existing customers of
652
+ # Cloud9 can continue to use the service as normal. [Learn more"][1]
653
+ #
654
+ #
655
+ #
656
+ # [1]: http://aws.amazon.com/blogs/devops/how-to-migrate-from-aws-cloud9-to-aws-ide-toolkits-or-aws-cloudshell/
657
+ #
621
658
  # @option params [required, String] :environment_id
622
659
  # The ID of the environment that contains the environment member you
623
660
  # want to add.
@@ -685,6 +722,13 @@ module Aws::Cloud9
685
722
  # Deletes an Cloud9 development environment. If an Amazon EC2 instance
686
723
  # is connected to the environment, also terminates the instance.
687
724
  #
725
+ # Cloud9 is no longer available to new customers. Existing customers of
726
+ # Cloud9 can continue to use the service as normal. [Learn more"][1]
727
+ #
728
+ #
729
+ #
730
+ # [1]: http://aws.amazon.com/blogs/devops/how-to-migrate-from-aws-cloud9-to-aws-ide-toolkits-or-aws-cloudshell/
731
+ #
688
732
  # @option params [required, String] :environment_id
689
733
  # The ID of the environment to delete.
690
734
  #
@@ -718,6 +762,13 @@ module Aws::Cloud9
718
762
 
719
763
  # Deletes an environment member from a development environment.
720
764
  #
765
+ # Cloud9 is no longer available to new customers. Existing customers of
766
+ # Cloud9 can continue to use the service as normal. [Learn more"][1]
767
+ #
768
+ #
769
+ #
770
+ # [1]: http://aws.amazon.com/blogs/devops/how-to-migrate-from-aws-cloud9-to-aws-ide-toolkits-or-aws-cloudshell/
771
+ #
721
772
  # @option params [required, String] :environment_id
722
773
  # The ID of the environment to delete the environment member from.
723
774
  #
@@ -758,6 +809,13 @@ module Aws::Cloud9
758
809
  # Gets information about environment members for an Cloud9 development
759
810
  # environment.
760
811
  #
812
+ # Cloud9 is no longer available to new customers. Existing customers of
813
+ # Cloud9 can continue to use the service as normal. [Learn more"][1]
814
+ #
815
+ #
816
+ #
817
+ # [1]: http://aws.amazon.com/blogs/devops/how-to-migrate-from-aws-cloud9-to-aws-ide-toolkits-or-aws-cloudshell/
818
+ #
761
819
  # @option params [String] :user_arn
762
820
  # The Amazon Resource Name (ARN) of an individual environment member to
763
821
  # get information about. If no value is specified, information about all
@@ -907,6 +965,13 @@ module Aws::Cloud9
907
965
 
908
966
  # Gets status information for an Cloud9 development environment.
909
967
  #
968
+ # Cloud9 is no longer available to new customers. Existing customers of
969
+ # Cloud9 can continue to use the service as normal. [Learn more"][1]
970
+ #
971
+ #
972
+ #
973
+ # [1]: http://aws.amazon.com/blogs/devops/how-to-migrate-from-aws-cloud9-to-aws-ide-toolkits-or-aws-cloudshell/
974
+ #
910
975
  # @option params [required, String] :environment_id
911
976
  # The ID of the environment to get status information about.
912
977
  #
@@ -950,6 +1015,13 @@ module Aws::Cloud9
950
1015
 
951
1016
  # Gets information about Cloud9 development environments.
952
1017
  #
1018
+ # Cloud9 is no longer available to new customers. Existing customers of
1019
+ # Cloud9 can continue to use the service as normal. [Learn more"][1]
1020
+ #
1021
+ #
1022
+ #
1023
+ # [1]: http://aws.amazon.com/blogs/devops/how-to-migrate-from-aws-cloud9-to-aws-ide-toolkits-or-aws-cloudshell/
1024
+ #
953
1025
  # @option params [required, Array<String>] :environment_ids
954
1026
  # The IDs of individual environments to get information about.
955
1027
  #
@@ -1027,6 +1099,16 @@ module Aws::Cloud9
1027
1099
 
1028
1100
  # Gets a list of Cloud9 development environment identifiers.
1029
1101
  #
1102
+ # Cloud9 is no longer available to new customers. Existing customers of
1103
+ # Cloud9 can continue to use the service as normal. [Learn more"][1]
1104
+ #
1105
+ # Cloud9 is no longer available to new customers. Existing customers of
1106
+ # Cloud9 can continue to use the service as normal. [Learn more"][1]
1107
+ #
1108
+ #
1109
+ #
1110
+ # [1]: http://aws.amazon.com/blogs/devops/how-to-migrate-from-aws-cloud9-to-aws-ide-toolkits-or-aws-cloudshell/
1111
+ #
1030
1112
  # @option params [String] :next_token
1031
1113
  # During a previous call, if there are more than 25 items in the list,
1032
1114
  # only the first 25 items are returned, along with a unique string
@@ -1085,6 +1167,13 @@ module Aws::Cloud9
1085
1167
  # Gets a list of the tags associated with an Cloud9 development
1086
1168
  # environment.
1087
1169
  #
1170
+ # Cloud9 is no longer available to new customers. Existing customers of
1171
+ # Cloud9 can continue to use the service as normal. [Learn more"][1]
1172
+ #
1173
+ #
1174
+ #
1175
+ # [1]: http://aws.amazon.com/blogs/devops/how-to-migrate-from-aws-cloud9-to-aws-ide-toolkits-or-aws-cloudshell/
1176
+ #
1088
1177
  # @option params [required, String] :resource_arn
1089
1178
  # The Amazon Resource Name (ARN) of the Cloud9 development environment
1090
1179
  # to get the tags for.
@@ -1116,9 +1205,16 @@ module Aws::Cloud9
1116
1205
 
1117
1206
  # Adds tags to an Cloud9 development environment.
1118
1207
  #
1208
+ # Cloud9 is no longer available to new customers. Existing customers of
1209
+ # Cloud9 can continue to use the service as normal. [Learn more"][1]
1210
+ #
1119
1211
  # Tags that you add to an Cloud9 environment by using this method will
1120
1212
  # NOT be automatically propagated to underlying resources.
1121
1213
  #
1214
+ #
1215
+ #
1216
+ # [1]: http://aws.amazon.com/blogs/devops/how-to-migrate-from-aws-cloud9-to-aws-ide-toolkits-or-aws-cloudshell/
1217
+ #
1122
1218
  # @option params [required, String] :resource_arn
1123
1219
  # The Amazon Resource Name (ARN) of the Cloud9 development environment
1124
1220
  # to add tags to.
@@ -1151,6 +1247,13 @@ module Aws::Cloud9
1151
1247
 
1152
1248
  # Removes tags from an Cloud9 development environment.
1153
1249
  #
1250
+ # Cloud9 is no longer available to new customers. Existing customers of
1251
+ # Cloud9 can continue to use the service as normal. [Learn more"][1]
1252
+ #
1253
+ #
1254
+ #
1255
+ # [1]: http://aws.amazon.com/blogs/devops/how-to-migrate-from-aws-cloud9-to-aws-ide-toolkits-or-aws-cloudshell/
1256
+ #
1154
1257
  # @option params [required, String] :resource_arn
1155
1258
  # The Amazon Resource Name (ARN) of the Cloud9 development environment
1156
1259
  # to remove tags from.
@@ -1179,6 +1282,13 @@ module Aws::Cloud9
1179
1282
 
1180
1283
  # Changes the settings of an existing Cloud9 development environment.
1181
1284
  #
1285
+ # Cloud9 is no longer available to new customers. Existing customers of
1286
+ # Cloud9 can continue to use the service as normal. [Learn more"][1]
1287
+ #
1288
+ #
1289
+ #
1290
+ # [1]: http://aws.amazon.com/blogs/devops/how-to-migrate-from-aws-cloud9-to-aws-ide-toolkits-or-aws-cloudshell/
1291
+ #
1182
1292
  # @option params [required, String] :environment_id
1183
1293
  # The ID of the environment to change settings.
1184
1294
  #
@@ -1240,6 +1350,13 @@ module Aws::Cloud9
1240
1350
  # Changes the settings of an existing environment member for an Cloud9
1241
1351
  # development environment.
1242
1352
  #
1353
+ # Cloud9 is no longer available to new customers. Existing customers of
1354
+ # Cloud9 can continue to use the service as normal. [Learn more"][1]
1355
+ #
1356
+ #
1357
+ #
1358
+ # [1]: http://aws.amazon.com/blogs/devops/how-to-migrate-from-aws-cloud9-to-aws-ide-toolkits-or-aws-cloudshell/
1359
+ #
1243
1360
  # @option params [required, String] :environment_id
1244
1361
  # The ID of the environment for the environment member whose settings
1245
1362
  # you want to change.
@@ -1322,7 +1439,7 @@ module Aws::Cloud9
1322
1439
  tracer: tracer
1323
1440
  )
1324
1441
  context[:gem_name] = 'aws-sdk-cloud9'
1325
- context[:gem_version] = '1.81.0'
1442
+ context[:gem_version] = '1.83.0'
1326
1443
  Seahorse::Client::Request.new(handlers, context)
1327
1444
  end
1328
1445
 
@@ -67,16 +67,16 @@ module Aws::Cloud9
67
67
  # specify a valid AMI alias or a valid Amazon EC2 Systems Manager
68
68
  # (SSM) path.
69
69
  #
70
- # From December 04, 2023, you will be required to include the
71
- # `imageId` parameter for the `CreateEnvironmentEC2` action. This
72
- # change will be reflected across all direct methods of communicating
73
- # with the API, such as Amazon Web Services SDK, Amazon Web Services
74
- # CLI and Amazon Web Services CloudFormation. This change will only
75
- # affect direct API consumers, and not Cloud9 console users.
70
+ #
76
71
  #
77
72
  # We recommend using Amazon Linux 2023 as the AMI to create your
78
73
  # environment as it is fully supported.
79
74
  #
75
+ # From December 16, 2024, Ubuntu 18.04 will be removed from the list
76
+ # of available `imageIds` for Cloud9. This change is necessary as
77
+ # Ubuntu 18.04 has ended standard support on May 31, 2023. This change
78
+ # will only affect direct API consumers, and not Cloud9 console users.
79
+ #
80
80
  # Since Ubuntu 18.04 has ended standard support as of May 31, 2023, we
81
81
  # recommend you choose Ubuntu 22.04.
82
82
  #
@@ -54,7 +54,7 @@ module Aws::Cloud9
54
54
  autoload :EndpointProvider, 'aws-sdk-cloud9/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-cloud9/endpoints'
56
56
 
57
- GEM_VERSION = '1.81.0'
57
+ GEM_VERSION = '1.83.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
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.81.0
4
+ version: 1.83.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-10-18 00:00:00.000000000 Z
11
+ date: 2025-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.210.0
22
+ version: 3.216.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement