aws-sdk-codestarconnections 1.40.0 → 1.42.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4dd327009b8543e72816586c1a25580328394664c26104cad01ff588aa1bf169
4
- data.tar.gz: 5f8987e409595d21fa77b496c9b2a38a0fa0eeca66b5ccd280239063cd91538b
3
+ metadata.gz: 492cf842dc1ffbf21f9ac2552e332c42a6e1b2977d4ed6f1fdc87219f5f1910f
4
+ data.tar.gz: 386be94b7dc52d923a71e842d549e7866198070db59846ee4b52a96508150a7e
5
5
  SHA512:
6
- metadata.gz: 5f6357a140e5b4551658b8745ab79bd961bde8e2a70f34174e5bbcf10ab8c8012c5e45deec7ebe9c64720b7e84648a6be6f7a72d4084429783091dd4d0d5726b
7
- data.tar.gz: 81782393d7e2d53506df5c62aa66d856ae1dffd02985555d5164c5e862545cde86d75c9c1d32a329900c1cb88604bda2c8741d85c29e745f4bd12449e6bc3761
6
+ metadata.gz: 0f471a9791a37a4f46922e001a3449940094a7de0b3f66fb824c6cc427a13ac822770f451770e2e4268efc0a26e7f7a7466950075ae622edf186aa71c9ec3a12
7
+ data.tar.gz: bb9a3c64cbb0c32685be411f3eca5cce002e07d5f022c1c28c79b6ce0b02248d25acb8bd9d97fc93cd75bd458d03da2bf744c75876e553d9f23dcb76568c54b7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.42.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.41.0 (2024-03-11)
10
+ ------------------
11
+
12
+ * Feature - Added a sync configuration enum to disable publishing of deployment status to source providers (PublishDeploymentStatus). Added a sync configuration enum (TriggerStackUpdateOn) to only trigger changes.
13
+
4
14
  1.40.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.40.0
1
+ 1.42.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::CodeStarconnections
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::CodeStarconnections
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
@@ -347,50 +356,65 @@ module Aws::CodeStarconnections
347
356
  # @option options [Aws::CodeStarconnections::EndpointProvider] :endpoint_provider
348
357
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::CodeStarconnections::EndpointParameters`
349
358
  #
350
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
351
- # requests through. Formatted like 'http://proxy.com:123'.
352
- #
353
- # @option options [Float] :http_open_timeout (15) The number of
354
- # seconds to wait when opening a HTTP session before raising a
355
- # `Timeout::Error`.
356
- #
357
- # @option options [Float] :http_read_timeout (60) The default
358
- # number of seconds to wait for response data. This value can
359
- # safely be set per-request on the session.
360
- #
361
- # @option options [Float] :http_idle_timeout (5) The number of
362
- # seconds a connection is allowed to sit idle before it is
363
- # considered stale. Stale connections are closed and removed
364
- # from the pool before making a request.
365
- #
366
- # @option options [Float] :http_continue_timeout (1) The number of
367
- # seconds to wait for a 100-continue response before sending the
368
- # request body. This option has no effect unless the request has
369
- # "Expect" header set to "100-continue". Defaults to `nil` which
370
- # disables this behaviour. This value can safely be set per
371
- # request on the session.
372
- #
373
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
374
- # in seconds.
375
- #
376
- # @option options [Boolean] :http_wire_trace (false) When `true`,
377
- # HTTP debug output will be sent to the `:logger`.
359
+ # @option options [Float] :http_continue_timeout (1)
360
+ # The number of seconds to wait for a 100-continue response before sending the
361
+ # request body. This option has no effect unless the request has "Expect"
362
+ # header set to "100-continue". Defaults to `nil` which disables this
363
+ # behaviour. This value can safely be set per request on the session.
364
+ #
365
+ # @option options [Float] :http_idle_timeout (5)
366
+ # The number of seconds a connection is allowed to sit idle before it
367
+ # is considered stale. Stale connections are closed and removed from the
368
+ # pool before making a request.
369
+ #
370
+ # @option options [Float] :http_open_timeout (15)
371
+ # The default number of seconds to wait for response data.
372
+ # This value can safely be set per-request on the session.
373
+ #
374
+ # @option options [URI::HTTP,String] :http_proxy
375
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
376
+ #
377
+ # @option options [Float] :http_read_timeout (60)
378
+ # The default number of seconds to wait for response data.
379
+ # This value can safely be set per-request on the session.
380
+ #
381
+ # @option options [Boolean] :http_wire_trace (false)
382
+ # When `true`, HTTP debug output will be sent to the `:logger`.
383
+ #
384
+ # @option options [Proc] :on_chunk_received
385
+ # When a Proc object is provided, it will be used as callback when each chunk
386
+ # of the response body is received. It provides three arguments: the chunk,
387
+ # the number of bytes received, and the total number of
388
+ # bytes in the response (or nil if the server did not send a `content-length`).
389
+ #
390
+ # @option options [Proc] :on_chunk_sent
391
+ # When a Proc object is provided, it will be used as callback when each chunk
392
+ # of the request body is sent. It provides three arguments: the chunk,
393
+ # the number of bytes read from the body, and the total number of
394
+ # bytes in the body.
395
+ #
396
+ # @option options [Boolean] :raise_response_errors (true)
397
+ # When `true`, response errors are raised.
398
+ #
399
+ # @option options [String] :ssl_ca_bundle
400
+ # Full path to the SSL certificate authority bundle file that should be used when
401
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
402
+ # `:ssl_ca_directory` the the system default will be used if available.
403
+ #
404
+ # @option options [String] :ssl_ca_directory
405
+ # Full path of the directory that contains the unbundled SSL certificate
406
+ # authority files for verifying peer certificates. If you do
407
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
408
+ # default will be used if available.
378
409
  #
379
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
380
- # SSL peer certificates are verified when establishing a
381
- # connection.
410
+ # @option options [String] :ssl_ca_store
411
+ # Sets the X509::Store to verify peer certificate.
382
412
  #
383
- # @option options [String] :ssl_ca_bundle Full path to the SSL
384
- # certificate authority bundle file that should be used when
385
- # verifying peer certificates. If you do not pass
386
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
387
- # will be used if available.
413
+ # @option options [Float] :ssl_timeout
414
+ # Sets the SSL timeout in seconds
388
415
  #
389
- # @option options [String] :ssl_ca_directory Full path of the
390
- # directory that contains the unbundled SSL certificate
391
- # authority files for verifying peer certificates. If you do
392
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
393
- # system default will be used if available.
416
+ # @option options [Boolean] :ssl_verify_peer (true)
417
+ # When `true`, SSL peer certificates are verified when establishing a connection.
394
418
  #
395
419
  def initialize(*args)
396
420
  super
@@ -617,6 +641,13 @@ module Aws::CodeStarconnections
617
641
  # @option params [required, String] :sync_type
618
642
  # The type of sync configuration.
619
643
  #
644
+ # @option params [String] :publish_deployment_status
645
+ # Whether to enable or disable publishing of deployment status to source
646
+ # providers.
647
+ #
648
+ # @option params [String] :trigger_resource_update_on
649
+ # When to trigger Git sync to begin the stack update.
650
+ #
620
651
  # @return [Types::CreateSyncConfigurationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
621
652
  #
622
653
  # * {Types::CreateSyncConfigurationOutput#sync_configuration #sync_configuration} => Types::SyncConfiguration
@@ -630,6 +661,8 @@ module Aws::CodeStarconnections
630
661
  # resource_name: "ResourceName", # required
631
662
  # role_arn: "IamRoleArn", # required
632
663
  # sync_type: "CFN_STACK_SYNC", # required, accepts CFN_STACK_SYNC
664
+ # publish_deployment_status: "ENABLED", # accepts ENABLED, DISABLED
665
+ # trigger_resource_update_on: "ANY_CHANGE", # accepts ANY_CHANGE, FILE_CHANGE
633
666
  # })
634
667
  #
635
668
  # @example Response structure
@@ -643,6 +676,8 @@ module Aws::CodeStarconnections
643
676
  # resp.sync_configuration.resource_name #=> String
644
677
  # resp.sync_configuration.role_arn #=> String
645
678
  # resp.sync_configuration.sync_type #=> String, one of "CFN_STACK_SYNC"
679
+ # resp.sync_configuration.publish_deployment_status #=> String, one of "ENABLED", "DISABLED"
680
+ # resp.sync_configuration.trigger_resource_update_on #=> String, one of "ANY_CHANGE", "FILE_CHANGE"
646
681
  #
647
682
  # @see http://docs.aws.amazon.com/goto/WebAPI/codestar-connections-2019-12-01/CreateSyncConfiguration AWS API Documentation
648
683
  #
@@ -1076,6 +1111,8 @@ module Aws::CodeStarconnections
1076
1111
  # resp.sync_configuration.resource_name #=> String
1077
1112
  # resp.sync_configuration.role_arn #=> String
1078
1113
  # resp.sync_configuration.sync_type #=> String, one of "CFN_STACK_SYNC"
1114
+ # resp.sync_configuration.publish_deployment_status #=> String, one of "ENABLED", "DISABLED"
1115
+ # resp.sync_configuration.trigger_resource_update_on #=> String, one of "ANY_CHANGE", "FILE_CHANGE"
1079
1116
  #
1080
1117
  # @see http://docs.aws.amazon.com/goto/WebAPI/codestar-connections-2019-12-01/GetSyncConfiguration AWS API Documentation
1081
1118
  #
@@ -1323,6 +1360,8 @@ module Aws::CodeStarconnections
1323
1360
  # resp.sync_configurations[0].resource_name #=> String
1324
1361
  # resp.sync_configurations[0].role_arn #=> String
1325
1362
  # resp.sync_configurations[0].sync_type #=> String, one of "CFN_STACK_SYNC"
1363
+ # resp.sync_configurations[0].publish_deployment_status #=> String, one of "ENABLED", "DISABLED"
1364
+ # resp.sync_configurations[0].trigger_resource_update_on #=> String, one of "ANY_CHANGE", "FILE_CHANGE"
1326
1365
  # resp.next_token #=> String
1327
1366
  #
1328
1367
  # @see http://docs.aws.amazon.com/goto/WebAPI/codestar-connections-2019-12-01/ListSyncConfigurations AWS API Documentation
@@ -1587,6 +1626,13 @@ module Aws::CodeStarconnections
1587
1626
  # @option params [required, String] :sync_type
1588
1627
  # The sync type for the sync configuration to be updated.
1589
1628
  #
1629
+ # @option params [String] :publish_deployment_status
1630
+ # Whether to enable or disable publishing of deployment status to source
1631
+ # providers.
1632
+ #
1633
+ # @option params [String] :trigger_resource_update_on
1634
+ # When to trigger Git sync to begin the stack update.
1635
+ #
1590
1636
  # @return [Types::UpdateSyncConfigurationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1591
1637
  #
1592
1638
  # * {Types::UpdateSyncConfigurationOutput#sync_configuration #sync_configuration} => Types::SyncConfiguration
@@ -1600,6 +1646,8 @@ module Aws::CodeStarconnections
1600
1646
  # resource_name: "ResourceName", # required
1601
1647
  # role_arn: "IamRoleArn",
1602
1648
  # sync_type: "CFN_STACK_SYNC", # required, accepts CFN_STACK_SYNC
1649
+ # publish_deployment_status: "ENABLED", # accepts ENABLED, DISABLED
1650
+ # trigger_resource_update_on: "ANY_CHANGE", # accepts ANY_CHANGE, FILE_CHANGE
1603
1651
  # })
1604
1652
  #
1605
1653
  # @example Response structure
@@ -1613,6 +1661,8 @@ module Aws::CodeStarconnections
1613
1661
  # resp.sync_configuration.resource_name #=> String
1614
1662
  # resp.sync_configuration.role_arn #=> String
1615
1663
  # resp.sync_configuration.sync_type #=> String, one of "CFN_STACK_SYNC"
1664
+ # resp.sync_configuration.publish_deployment_status #=> String, one of "ENABLED", "DISABLED"
1665
+ # resp.sync_configuration.trigger_resource_update_on #=> String, one of "ANY_CHANGE", "FILE_CHANGE"
1616
1666
  #
1617
1667
  # @see http://docs.aws.amazon.com/goto/WebAPI/codestar-connections-2019-12-01/UpdateSyncConfiguration AWS API Documentation
1618
1668
  #
@@ -1636,7 +1686,7 @@ module Aws::CodeStarconnections
1636
1686
  params: params,
1637
1687
  config: config)
1638
1688
  context[:gem_name] = 'aws-sdk-codestarconnections'
1639
- context[:gem_version] = '1.40.0'
1689
+ context[:gem_version] = '1.42.0'
1640
1690
  Seahorse::Client::Request.new(handlers, context)
1641
1691
  end
1642
1692
 
@@ -93,6 +93,7 @@ module Aws::CodeStarconnections
93
93
  OwnerId = Shapes::StringShape.new(name: 'OwnerId')
94
94
  Parent = Shapes::StringShape.new(name: 'Parent')
95
95
  ProviderType = Shapes::StringShape.new(name: 'ProviderType')
96
+ PublishDeploymentStatus = Shapes::StringShape.new(name: 'PublishDeploymentStatus')
96
97
  RepositoryLinkArn = Shapes::StringShape.new(name: 'RepositoryLinkArn')
97
98
  RepositoryLinkId = Shapes::StringShape.new(name: 'RepositoryLinkId')
98
99
  RepositoryLinkInfo = Shapes::StructureShape.new(name: 'RepositoryLinkInfo')
@@ -143,6 +144,7 @@ module Aws::CodeStarconnections
143
144
  ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
144
145
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
145
146
  TlsCertificate = Shapes::StringShape.new(name: 'TlsCertificate')
147
+ TriggerResourceUpdateOn = Shapes::StringShape.new(name: 'TriggerResourceUpdateOn')
146
148
  Type = Shapes::StringShape.new(name: 'Type')
147
149
  UnsupportedOperationException = Shapes::StructureShape.new(name: 'UnsupportedOperationException')
148
150
  UnsupportedProviderTypeException = Shapes::StructureShape.new(name: 'UnsupportedProviderTypeException')
@@ -220,6 +222,8 @@ module Aws::CodeStarconnections
220
222
  CreateSyncConfigurationInput.add_member(:resource_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "ResourceName"))
221
223
  CreateSyncConfigurationInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, required: true, location_name: "RoleArn"))
222
224
  CreateSyncConfigurationInput.add_member(:sync_type, Shapes::ShapeRef.new(shape: SyncConfigurationType, required: true, location_name: "SyncType"))
225
+ CreateSyncConfigurationInput.add_member(:publish_deployment_status, Shapes::ShapeRef.new(shape: PublishDeploymentStatus, location_name: "PublishDeploymentStatus"))
226
+ CreateSyncConfigurationInput.add_member(:trigger_resource_update_on, Shapes::ShapeRef.new(shape: TriggerResourceUpdateOn, location_name: "TriggerResourceUpdateOn"))
223
227
  CreateSyncConfigurationInput.struct_class = Types::CreateSyncConfigurationInput
224
228
 
225
229
  CreateSyncConfigurationOutput.add_member(:sync_configuration, Shapes::ShapeRef.new(shape: SyncConfiguration, required: true, location_name: "SyncConfiguration"))
@@ -476,6 +480,8 @@ module Aws::CodeStarconnections
476
480
  SyncConfiguration.add_member(:resource_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "ResourceName"))
477
481
  SyncConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, required: true, location_name: "RoleArn"))
478
482
  SyncConfiguration.add_member(:sync_type, Shapes::ShapeRef.new(shape: SyncConfigurationType, required: true, location_name: "SyncType"))
483
+ SyncConfiguration.add_member(:publish_deployment_status, Shapes::ShapeRef.new(shape: PublishDeploymentStatus, location_name: "PublishDeploymentStatus"))
484
+ SyncConfiguration.add_member(:trigger_resource_update_on, Shapes::ShapeRef.new(shape: TriggerResourceUpdateOn, location_name: "TriggerResourceUpdateOn"))
479
485
  SyncConfiguration.struct_class = Types::SyncConfiguration
480
486
 
481
487
  SyncConfigurationList.member = Shapes::ShapeRef.new(shape: SyncConfiguration)
@@ -547,6 +553,8 @@ module Aws::CodeStarconnections
547
553
  UpdateSyncConfigurationInput.add_member(:resource_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "ResourceName"))
548
554
  UpdateSyncConfigurationInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "RoleArn"))
549
555
  UpdateSyncConfigurationInput.add_member(:sync_type, Shapes::ShapeRef.new(shape: SyncConfigurationType, required: true, location_name: "SyncType"))
556
+ UpdateSyncConfigurationInput.add_member(:publish_deployment_status, Shapes::ShapeRef.new(shape: PublishDeploymentStatus, location_name: "PublishDeploymentStatus"))
557
+ UpdateSyncConfigurationInput.add_member(:trigger_resource_update_on, Shapes::ShapeRef.new(shape: TriggerResourceUpdateOn, location_name: "TriggerResourceUpdateOn"))
550
558
  UpdateSyncConfigurationInput.struct_class = Types::UpdateSyncConfigurationInput
551
559
 
552
560
  UpdateSyncConfigurationOutput.add_member(:sync_configuration, Shapes::ShapeRef.new(shape: SyncConfiguration, required: true, location_name: "SyncConfiguration"))
@@ -307,6 +307,15 @@ module Aws::CodeStarconnections
307
307
  # The type of sync configuration.
308
308
  # @return [String]
309
309
  #
310
+ # @!attribute [rw] publish_deployment_status
311
+ # Whether to enable or disable publishing of deployment status to
312
+ # source providers.
313
+ # @return [String]
314
+ #
315
+ # @!attribute [rw] trigger_resource_update_on
316
+ # When to trigger Git sync to begin the stack update.
317
+ # @return [String]
318
+ #
310
319
  # @see http://docs.aws.amazon.com/goto/WebAPI/codestar-connections-2019-12-01/CreateSyncConfigurationInput AWS API Documentation
311
320
  #
312
321
  class CreateSyncConfigurationInput < Struct.new(
@@ -315,7 +324,9 @@ module Aws::CodeStarconnections
315
324
  :repository_link_id,
316
325
  :resource_name,
317
326
  :role_arn,
318
- :sync_type)
327
+ :sync_type,
328
+ :publish_deployment_status,
329
+ :trigger_resource_update_on)
319
330
  SENSITIVE = []
320
331
  include Aws::Structure
321
332
  end
@@ -1470,6 +1481,15 @@ module Aws::CodeStarconnections
1470
1481
  # The type of sync for a specific sync configuration.
1471
1482
  # @return [String]
1472
1483
  #
1484
+ # @!attribute [rw] publish_deployment_status
1485
+ # Whether to enable or disable publishing of deployment status to
1486
+ # source providers.
1487
+ # @return [String]
1488
+ #
1489
+ # @!attribute [rw] trigger_resource_update_on
1490
+ # When to trigger Git sync to begin the stack update.
1491
+ # @return [String]
1492
+ #
1473
1493
  # @see http://docs.aws.amazon.com/goto/WebAPI/codestar-connections-2019-12-01/SyncConfiguration AWS API Documentation
1474
1494
  #
1475
1495
  class SyncConfiguration < Struct.new(
@@ -1481,7 +1501,9 @@ module Aws::CodeStarconnections
1481
1501
  :repository_name,
1482
1502
  :resource_name,
1483
1503
  :role_arn,
1484
- :sync_type)
1504
+ :sync_type,
1505
+ :publish_deployment_status,
1506
+ :trigger_resource_update_on)
1485
1507
  SENSITIVE = []
1486
1508
  include Aws::Structure
1487
1509
  end
@@ -1758,6 +1780,15 @@ module Aws::CodeStarconnections
1758
1780
  # The sync type for the sync configuration to be updated.
1759
1781
  # @return [String]
1760
1782
  #
1783
+ # @!attribute [rw] publish_deployment_status
1784
+ # Whether to enable or disable publishing of deployment status to
1785
+ # source providers.
1786
+ # @return [String]
1787
+ #
1788
+ # @!attribute [rw] trigger_resource_update_on
1789
+ # When to trigger Git sync to begin the stack update.
1790
+ # @return [String]
1791
+ #
1761
1792
  # @see http://docs.aws.amazon.com/goto/WebAPI/codestar-connections-2019-12-01/UpdateSyncConfigurationInput AWS API Documentation
1762
1793
  #
1763
1794
  class UpdateSyncConfigurationInput < Struct.new(
@@ -1766,7 +1797,9 @@ module Aws::CodeStarconnections
1766
1797
  :repository_link_id,
1767
1798
  :resource_name,
1768
1799
  :role_arn,
1769
- :sync_type)
1800
+ :sync_type,
1801
+ :publish_deployment_status,
1802
+ :trigger_resource_update_on)
1770
1803
  SENSITIVE = []
1771
1804
  include Aws::Structure
1772
1805
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-codestarconnections/customizations'
52
52
  # @!group service
53
53
  module Aws::CodeStarconnections
54
54
 
55
- GEM_VERSION = '1.40.0'
55
+ GEM_VERSION = '1.42.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -147,7 +147,9 @@ module Aws
147
147
  repository_link_id: ::String,
148
148
  resource_name: ::String,
149
149
  role_arn: ::String,
150
- sync_type: ("CFN_STACK_SYNC")
150
+ sync_type: ("CFN_STACK_SYNC"),
151
+ ?publish_deployment_status: ("ENABLED" | "DISABLED"),
152
+ ?trigger_resource_update_on: ("ANY_CHANGE" | "FILE_CHANGE")
151
153
  ) -> _CreateSyncConfigurationResponseSuccess
152
154
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSyncConfigurationResponseSuccess
153
155
 
@@ -422,7 +424,9 @@ module Aws
422
424
  ?repository_link_id: ::String,
423
425
  resource_name: ::String,
424
426
  ?role_arn: ::String,
425
- sync_type: ("CFN_STACK_SYNC")
427
+ sync_type: ("CFN_STACK_SYNC"),
428
+ ?publish_deployment_status: ("ENABLED" | "DISABLED"),
429
+ ?trigger_resource_update_on: ("ANY_CHANGE" | "FILE_CHANGE")
426
430
  ) -> _UpdateSyncConfigurationResponseSuccess
427
431
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSyncConfigurationResponseSuccess
428
432
  end
data/sig/types.rbs CHANGED
@@ -88,6 +88,8 @@ module Aws::CodeStarconnections
88
88
  attr_accessor resource_name: ::String
89
89
  attr_accessor role_arn: ::String
90
90
  attr_accessor sync_type: ("CFN_STACK_SYNC")
91
+ attr_accessor publish_deployment_status: ("ENABLED" | "DISABLED")
92
+ attr_accessor trigger_resource_update_on: ("ANY_CHANGE" | "FILE_CHANGE")
91
93
  SENSITIVE: []
92
94
  end
93
95
 
@@ -432,6 +434,8 @@ module Aws::CodeStarconnections
432
434
  attr_accessor resource_name: ::String
433
435
  attr_accessor role_arn: ::String
434
436
  attr_accessor sync_type: ("CFN_STACK_SYNC")
437
+ attr_accessor publish_deployment_status: ("ENABLED" | "DISABLED")
438
+ attr_accessor trigger_resource_update_on: ("ANY_CHANGE" | "FILE_CHANGE")
435
439
  SENSITIVE: []
436
440
  end
437
441
 
@@ -528,6 +532,8 @@ module Aws::CodeStarconnections
528
532
  attr_accessor resource_name: ::String
529
533
  attr_accessor role_arn: ::String
530
534
  attr_accessor sync_type: ("CFN_STACK_SYNC")
535
+ attr_accessor publish_deployment_status: ("ENABLED" | "DISABLED")
536
+ attr_accessor trigger_resource_update_on: ("ANY_CHANGE" | "FILE_CHANGE")
531
537
  SENSITIVE: []
532
538
  end
533
539
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-codestarconnections
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.40.0
4
+ version: 1.42.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
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement