aws-sdk-codecatalyst 1.16.0 → 1.17.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-codecatalyst/client.rb +7 -2
- data/lib/aws-sdk-codecatalyst/client_api.rb +2 -0
- data/lib/aws-sdk-codecatalyst/types.rb +27 -2
- data/lib/aws-sdk-codecatalyst.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/types.rbs +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6edb6dd1f3654eabad8531ed76c081392318a8598826c7039046794b03768099
|
4
|
+
data.tar.gz: a870626d6f4a464dc3bd0bcfba913d6934a30d86f8cd44625f30c7f5c0cdfb1a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cea94768833bbfe808097e2e98c8833ca6abd1ec8ffc4a95c457fe4be2373a497ef5dbbc1ac3e2497b3a8da97cd3799e924dffe061e920e6213c09f8ea8dbeb3
|
7
|
+
data.tar.gz: 84722ec67ece3879d95b36236683e6e12c1b1a31c7e94978b59ed2bc0bce11efcc017f6ce8e4cf0693d6a54df9d0bdf530a3405eacfa8fc637eda27283fc7227
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.17.0 (2024-03-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for understanding pending changes to subscriptions by including two new response parameters for the GetSubscription API for Amazon CodeCatalyst.
|
8
|
+
|
4
9
|
1.16.0 (2024-01-26)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.17.0
|
@@ -504,7 +504,8 @@ module Aws::CodeCatalyst
|
|
504
504
|
# </note>
|
505
505
|
#
|
506
506
|
# @option params [String] :vpc_connection_name
|
507
|
-
# The name of the connection to
|
507
|
+
# The name of the connection that will be used to connect to Amazon VPC,
|
508
|
+
# if any.
|
508
509
|
#
|
509
510
|
# @return [Types::CreateDevEnvironmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
510
511
|
#
|
@@ -1126,6 +1127,8 @@ module Aws::CodeCatalyst
|
|
1126
1127
|
#
|
1127
1128
|
# * {Types::GetSubscriptionResponse#subscription_type #subscription_type} => String
|
1128
1129
|
# * {Types::GetSubscriptionResponse#aws_account_name #aws_account_name} => String
|
1130
|
+
# * {Types::GetSubscriptionResponse#pending_subscription_type #pending_subscription_type} => String
|
1131
|
+
# * {Types::GetSubscriptionResponse#pending_subscription_start_time #pending_subscription_start_time} => Time
|
1129
1132
|
#
|
1130
1133
|
# @example Request syntax with placeholder values
|
1131
1134
|
#
|
@@ -1137,6 +1140,8 @@ module Aws::CodeCatalyst
|
|
1137
1140
|
#
|
1138
1141
|
# resp.subscription_type #=> String
|
1139
1142
|
# resp.aws_account_name #=> String
|
1143
|
+
# resp.pending_subscription_type #=> String
|
1144
|
+
# resp.pending_subscription_start_time #=> Time
|
1140
1145
|
#
|
1141
1146
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/GetSubscription AWS API Documentation
|
1142
1147
|
#
|
@@ -2392,7 +2397,7 @@ module Aws::CodeCatalyst
|
|
2392
2397
|
params: params,
|
2393
2398
|
config: config)
|
2394
2399
|
context[:gem_name] = 'aws-sdk-codecatalyst'
|
2395
|
-
context[:gem_version] = '1.
|
2400
|
+
context[:gem_version] = '1.17.0'
|
2396
2401
|
Seahorse::Client::Request.new(handlers, context)
|
2397
2402
|
end
|
2398
2403
|
|
@@ -491,6 +491,8 @@ module Aws::CodeCatalyst
|
|
491
491
|
|
492
492
|
GetSubscriptionResponse.add_member(:subscription_type, Shapes::ShapeRef.new(shape: String, location_name: "subscriptionType"))
|
493
493
|
GetSubscriptionResponse.add_member(:aws_account_name, Shapes::ShapeRef.new(shape: NameString, location_name: "awsAccountName"))
|
494
|
+
GetSubscriptionResponse.add_member(:pending_subscription_type, Shapes::ShapeRef.new(shape: String, location_name: "pendingSubscriptionType"))
|
495
|
+
GetSubscriptionResponse.add_member(:pending_subscription_start_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "pendingSubscriptionStartTime"))
|
494
496
|
GetSubscriptionResponse.struct_class = Types::GetSubscriptionResponse
|
495
497
|
|
496
498
|
GetUserDetailsRequest.add_member(:id, Shapes::ShapeRef.new(shape: GetUserDetailsRequestIdString, location: "querystring", location_name: "id"))
|
@@ -186,7 +186,8 @@ module Aws::CodeCatalyst
|
|
186
186
|
# @return [Types::PersistentStorageConfiguration]
|
187
187
|
#
|
188
188
|
# @!attribute [rw] vpc_connection_name
|
189
|
-
# The name of the connection to
|
189
|
+
# The name of the connection that will be used to connect to Amazon
|
190
|
+
# VPC, if any.
|
190
191
|
# @return [String]
|
191
192
|
#
|
192
193
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/CreateDevEnvironmentRequest AWS API Documentation
|
@@ -1275,11 +1276,35 @@ module Aws::CodeCatalyst
|
|
1275
1276
|
# for the space.
|
1276
1277
|
# @return [String]
|
1277
1278
|
#
|
1279
|
+
# @!attribute [rw] pending_subscription_type
|
1280
|
+
# The type of the billing plan that the space will be changed to at
|
1281
|
+
# the start of the next billing cycle. This applies only to changes
|
1282
|
+
# that reduce the functionality available for the space. Billing plan
|
1283
|
+
# changes that increase functionality are applied immediately. For
|
1284
|
+
# more information, see [Pricing][1].
|
1285
|
+
#
|
1286
|
+
#
|
1287
|
+
#
|
1288
|
+
# [1]: https://codecatalyst.aws/explore/pricing
|
1289
|
+
# @return [String]
|
1290
|
+
#
|
1291
|
+
# @!attribute [rw] pending_subscription_start_time
|
1292
|
+
# The day and time the pending change will be applied to the space, in
|
1293
|
+
# coordinated universal time (UTC) timestamp format as specified in
|
1294
|
+
# [RFC 3339][1].
|
1295
|
+
#
|
1296
|
+
#
|
1297
|
+
#
|
1298
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
|
1299
|
+
# @return [Time]
|
1300
|
+
#
|
1278
1301
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/GetSubscriptionResponse AWS API Documentation
|
1279
1302
|
#
|
1280
1303
|
class GetSubscriptionResponse < Struct.new(
|
1281
1304
|
:subscription_type,
|
1282
|
-
:aws_account_name
|
1305
|
+
:aws_account_name,
|
1306
|
+
:pending_subscription_type,
|
1307
|
+
:pending_subscription_start_time)
|
1283
1308
|
SENSITIVE = []
|
1284
1309
|
include Aws::Structure
|
1285
1310
|
end
|
data/lib/aws-sdk-codecatalyst.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -314,6 +314,8 @@ module Aws
|
|
314
314
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetSubscriptionResponse]
|
315
315
|
def subscription_type: () -> ::String
|
316
316
|
def aws_account_name: () -> ::String
|
317
|
+
def pending_subscription_type: () -> ::String
|
318
|
+
def pending_subscription_start_time: () -> ::Time
|
317
319
|
end
|
318
320
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#get_subscription-instance_method
|
319
321
|
def get_subscription: (
|
data/sig/types.rbs
CHANGED
@@ -347,6 +347,8 @@ module Aws::CodeCatalyst
|
|
347
347
|
class GetSubscriptionResponse
|
348
348
|
attr_accessor subscription_type: ::String
|
349
349
|
attr_accessor aws_account_name: ::String
|
350
|
+
attr_accessor pending_subscription_type: ::String
|
351
|
+
attr_accessor pending_subscription_start_time: ::Time
|
350
352
|
SENSITIVE: []
|
351
353
|
end
|
352
354
|
|
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.
|
4
|
+
version: 1.17.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-
|
11
|
+
date: 2024-03-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|