aws-sdk-codecatalyst 1.15.0 → 1.17.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: e70094a6c2b0e4174e81610f92ec0228aefd0a4c6d17380b7d03e2084f00059b
4
- data.tar.gz: 6f2a6351ab1816f7ef6237ea150c7436bb3cee30b841efdf34981ce4cabb8a7f
3
+ metadata.gz: 6edb6dd1f3654eabad8531ed76c081392318a8598826c7039046794b03768099
4
+ data.tar.gz: a870626d6f4a464dc3bd0bcfba913d6934a30d86f8cd44625f30c7f5c0cdfb1a
5
5
  SHA512:
6
- metadata.gz: 39e4747999d7f07d753c66a848d7437253cc52e2f974257e0c68fc7ec8b51c9a7e568fc1e773c94c749231e7d6dd9a799027c6b5cc3bfd629130795be11fe439
7
- data.tar.gz: c12186d997d821d3383e91413377be7ba94a7858c601220509d8cee3e63da54fa7925fc48ce9c4ffcd1dd405e264e41e1b78273ff8aedbdf965f5221ca77e7f9
6
+ metadata.gz: cea94768833bbfe808097e2e98c8833ca6abd1ec8ffc4a95c457fe4be2373a497ef5dbbc1ac3e2497b3a8da97cd3799e924dffe061e920e6213c09f8ea8dbeb3
7
+ data.tar.gz: 84722ec67ece3879d95b36236683e6e12c1b1a31c7e94978b59ed2bc0bce11efcc017f6ce8e4cf0693d6a54df9d0bdf530a3405eacfa8fc637eda27283fc7227
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.16.0 (2024-01-26)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.15.0 (2023-11-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.15.0
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 use connect to a Amazon VPC.
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.15.0'
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"))
@@ -14,6 +14,7 @@ module Aws::CodeCatalyst
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::CodeCatalyst::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -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 use connect to a Amazon VPC.
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
@@ -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.15.0'
55
+ GEM_VERSION = '1.17.0'
56
56
 
57
57
  end