aws-sdk-cloud9 1.35.0 → 1.39.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: e0ce10c036bbb40648dd3ad91a5ecb1c38daa33857f7a4c1521a5c5987d60145
4
- data.tar.gz: a067c23efc1650038c0eb0ccb3fb947ffd99c438a4498864578296fe8a2a1560
3
+ metadata.gz: 05ea3da10ba4246f36fa6def33c8bb226e967abd9eb5fb6281a774728ead1ac1
4
+ data.tar.gz: 752f5c17c56b923aac47fcd82b218b7c7ebdf79facc40a3e1347bc0f08fda632
5
5
  SHA512:
6
- metadata.gz: 1c1d93ddf253edf3d5198acfb87417c4bd54a745088222d3395a53d6ed0a0106d006dea5d227a350c2a547d8d245244c165f1862b163cce30668d25b5f5ffc44
7
- data.tar.gz: dab04e4a19b136cf221ba9ebbc8be3b8d5c69eafa5bcd7b14d6053d1667efa4455ebff7f40163da3ff639d4bea0fecf7869b4d6ab16beb4ce44673b7e2ee3313
6
+ metadata.gz: '0228faf25a201ff4f529d2b182f5e681c895ef537607f53a02082dcbdebbc4f703e7a51538d9f344991f6a004d71355ebf12d505c262fea7352dfffd95bd624b'
7
+ data.tar.gz: 48e9383a710fffdeddef916c88f9e2671513be06b2eebef209f68e0e7fe5c5762e5bc22673a6d63dcbb4c4f648e9b2f05d545e089b06671fe4925ba8521b8250
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.39.0 (2021-09-01)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.38.0 (2021-08-17)
10
+ ------------------
11
+
12
+ * Feature - Added DryRun parameter to CreateEnvironmentEC2 API. Added ManagedCredentialsActions parameter to UpdateEnvironment API
13
+
14
+ 1.37.0 (2021-07-30)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.36.0 (2021-07-28)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.35.0 (2021-06-24)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.35.0
1
+ 1.39.0
@@ -425,6 +425,12 @@ module Aws::Cloud9
425
425
  #
426
426
  # [1]: https://docs.aws.amazon.com/cloud9/latest/user-guide/ec2-ssm.html
427
427
  #
428
+ # @option params [Boolean] :dry_run
429
+ # Checks whether you have the required permissions for the action,
430
+ # without actually making the request, and provides an error response.
431
+ # If you have the required permissions, the error response is
432
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
433
+ #
428
434
  # @return [Types::CreateEnvironmentEC2Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
429
435
  #
430
436
  # * {Types::CreateEnvironmentEC2Result#environment_id #environment_id} => String
@@ -464,6 +470,7 @@ module Aws::Cloud9
464
470
  # },
465
471
  # ],
466
472
  # connection_type: "CONNECT_SSH", # accepts CONNECT_SSH, CONNECT_SSM
473
+ # dry_run: false,
467
474
  # })
468
475
  #
469
476
  # @example Response structure
@@ -1051,6 +1058,22 @@ module Aws::Cloud9
1051
1058
  # @option params [String] :description
1052
1059
  # Any new or replacement description for the environment.
1053
1060
  #
1061
+ # @option params [String] :managed_credentials_action
1062
+ # Allows the environment owner to turn on or turn off the Amazon Web
1063
+ # Services managed temporary credentials for an Cloud9 environment by
1064
+ # using one of the following values:
1065
+ #
1066
+ # * `ENABLE`
1067
+ #
1068
+ # * `DISABLE`
1069
+ #
1070
+ # <note markdown="1"> Only the environment owner can change the status of managed temporary
1071
+ # credentials. An `AccessDeniedException` is thrown if an attempt to
1072
+ # turn on or turn off managed temporary credentials is made by an
1073
+ # account that's not the environment owner.
1074
+ #
1075
+ # </note>
1076
+ #
1054
1077
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1055
1078
  #
1056
1079
  #
@@ -1072,6 +1095,7 @@ module Aws::Cloud9
1072
1095
  # environment_id: "EnvironmentId", # required
1073
1096
  # name: "EnvironmentName",
1074
1097
  # description: "EnvironmentDescription",
1098
+ # managed_credentials_action: "ENABLE", # accepts ENABLE, DISABLE
1075
1099
  # })
1076
1100
  #
1077
1101
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloud9-2017-09-23/UpdateEnvironment AWS API Documentation
@@ -1163,7 +1187,7 @@ module Aws::Cloud9
1163
1187
  params: params,
1164
1188
  config: config)
1165
1189
  context[:gem_name] = 'aws-sdk-cloud9'
1166
- context[:gem_version] = '1.35.0'
1190
+ context[:gem_version] = '1.39.0'
1167
1191
  Seahorse::Client::Request.new(handlers, context)
1168
1192
  end
1169
1193
 
@@ -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
@@ -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
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-cloud9/customizations'
48
48
  # @!group service
49
49
  module Aws::Cloud9
50
50
 
51
- GEM_VERSION = '1.35.0'
51
+ GEM_VERSION = '1.39.0'
52
52
 
53
53
  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.35.0
4
+ version: 1.39.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-06-24 00:00:00.000000000 Z
11
+ date: 2021-09-01 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.112.0
22
+ version: 3.120.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.112.0
32
+ version: 3.120.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: '0'
79
+ version: '2.3'
80
80
  required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - ">="