aws-sdk-codecatalyst 1.16.0 → 1.18.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: c7204455805817d276732feacedda71fcc5e2656ca1984e607e740415279f152
4
- data.tar.gz: 5b05b248877c0e27d6b26b5756514d58cc5a98f78e65107e6a726ffa228ba2ff
3
+ metadata.gz: aa4337924b97901bb470060d6fe570761288cbbf6e4915c13d3e09f3b28b9966
4
+ data.tar.gz: c48e389cea4539aff47fd139d810a0a73741cd3304025993e7adb80e1d78f0d3
5
5
  SHA512:
6
- metadata.gz: b2db70eec203e7bc198e23659b7ad293b1b4b425fd1ce2b178ab5d8eb288e9579d63f80de049c5b71820edd439862bcf19bffdb0d601a0b22e6c32f36aedb224
7
- data.tar.gz: a2a3aca59a3c36598a9e3dfb4fd603786ec7f02f792de0bf52e8de1bf74fde284c3fb77e98544bb591433fefb63bcc9ab336b75248b3524e04ac4d37f349ad8e
6
+ metadata.gz: 57a6ed49f7ddbde1ea3e8d1b3e7800a14ef9de0e67307e430a11dd2271e142e7eeb07ed4b49509854562997305a629ab7d8e496a3f84e30e387ba6b80bf1f1b0
7
+ data.tar.gz: b091e1438c30fa521ec48347d60e5fae1a34ac7ca469af36e04dc075b89e948568aa89027236e537e6492f2fd2f9411327df899c9606a1ceaba08f5c61ef8321
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.18.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.17.0 (2024-03-28)
10
+ ------------------
11
+
12
+ * Feature - This release adds support for understanding pending changes to subscriptions by including two new response parameters for the GetSubscription API for Amazon CodeCatalyst.
13
+
4
14
  1.16.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.16.0
1
+ 1.18.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::CodeCatalyst
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::CodeCatalyst
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::CodeCatalyst
337
346
  # @option options [Aws::CodeCatalyst::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::CodeCatalyst::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
365
399
  #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
368
402
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
372
405
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
378
- #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -504,7 +528,8 @@ module Aws::CodeCatalyst
504
528
  # </note>
505
529
  #
506
530
  # @option params [String] :vpc_connection_name
507
- # The name of the connection to use connect to a Amazon VPC.
531
+ # The name of the connection that will be used to connect to Amazon VPC,
532
+ # if any.
508
533
  #
509
534
  # @return [Types::CreateDevEnvironmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
510
535
  #
@@ -1126,6 +1151,8 @@ module Aws::CodeCatalyst
1126
1151
  #
1127
1152
  # * {Types::GetSubscriptionResponse#subscription_type #subscription_type} => String
1128
1153
  # * {Types::GetSubscriptionResponse#aws_account_name #aws_account_name} => String
1154
+ # * {Types::GetSubscriptionResponse#pending_subscription_type #pending_subscription_type} => String
1155
+ # * {Types::GetSubscriptionResponse#pending_subscription_start_time #pending_subscription_start_time} => Time
1129
1156
  #
1130
1157
  # @example Request syntax with placeholder values
1131
1158
  #
@@ -1137,6 +1164,8 @@ module Aws::CodeCatalyst
1137
1164
  #
1138
1165
  # resp.subscription_type #=> String
1139
1166
  # resp.aws_account_name #=> String
1167
+ # resp.pending_subscription_type #=> String
1168
+ # resp.pending_subscription_start_time #=> Time
1140
1169
  #
1141
1170
  # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/GetSubscription AWS API Documentation
1142
1171
  #
@@ -2392,7 +2421,7 @@ module Aws::CodeCatalyst
2392
2421
  params: params,
2393
2422
  config: config)
2394
2423
  context[:gem_name] = 'aws-sdk-codecatalyst'
2395
- context[:gem_version] = '1.16.0'
2424
+ context[:gem_version] = '1.18.0'
2396
2425
  Seahorse::Client::Request.new(handlers, context)
2397
2426
  end
2398
2427
 
@@ -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 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.16.0'
55
+ GEM_VERSION = '1.18.0'
56
56
 
57
57
  end
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.16.0
4
+ version: 1.18.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-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-25 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.191.0
22
+ version: 3.193.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.191.0
32
+ version: 3.193.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: