aws-sdk-appintegrationsservice 1.35.0 → 1.37.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appintegrationsservice/client.rb +150 -12
- data/lib/aws-sdk-appintegrationsservice/client_api.rb +74 -1
- data/lib/aws-sdk-appintegrationsservice/endpoints.rb +28 -0
- data/lib/aws-sdk-appintegrationsservice/plugins/endpoints.rb +4 -0
- data/lib/aws-sdk-appintegrationsservice/types.rb +184 -5
- data/lib/aws-sdk-appintegrationsservice.rb +1 -1
- data/sig/client.rbs +52 -1
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +49 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8438132dad35efe1af13119d8c4c23d3c0044b99285bc1f35cc0a3948af6ffb7
|
4
|
+
data.tar.gz: dbd79ca6f61485f4ed8b1ba2ab8d4b33c48f17184aab3792303e44b8675a5010
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1212c3a62175ab7b2069d66e8c00365462c836ccf87cf5c28098c8d20d5801eb8643c61d6bf001e9b16ee79c6da052fd12e4e30fdc6c51d5a117843ad0e75072
|
7
|
+
data.tar.gz: ef3ce2efdf23cf5b41d5d448d3660e75a86228a68369232644bf4387169b40534ba0252e8e9d88c4ba324d32f954f1332b88870cfb358531eb6d657036e7f089
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.37.0 (2024-08-07)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Updated CreateDataIntegration and CreateDataIntegrationAssociation API to support bulk data export from Amazon Connect Customer Profiles to the customer S3 bucket.
|
8
|
+
|
9
|
+
1.36.0 (2024-07-02)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.35.0 (2024-06-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.37.0
|
@@ -312,6 +312,15 @@ module Aws::AppIntegrationsService
|
|
312
312
|
#
|
313
313
|
# @option options [String] :session_token
|
314
314
|
#
|
315
|
+
# @option options [Array] :sigv4a_signing_region_set
|
316
|
+
# A list of regions that should be signed with SigV4a signing. When
|
317
|
+
# not passed, a default `:sigv4a_signing_region_set` is searched for
|
318
|
+
# in the following locations:
|
319
|
+
#
|
320
|
+
# * `Aws.config[:sigv4a_signing_region_set]`
|
321
|
+
# * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
|
322
|
+
# * `~/.aws/config`
|
323
|
+
#
|
315
324
|
# @option options [Boolean] :stub_responses (false)
|
316
325
|
# Causes the client to return stubbed responses. By default
|
317
326
|
# fake responses are generated and returned. You can specify
|
@@ -416,8 +425,6 @@ module Aws::AppIntegrationsService
|
|
416
425
|
|
417
426
|
# @!group API Operations
|
418
427
|
|
419
|
-
# This API is in preview release and subject to change.
|
420
|
-
#
|
421
428
|
# Creates and persists an Application resource.
|
422
429
|
#
|
423
430
|
# @option params [required, String] :name
|
@@ -548,9 +555,9 @@ module Aws::AppIntegrationsService
|
|
548
555
|
# A description of the DataIntegration.
|
549
556
|
#
|
550
557
|
# @option params [required, String] :kms_key
|
551
|
-
# The KMS key for the DataIntegration.
|
558
|
+
# The KMS key ARN for the DataIntegration.
|
552
559
|
#
|
553
|
-
# @option params [
|
560
|
+
# @option params [String] :source_uri
|
554
561
|
# The URI of the data source.
|
555
562
|
#
|
556
563
|
# @option params [Types::ScheduleConfiguration] :schedule_config
|
@@ -601,7 +608,7 @@ module Aws::AppIntegrationsService
|
|
601
608
|
# name: "Name", # required
|
602
609
|
# description: "Description",
|
603
610
|
# kms_key: "NonBlankString", # required
|
604
|
-
# source_uri: "SourceURI",
|
611
|
+
# source_uri: "SourceURI",
|
605
612
|
# schedule_config: {
|
606
613
|
# first_execution_from: "NonBlankString",
|
607
614
|
# object: "Object",
|
@@ -657,6 +664,88 @@ module Aws::AppIntegrationsService
|
|
657
664
|
req.send_request(options)
|
658
665
|
end
|
659
666
|
|
667
|
+
# Creates and persists a DataIntegrationAssociation resource.
|
668
|
+
#
|
669
|
+
# @option params [required, String] :data_integration_identifier
|
670
|
+
# A unique identifier for the DataIntegration.
|
671
|
+
#
|
672
|
+
# @option params [String] :client_id
|
673
|
+
# The identifier for the client that is associated with the
|
674
|
+
# DataIntegration association.
|
675
|
+
#
|
676
|
+
# @option params [Hash<String,Hash>] :object_configuration
|
677
|
+
# The configuration for what data should be pulled from the source.
|
678
|
+
#
|
679
|
+
# @option params [String] :destination_uri
|
680
|
+
# The URI of the data destination.
|
681
|
+
#
|
682
|
+
# @option params [Hash<String,String>] :client_association_metadata
|
683
|
+
# The mapping of metadata to be extracted from the data.
|
684
|
+
#
|
685
|
+
# @option params [String] :client_token
|
686
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
687
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
688
|
+
# SDK populates this field. For more information about idempotency, see
|
689
|
+
# [Making retries safe with idempotent APIs][1].
|
690
|
+
#
|
691
|
+
# **A suitable default value is auto-generated.** You should normally
|
692
|
+
# not need to pass this option.**
|
693
|
+
#
|
694
|
+
#
|
695
|
+
#
|
696
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
697
|
+
#
|
698
|
+
# @option params [Types::ExecutionConfiguration] :execution_configuration
|
699
|
+
# The configuration for how the files should be pulled from the source.
|
700
|
+
#
|
701
|
+
# @return [Types::CreateDataIntegrationAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
702
|
+
#
|
703
|
+
# * {Types::CreateDataIntegrationAssociationResponse#data_integration_association_id #data_integration_association_id} => String
|
704
|
+
# * {Types::CreateDataIntegrationAssociationResponse#data_integration_arn #data_integration_arn} => String
|
705
|
+
#
|
706
|
+
# @example Request syntax with placeholder values
|
707
|
+
#
|
708
|
+
# resp = client.create_data_integration_association({
|
709
|
+
# data_integration_identifier: "Identifier", # required
|
710
|
+
# client_id: "ClientId",
|
711
|
+
# object_configuration: {
|
712
|
+
# "NonBlankString" => {
|
713
|
+
# "NonBlankString" => ["Fields"],
|
714
|
+
# },
|
715
|
+
# },
|
716
|
+
# destination_uri: "DestinationURI",
|
717
|
+
# client_association_metadata: {
|
718
|
+
# "NonBlankString" => "NonBlankString",
|
719
|
+
# },
|
720
|
+
# client_token: "IdempotencyToken",
|
721
|
+
# execution_configuration: {
|
722
|
+
# execution_mode: "ON_DEMAND", # required, accepts ON_DEMAND, SCHEDULED
|
723
|
+
# on_demand_configuration: {
|
724
|
+
# start_time: "NonBlankString", # required
|
725
|
+
# end_time: "NonBlankString",
|
726
|
+
# },
|
727
|
+
# schedule_configuration: {
|
728
|
+
# first_execution_from: "NonBlankString",
|
729
|
+
# object: "Object",
|
730
|
+
# schedule_expression: "NonBlankString", # required
|
731
|
+
# },
|
732
|
+
# },
|
733
|
+
# })
|
734
|
+
#
|
735
|
+
# @example Response structure
|
736
|
+
#
|
737
|
+
# resp.data_integration_association_id #=> String
|
738
|
+
# resp.data_integration_arn #=> String
|
739
|
+
#
|
740
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/CreateDataIntegrationAssociation AWS API Documentation
|
741
|
+
#
|
742
|
+
# @overload create_data_integration_association(params = {})
|
743
|
+
# @param [Hash] params ({})
|
744
|
+
def create_data_integration_association(params = {}, options = {})
|
745
|
+
req = build_request(:create_data_integration_association, params)
|
746
|
+
req.send_request(options)
|
747
|
+
end
|
748
|
+
|
660
749
|
# Creates an EventIntegration, given a specified name, description, and
|
661
750
|
# a reference to an Amazon EventBridge bus in your account and a partner
|
662
751
|
# event source that pushes events to that bus. No objects are created in
|
@@ -820,8 +909,6 @@ module Aws::AppIntegrationsService
|
|
820
909
|
req.send_request(options)
|
821
910
|
end
|
822
911
|
|
823
|
-
# This API is in preview release and subject to change.
|
824
|
-
#
|
825
912
|
# Get an Application resource.
|
826
913
|
#
|
827
914
|
# @option params [required, String] :arn
|
@@ -1075,8 +1162,6 @@ module Aws::AppIntegrationsService
|
|
1075
1162
|
req.send_request(options)
|
1076
1163
|
end
|
1077
1164
|
|
1078
|
-
# This API is in preview release and subject to change.
|
1079
|
-
#
|
1080
1165
|
# Lists applications in the account.
|
1081
1166
|
#
|
1082
1167
|
# @option params [String] :next_token
|
@@ -1189,6 +1274,15 @@ module Aws::AppIntegrationsService
|
|
1189
1274
|
# resp.data_integration_associations[0].data_integration_association_arn #=> String
|
1190
1275
|
# resp.data_integration_associations[0].data_integration_arn #=> String
|
1191
1276
|
# resp.data_integration_associations[0].client_id #=> String
|
1277
|
+
# resp.data_integration_associations[0].destination_uri #=> String
|
1278
|
+
# resp.data_integration_associations[0].last_execution_status.execution_status #=> String, one of "COMPLETED", "IN_PROGRESS", "FAILED"
|
1279
|
+
# resp.data_integration_associations[0].last_execution_status.status_message #=> String
|
1280
|
+
# resp.data_integration_associations[0].execution_configuration.execution_mode #=> String, one of "ON_DEMAND", "SCHEDULED"
|
1281
|
+
# resp.data_integration_associations[0].execution_configuration.on_demand_configuration.start_time #=> String
|
1282
|
+
# resp.data_integration_associations[0].execution_configuration.on_demand_configuration.end_time #=> String
|
1283
|
+
# resp.data_integration_associations[0].execution_configuration.schedule_configuration.first_execution_from #=> String
|
1284
|
+
# resp.data_integration_associations[0].execution_configuration.schedule_configuration.object #=> String
|
1285
|
+
# resp.data_integration_associations[0].execution_configuration.schedule_configuration.schedule_expression #=> String
|
1192
1286
|
# resp.next_token #=> String
|
1193
1287
|
#
|
1194
1288
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListDataIntegrationAssociations AWS API Documentation
|
@@ -1432,8 +1526,6 @@ module Aws::AppIntegrationsService
|
|
1432
1526
|
req.send_request(options)
|
1433
1527
|
end
|
1434
1528
|
|
1435
|
-
# This API is in preview release and subject to change.
|
1436
|
-
#
|
1437
1529
|
# Updates and persists an Application resource.
|
1438
1530
|
#
|
1439
1531
|
# @option params [required, String] :arn
|
@@ -1552,6 +1644,52 @@ module Aws::AppIntegrationsService
|
|
1552
1644
|
req.send_request(options)
|
1553
1645
|
end
|
1554
1646
|
|
1647
|
+
# Updates and persists a DataIntegrationAssociation resource.
|
1648
|
+
#
|
1649
|
+
# <note markdown="1"> Updating a DataIntegrationAssociation with ExecutionConfiguration will
|
1650
|
+
# rerun the on-demand job.
|
1651
|
+
#
|
1652
|
+
# </note>
|
1653
|
+
#
|
1654
|
+
# @option params [required, String] :data_integration_identifier
|
1655
|
+
# A unique identifier for the DataIntegration.
|
1656
|
+
#
|
1657
|
+
# @option params [required, String] :data_integration_association_identifier
|
1658
|
+
# A unique identifier. of the DataIntegrationAssociation resource
|
1659
|
+
#
|
1660
|
+
# @option params [required, Types::ExecutionConfiguration] :execution_configuration
|
1661
|
+
# The configuration for how the files should be pulled from the source.
|
1662
|
+
#
|
1663
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1664
|
+
#
|
1665
|
+
# @example Request syntax with placeholder values
|
1666
|
+
#
|
1667
|
+
# resp = client.update_data_integration_association({
|
1668
|
+
# data_integration_identifier: "Identifier", # required
|
1669
|
+
# data_integration_association_identifier: "Identifier", # required
|
1670
|
+
# execution_configuration: { # required
|
1671
|
+
# execution_mode: "ON_DEMAND", # required, accepts ON_DEMAND, SCHEDULED
|
1672
|
+
# on_demand_configuration: {
|
1673
|
+
# start_time: "NonBlankString", # required
|
1674
|
+
# end_time: "NonBlankString",
|
1675
|
+
# },
|
1676
|
+
# schedule_configuration: {
|
1677
|
+
# first_execution_from: "NonBlankString",
|
1678
|
+
# object: "Object",
|
1679
|
+
# schedule_expression: "NonBlankString", # required
|
1680
|
+
# },
|
1681
|
+
# },
|
1682
|
+
# })
|
1683
|
+
#
|
1684
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/UpdateDataIntegrationAssociation AWS API Documentation
|
1685
|
+
#
|
1686
|
+
# @overload update_data_integration_association(params = {})
|
1687
|
+
# @param [Hash] params ({})
|
1688
|
+
def update_data_integration_association(params = {}, options = {})
|
1689
|
+
req = build_request(:update_data_integration_association, params)
|
1690
|
+
req.send_request(options)
|
1691
|
+
end
|
1692
|
+
|
1555
1693
|
# Updates the description of an event integration.
|
1556
1694
|
#
|
1557
1695
|
# @option params [required, String] :name
|
@@ -1591,7 +1729,7 @@ module Aws::AppIntegrationsService
|
|
1591
1729
|
params: params,
|
1592
1730
|
config: config)
|
1593
1731
|
context[:gem_name] = 'aws-sdk-appintegrationsservice'
|
1594
|
-
context[:gem_version] = '1.
|
1732
|
+
context[:gem_version] = '1.37.0'
|
1595
1733
|
Seahorse::Client::Request.new(handlers, context)
|
1596
1734
|
end
|
1597
1735
|
|
@@ -29,6 +29,8 @@ module Aws::AppIntegrationsService
|
|
29
29
|
ClientId = Shapes::StringShape.new(name: 'ClientId')
|
30
30
|
CreateApplicationRequest = Shapes::StructureShape.new(name: 'CreateApplicationRequest')
|
31
31
|
CreateApplicationResponse = Shapes::StructureShape.new(name: 'CreateApplicationResponse')
|
32
|
+
CreateDataIntegrationAssociationRequest = Shapes::StructureShape.new(name: 'CreateDataIntegrationAssociationRequest')
|
33
|
+
CreateDataIntegrationAssociationResponse = Shapes::StructureShape.new(name: 'CreateDataIntegrationAssociationResponse')
|
32
34
|
CreateDataIntegrationRequest = Shapes::StructureShape.new(name: 'CreateDataIntegrationRequest')
|
33
35
|
CreateDataIntegrationResponse = Shapes::StructureShape.new(name: 'CreateDataIntegrationResponse')
|
34
36
|
CreateEventIntegrationRequest = Shapes::StructureShape.new(name: 'CreateEventIntegrationRequest')
|
@@ -44,6 +46,7 @@ module Aws::AppIntegrationsService
|
|
44
46
|
DeleteEventIntegrationRequest = Shapes::StructureShape.new(name: 'DeleteEventIntegrationRequest')
|
45
47
|
DeleteEventIntegrationResponse = Shapes::StructureShape.new(name: 'DeleteEventIntegrationResponse')
|
46
48
|
Description = Shapes::StringShape.new(name: 'Description')
|
49
|
+
DestinationURI = Shapes::StringShape.new(name: 'DestinationURI')
|
47
50
|
DuplicateResourceException = Shapes::StructureShape.new(name: 'DuplicateResourceException')
|
48
51
|
EventBridgeBus = Shapes::StringShape.new(name: 'EventBridgeBus')
|
49
52
|
EventBridgeRuleName = Shapes::StringShape.new(name: 'EventBridgeRuleName')
|
@@ -54,6 +57,9 @@ module Aws::AppIntegrationsService
|
|
54
57
|
EventIntegrationAssociationsList = Shapes::ListShape.new(name: 'EventIntegrationAssociationsList')
|
55
58
|
EventIntegrationsList = Shapes::ListShape.new(name: 'EventIntegrationsList')
|
56
59
|
EventName = Shapes::StringShape.new(name: 'EventName')
|
60
|
+
ExecutionConfiguration = Shapes::StructureShape.new(name: 'ExecutionConfiguration')
|
61
|
+
ExecutionMode = Shapes::StringShape.new(name: 'ExecutionMode')
|
62
|
+
ExecutionStatus = Shapes::StringShape.new(name: 'ExecutionStatus')
|
57
63
|
ExternalUrlConfig = Shapes::StructureShape.new(name: 'ExternalUrlConfig')
|
58
64
|
Fields = Shapes::StringShape.new(name: 'Fields')
|
59
65
|
FieldsList = Shapes::ListShape.new(name: 'FieldsList')
|
@@ -70,6 +76,7 @@ module Aws::AppIntegrationsService
|
|
70
76
|
Identifier = Shapes::StringShape.new(name: 'Identifier')
|
71
77
|
InternalServiceError = Shapes::StructureShape.new(name: 'InternalServiceError')
|
72
78
|
InvalidRequestException = Shapes::StructureShape.new(name: 'InvalidRequestException')
|
79
|
+
LastExecutionStatus = Shapes::StructureShape.new(name: 'LastExecutionStatus')
|
73
80
|
ListApplicationAssociationsRequest = Shapes::StructureShape.new(name: 'ListApplicationAssociationsRequest')
|
74
81
|
ListApplicationAssociationsResponse = Shapes::StructureShape.new(name: 'ListApplicationAssociationsResponse')
|
75
82
|
ListApplicationsRequest = Shapes::StructureShape.new(name: 'ListApplicationsRequest')
|
@@ -92,6 +99,7 @@ module Aws::AppIntegrationsService
|
|
92
99
|
NonBlankString = Shapes::StringShape.new(name: 'NonBlankString')
|
93
100
|
Object = Shapes::StringShape.new(name: 'Object')
|
94
101
|
ObjectConfiguration = Shapes::MapShape.new(name: 'ObjectConfiguration')
|
102
|
+
OnDemandConfiguration = Shapes::StructureShape.new(name: 'OnDemandConfiguration')
|
95
103
|
Permission = Shapes::StringShape.new(name: 'Permission')
|
96
104
|
PermissionList = Shapes::ListShape.new(name: 'PermissionList')
|
97
105
|
Publication = Shapes::StructureShape.new(name: 'Publication')
|
@@ -118,6 +126,8 @@ module Aws::AppIntegrationsService
|
|
118
126
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
119
127
|
UpdateApplicationRequest = Shapes::StructureShape.new(name: 'UpdateApplicationRequest')
|
120
128
|
UpdateApplicationResponse = Shapes::StructureShape.new(name: 'UpdateApplicationResponse')
|
129
|
+
UpdateDataIntegrationAssociationRequest = Shapes::StructureShape.new(name: 'UpdateDataIntegrationAssociationRequest')
|
130
|
+
UpdateDataIntegrationAssociationResponse = Shapes::StructureShape.new(name: 'UpdateDataIntegrationAssociationResponse')
|
121
131
|
UpdateDataIntegrationRequest = Shapes::StructureShape.new(name: 'UpdateDataIntegrationRequest')
|
122
132
|
UpdateDataIntegrationResponse = Shapes::StructureShape.new(name: 'UpdateDataIntegrationResponse')
|
123
133
|
UpdateEventIntegrationRequest = Shapes::StructureShape.new(name: 'UpdateEventIntegrationRequest')
|
@@ -166,10 +176,23 @@ module Aws::AppIntegrationsService
|
|
166
176
|
CreateApplicationResponse.add_member(:id, Shapes::ShapeRef.new(shape: UUID, location_name: "Id"))
|
167
177
|
CreateApplicationResponse.struct_class = Types::CreateApplicationResponse
|
168
178
|
|
179
|
+
CreateDataIntegrationAssociationRequest.add_member(:data_integration_identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "Identifier"))
|
180
|
+
CreateDataIntegrationAssociationRequest.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientId, location_name: "ClientId"))
|
181
|
+
CreateDataIntegrationAssociationRequest.add_member(:object_configuration, Shapes::ShapeRef.new(shape: ObjectConfiguration, location_name: "ObjectConfiguration"))
|
182
|
+
CreateDataIntegrationAssociationRequest.add_member(:destination_uri, Shapes::ShapeRef.new(shape: DestinationURI, location_name: "DestinationURI"))
|
183
|
+
CreateDataIntegrationAssociationRequest.add_member(:client_association_metadata, Shapes::ShapeRef.new(shape: ClientAssociationMetadata, location_name: "ClientAssociationMetadata"))
|
184
|
+
CreateDataIntegrationAssociationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
185
|
+
CreateDataIntegrationAssociationRequest.add_member(:execution_configuration, Shapes::ShapeRef.new(shape: ExecutionConfiguration, location_name: "ExecutionConfiguration"))
|
186
|
+
CreateDataIntegrationAssociationRequest.struct_class = Types::CreateDataIntegrationAssociationRequest
|
187
|
+
|
188
|
+
CreateDataIntegrationAssociationResponse.add_member(:data_integration_association_id, Shapes::ShapeRef.new(shape: UUID, location_name: "DataIntegrationAssociationId"))
|
189
|
+
CreateDataIntegrationAssociationResponse.add_member(:data_integration_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "DataIntegrationArn"))
|
190
|
+
CreateDataIntegrationAssociationResponse.struct_class = Types::CreateDataIntegrationAssociationResponse
|
191
|
+
|
169
192
|
CreateDataIntegrationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "Name"))
|
170
193
|
CreateDataIntegrationRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
171
194
|
CreateDataIntegrationRequest.add_member(:kms_key, Shapes::ShapeRef.new(shape: NonBlankString, required: true, location_name: "KmsKey"))
|
172
|
-
CreateDataIntegrationRequest.add_member(:source_uri, Shapes::ShapeRef.new(shape: SourceURI,
|
195
|
+
CreateDataIntegrationRequest.add_member(:source_uri, Shapes::ShapeRef.new(shape: SourceURI, location_name: "SourceURI"))
|
173
196
|
CreateDataIntegrationRequest.add_member(:schedule_config, Shapes::ShapeRef.new(shape: ScheduleConfiguration, location_name: "ScheduleConfig"))
|
174
197
|
CreateDataIntegrationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
175
198
|
CreateDataIntegrationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
@@ -204,6 +227,9 @@ module Aws::AppIntegrationsService
|
|
204
227
|
DataIntegrationAssociationSummary.add_member(:data_integration_association_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "DataIntegrationAssociationArn"))
|
205
228
|
DataIntegrationAssociationSummary.add_member(:data_integration_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "DataIntegrationArn"))
|
206
229
|
DataIntegrationAssociationSummary.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientId, location_name: "ClientId"))
|
230
|
+
DataIntegrationAssociationSummary.add_member(:destination_uri, Shapes::ShapeRef.new(shape: DestinationURI, location_name: "DestinationURI"))
|
231
|
+
DataIntegrationAssociationSummary.add_member(:last_execution_status, Shapes::ShapeRef.new(shape: LastExecutionStatus, location_name: "LastExecutionStatus"))
|
232
|
+
DataIntegrationAssociationSummary.add_member(:execution_configuration, Shapes::ShapeRef.new(shape: ExecutionConfiguration, location_name: "ExecutionConfiguration"))
|
207
233
|
DataIntegrationAssociationSummary.struct_class = Types::DataIntegrationAssociationSummary
|
208
234
|
|
209
235
|
DataIntegrationAssociationsList.member = Shapes::ShapeRef.new(shape: DataIntegrationAssociationSummary)
|
@@ -256,6 +282,11 @@ module Aws::AppIntegrationsService
|
|
256
282
|
|
257
283
|
EventIntegrationsList.member = Shapes::ShapeRef.new(shape: EventIntegration)
|
258
284
|
|
285
|
+
ExecutionConfiguration.add_member(:execution_mode, Shapes::ShapeRef.new(shape: ExecutionMode, required: true, location_name: "ExecutionMode"))
|
286
|
+
ExecutionConfiguration.add_member(:on_demand_configuration, Shapes::ShapeRef.new(shape: OnDemandConfiguration, location_name: "OnDemandConfiguration"))
|
287
|
+
ExecutionConfiguration.add_member(:schedule_configuration, Shapes::ShapeRef.new(shape: ScheduleConfiguration, location_name: "ScheduleConfiguration"))
|
288
|
+
ExecutionConfiguration.struct_class = Types::ExecutionConfiguration
|
289
|
+
|
259
290
|
ExternalUrlConfig.add_member(:access_url, Shapes::ShapeRef.new(shape: URL, required: true, location_name: "AccessUrl"))
|
260
291
|
ExternalUrlConfig.add_member(:approved_origins, Shapes::ShapeRef.new(shape: ApplicationApprovedOrigins, location_name: "ApprovedOrigins"))
|
261
292
|
ExternalUrlConfig.struct_class = Types::ExternalUrlConfig
|
@@ -320,6 +351,10 @@ module Aws::AppIntegrationsService
|
|
320
351
|
InvalidRequestException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
321
352
|
InvalidRequestException.struct_class = Types::InvalidRequestException
|
322
353
|
|
354
|
+
LastExecutionStatus.add_member(:execution_status, Shapes::ShapeRef.new(shape: ExecutionStatus, location_name: "ExecutionStatus"))
|
355
|
+
LastExecutionStatus.add_member(:status_message, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "StatusMessage"))
|
356
|
+
LastExecutionStatus.struct_class = Types::LastExecutionStatus
|
357
|
+
|
323
358
|
ListApplicationAssociationsRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: ArnOrUUID, required: true, location: "uri", location_name: "ApplicationIdentifier"))
|
324
359
|
ListApplicationAssociationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
325
360
|
ListApplicationAssociationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
@@ -380,6 +415,10 @@ module Aws::AppIntegrationsService
|
|
380
415
|
ObjectConfiguration.key = Shapes::ShapeRef.new(shape: NonBlankString)
|
381
416
|
ObjectConfiguration.value = Shapes::ShapeRef.new(shape: FieldsMap)
|
382
417
|
|
418
|
+
OnDemandConfiguration.add_member(:start_time, Shapes::ShapeRef.new(shape: NonBlankString, required: true, location_name: "StartTime"))
|
419
|
+
OnDemandConfiguration.add_member(:end_time, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "EndTime"))
|
420
|
+
OnDemandConfiguration.struct_class = Types::OnDemandConfiguration
|
421
|
+
|
383
422
|
PermissionList.member = Shapes::ShapeRef.new(shape: Permission)
|
384
423
|
|
385
424
|
Publication.add_member(:event, Shapes::ShapeRef.new(shape: EventName, required: true, location_name: "Event"))
|
@@ -440,6 +479,13 @@ module Aws::AppIntegrationsService
|
|
440
479
|
|
441
480
|
UpdateApplicationResponse.struct_class = Types::UpdateApplicationResponse
|
442
481
|
|
482
|
+
UpdateDataIntegrationAssociationRequest.add_member(:data_integration_identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "Identifier"))
|
483
|
+
UpdateDataIntegrationAssociationRequest.add_member(:data_integration_association_identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "DataIntegrationAssociationIdentifier"))
|
484
|
+
UpdateDataIntegrationAssociationRequest.add_member(:execution_configuration, Shapes::ShapeRef.new(shape: ExecutionConfiguration, required: true, location_name: "ExecutionConfiguration"))
|
485
|
+
UpdateDataIntegrationAssociationRequest.struct_class = Types::UpdateDataIntegrationAssociationRequest
|
486
|
+
|
487
|
+
UpdateDataIntegrationAssociationResponse.struct_class = Types::UpdateDataIntegrationAssociationResponse
|
488
|
+
|
443
489
|
UpdateDataIntegrationRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "Identifier"))
|
444
490
|
UpdateDataIntegrationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
|
445
491
|
UpdateDataIntegrationRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
@@ -502,6 +548,20 @@ module Aws::AppIntegrationsService
|
|
502
548
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
503
549
|
end)
|
504
550
|
|
551
|
+
api.add_operation(:create_data_integration_association, Seahorse::Model::Operation.new.tap do |o|
|
552
|
+
o.name = "CreateDataIntegrationAssociation"
|
553
|
+
o.http_method = "POST"
|
554
|
+
o.http_request_uri = "/dataIntegrations/{Identifier}/associations"
|
555
|
+
o.input = Shapes::ShapeRef.new(shape: CreateDataIntegrationAssociationRequest)
|
556
|
+
o.output = Shapes::ShapeRef.new(shape: CreateDataIntegrationAssociationResponse)
|
557
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
|
558
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceQuotaExceededException)
|
559
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
560
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
561
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
562
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
563
|
+
end)
|
564
|
+
|
505
565
|
api.add_operation(:create_event_integration, Seahorse::Model::Operation.new.tap do |o|
|
506
566
|
o.name = "CreateEventIntegration"
|
507
567
|
o.http_method = "POST"
|
@@ -768,6 +828,19 @@ module Aws::AppIntegrationsService
|
|
768
828
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
769
829
|
end)
|
770
830
|
|
831
|
+
api.add_operation(:update_data_integration_association, Seahorse::Model::Operation.new.tap do |o|
|
832
|
+
o.name = "UpdateDataIntegrationAssociation"
|
833
|
+
o.http_method = "PATCH"
|
834
|
+
o.http_request_uri = "/dataIntegrations/{Identifier}/associations/{DataIntegrationAssociationIdentifier}"
|
835
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateDataIntegrationAssociationRequest)
|
836
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateDataIntegrationAssociationResponse)
|
837
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
|
838
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
839
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
840
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
841
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
842
|
+
end)
|
843
|
+
|
771
844
|
api.add_operation(:update_event_integration, Seahorse::Model::Operation.new.tap do |o|
|
772
845
|
o.name = "UpdateEventIntegration"
|
773
846
|
o.http_method = "PATCH"
|
@@ -40,6 +40,20 @@ module Aws::AppIntegrationsService
|
|
40
40
|
end
|
41
41
|
end
|
42
42
|
|
43
|
+
class CreateDataIntegrationAssociation
|
44
|
+
def self.build(context)
|
45
|
+
unless context.config.regional_endpoint
|
46
|
+
endpoint = context.config.endpoint.to_s
|
47
|
+
end
|
48
|
+
Aws::AppIntegrationsService::EndpointParameters.new(
|
49
|
+
region: context.config.region,
|
50
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
51
|
+
use_fips: context.config.use_fips_endpoint,
|
52
|
+
endpoint: endpoint,
|
53
|
+
)
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
43
57
|
class CreateEventIntegration
|
44
58
|
def self.build(context)
|
45
59
|
unless context.config.regional_endpoint
|
@@ -292,6 +306,20 @@ module Aws::AppIntegrationsService
|
|
292
306
|
end
|
293
307
|
end
|
294
308
|
|
309
|
+
class UpdateDataIntegrationAssociation
|
310
|
+
def self.build(context)
|
311
|
+
unless context.config.regional_endpoint
|
312
|
+
endpoint = context.config.endpoint.to_s
|
313
|
+
end
|
314
|
+
Aws::AppIntegrationsService::EndpointParameters.new(
|
315
|
+
region: context.config.region,
|
316
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
317
|
+
use_fips: context.config.use_fips_endpoint,
|
318
|
+
endpoint: endpoint,
|
319
|
+
)
|
320
|
+
end
|
321
|
+
end
|
322
|
+
|
295
323
|
class UpdateEventIntegration
|
296
324
|
def self.build(context)
|
297
325
|
unless context.config.regional_endpoint
|
@@ -62,6 +62,8 @@ module Aws::AppIntegrationsService
|
|
62
62
|
Aws::AppIntegrationsService::Endpoints::CreateApplication.build(context)
|
63
63
|
when :create_data_integration
|
64
64
|
Aws::AppIntegrationsService::Endpoints::CreateDataIntegration.build(context)
|
65
|
+
when :create_data_integration_association
|
66
|
+
Aws::AppIntegrationsService::Endpoints::CreateDataIntegrationAssociation.build(context)
|
65
67
|
when :create_event_integration
|
66
68
|
Aws::AppIntegrationsService::Endpoints::CreateEventIntegration.build(context)
|
67
69
|
when :delete_application
|
@@ -98,6 +100,8 @@ module Aws::AppIntegrationsService
|
|
98
100
|
Aws::AppIntegrationsService::Endpoints::UpdateApplication.build(context)
|
99
101
|
when :update_data_integration
|
100
102
|
Aws::AppIntegrationsService::Endpoints::UpdateDataIntegration.build(context)
|
103
|
+
when :update_data_integration_association
|
104
|
+
Aws::AppIntegrationsService::Endpoints::UpdateDataIntegrationAssociation.build(context)
|
101
105
|
when :update_event_integration
|
102
106
|
Aws::AppIntegrationsService::Endpoints::UpdateEventIntegration.build(context)
|
103
107
|
end
|
@@ -183,6 +183,77 @@ module Aws::AppIntegrationsService
|
|
183
183
|
include Aws::Structure
|
184
184
|
end
|
185
185
|
|
186
|
+
# @!attribute [rw] data_integration_identifier
|
187
|
+
# A unique identifier for the DataIntegration.
|
188
|
+
# @return [String]
|
189
|
+
#
|
190
|
+
# @!attribute [rw] client_id
|
191
|
+
# The identifier for the client that is associated with the
|
192
|
+
# DataIntegration association.
|
193
|
+
# @return [String]
|
194
|
+
#
|
195
|
+
# @!attribute [rw] object_configuration
|
196
|
+
# The configuration for what data should be pulled from the source.
|
197
|
+
# @return [Hash<String,Hash<String,Array<String>>>]
|
198
|
+
#
|
199
|
+
# @!attribute [rw] destination_uri
|
200
|
+
# The URI of the data destination.
|
201
|
+
# @return [String]
|
202
|
+
#
|
203
|
+
# @!attribute [rw] client_association_metadata
|
204
|
+
# The mapping of metadata to be extracted from the data.
|
205
|
+
# @return [Hash<String,String>]
|
206
|
+
#
|
207
|
+
# @!attribute [rw] client_token
|
208
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
209
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
210
|
+
# SDK populates this field. For more information about idempotency,
|
211
|
+
# see [Making retries safe with idempotent APIs][1].
|
212
|
+
#
|
213
|
+
# **A suitable default value is auto-generated.** You should normally
|
214
|
+
# not need to pass this option.
|
215
|
+
#
|
216
|
+
#
|
217
|
+
#
|
218
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
219
|
+
# @return [String]
|
220
|
+
#
|
221
|
+
# @!attribute [rw] execution_configuration
|
222
|
+
# The configuration for how the files should be pulled from the
|
223
|
+
# source.
|
224
|
+
# @return [Types::ExecutionConfiguration]
|
225
|
+
#
|
226
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/CreateDataIntegrationAssociationRequest AWS API Documentation
|
227
|
+
#
|
228
|
+
class CreateDataIntegrationAssociationRequest < Struct.new(
|
229
|
+
:data_integration_identifier,
|
230
|
+
:client_id,
|
231
|
+
:object_configuration,
|
232
|
+
:destination_uri,
|
233
|
+
:client_association_metadata,
|
234
|
+
:client_token,
|
235
|
+
:execution_configuration)
|
236
|
+
SENSITIVE = []
|
237
|
+
include Aws::Structure
|
238
|
+
end
|
239
|
+
|
240
|
+
# @!attribute [rw] data_integration_association_id
|
241
|
+
# A unique identifier. for the DataIntegrationAssociation.
|
242
|
+
# @return [String]
|
243
|
+
#
|
244
|
+
# @!attribute [rw] data_integration_arn
|
245
|
+
# The Amazon Resource Name (ARN) for the DataIntegration.
|
246
|
+
# @return [String]
|
247
|
+
#
|
248
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/CreateDataIntegrationAssociationResponse AWS API Documentation
|
249
|
+
#
|
250
|
+
class CreateDataIntegrationAssociationResponse < Struct.new(
|
251
|
+
:data_integration_association_id,
|
252
|
+
:data_integration_arn)
|
253
|
+
SENSITIVE = []
|
254
|
+
include Aws::Structure
|
255
|
+
end
|
256
|
+
|
186
257
|
# @!attribute [rw] name
|
187
258
|
# The name of the DataIntegration.
|
188
259
|
# @return [String]
|
@@ -192,7 +263,7 @@ module Aws::AppIntegrationsService
|
|
192
263
|
# @return [String]
|
193
264
|
#
|
194
265
|
# @!attribute [rw] kms_key
|
195
|
-
# The KMS key for the DataIntegration.
|
266
|
+
# The KMS key ARN for the DataIntegration.
|
196
267
|
# @return [String]
|
197
268
|
#
|
198
269
|
# @!attribute [rw] source_uri
|
@@ -265,7 +336,7 @@ module Aws::AppIntegrationsService
|
|
265
336
|
# @return [String]
|
266
337
|
#
|
267
338
|
# @!attribute [rw] kms_key
|
268
|
-
# The KMS key for the DataIntegration.
|
339
|
+
# The KMS key ARN for the DataIntegration.
|
269
340
|
# @return [String]
|
270
341
|
#
|
271
342
|
# @!attribute [rw] source_uri
|
@@ -396,12 +467,28 @@ module Aws::AppIntegrationsService
|
|
396
467
|
# DataIntegration association.
|
397
468
|
# @return [String]
|
398
469
|
#
|
470
|
+
# @!attribute [rw] destination_uri
|
471
|
+
# The URI of the data destination.
|
472
|
+
# @return [String]
|
473
|
+
#
|
474
|
+
# @!attribute [rw] last_execution_status
|
475
|
+
# The execution status of the last job.
|
476
|
+
# @return [Types::LastExecutionStatus]
|
477
|
+
#
|
478
|
+
# @!attribute [rw] execution_configuration
|
479
|
+
# The configuration for how the files should be pulled from the
|
480
|
+
# source.
|
481
|
+
# @return [Types::ExecutionConfiguration]
|
482
|
+
#
|
399
483
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/DataIntegrationAssociationSummary AWS API Documentation
|
400
484
|
#
|
401
485
|
class DataIntegrationAssociationSummary < Struct.new(
|
402
486
|
:data_integration_association_arn,
|
403
487
|
:data_integration_arn,
|
404
|
-
:client_id
|
488
|
+
:client_id,
|
489
|
+
:destination_uri,
|
490
|
+
:last_execution_status,
|
491
|
+
:execution_configuration)
|
405
492
|
SENSITIVE = []
|
406
493
|
include Aws::Structure
|
407
494
|
end
|
@@ -587,6 +674,31 @@ module Aws::AppIntegrationsService
|
|
587
674
|
include Aws::Structure
|
588
675
|
end
|
589
676
|
|
677
|
+
# The configuration for how the files should be pulled from the source.
|
678
|
+
#
|
679
|
+
# @!attribute [rw] execution_mode
|
680
|
+
# The mode for data import/export execution.
|
681
|
+
# @return [String]
|
682
|
+
#
|
683
|
+
# @!attribute [rw] on_demand_configuration
|
684
|
+
# The start and end time for data pull from the source.
|
685
|
+
# @return [Types::OnDemandConfiguration]
|
686
|
+
#
|
687
|
+
# @!attribute [rw] schedule_configuration
|
688
|
+
# The name of the data and how often it should be pulled from the
|
689
|
+
# source.
|
690
|
+
# @return [Types::ScheduleConfiguration]
|
691
|
+
#
|
692
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ExecutionConfiguration AWS API Documentation
|
693
|
+
#
|
694
|
+
class ExecutionConfiguration < Struct.new(
|
695
|
+
:execution_mode,
|
696
|
+
:on_demand_configuration,
|
697
|
+
:schedule_configuration)
|
698
|
+
SENSITIVE = []
|
699
|
+
include Aws::Structure
|
700
|
+
end
|
701
|
+
|
590
702
|
# The external URL source for the application.
|
591
703
|
#
|
592
704
|
# @!attribute [rw] access_url
|
@@ -733,11 +845,11 @@ module Aws::AppIntegrationsService
|
|
733
845
|
# @return [String]
|
734
846
|
#
|
735
847
|
# @!attribute [rw] description
|
736
|
-
# The KMS key for the DataIntegration.
|
848
|
+
# The KMS key ARN for the DataIntegration.
|
737
849
|
# @return [String]
|
738
850
|
#
|
739
851
|
# @!attribute [rw] kms_key
|
740
|
-
# The KMS key for the DataIntegration.
|
852
|
+
# The KMS key ARN for the DataIntegration.
|
741
853
|
# @return [String]
|
742
854
|
#
|
743
855
|
# @!attribute [rw] source_uri
|
@@ -857,6 +969,25 @@ module Aws::AppIntegrationsService
|
|
857
969
|
include Aws::Structure
|
858
970
|
end
|
859
971
|
|
972
|
+
# The execution status of the last job.
|
973
|
+
#
|
974
|
+
# @!attribute [rw] execution_status
|
975
|
+
# The job status enum string.
|
976
|
+
# @return [String]
|
977
|
+
#
|
978
|
+
# @!attribute [rw] status_message
|
979
|
+
# The status message of a job.
|
980
|
+
# @return [String]
|
981
|
+
#
|
982
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/LastExecutionStatus AWS API Documentation
|
983
|
+
#
|
984
|
+
class LastExecutionStatus < Struct.new(
|
985
|
+
:execution_status,
|
986
|
+
:status_message)
|
987
|
+
SENSITIVE = []
|
988
|
+
include Aws::Structure
|
989
|
+
end
|
990
|
+
|
860
991
|
# @!attribute [rw] application_id
|
861
992
|
# A unique identifier for the Application.
|
862
993
|
# @return [String]
|
@@ -1119,6 +1250,27 @@ module Aws::AppIntegrationsService
|
|
1119
1250
|
include Aws::Structure
|
1120
1251
|
end
|
1121
1252
|
|
1253
|
+
# The start and end time for data pull from the source.
|
1254
|
+
#
|
1255
|
+
# @!attribute [rw] start_time
|
1256
|
+
# The start time for data pull from the source as an Unix/epoch string
|
1257
|
+
# in milliseconds
|
1258
|
+
# @return [String]
|
1259
|
+
#
|
1260
|
+
# @!attribute [rw] end_time
|
1261
|
+
# The end time for data pull from the source as an Unix/epoch string
|
1262
|
+
# in milliseconds
|
1263
|
+
# @return [String]
|
1264
|
+
#
|
1265
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/OnDemandConfiguration AWS API Documentation
|
1266
|
+
#
|
1267
|
+
class OnDemandConfiguration < Struct.new(
|
1268
|
+
:start_time,
|
1269
|
+
:end_time)
|
1270
|
+
SENSITIVE = []
|
1271
|
+
include Aws::Structure
|
1272
|
+
end
|
1273
|
+
|
1122
1274
|
# The configuration of an event that the application publishes.
|
1123
1275
|
#
|
1124
1276
|
# @!attribute [rw] event
|
@@ -1331,6 +1483,33 @@ module Aws::AppIntegrationsService
|
|
1331
1483
|
#
|
1332
1484
|
class UpdateApplicationResponse < Aws::EmptyStructure; end
|
1333
1485
|
|
1486
|
+
# @!attribute [rw] data_integration_identifier
|
1487
|
+
# A unique identifier for the DataIntegration.
|
1488
|
+
# @return [String]
|
1489
|
+
#
|
1490
|
+
# @!attribute [rw] data_integration_association_identifier
|
1491
|
+
# A unique identifier. of the DataIntegrationAssociation resource
|
1492
|
+
# @return [String]
|
1493
|
+
#
|
1494
|
+
# @!attribute [rw] execution_configuration
|
1495
|
+
# The configuration for how the files should be pulled from the
|
1496
|
+
# source.
|
1497
|
+
# @return [Types::ExecutionConfiguration]
|
1498
|
+
#
|
1499
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/UpdateDataIntegrationAssociationRequest AWS API Documentation
|
1500
|
+
#
|
1501
|
+
class UpdateDataIntegrationAssociationRequest < Struct.new(
|
1502
|
+
:data_integration_identifier,
|
1503
|
+
:data_integration_association_identifier,
|
1504
|
+
:execution_configuration)
|
1505
|
+
SENSITIVE = []
|
1506
|
+
include Aws::Structure
|
1507
|
+
end
|
1508
|
+
|
1509
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/UpdateDataIntegrationAssociationResponse AWS API Documentation
|
1510
|
+
#
|
1511
|
+
class UpdateDataIntegrationAssociationResponse < Aws::EmptyStructure; end
|
1512
|
+
|
1334
1513
|
# @!attribute [rw] identifier
|
1335
1514
|
# A unique identifier for the DataIntegration.
|
1336
1515
|
# @return [String]
|
data/sig/client.rbs
CHANGED
@@ -48,6 +48,7 @@ module Aws
|
|
48
48
|
?sdk_ua_app_id: String,
|
49
49
|
?secret_access_key: String,
|
50
50
|
?session_token: String,
|
51
|
+
?sigv4a_signing_region_set: Array[String],
|
51
52
|
?stub_responses: untyped,
|
52
53
|
?token_provider: untyped,
|
53
54
|
?use_dualstack_endpoint: bool,
|
@@ -126,7 +127,7 @@ module Aws
|
|
126
127
|
name: ::String,
|
127
128
|
?description: ::String,
|
128
129
|
kms_key: ::String,
|
129
|
-
source_uri: ::String,
|
130
|
+
?source_uri: ::String,
|
130
131
|
?schedule_config: {
|
131
132
|
first_execution_from: ::String?,
|
132
133
|
object: ::String?,
|
@@ -142,6 +143,34 @@ module Aws
|
|
142
143
|
) -> _CreateDataIntegrationResponseSuccess
|
143
144
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataIntegrationResponseSuccess
|
144
145
|
|
146
|
+
interface _CreateDataIntegrationAssociationResponseSuccess
|
147
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataIntegrationAssociationResponse]
|
148
|
+
def data_integration_association_id: () -> ::String
|
149
|
+
def data_integration_arn: () -> ::String
|
150
|
+
end
|
151
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#create_data_integration_association-instance_method
|
152
|
+
def create_data_integration_association: (
|
153
|
+
data_integration_identifier: ::String,
|
154
|
+
?client_id: ::String,
|
155
|
+
?object_configuration: Hash[::String, Hash[::String, Array[::String]]],
|
156
|
+
?destination_uri: ::String,
|
157
|
+
?client_association_metadata: Hash[::String, ::String],
|
158
|
+
?client_token: ::String,
|
159
|
+
?execution_configuration: {
|
160
|
+
execution_mode: ("ON_DEMAND" | "SCHEDULED"),
|
161
|
+
on_demand_configuration: {
|
162
|
+
start_time: ::String,
|
163
|
+
end_time: ::String?
|
164
|
+
}?,
|
165
|
+
schedule_configuration: {
|
166
|
+
first_execution_from: ::String?,
|
167
|
+
object: ::String?,
|
168
|
+
schedule_expression: ::String
|
169
|
+
}?
|
170
|
+
}
|
171
|
+
) -> _CreateDataIntegrationAssociationResponseSuccess
|
172
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataIntegrationAssociationResponseSuccess
|
173
|
+
|
145
174
|
interface _CreateEventIntegrationResponseSuccess
|
146
175
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateEventIntegrationResponse]
|
147
176
|
def event_integration_arn: () -> ::String
|
@@ -388,6 +417,28 @@ module Aws
|
|
388
417
|
) -> _UpdateDataIntegrationResponseSuccess
|
389
418
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataIntegrationResponseSuccess
|
390
419
|
|
420
|
+
interface _UpdateDataIntegrationAssociationResponseSuccess
|
421
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDataIntegrationAssociationResponse]
|
422
|
+
end
|
423
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#update_data_integration_association-instance_method
|
424
|
+
def update_data_integration_association: (
|
425
|
+
data_integration_identifier: ::String,
|
426
|
+
data_integration_association_identifier: ::String,
|
427
|
+
execution_configuration: {
|
428
|
+
execution_mode: ("ON_DEMAND" | "SCHEDULED"),
|
429
|
+
on_demand_configuration: {
|
430
|
+
start_time: ::String,
|
431
|
+
end_time: ::String?
|
432
|
+
}?,
|
433
|
+
schedule_configuration: {
|
434
|
+
first_execution_from: ::String?,
|
435
|
+
object: ::String?,
|
436
|
+
schedule_expression: ::String
|
437
|
+
}?
|
438
|
+
}
|
439
|
+
) -> _UpdateDataIntegrationAssociationResponseSuccess
|
440
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataIntegrationAssociationResponseSuccess
|
441
|
+
|
391
442
|
interface _UpdateEventIntegrationResponseSuccess
|
392
443
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEventIntegrationResponse]
|
393
444
|
end
|
data/sig/resource.rbs
CHANGED
data/sig/types.rbs
CHANGED
@@ -54,6 +54,23 @@ module Aws::AppIntegrationsService
|
|
54
54
|
SENSITIVE: []
|
55
55
|
end
|
56
56
|
|
57
|
+
class CreateDataIntegrationAssociationRequest
|
58
|
+
attr_accessor data_integration_identifier: ::String
|
59
|
+
attr_accessor client_id: ::String
|
60
|
+
attr_accessor object_configuration: ::Hash[::String, ::Hash[::String, ::Array[::String]]]
|
61
|
+
attr_accessor destination_uri: ::String
|
62
|
+
attr_accessor client_association_metadata: ::Hash[::String, ::String]
|
63
|
+
attr_accessor client_token: ::String
|
64
|
+
attr_accessor execution_configuration: Types::ExecutionConfiguration
|
65
|
+
SENSITIVE: []
|
66
|
+
end
|
67
|
+
|
68
|
+
class CreateDataIntegrationAssociationResponse
|
69
|
+
attr_accessor data_integration_association_id: ::String
|
70
|
+
attr_accessor data_integration_arn: ::String
|
71
|
+
SENSITIVE: []
|
72
|
+
end
|
73
|
+
|
57
74
|
class CreateDataIntegrationRequest
|
58
75
|
attr_accessor name: ::String
|
59
76
|
attr_accessor description: ::String
|
@@ -101,6 +118,9 @@ module Aws::AppIntegrationsService
|
|
101
118
|
attr_accessor data_integration_association_arn: ::String
|
102
119
|
attr_accessor data_integration_arn: ::String
|
103
120
|
attr_accessor client_id: ::String
|
121
|
+
attr_accessor destination_uri: ::String
|
122
|
+
attr_accessor last_execution_status: Types::LastExecutionStatus
|
123
|
+
attr_accessor execution_configuration: Types::ExecutionConfiguration
|
104
124
|
SENSITIVE: []
|
105
125
|
end
|
106
126
|
|
@@ -165,6 +185,13 @@ module Aws::AppIntegrationsService
|
|
165
185
|
SENSITIVE: []
|
166
186
|
end
|
167
187
|
|
188
|
+
class ExecutionConfiguration
|
189
|
+
attr_accessor execution_mode: ("ON_DEMAND" | "SCHEDULED")
|
190
|
+
attr_accessor on_demand_configuration: Types::OnDemandConfiguration
|
191
|
+
attr_accessor schedule_configuration: Types::ScheduleConfiguration
|
192
|
+
SENSITIVE: []
|
193
|
+
end
|
194
|
+
|
168
195
|
class ExternalUrlConfig
|
169
196
|
attr_accessor access_url: ::String
|
170
197
|
attr_accessor approved_origins: ::Array[::String]
|
@@ -242,6 +269,12 @@ module Aws::AppIntegrationsService
|
|
242
269
|
SENSITIVE: []
|
243
270
|
end
|
244
271
|
|
272
|
+
class LastExecutionStatus
|
273
|
+
attr_accessor execution_status: ("COMPLETED" | "IN_PROGRESS" | "FAILED")
|
274
|
+
attr_accessor status_message: ::String
|
275
|
+
SENSITIVE: []
|
276
|
+
end
|
277
|
+
|
245
278
|
class ListApplicationAssociationsRequest
|
246
279
|
attr_accessor application_id: ::String
|
247
280
|
attr_accessor next_token: ::String
|
@@ -327,6 +360,12 @@ module Aws::AppIntegrationsService
|
|
327
360
|
SENSITIVE: []
|
328
361
|
end
|
329
362
|
|
363
|
+
class OnDemandConfiguration
|
364
|
+
attr_accessor start_time: ::String
|
365
|
+
attr_accessor end_time: ::String
|
366
|
+
SENSITIVE: []
|
367
|
+
end
|
368
|
+
|
330
369
|
class Publication
|
331
370
|
attr_accessor event: ::String
|
332
371
|
attr_accessor schema: ::String
|
@@ -399,6 +438,16 @@ module Aws::AppIntegrationsService
|
|
399
438
|
class UpdateApplicationResponse < Aws::EmptyStructure
|
400
439
|
end
|
401
440
|
|
441
|
+
class UpdateDataIntegrationAssociationRequest
|
442
|
+
attr_accessor data_integration_identifier: ::String
|
443
|
+
attr_accessor data_integration_association_identifier: ::String
|
444
|
+
attr_accessor execution_configuration: Types::ExecutionConfiguration
|
445
|
+
SENSITIVE: []
|
446
|
+
end
|
447
|
+
|
448
|
+
class UpdateDataIntegrationAssociationResponse < Aws::EmptyStructure
|
449
|
+
end
|
450
|
+
|
402
451
|
class UpdateDataIntegrationRequest
|
403
452
|
attr_accessor identifier: ::String
|
404
453
|
attr_accessor name: ::String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-appintegrationsservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.37.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-08-07 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.
|
22
|
+
version: 3.201.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,21 +29,21 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.201.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for Amazon AppIntegrations Service. This gem is
|
48
48
|
part of the AWS SDK for Ruby.
|
49
49
|
email:
|