aws-sdk-codecatalyst 1.12.0 → 1.14.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: 314a3f217ada79d632e17d60076b218c71253ae11dc57b5d9e06521aa4b0c0be
4
- data.tar.gz: 4e273f3fba9af74ec3394fe0676f0af623b6668160b16ca6a6157a671b6bbcdd
3
+ metadata.gz: 5f9b54c68458e186daeb7f123b6f6e076aa5da41e97f2df99342a9b841665b09
4
+ data.tar.gz: ec49e7a76fa9340c137ec7d250986c95bccba9a5870de85fb99a64bc3c604987
5
5
  SHA512:
6
- metadata.gz: 5374f0f4958ccf52be5c9e87ea1a30f9780fb381c9fc360483b6a11a58c70f937b84bc507ef27bf60f0e50110525aeb42730ebb8f26ed1c1c0045601ca8bd8cb
7
- data.tar.gz: cc3d08f3cfa4b36d56806e858ffd8fe24bacadf34ef3c9190f172398a011824badc85e94f928ea5e97300d0274cd99825507c3ca2911c51bda790b146e3ad805
6
+ metadata.gz: 7a900bdeee529e52c32859754f5bf421c7f80d6e2e69dae7b4ac904068e2dad758a2ca5ebdff4e17546f4890ee1cd32fd56c349ffbff0e8923e5f15b09682cdf
7
+ data.tar.gz: 6b789af4d9f7d6cecbeabcfdd0546ce3801249128199a5fba579235359dd8ee86b774c75d50cbc8e973bf3cc91764dd4d95bcbb01cad169ebc5369e1e099d31b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.14.0 (2023-11-22)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.13.0 (2023-11-16)
10
+ ------------------
11
+
12
+ * Feature - This release includes updates to the Dev Environment APIs to include an optional vpcConnectionName parameter that supports using Dev Environments with Amazon VPC.
13
+
4
14
  1.12.0 (2023-11-15)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.12.0
1
+ 1.14.0
@@ -503,11 +503,15 @@ module Aws::CodeCatalyst
503
503
  #
504
504
  # </note>
505
505
  #
506
+ # @option params [String] :vpc_connection_name
507
+ # The name of the connection to use connect to a Amazon VPC.
508
+ #
506
509
  # @return [Types::CreateDevEnvironmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
507
510
  #
508
511
  # * {Types::CreateDevEnvironmentResponse#space_name #space_name} => String
509
512
  # * {Types::CreateDevEnvironmentResponse#project_name #project_name} => String
510
513
  # * {Types::CreateDevEnvironmentResponse#id #id} => String
514
+ # * {Types::CreateDevEnvironmentResponse#vpc_connection_name #vpc_connection_name} => String
511
515
  #
512
516
  # @example Request syntax with placeholder values
513
517
  #
@@ -533,6 +537,7 @@ module Aws::CodeCatalyst
533
537
  # persistent_storage: { # required
534
538
  # size_in_gi_b: 1, # required
535
539
  # },
540
+ # vpc_connection_name: "NameString",
536
541
  # })
537
542
  #
538
543
  # @example Response structure
@@ -540,6 +545,7 @@ module Aws::CodeCatalyst
540
545
  # resp.space_name #=> String
541
546
  # resp.project_name #=> String
542
547
  # resp.id #=> String
548
+ # resp.vpc_connection_name #=> String
543
549
  #
544
550
  # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/CreateDevEnvironment AWS API Documentation
545
551
  #
@@ -915,6 +921,7 @@ module Aws::CodeCatalyst
915
921
  # * {Types::GetDevEnvironmentResponse#instance_type #instance_type} => String
916
922
  # * {Types::GetDevEnvironmentResponse#inactivity_timeout_minutes #inactivity_timeout_minutes} => Integer
917
923
  # * {Types::GetDevEnvironmentResponse#persistent_storage #persistent_storage} => Types::PersistentStorage
924
+ # * {Types::GetDevEnvironmentResponse#vpc_connection_name #vpc_connection_name} => String
918
925
  #
919
926
  # @example Request syntax with placeholder values
920
927
  #
@@ -943,6 +950,7 @@ module Aws::CodeCatalyst
943
950
  # resp.instance_type #=> String, one of "dev.standard1.small", "dev.standard1.medium", "dev.standard1.large", "dev.standard1.xlarge"
944
951
  # resp.inactivity_timeout_minutes #=> Integer
945
952
  # resp.persistent_storage.size_in_gi_b #=> Integer
953
+ # resp.vpc_connection_name #=> String
946
954
  #
947
955
  # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/GetDevEnvironment AWS API Documentation
948
956
  #
@@ -1458,6 +1466,7 @@ module Aws::CodeCatalyst
1458
1466
  # resp.items[0].instance_type #=> String, one of "dev.standard1.small", "dev.standard1.medium", "dev.standard1.large", "dev.standard1.xlarge"
1459
1467
  # resp.items[0].inactivity_timeout_minutes #=> Integer
1460
1468
  # resp.items[0].persistent_storage.size_in_gi_b #=> Integer
1469
+ # resp.items[0].vpc_connection_name #=> String
1461
1470
  # resp.next_token #=> String
1462
1471
  #
1463
1472
  # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ListDevEnvironments AWS API Documentation
@@ -2383,7 +2392,7 @@ module Aws::CodeCatalyst
2383
2392
  params: params,
2384
2393
  config: config)
2385
2394
  context[:gem_name] = 'aws-sdk-codecatalyst'
2386
- context[:gem_version] = '1.12.0'
2395
+ context[:gem_version] = '1.14.0'
2387
2396
  Seahorse::Client::Request.new(handlers, context)
2388
2397
  end
2389
2398
 
@@ -258,11 +258,13 @@ module Aws::CodeCatalyst
258
258
  CreateDevEnvironmentRequest.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, required: true, location_name: "instanceType"))
259
259
  CreateDevEnvironmentRequest.add_member(:inactivity_timeout_minutes, Shapes::ShapeRef.new(shape: InactivityTimeoutMinutes, location_name: "inactivityTimeoutMinutes"))
260
260
  CreateDevEnvironmentRequest.add_member(:persistent_storage, Shapes::ShapeRef.new(shape: PersistentStorageConfiguration, required: true, location_name: "persistentStorage"))
261
+ CreateDevEnvironmentRequest.add_member(:vpc_connection_name, Shapes::ShapeRef.new(shape: NameString, location_name: "vpcConnectionName"))
261
262
  CreateDevEnvironmentRequest.struct_class = Types::CreateDevEnvironmentRequest
262
263
 
263
264
  CreateDevEnvironmentResponse.add_member(:space_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "spaceName"))
264
265
  CreateDevEnvironmentResponse.add_member(:project_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "projectName"))
265
266
  CreateDevEnvironmentResponse.add_member(:id, Shapes::ShapeRef.new(shape: Uuid, required: true, location_name: "id"))
267
+ CreateDevEnvironmentResponse.add_member(:vpc_connection_name, Shapes::ShapeRef.new(shape: NameString, location_name: "vpcConnectionName"))
266
268
  CreateDevEnvironmentResponse.struct_class = Types::CreateDevEnvironmentResponse
267
269
 
268
270
  CreateProjectRequest.add_member(:space_name, Shapes::ShapeRef.new(shape: NameString, required: true, location: "uri", location_name: "spaceName"))
@@ -378,6 +380,7 @@ module Aws::CodeCatalyst
378
380
  DevEnvironmentSummary.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, required: true, location_name: "instanceType"))
379
381
  DevEnvironmentSummary.add_member(:inactivity_timeout_minutes, Shapes::ShapeRef.new(shape: InactivityTimeoutMinutes, required: true, location_name: "inactivityTimeoutMinutes"))
380
382
  DevEnvironmentSummary.add_member(:persistent_storage, Shapes::ShapeRef.new(shape: PersistentStorage, required: true, location_name: "persistentStorage"))
383
+ DevEnvironmentSummary.add_member(:vpc_connection_name, Shapes::ShapeRef.new(shape: NameString, location_name: "vpcConnectionName"))
381
384
  DevEnvironmentSummary.struct_class = Types::DevEnvironmentSummary
382
385
 
383
386
  DevEnvironmentSummaryList.member = Shapes::ShapeRef.new(shape: DevEnvironmentSummary)
@@ -440,6 +443,7 @@ module Aws::CodeCatalyst
440
443
  GetDevEnvironmentResponse.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, required: true, location_name: "instanceType"))
441
444
  GetDevEnvironmentResponse.add_member(:inactivity_timeout_minutes, Shapes::ShapeRef.new(shape: InactivityTimeoutMinutes, required: true, location_name: "inactivityTimeoutMinutes"))
442
445
  GetDevEnvironmentResponse.add_member(:persistent_storage, Shapes::ShapeRef.new(shape: PersistentStorage, required: true, location_name: "persistentStorage"))
446
+ GetDevEnvironmentResponse.add_member(:vpc_connection_name, Shapes::ShapeRef.new(shape: NameString, location_name: "vpcConnectionName"))
443
447
  GetDevEnvironmentResponse.struct_class = Types::GetDevEnvironmentResponse
444
448
 
445
449
  GetProjectRequest.add_member(:space_name, Shapes::ShapeRef.new(shape: NameString, required: true, location: "uri", location_name: "spaceName"))
@@ -185,6 +185,10 @@ module Aws::CodeCatalyst
185
185
  # </note>
186
186
  # @return [Types::PersistentStorageConfiguration]
187
187
  #
188
+ # @!attribute [rw] vpc_connection_name
189
+ # The name of the connection to use connect to a Amazon VPC.
190
+ # @return [String]
191
+ #
188
192
  # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/CreateDevEnvironmentRequest AWS API Documentation
189
193
  #
190
194
  class CreateDevEnvironmentRequest < Struct.new(
@@ -196,7 +200,8 @@ module Aws::CodeCatalyst
196
200
  :ides,
197
201
  :instance_type,
198
202
  :inactivity_timeout_minutes,
199
- :persistent_storage)
203
+ :persistent_storage,
204
+ :vpc_connection_name)
200
205
  SENSITIVE = []
201
206
  include Aws::Structure
202
207
  end
@@ -213,12 +218,18 @@ module Aws::CodeCatalyst
213
218
  # The system-generated unique ID of the Dev Environment.
214
219
  # @return [String]
215
220
  #
221
+ # @!attribute [rw] vpc_connection_name
222
+ # The name of the connection used to connect to Amazon VPC used when
223
+ # the Dev Environment was created, if any.
224
+ # @return [String]
225
+ #
216
226
  # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/CreateDevEnvironmentResponse AWS API Documentation
217
227
  #
218
228
  class CreateDevEnvironmentResponse < Struct.new(
219
229
  :space_name,
220
230
  :project_name,
221
- :id)
231
+ :id,
232
+ :vpc_connection_name)
222
233
  SENSITIVE = []
223
234
  include Aws::Structure
224
235
  end
@@ -742,6 +753,11 @@ module Aws::CodeCatalyst
742
753
  # Dev Environment.
743
754
  # @return [Types::PersistentStorage]
744
755
  #
756
+ # @!attribute [rw] vpc_connection_name
757
+ # The name of the connection used to connect to Amazon VPC used when
758
+ # the Dev Environment was created, if any.
759
+ # @return [String]
760
+ #
745
761
  # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/DevEnvironmentSummary AWS API Documentation
746
762
  #
747
763
  class DevEnvironmentSummary < Struct.new(
@@ -757,7 +773,8 @@ module Aws::CodeCatalyst
757
773
  :ides,
758
774
  :instance_type,
759
775
  :inactivity_timeout_minutes,
760
- :persistent_storage)
776
+ :persistent_storage,
777
+ :vpc_connection_name)
761
778
  SENSITIVE = []
762
779
  include Aws::Structure
763
780
  end
@@ -1024,6 +1041,11 @@ module Aws::CodeCatalyst
1024
1041
  # 16GB of persistent storage.
1025
1042
  # @return [Types::PersistentStorage]
1026
1043
  #
1044
+ # @!attribute [rw] vpc_connection_name
1045
+ # The name of the connection used to connect to Amazon VPC used when
1046
+ # the Dev Environment was created, if any.
1047
+ # @return [String]
1048
+ #
1027
1049
  # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/GetDevEnvironmentResponse AWS API Documentation
1028
1050
  #
1029
1051
  class GetDevEnvironmentResponse < Struct.new(
@@ -1039,7 +1061,8 @@ module Aws::CodeCatalyst
1039
1061
  :ides,
1040
1062
  :instance_type,
1041
1063
  :inactivity_timeout_minutes,
1042
- :persistent_storage)
1064
+ :persistent_storage,
1065
+ :vpc_connection_name)
1043
1066
  SENSITIVE = []
1044
1067
  include Aws::Structure
1045
1068
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-codecatalyst/customizations'
52
52
  # @!group service
53
53
  module Aws::CodeCatalyst
54
54
 
55
- GEM_VERSION = '1.12.0'
55
+ GEM_VERSION = '1.14.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-codecatalyst
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.0
4
+ version: 1.14.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-15 00:00:00.000000000 Z
11
+ date: 2023-11-22 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.184.0
22
+ version: 3.188.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.184.0
32
+ version: 3.188.0
33
33
  description: Official AWS Ruby gem for Amazon CodeCatalyst. This gem is part of the
34
34
  AWS SDK for Ruby.
35
35
  email:
@@ -67,7 +67,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - ">="
69
69
  - !ruby/object:Gem::Version
70
- version: '2.3'
70
+ version: '2.5'
71
71
  required_rubygems_version: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - ">="