aws-sdk-cloud9 1.37.0 → 1.41.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloud9/client.rb +34 -1
- data/lib/aws-sdk-cloud9/client_api.rb +4 -0
- data/lib/aws-sdk-cloud9/types.rb +30 -2
- data/lib/aws-sdk-cloud9.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dcad7279667559d6d545e4d17044bb843dcfacf8bc1029dcbb7f058af7dca81c
|
4
|
+
data.tar.gz: a5c7cbe61e148396bbe3f56c1c19fc2c1777b3394f93ba054dabc6ee500a753d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b871ce6ae5bc91d9f498c26b2cc2e2bae797df30628fb9869b0fbed5cce4694e2018a00eecdd579a9bcde0847ef01e79a6dd9fb83a2f51fbda9d765643f6f99c
|
7
|
+
data.tar.gz: e3146d4d61ffe0f523a8903902bb97ed4a286043a6eacaddf8a51c56872c9ec2d8bb8789211c71f1a3e53c371a42910276cd155abbab360959d22bcabd5719f1
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.41.0 (2021-11-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.40.0 (2021-10-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.39.0 (2021-09-01)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.38.0 (2021-08-17)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Added DryRun parameter to CreateEnvironmentEC2 API. Added ManagedCredentialsActions parameter to UpdateEnvironment API
|
23
|
+
|
4
24
|
1.37.0 (2021-07-30)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.41.0
|
@@ -285,6 +285,15 @@ module Aws::Cloud9
|
|
285
285
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
286
286
|
# requests are made, and retries are disabled.
|
287
287
|
#
|
288
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
289
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
290
|
+
# will be used if available.
|
291
|
+
#
|
292
|
+
# @option options [Boolean] :use_fips_endpoint
|
293
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
294
|
+
# When a `fips` region is used, the region is normalized and this config
|
295
|
+
# is set to `true`.
|
296
|
+
#
|
288
297
|
# @option options [Boolean] :validate_params (true)
|
289
298
|
# When `true`, request parameters are validated before
|
290
299
|
# sending the request.
|
@@ -425,6 +434,12 @@ module Aws::Cloud9
|
|
425
434
|
#
|
426
435
|
# [1]: https://docs.aws.amazon.com/cloud9/latest/user-guide/ec2-ssm.html
|
427
436
|
#
|
437
|
+
# @option params [Boolean] :dry_run
|
438
|
+
# Checks whether you have the required permissions for the action,
|
439
|
+
# without actually making the request, and provides an error response.
|
440
|
+
# If you have the required permissions, the error response is
|
441
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
442
|
+
#
|
428
443
|
# @return [Types::CreateEnvironmentEC2Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
429
444
|
#
|
430
445
|
# * {Types::CreateEnvironmentEC2Result#environment_id #environment_id} => String
|
@@ -464,6 +479,7 @@ module Aws::Cloud9
|
|
464
479
|
# },
|
465
480
|
# ],
|
466
481
|
# connection_type: "CONNECT_SSH", # accepts CONNECT_SSH, CONNECT_SSM
|
482
|
+
# dry_run: false,
|
467
483
|
# })
|
468
484
|
#
|
469
485
|
# @example Response structure
|
@@ -1051,6 +1067,22 @@ module Aws::Cloud9
|
|
1051
1067
|
# @option params [String] :description
|
1052
1068
|
# Any new or replacement description for the environment.
|
1053
1069
|
#
|
1070
|
+
# @option params [String] :managed_credentials_action
|
1071
|
+
# Allows the environment owner to turn on or turn off the Amazon Web
|
1072
|
+
# Services managed temporary credentials for an Cloud9 environment by
|
1073
|
+
# using one of the following values:
|
1074
|
+
#
|
1075
|
+
# * `ENABLE`
|
1076
|
+
#
|
1077
|
+
# * `DISABLE`
|
1078
|
+
#
|
1079
|
+
# <note markdown="1"> Only the environment owner can change the status of managed temporary
|
1080
|
+
# credentials. An `AccessDeniedException` is thrown if an attempt to
|
1081
|
+
# turn on or turn off managed temporary credentials is made by an
|
1082
|
+
# account that's not the environment owner.
|
1083
|
+
#
|
1084
|
+
# </note>
|
1085
|
+
#
|
1054
1086
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1055
1087
|
#
|
1056
1088
|
#
|
@@ -1072,6 +1104,7 @@ module Aws::Cloud9
|
|
1072
1104
|
# environment_id: "EnvironmentId", # required
|
1073
1105
|
# name: "EnvironmentName",
|
1074
1106
|
# description: "EnvironmentDescription",
|
1107
|
+
# managed_credentials_action: "ENABLE", # accepts ENABLE, DISABLE
|
1075
1108
|
# })
|
1076
1109
|
#
|
1077
1110
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloud9-2017-09-23/UpdateEnvironment AWS API Documentation
|
@@ -1163,7 +1196,7 @@ module Aws::Cloud9
|
|
1163
1196
|
params: params,
|
1164
1197
|
config: config)
|
1165
1198
|
context[:gem_name] = 'aws-sdk-cloud9'
|
1166
|
-
context[:gem_version] = '1.
|
1199
|
+
context[:gem_version] = '1.41.0'
|
1167
1200
|
Seahorse::Client::Request.new(handlers, context)
|
1168
1201
|
end
|
1169
1202
|
|
@@ -56,10 +56,12 @@ module Aws::Cloud9
|
|
56
56
|
ListEnvironmentsResult = Shapes::StructureShape.new(name: 'ListEnvironmentsResult')
|
57
57
|
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
58
58
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
59
|
+
ManagedCredentialsAction = Shapes::StringShape.new(name: 'ManagedCredentialsAction')
|
59
60
|
ManagedCredentialsStatus = Shapes::StringShape.new(name: 'ManagedCredentialsStatus')
|
60
61
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
61
62
|
MemberPermissions = Shapes::StringShape.new(name: 'MemberPermissions')
|
62
63
|
NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
|
64
|
+
NullableBoolean = Shapes::BooleanShape.new(name: 'NullableBoolean')
|
63
65
|
Permissions = Shapes::StringShape.new(name: 'Permissions')
|
64
66
|
PermissionsList = Shapes::ListShape.new(name: 'PermissionsList')
|
65
67
|
String = Shapes::StringShape.new(name: 'String')
|
@@ -99,6 +101,7 @@ module Aws::Cloud9
|
|
99
101
|
CreateEnvironmentEC2Request.add_member(:owner_arn, Shapes::ShapeRef.new(shape: UserArn, location_name: "ownerArn"))
|
100
102
|
CreateEnvironmentEC2Request.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
101
103
|
CreateEnvironmentEC2Request.add_member(:connection_type, Shapes::ShapeRef.new(shape: ConnectionType, location_name: "connectionType"))
|
104
|
+
CreateEnvironmentEC2Request.add_member(:dry_run, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "dryRun"))
|
102
105
|
CreateEnvironmentEC2Request.struct_class = Types::CreateEnvironmentEC2Request
|
103
106
|
|
104
107
|
CreateEnvironmentEC2Result.add_member(:environment_id, Shapes::ShapeRef.new(shape: EnvironmentId, location_name: "environmentId"))
|
@@ -233,6 +236,7 @@ module Aws::Cloud9
|
|
233
236
|
UpdateEnvironmentRequest.add_member(:environment_id, Shapes::ShapeRef.new(shape: EnvironmentId, required: true, location_name: "environmentId"))
|
234
237
|
UpdateEnvironmentRequest.add_member(:name, Shapes::ShapeRef.new(shape: EnvironmentName, location_name: "name"))
|
235
238
|
UpdateEnvironmentRequest.add_member(:description, Shapes::ShapeRef.new(shape: EnvironmentDescription, location_name: "description"))
|
239
|
+
UpdateEnvironmentRequest.add_member(:managed_credentials_action, Shapes::ShapeRef.new(shape: ManagedCredentialsAction, location_name: "managedCredentialsAction"))
|
236
240
|
UpdateEnvironmentRequest.struct_class = Types::UpdateEnvironmentRequest
|
237
241
|
|
238
242
|
UpdateEnvironmentResult.struct_class = Types::UpdateEnvironmentResult
|
data/lib/aws-sdk-cloud9/types.rb
CHANGED
@@ -47,6 +47,7 @@ module Aws::Cloud9
|
|
47
47
|
# },
|
48
48
|
# ],
|
49
49
|
# connection_type: "CONNECT_SSH", # accepts CONNECT_SSH, CONNECT_SSM
|
50
|
+
# dry_run: false,
|
50
51
|
# }
|
51
52
|
#
|
52
53
|
# @!attribute [rw] name
|
@@ -143,6 +144,13 @@ module Aws::Cloud9
|
|
143
144
|
# [1]: https://docs.aws.amazon.com/cloud9/latest/user-guide/ec2-ssm.html
|
144
145
|
# @return [String]
|
145
146
|
#
|
147
|
+
# @!attribute [rw] dry_run
|
148
|
+
# Checks whether you have the required permissions for the action,
|
149
|
+
# without actually making the request, and provides an error response.
|
150
|
+
# If you have the required permissions, the error response is
|
151
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
152
|
+
# @return [Boolean]
|
153
|
+
#
|
146
154
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloud9-2017-09-23/CreateEnvironmentEC2Request AWS API Documentation
|
147
155
|
#
|
148
156
|
class CreateEnvironmentEC2Request < Struct.new(
|
@@ -155,7 +163,8 @@ module Aws::Cloud9
|
|
155
163
|
:automatic_stop_time_minutes,
|
156
164
|
:owner_arn,
|
157
165
|
:tags,
|
158
|
-
:connection_type
|
166
|
+
:connection_type,
|
167
|
+
:dry_run)
|
159
168
|
SENSITIVE = [:description, :tags]
|
160
169
|
include Aws::Structure
|
161
170
|
end
|
@@ -869,6 +878,7 @@ module Aws::Cloud9
|
|
869
878
|
# environment_id: "EnvironmentId", # required
|
870
879
|
# name: "EnvironmentName",
|
871
880
|
# description: "EnvironmentDescription",
|
881
|
+
# managed_credentials_action: "ENABLE", # accepts ENABLE, DISABLE
|
872
882
|
# }
|
873
883
|
#
|
874
884
|
# @!attribute [rw] environment_id
|
@@ -883,12 +893,30 @@ module Aws::Cloud9
|
|
883
893
|
# Any new or replacement description for the environment.
|
884
894
|
# @return [String]
|
885
895
|
#
|
896
|
+
# @!attribute [rw] managed_credentials_action
|
897
|
+
# Allows the environment owner to turn on or turn off the Amazon Web
|
898
|
+
# Services managed temporary credentials for an Cloud9 environment by
|
899
|
+
# using one of the following values:
|
900
|
+
#
|
901
|
+
# * `ENABLE`
|
902
|
+
#
|
903
|
+
# * `DISABLE`
|
904
|
+
#
|
905
|
+
# <note markdown="1"> Only the environment owner can change the status of managed
|
906
|
+
# temporary credentials. An `AccessDeniedException` is thrown if an
|
907
|
+
# attempt to turn on or turn off managed temporary credentials is made
|
908
|
+
# by an account that's not the environment owner.
|
909
|
+
#
|
910
|
+
# </note>
|
911
|
+
# @return [String]
|
912
|
+
#
|
886
913
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloud9-2017-09-23/UpdateEnvironmentRequest AWS API Documentation
|
887
914
|
#
|
888
915
|
class UpdateEnvironmentRequest < Struct.new(
|
889
916
|
:environment_id,
|
890
917
|
:name,
|
891
|
-
:description
|
918
|
+
:description,
|
919
|
+
:managed_credentials_action)
|
892
920
|
SENSITIVE = [:description]
|
893
921
|
include Aws::Structure
|
894
922
|
end
|
data/lib/aws-sdk-cloud9.rb
CHANGED
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.
|
4
|
+
version: 1.41.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: 2021-
|
11
|
+
date: 2021-11-04 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.
|
22
|
+
version: 3.122.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.
|
32
|
+
version: 3.122.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
76
76
|
requirements:
|
77
77
|
- - ">="
|
78
78
|
- !ruby/object:Gem::Version
|
79
|
-
version: '
|
79
|
+
version: '2.3'
|
80
80
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
81
|
requirements:
|
82
82
|
- - ">="
|