aws-sdk-appintegrationsservice 1.14.0 → 1.16.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 +4 -4
- data/CHANGELOG.md +12 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appintegrationsservice/client.rb +70 -13
- data/lib/aws-sdk-appintegrationsservice/client_api.rb +35 -8
- data/lib/aws-sdk-appintegrationsservice/endpoint_provider.rb +38 -96
- data/lib/aws-sdk-appintegrationsservice/types.rb +97 -169
- data/lib/aws-sdk-appintegrationsservice.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bc64daf93a16595267d6cfce9d8310bc15cccc1fb466f39bdd8b1897a4279d30
|
4
|
+
data.tar.gz: c85e37884292e31235b7f163febf1e4e928f316d7d8659615bf1f21c6c9a7c3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dceab6d4d853d0bc1f5b4822b021986b0df779f4e7e3a6bcd6eba1136decc2348e2dd8a958e17a57f6693344811d08b12e2eec9836d57fde782cd27ef1169abf
|
7
|
+
data.tar.gz: 908bab048bce23439f258a71fca2db442da039d5f21b23e7c01ea2e4f653d3eb1a09f9edec3217991934c4fb4ce6d87bab7cf2cca5f93398e958d86a055622ee
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,18 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.16.0 (2023-03-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds FileConfiguration to Amazon AppIntegrations CreateDataIntegration supporting scheduled downloading of third party files into Amazon Connect from sources such as Microsoft SharePoint.
|
8
|
+
|
9
|
+
1.15.0 (2023-01-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
15
|
+
|
4
16
|
1.14.0 (2022-10-25)
|
5
17
|
------------------
|
6
18
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.16.0
|
@@ -382,26 +382,40 @@ module Aws::AppIntegrationsService
|
|
382
382
|
# @option params [String] :description
|
383
383
|
# A description of the DataIntegration.
|
384
384
|
#
|
385
|
-
# @option params [String] :kms_key
|
385
|
+
# @option params [required, String] :kms_key
|
386
386
|
# The KMS key for the DataIntegration.
|
387
387
|
#
|
388
|
-
# @option params [String] :source_uri
|
388
|
+
# @option params [required, String] :source_uri
|
389
389
|
# The URI of the data source.
|
390
390
|
#
|
391
|
-
# @option params [Types::ScheduleConfiguration] :schedule_config
|
391
|
+
# @option params [required, Types::ScheduleConfiguration] :schedule_config
|
392
392
|
# The name of the data and how often it should be pulled from the
|
393
393
|
# source.
|
394
394
|
#
|
395
395
|
# @option params [Hash<String,String>] :tags
|
396
|
-
#
|
396
|
+
# The tags used to organize, track, or control access for this resource.
|
397
|
+
# For example, \\\{ "tags": \\\{"key1":"value1",
|
398
|
+
# "key2":"value2"\\} \\}.
|
397
399
|
#
|
398
400
|
# @option params [String] :client_token
|
399
401
|
# A unique, case-sensitive identifier that you provide to ensure the
|
400
|
-
# idempotency of the request.
|
402
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
403
|
+
# SDK populates this field. For more information about idempotency, see
|
404
|
+
# [Making retries safe with idempotent APIs][1].
|
401
405
|
#
|
402
406
|
# **A suitable default value is auto-generated.** You should normally
|
403
407
|
# not need to pass this option.**
|
404
408
|
#
|
409
|
+
#
|
410
|
+
#
|
411
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
412
|
+
#
|
413
|
+
# @option params [Types::FileConfiguration] :file_configuration
|
414
|
+
# The configuration for what files should be pulled from the source.
|
415
|
+
#
|
416
|
+
# @option params [Hash<String,Hash>] :object_configuration
|
417
|
+
# The configuration for what data should be pulled from the source.
|
418
|
+
#
|
405
419
|
# @return [Types::CreateDataIntegrationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
406
420
|
#
|
407
421
|
# * {Types::CreateDataIntegrationResponse#arn #arn} => String
|
@@ -413,23 +427,36 @@ module Aws::AppIntegrationsService
|
|
413
427
|
# * {Types::CreateDataIntegrationResponse#schedule_configuration #schedule_configuration} => Types::ScheduleConfiguration
|
414
428
|
# * {Types::CreateDataIntegrationResponse#tags #tags} => Hash<String,String>
|
415
429
|
# * {Types::CreateDataIntegrationResponse#client_token #client_token} => String
|
430
|
+
# * {Types::CreateDataIntegrationResponse#file_configuration #file_configuration} => Types::FileConfiguration
|
431
|
+
# * {Types::CreateDataIntegrationResponse#object_configuration #object_configuration} => Hash<String,Hash<String,Array<String>>>
|
416
432
|
#
|
417
433
|
# @example Request syntax with placeholder values
|
418
434
|
#
|
419
435
|
# resp = client.create_data_integration({
|
420
436
|
# name: "Name", # required
|
421
437
|
# description: "Description",
|
422
|
-
# kms_key: "NonBlankString",
|
423
|
-
# source_uri: "
|
424
|
-
# schedule_config: {
|
438
|
+
# kms_key: "NonBlankString", # required
|
439
|
+
# source_uri: "SourceURI", # required
|
440
|
+
# schedule_config: { # required
|
425
441
|
# first_execution_from: "NonBlankString",
|
426
442
|
# object: "Object",
|
427
|
-
# schedule_expression: "
|
443
|
+
# schedule_expression: "NonBlankString", # required
|
428
444
|
# },
|
429
445
|
# tags: {
|
430
446
|
# "TagKey" => "TagValue",
|
431
447
|
# },
|
432
448
|
# client_token: "IdempotencyToken",
|
449
|
+
# file_configuration: {
|
450
|
+
# folders: ["NonBlankLongString"], # required
|
451
|
+
# filters: {
|
452
|
+
# "NonBlankString" => ["Fields"],
|
453
|
+
# },
|
454
|
+
# },
|
455
|
+
# object_configuration: {
|
456
|
+
# "NonBlankString" => {
|
457
|
+
# "NonBlankString" => ["Fields"],
|
458
|
+
# },
|
459
|
+
# },
|
433
460
|
# })
|
434
461
|
#
|
435
462
|
# @example Response structure
|
@@ -446,6 +473,15 @@ module Aws::AppIntegrationsService
|
|
446
473
|
# resp.tags #=> Hash
|
447
474
|
# resp.tags["TagKey"] #=> String
|
448
475
|
# resp.client_token #=> String
|
476
|
+
# resp.file_configuration.folders #=> Array
|
477
|
+
# resp.file_configuration.folders[0] #=> String
|
478
|
+
# resp.file_configuration.filters #=> Hash
|
479
|
+
# resp.file_configuration.filters["NonBlankString"] #=> Array
|
480
|
+
# resp.file_configuration.filters["NonBlankString"][0] #=> String
|
481
|
+
# resp.object_configuration #=> Hash
|
482
|
+
# resp.object_configuration["NonBlankString"] #=> Hash
|
483
|
+
# resp.object_configuration["NonBlankString"]["NonBlankString"] #=> Array
|
484
|
+
# resp.object_configuration["NonBlankString"]["NonBlankString"][0] #=> String
|
449
485
|
#
|
450
486
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/CreateDataIntegration AWS API Documentation
|
451
487
|
#
|
@@ -476,13 +512,21 @@ module Aws::AppIntegrationsService
|
|
476
512
|
#
|
477
513
|
# @option params [String] :client_token
|
478
514
|
# A unique, case-sensitive identifier that you provide to ensure the
|
479
|
-
# idempotency of the request.
|
515
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
516
|
+
# SDK populates this field. For more information about idempotency, see
|
517
|
+
# [Making retries safe with idempotent APIs][1].
|
480
518
|
#
|
481
519
|
# **A suitable default value is auto-generated.** You should normally
|
482
520
|
# not need to pass this option.**
|
483
521
|
#
|
522
|
+
#
|
523
|
+
#
|
524
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
525
|
+
#
|
484
526
|
# @option params [Hash<String,String>] :tags
|
485
|
-
#
|
527
|
+
# The tags used to organize, track, or control access for this resource.
|
528
|
+
# For example, \\\{ "tags": \\\{"key1":"value1",
|
529
|
+
# "key2":"value2"\\} \\}.
|
486
530
|
#
|
487
531
|
# @return [Types::CreateEventIntegrationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
488
532
|
#
|
@@ -601,6 +645,8 @@ module Aws::AppIntegrationsService
|
|
601
645
|
# * {Types::GetDataIntegrationResponse#source_uri #source_uri} => String
|
602
646
|
# * {Types::GetDataIntegrationResponse#schedule_configuration #schedule_configuration} => Types::ScheduleConfiguration
|
603
647
|
# * {Types::GetDataIntegrationResponse#tags #tags} => Hash<String,String>
|
648
|
+
# * {Types::GetDataIntegrationResponse#file_configuration #file_configuration} => Types::FileConfiguration
|
649
|
+
# * {Types::GetDataIntegrationResponse#object_configuration #object_configuration} => Hash<String,Hash<String,Array<String>>>
|
604
650
|
#
|
605
651
|
# @example Request syntax with placeholder values
|
606
652
|
#
|
@@ -621,6 +667,15 @@ module Aws::AppIntegrationsService
|
|
621
667
|
# resp.schedule_configuration.schedule_expression #=> String
|
622
668
|
# resp.tags #=> Hash
|
623
669
|
# resp.tags["TagKey"] #=> String
|
670
|
+
# resp.file_configuration.folders #=> Array
|
671
|
+
# resp.file_configuration.folders[0] #=> String
|
672
|
+
# resp.file_configuration.filters #=> Hash
|
673
|
+
# resp.file_configuration.filters["NonBlankString"] #=> Array
|
674
|
+
# resp.file_configuration.filters["NonBlankString"][0] #=> String
|
675
|
+
# resp.object_configuration #=> Hash
|
676
|
+
# resp.object_configuration["NonBlankString"] #=> Hash
|
677
|
+
# resp.object_configuration["NonBlankString"]["NonBlankString"] #=> Array
|
678
|
+
# resp.object_configuration["NonBlankString"]["NonBlankString"][0] #=> String
|
624
679
|
#
|
625
680
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/GetDataIntegration AWS API Documentation
|
626
681
|
#
|
@@ -901,7 +956,9 @@ module Aws::AppIntegrationsService
|
|
901
956
|
# The Amazon Resource Name (ARN) of the resource.
|
902
957
|
#
|
903
958
|
# @option params [required, Hash<String,String>] :tags
|
904
|
-
#
|
959
|
+
# The tags used to organize, track, or control access for this resource.
|
960
|
+
# For example, \\\{ "tags": \\\{"key1":"value1",
|
961
|
+
# "key2":"value2"\\} \\}.
|
905
962
|
#
|
906
963
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
907
964
|
#
|
@@ -1029,7 +1086,7 @@ module Aws::AppIntegrationsService
|
|
1029
1086
|
params: params,
|
1030
1087
|
config: config)
|
1031
1088
|
context[:gem_name] = 'aws-sdk-appintegrationsservice'
|
1032
|
-
context[:gem_version] = '1.
|
1089
|
+
context[:gem_version] = '1.16.0'
|
1033
1090
|
Seahorse::Client::Request.new(handlers, context)
|
1034
1091
|
end
|
1035
1092
|
|
@@ -38,6 +38,11 @@ module Aws::AppIntegrationsService
|
|
38
38
|
EventIntegrationAssociation = Shapes::StructureShape.new(name: 'EventIntegrationAssociation')
|
39
39
|
EventIntegrationAssociationsList = Shapes::ListShape.new(name: 'EventIntegrationAssociationsList')
|
40
40
|
EventIntegrationsList = Shapes::ListShape.new(name: 'EventIntegrationsList')
|
41
|
+
Fields = Shapes::StringShape.new(name: 'Fields')
|
42
|
+
FieldsList = Shapes::ListShape.new(name: 'FieldsList')
|
43
|
+
FieldsMap = Shapes::MapShape.new(name: 'FieldsMap')
|
44
|
+
FileConfiguration = Shapes::StructureShape.new(name: 'FileConfiguration')
|
45
|
+
FolderList = Shapes::ListShape.new(name: 'FolderList')
|
41
46
|
GetDataIntegrationRequest = Shapes::StructureShape.new(name: 'GetDataIntegrationRequest')
|
42
47
|
GetDataIntegrationResponse = Shapes::StructureShape.new(name: 'GetDataIntegrationResponse')
|
43
48
|
GetEventIntegrationRequest = Shapes::StructureShape.new(name: 'GetEventIntegrationRequest')
|
@@ -60,13 +65,15 @@ module Aws::AppIntegrationsService
|
|
60
65
|
Message = Shapes::StringShape.new(name: 'Message')
|
61
66
|
Name = Shapes::StringShape.new(name: 'Name')
|
62
67
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
68
|
+
NonBlankLongString = Shapes::StringShape.new(name: 'NonBlankLongString')
|
63
69
|
NonBlankString = Shapes::StringShape.new(name: 'NonBlankString')
|
64
70
|
Object = Shapes::StringShape.new(name: 'Object')
|
71
|
+
ObjectConfiguration = Shapes::MapShape.new(name: 'ObjectConfiguration')
|
65
72
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
66
73
|
ResourceQuotaExceededException = Shapes::StructureShape.new(name: 'ResourceQuotaExceededException')
|
67
|
-
Schedule = Shapes::StringShape.new(name: 'Schedule')
|
68
74
|
ScheduleConfiguration = Shapes::StructureShape.new(name: 'ScheduleConfiguration')
|
69
75
|
Source = Shapes::StringShape.new(name: 'Source')
|
76
|
+
SourceURI = Shapes::StringShape.new(name: 'SourceURI')
|
70
77
|
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
71
78
|
TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
|
72
79
|
TagMap = Shapes::MapShape.new(name: 'TagMap')
|
@@ -90,11 +97,13 @@ module Aws::AppIntegrationsService
|
|
90
97
|
|
91
98
|
CreateDataIntegrationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "Name"))
|
92
99
|
CreateDataIntegrationRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
93
|
-
CreateDataIntegrationRequest.add_member(:kms_key, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "KmsKey"))
|
94
|
-
CreateDataIntegrationRequest.add_member(:source_uri, Shapes::ShapeRef.new(shape:
|
95
|
-
CreateDataIntegrationRequest.add_member(:schedule_config, Shapes::ShapeRef.new(shape: ScheduleConfiguration, location_name: "ScheduleConfig"))
|
100
|
+
CreateDataIntegrationRequest.add_member(:kms_key, Shapes::ShapeRef.new(shape: NonBlankString, required: true, location_name: "KmsKey"))
|
101
|
+
CreateDataIntegrationRequest.add_member(:source_uri, Shapes::ShapeRef.new(shape: SourceURI, required: true, location_name: "SourceURI"))
|
102
|
+
CreateDataIntegrationRequest.add_member(:schedule_config, Shapes::ShapeRef.new(shape: ScheduleConfiguration, required: true, location_name: "ScheduleConfig"))
|
96
103
|
CreateDataIntegrationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
97
104
|
CreateDataIntegrationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
105
|
+
CreateDataIntegrationRequest.add_member(:file_configuration, Shapes::ShapeRef.new(shape: FileConfiguration, location_name: "FileConfiguration"))
|
106
|
+
CreateDataIntegrationRequest.add_member(:object_configuration, Shapes::ShapeRef.new(shape: ObjectConfiguration, location_name: "ObjectConfiguration"))
|
98
107
|
CreateDataIntegrationRequest.struct_class = Types::CreateDataIntegrationRequest
|
99
108
|
|
100
109
|
CreateDataIntegrationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
@@ -102,10 +111,12 @@ module Aws::AppIntegrationsService
|
|
102
111
|
CreateDataIntegrationResponse.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
|
103
112
|
CreateDataIntegrationResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
104
113
|
CreateDataIntegrationResponse.add_member(:kms_key, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "KmsKey"))
|
105
|
-
CreateDataIntegrationResponse.add_member(:source_uri, Shapes::ShapeRef.new(shape:
|
114
|
+
CreateDataIntegrationResponse.add_member(:source_uri, Shapes::ShapeRef.new(shape: SourceURI, location_name: "SourceURI"))
|
106
115
|
CreateDataIntegrationResponse.add_member(:schedule_configuration, Shapes::ShapeRef.new(shape: ScheduleConfiguration, location_name: "ScheduleConfiguration"))
|
107
116
|
CreateDataIntegrationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
108
117
|
CreateDataIntegrationResponse.add_member(:client_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "ClientToken"))
|
118
|
+
CreateDataIntegrationResponse.add_member(:file_configuration, Shapes::ShapeRef.new(shape: FileConfiguration, location_name: "FileConfiguration"))
|
119
|
+
CreateDataIntegrationResponse.add_member(:object_configuration, Shapes::ShapeRef.new(shape: ObjectConfiguration, location_name: "ObjectConfiguration"))
|
109
120
|
CreateDataIntegrationResponse.struct_class = Types::CreateDataIntegrationResponse
|
110
121
|
|
111
122
|
CreateEventIntegrationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "Name"))
|
@@ -128,7 +139,7 @@ module Aws::AppIntegrationsService
|
|
128
139
|
|
129
140
|
DataIntegrationSummary.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
130
141
|
DataIntegrationSummary.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
|
131
|
-
DataIntegrationSummary.add_member(:source_uri, Shapes::ShapeRef.new(shape:
|
142
|
+
DataIntegrationSummary.add_member(:source_uri, Shapes::ShapeRef.new(shape: SourceURI, location_name: "SourceURI"))
|
132
143
|
DataIntegrationSummary.struct_class = Types::DataIntegrationSummary
|
133
144
|
|
134
145
|
DataIntegrationsList.member = Shapes::ShapeRef.new(shape: DataIntegrationSummary)
|
@@ -169,6 +180,17 @@ module Aws::AppIntegrationsService
|
|
169
180
|
|
170
181
|
EventIntegrationsList.member = Shapes::ShapeRef.new(shape: EventIntegration)
|
171
182
|
|
183
|
+
FieldsList.member = Shapes::ShapeRef.new(shape: Fields)
|
184
|
+
|
185
|
+
FieldsMap.key = Shapes::ShapeRef.new(shape: NonBlankString)
|
186
|
+
FieldsMap.value = Shapes::ShapeRef.new(shape: FieldsList)
|
187
|
+
|
188
|
+
FileConfiguration.add_member(:folders, Shapes::ShapeRef.new(shape: FolderList, required: true, location_name: "Folders"))
|
189
|
+
FileConfiguration.add_member(:filters, Shapes::ShapeRef.new(shape: FieldsMap, location_name: "Filters"))
|
190
|
+
FileConfiguration.struct_class = Types::FileConfiguration
|
191
|
+
|
192
|
+
FolderList.member = Shapes::ShapeRef.new(shape: NonBlankLongString)
|
193
|
+
|
172
194
|
GetDataIntegrationRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "Identifier"))
|
173
195
|
GetDataIntegrationRequest.struct_class = Types::GetDataIntegrationRequest
|
174
196
|
|
@@ -177,9 +199,11 @@ module Aws::AppIntegrationsService
|
|
177
199
|
GetDataIntegrationResponse.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
|
178
200
|
GetDataIntegrationResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
179
201
|
GetDataIntegrationResponse.add_member(:kms_key, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "KmsKey"))
|
180
|
-
GetDataIntegrationResponse.add_member(:source_uri, Shapes::ShapeRef.new(shape:
|
202
|
+
GetDataIntegrationResponse.add_member(:source_uri, Shapes::ShapeRef.new(shape: SourceURI, location_name: "SourceURI"))
|
181
203
|
GetDataIntegrationResponse.add_member(:schedule_configuration, Shapes::ShapeRef.new(shape: ScheduleConfiguration, location_name: "ScheduleConfiguration"))
|
182
204
|
GetDataIntegrationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
205
|
+
GetDataIntegrationResponse.add_member(:file_configuration, Shapes::ShapeRef.new(shape: FileConfiguration, location_name: "FileConfiguration"))
|
206
|
+
GetDataIntegrationResponse.add_member(:object_configuration, Shapes::ShapeRef.new(shape: ObjectConfiguration, location_name: "ObjectConfiguration"))
|
183
207
|
GetDataIntegrationResponse.struct_class = Types::GetDataIntegrationResponse
|
184
208
|
|
185
209
|
GetEventIntegrationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location: "uri", location_name: "Name"))
|
@@ -239,6 +263,9 @@ module Aws::AppIntegrationsService
|
|
239
263
|
ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
240
264
|
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
241
265
|
|
266
|
+
ObjectConfiguration.key = Shapes::ShapeRef.new(shape: NonBlankString)
|
267
|
+
ObjectConfiguration.value = Shapes::ShapeRef.new(shape: FieldsMap)
|
268
|
+
|
242
269
|
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
243
270
|
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
244
271
|
|
@@ -247,7 +274,7 @@ module Aws::AppIntegrationsService
|
|
247
274
|
|
248
275
|
ScheduleConfiguration.add_member(:first_execution_from, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "FirstExecutionFrom"))
|
249
276
|
ScheduleConfiguration.add_member(:object, Shapes::ShapeRef.new(shape: Object, location_name: "Object"))
|
250
|
-
ScheduleConfiguration.add_member(:schedule_expression, Shapes::ShapeRef.new(shape:
|
277
|
+
ScheduleConfiguration.add_member(:schedule_expression, Shapes::ShapeRef.new(shape: NonBlankString, required: true, location_name: "ScheduleExpression"))
|
251
278
|
ScheduleConfiguration.struct_class = Types::ScheduleConfiguration
|
252
279
|
|
253
280
|
TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
|
@@ -9,104 +9,46 @@
|
|
9
9
|
|
10
10
|
module Aws::AppIntegrationsService
|
11
11
|
class EndpointProvider
|
12
|
-
def
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
12
|
+
def resolve_endpoint(parameters)
|
13
|
+
region = parameters.region
|
14
|
+
use_dual_stack = parameters.use_dual_stack
|
15
|
+
use_fips = parameters.use_fips
|
16
|
+
endpoint = parameters.endpoint
|
17
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
18
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
19
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
20
|
+
end
|
21
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
22
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
23
|
+
end
|
24
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
21
25
|
end
|
22
|
-
|
23
|
-
|
26
|
+
if Aws::Endpoints::Matchers.set?(region)
|
27
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
29
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
30
|
+
return Aws::Endpoints::Endpoint.new(url: "https://app-integrations-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
31
|
+
end
|
32
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
|
+
end
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
36
|
+
return Aws::Endpoints::Endpoint.new(url: "https://app-integrations-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
|
+
end
|
38
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
39
|
+
end
|
40
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
41
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
42
|
+
return Aws::Endpoints::Endpoint.new(url: "https://app-integrations.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
43
|
+
end
|
44
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
45
|
+
end
|
46
|
+
return Aws::Endpoints::Endpoint.new(url: "https://app-integrations.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
47
|
+
end
|
48
|
+
end
|
49
|
+
raise ArgumentError, "Invalid Configuration: Missing Region"
|
50
|
+
raise ArgumentError, 'No endpoint could be resolved'
|
24
51
|
|
25
|
-
def resolve_endpoint(parameters)
|
26
|
-
@provider.resolve_endpoint(parameters)
|
27
52
|
end
|
28
|
-
|
29
|
-
# @api private
|
30
|
-
RULES = <<-JSON
|
31
|
-
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
32
|
-
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
|
33
|
-
dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
|
34
|
-
cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
|
35
|
-
dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
|
36
|
-
ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
|
37
|
-
ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
|
38
|
-
ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
|
39
|
-
aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
|
40
|
-
OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
|
41
|
-
UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
|
42
|
-
dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
|
43
|
-
UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
|
44
|
-
dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
|
45
|
-
ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
|
46
|
-
IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
|
47
|
-
aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
|
48
|
-
bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
|
49
|
-
ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
|
50
|
-
Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
|
51
|
-
cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
|
52
|
-
InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
53
|
-
aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
|
54
|
-
cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
|
55
|
-
InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
|
56
|
-
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
57
|
-
UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
|
58
|
-
SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
|
59
|
-
eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
|
60
|
-
InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
61
|
-
LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
|
62
|
-
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
|
63
|
-
b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
|
64
|
-
fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
|
65
|
-
RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
|
66
|
-
ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
67
|
-
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
|
68
|
-
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
|
69
|
-
dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
70
|
-
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
71
|
-
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
72
|
-
In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
|
73
|
-
YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
|
74
|
-
YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
|
75
|
-
cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
76
|
-
dCI6eyJ1cmwiOiJodHRwczovL2FwcC1pbnRlZ3JhdGlvbnMtZmlwcy57UmVn
|
77
|
-
aW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJw
|
78
|
-
cm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQi
|
79
|
-
fV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBhbmQgRHVhbFN0
|
80
|
-
YWNrIGFyZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qg
|
81
|
-
c3VwcG9ydCBvbmUgb3IgYm90aCIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25k
|
82
|
-
aXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYi
|
83
|
-
OiJVc2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
|
84
|
-
Y29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3Ry
|
85
|
-
dWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25S
|
86
|
-
ZXN1bHQifSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1
|
87
|
-
bGVzIjpbeyJjb25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6
|
88
|
-
W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8v
|
89
|
-
YXBwLWludGVncmF0aW9ucy1maXBzLntSZWdpb259LntQYXJ0aXRpb25SZXN1
|
90
|
-
bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0s
|
91
|
-
InR5cGUiOiJlbmRwb2ludCJ9XX1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJv
|
92
|
-
ciI6IkZJUFMgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBu
|
93
|
-
b3Qgc3VwcG9ydCBGSVBTIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlv
|
94
|
-
bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVz
|
95
|
-
ZUR1YWxTdGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
|
96
|
-
ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0
|
97
|
-
cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9u
|
98
|
-
UmVzdWx0In0sInN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJl
|
99
|
-
ZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJs
|
100
|
-
IjoiaHR0cHM6Ly9hcHAtaW50ZWdyYXRpb25zLntSZWdpb259LntQYXJ0aXRp
|
101
|
-
b25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9
|
102
|
-
LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRp
|
103
|
-
b25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhp
|
104
|
-
cyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBl
|
105
|
-
IjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVy
|
106
|
-
bCI6Imh0dHBzOi8vYXBwLWludGVncmF0aW9ucy57UmVnaW9ufS57UGFydGl0
|
107
|
-
aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVy
|
108
|
-
cyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0=
|
109
|
-
|
110
|
-
JSON
|
111
53
|
end
|
112
54
|
end
|
@@ -23,25 +23,6 @@ module Aws::AppIntegrationsService
|
|
23
23
|
include Aws::Structure
|
24
24
|
end
|
25
25
|
|
26
|
-
# @note When making an API call, you may pass CreateDataIntegrationRequest
|
27
|
-
# data as a hash:
|
28
|
-
#
|
29
|
-
# {
|
30
|
-
# name: "Name", # required
|
31
|
-
# description: "Description",
|
32
|
-
# kms_key: "NonBlankString",
|
33
|
-
# source_uri: "NonBlankString",
|
34
|
-
# schedule_config: {
|
35
|
-
# first_execution_from: "NonBlankString",
|
36
|
-
# object: "Object",
|
37
|
-
# schedule_expression: "Schedule",
|
38
|
-
# },
|
39
|
-
# tags: {
|
40
|
-
# "TagKey" => "TagValue",
|
41
|
-
# },
|
42
|
-
# client_token: "IdempotencyToken",
|
43
|
-
# }
|
44
|
-
#
|
45
26
|
# @!attribute [rw] name
|
46
27
|
# The name of the DataIntegration.
|
47
28
|
# @return [String]
|
@@ -64,17 +45,33 @@ module Aws::AppIntegrationsService
|
|
64
45
|
# @return [Types::ScheduleConfiguration]
|
65
46
|
#
|
66
47
|
# @!attribute [rw] tags
|
67
|
-
#
|
48
|
+
# The tags used to organize, track, or control access for this
|
49
|
+
# resource. For example, \\\{ "tags": \\\{"key1":"value1",
|
50
|
+
# "key2":"value2"\\} \\}.
|
68
51
|
# @return [Hash<String,String>]
|
69
52
|
#
|
70
53
|
# @!attribute [rw] client_token
|
71
54
|
# A unique, case-sensitive identifier that you provide to ensure the
|
72
|
-
# idempotency of the request.
|
55
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
56
|
+
# SDK populates this field. For more information about idempotency,
|
57
|
+
# see [Making retries safe with idempotent APIs][1].
|
73
58
|
#
|
74
59
|
# **A suitable default value is auto-generated.** You should normally
|
75
60
|
# not need to pass this option.
|
61
|
+
#
|
62
|
+
#
|
63
|
+
#
|
64
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
76
65
|
# @return [String]
|
77
66
|
#
|
67
|
+
# @!attribute [rw] file_configuration
|
68
|
+
# The configuration for what files should be pulled from the source.
|
69
|
+
# @return [Types::FileConfiguration]
|
70
|
+
#
|
71
|
+
# @!attribute [rw] object_configuration
|
72
|
+
# The configuration for what data should be pulled from the source.
|
73
|
+
# @return [Hash<String,Hash<String,Array<String>>>]
|
74
|
+
#
|
78
75
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/CreateDataIntegrationRequest AWS API Documentation
|
79
76
|
#
|
80
77
|
class CreateDataIntegrationRequest < Struct.new(
|
@@ -84,7 +81,9 @@ module Aws::AppIntegrationsService
|
|
84
81
|
:source_uri,
|
85
82
|
:schedule_config,
|
86
83
|
:tags,
|
87
|
-
:client_token
|
84
|
+
:client_token,
|
85
|
+
:file_configuration,
|
86
|
+
:object_configuration)
|
88
87
|
SENSITIVE = []
|
89
88
|
include Aws::Structure
|
90
89
|
end
|
@@ -119,14 +118,30 @@ module Aws::AppIntegrationsService
|
|
119
118
|
# @return [Types::ScheduleConfiguration]
|
120
119
|
#
|
121
120
|
# @!attribute [rw] tags
|
122
|
-
#
|
121
|
+
# The tags used to organize, track, or control access for this
|
122
|
+
# resource. For example, \\\{ "tags": \\\{"key1":"value1",
|
123
|
+
# "key2":"value2"\\} \\}.
|
123
124
|
# @return [Hash<String,String>]
|
124
125
|
#
|
125
126
|
# @!attribute [rw] client_token
|
126
127
|
# A unique, case-sensitive identifier that you provide to ensure the
|
127
|
-
# idempotency of the request.
|
128
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
129
|
+
# SDK populates this field. For more information about idempotency,
|
130
|
+
# see [Making retries safe with idempotent APIs][1].
|
131
|
+
#
|
132
|
+
#
|
133
|
+
#
|
134
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
128
135
|
# @return [String]
|
129
136
|
#
|
137
|
+
# @!attribute [rw] file_configuration
|
138
|
+
# The configuration for what files should be pulled from the source.
|
139
|
+
# @return [Types::FileConfiguration]
|
140
|
+
#
|
141
|
+
# @!attribute [rw] object_configuration
|
142
|
+
# The configuration for what data should be pulled from the source.
|
143
|
+
# @return [Hash<String,Hash<String,Array<String>>>]
|
144
|
+
#
|
130
145
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/CreateDataIntegrationResponse AWS API Documentation
|
131
146
|
#
|
132
147
|
class CreateDataIntegrationResponse < Struct.new(
|
@@ -138,27 +153,13 @@ module Aws::AppIntegrationsService
|
|
138
153
|
:source_uri,
|
139
154
|
:schedule_configuration,
|
140
155
|
:tags,
|
141
|
-
:client_token
|
156
|
+
:client_token,
|
157
|
+
:file_configuration,
|
158
|
+
:object_configuration)
|
142
159
|
SENSITIVE = []
|
143
160
|
include Aws::Structure
|
144
161
|
end
|
145
162
|
|
146
|
-
# @note When making an API call, you may pass CreateEventIntegrationRequest
|
147
|
-
# data as a hash:
|
148
|
-
#
|
149
|
-
# {
|
150
|
-
# name: "Name", # required
|
151
|
-
# description: "Description",
|
152
|
-
# event_filter: { # required
|
153
|
-
# source: "Source", # required
|
154
|
-
# },
|
155
|
-
# event_bridge_bus: "EventBridgeBus", # required
|
156
|
-
# client_token: "IdempotencyToken",
|
157
|
-
# tags: {
|
158
|
-
# "TagKey" => "TagValue",
|
159
|
-
# },
|
160
|
-
# }
|
161
|
-
#
|
162
163
|
# @!attribute [rw] name
|
163
164
|
# The name of the event integration.
|
164
165
|
# @return [String]
|
@@ -177,14 +178,22 @@ module Aws::AppIntegrationsService
|
|
177
178
|
#
|
178
179
|
# @!attribute [rw] client_token
|
179
180
|
# A unique, case-sensitive identifier that you provide to ensure the
|
180
|
-
# idempotency of the request.
|
181
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
182
|
+
# SDK populates this field. For more information about idempotency,
|
183
|
+
# see [Making retries safe with idempotent APIs][1].
|
181
184
|
#
|
182
185
|
# **A suitable default value is auto-generated.** You should normally
|
183
186
|
# not need to pass this option.
|
187
|
+
#
|
188
|
+
#
|
189
|
+
#
|
190
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
184
191
|
# @return [String]
|
185
192
|
#
|
186
193
|
# @!attribute [rw] tags
|
187
|
-
#
|
194
|
+
# The tags used to organize, track, or control access for this
|
195
|
+
# resource. For example, \\\{ "tags": \\\{"key1":"value1",
|
196
|
+
# "key2":"value2"\\} \\}.
|
188
197
|
# @return [Hash<String,String>]
|
189
198
|
#
|
190
199
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/CreateEventIntegrationRequest AWS API Documentation
|
@@ -219,11 +228,11 @@ module Aws::AppIntegrationsService
|
|
219
228
|
# @return [String]
|
220
229
|
#
|
221
230
|
# @!attribute [rw] data_integration_arn
|
222
|
-
# The Amazon Resource Name (ARN)of the DataIntegration.
|
231
|
+
# The Amazon Resource Name (ARN) of the DataIntegration.
|
223
232
|
# @return [String]
|
224
233
|
#
|
225
234
|
# @!attribute [rw] client_id
|
226
|
-
# The identifier for
|
235
|
+
# The identifier for the client that is associated with the
|
227
236
|
# DataIntegration association.
|
228
237
|
# @return [String]
|
229
238
|
#
|
@@ -261,13 +270,6 @@ module Aws::AppIntegrationsService
|
|
261
270
|
include Aws::Structure
|
262
271
|
end
|
263
272
|
|
264
|
-
# @note When making an API call, you may pass DeleteDataIntegrationRequest
|
265
|
-
# data as a hash:
|
266
|
-
#
|
267
|
-
# {
|
268
|
-
# data_integration_identifier: "Identifier", # required
|
269
|
-
# }
|
270
|
-
#
|
271
273
|
# @!attribute [rw] data_integration_identifier
|
272
274
|
# A unique identifier for the DataIntegration.
|
273
275
|
# @return [String]
|
@@ -284,13 +286,6 @@ module Aws::AppIntegrationsService
|
|
284
286
|
#
|
285
287
|
class DeleteDataIntegrationResponse < Aws::EmptyStructure; end
|
286
288
|
|
287
|
-
# @note When making an API call, you may pass DeleteEventIntegrationRequest
|
288
|
-
# data as a hash:
|
289
|
-
#
|
290
|
-
# {
|
291
|
-
# name: "Name", # required
|
292
|
-
# }
|
293
|
-
#
|
294
289
|
# @!attribute [rw] name
|
295
290
|
# The name of the event integration.
|
296
291
|
# @return [String]
|
@@ -322,13 +317,6 @@ module Aws::AppIntegrationsService
|
|
322
317
|
|
323
318
|
# The event filter.
|
324
319
|
#
|
325
|
-
# @note When making an API call, you may pass EventFilter
|
326
|
-
# data as a hash:
|
327
|
-
#
|
328
|
-
# {
|
329
|
-
# source: "Source", # required
|
330
|
-
# }
|
331
|
-
#
|
332
320
|
# @!attribute [rw] source
|
333
321
|
# The source of the events.
|
334
322
|
# @return [String]
|
@@ -364,7 +352,9 @@ module Aws::AppIntegrationsService
|
|
364
352
|
# @return [String]
|
365
353
|
#
|
366
354
|
# @!attribute [rw] tags
|
367
|
-
# The tags
|
355
|
+
# The tags used to organize, track, or control access for this
|
356
|
+
# resource. For example, \\\{ "tags": \\\{"key1":"value1",
|
357
|
+
# "key2":"value2"\\} \\}.
|
368
358
|
# @return [Hash<String,String>]
|
369
359
|
#
|
370
360
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/EventIntegration AWS API Documentation
|
@@ -421,13 +411,26 @@ module Aws::AppIntegrationsService
|
|
421
411
|
include Aws::Structure
|
422
412
|
end
|
423
413
|
|
424
|
-
#
|
425
|
-
# data as a hash:
|
414
|
+
# The configuration for what files should be pulled from the source.
|
426
415
|
#
|
427
|
-
#
|
428
|
-
#
|
429
|
-
#
|
416
|
+
# @!attribute [rw] folders
|
417
|
+
# Identifiers for the source folders to pull all files from
|
418
|
+
# recursively.
|
419
|
+
# @return [Array<String>]
|
430
420
|
#
|
421
|
+
# @!attribute [rw] filters
|
422
|
+
# Restrictions for what files should be pulled from the source.
|
423
|
+
# @return [Hash<String,Array<String>>]
|
424
|
+
#
|
425
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/FileConfiguration AWS API Documentation
|
426
|
+
#
|
427
|
+
class FileConfiguration < Struct.new(
|
428
|
+
:folders,
|
429
|
+
:filters)
|
430
|
+
SENSITIVE = []
|
431
|
+
include Aws::Structure
|
432
|
+
end
|
433
|
+
|
431
434
|
# @!attribute [rw] identifier
|
432
435
|
# A unique identifier.
|
433
436
|
# @return [String]
|
@@ -470,9 +473,19 @@ module Aws::AppIntegrationsService
|
|
470
473
|
# @return [Types::ScheduleConfiguration]
|
471
474
|
#
|
472
475
|
# @!attribute [rw] tags
|
473
|
-
#
|
476
|
+
# The tags used to organize, track, or control access for this
|
477
|
+
# resource. For example, \\\{ "tags": \\\{"key1":"value1",
|
478
|
+
# "key2":"value2"\\} \\}.
|
474
479
|
# @return [Hash<String,String>]
|
475
480
|
#
|
481
|
+
# @!attribute [rw] file_configuration
|
482
|
+
# The configuration for what files should be pulled from the source.
|
483
|
+
# @return [Types::FileConfiguration]
|
484
|
+
#
|
485
|
+
# @!attribute [rw] object_configuration
|
486
|
+
# The configuration for what data should be pulled from the source.
|
487
|
+
# @return [Hash<String,Hash<String,Array<String>>>]
|
488
|
+
#
|
476
489
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/GetDataIntegrationResponse AWS API Documentation
|
477
490
|
#
|
478
491
|
class GetDataIntegrationResponse < Struct.new(
|
@@ -483,18 +496,13 @@ module Aws::AppIntegrationsService
|
|
483
496
|
:kms_key,
|
484
497
|
:source_uri,
|
485
498
|
:schedule_configuration,
|
486
|
-
:tags
|
499
|
+
:tags,
|
500
|
+
:file_configuration,
|
501
|
+
:object_configuration)
|
487
502
|
SENSITIVE = []
|
488
503
|
include Aws::Structure
|
489
504
|
end
|
490
505
|
|
491
|
-
# @note When making an API call, you may pass GetEventIntegrationRequest
|
492
|
-
# data as a hash:
|
493
|
-
#
|
494
|
-
# {
|
495
|
-
# name: "Name", # required
|
496
|
-
# }
|
497
|
-
#
|
498
506
|
# @!attribute [rw] name
|
499
507
|
# The name of the event integration.
|
500
508
|
# @return [String]
|
@@ -528,7 +536,9 @@ module Aws::AppIntegrationsService
|
|
528
536
|
# @return [Types::EventFilter]
|
529
537
|
#
|
530
538
|
# @!attribute [rw] tags
|
531
|
-
#
|
539
|
+
# The tags used to organize, track, or control access for this
|
540
|
+
# resource. For example, \\\{ "tags": \\\{"key1":"value1",
|
541
|
+
# "key2":"value2"\\} \\}.
|
532
542
|
# @return [Hash<String,String>]
|
533
543
|
#
|
534
544
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/GetEventIntegrationResponse AWS API Documentation
|
@@ -570,15 +580,6 @@ module Aws::AppIntegrationsService
|
|
570
580
|
include Aws::Structure
|
571
581
|
end
|
572
582
|
|
573
|
-
# @note When making an API call, you may pass ListDataIntegrationAssociationsRequest
|
574
|
-
# data as a hash:
|
575
|
-
#
|
576
|
-
# {
|
577
|
-
# data_integration_identifier: "Identifier", # required
|
578
|
-
# next_token: "NextToken",
|
579
|
-
# max_results: 1,
|
580
|
-
# }
|
581
|
-
#
|
582
583
|
# @!attribute [rw] data_integration_identifier
|
583
584
|
# A unique identifier for the DataIntegration.
|
584
585
|
# @return [String]
|
@@ -622,14 +623,6 @@ module Aws::AppIntegrationsService
|
|
622
623
|
include Aws::Structure
|
623
624
|
end
|
624
625
|
|
625
|
-
# @note When making an API call, you may pass ListDataIntegrationsRequest
|
626
|
-
# data as a hash:
|
627
|
-
#
|
628
|
-
# {
|
629
|
-
# next_token: "NextToken",
|
630
|
-
# max_results: 1,
|
631
|
-
# }
|
632
|
-
#
|
633
626
|
# @!attribute [rw] next_token
|
634
627
|
# The token for the next set of results. Use the value returned in the
|
635
628
|
# previous response in the next request to retrieve the next set of
|
@@ -667,15 +660,6 @@ module Aws::AppIntegrationsService
|
|
667
660
|
include Aws::Structure
|
668
661
|
end
|
669
662
|
|
670
|
-
# @note When making an API call, you may pass ListEventIntegrationAssociationsRequest
|
671
|
-
# data as a hash:
|
672
|
-
#
|
673
|
-
# {
|
674
|
-
# event_integration_name: "Name", # required
|
675
|
-
# next_token: "NextToken",
|
676
|
-
# max_results: 1,
|
677
|
-
# }
|
678
|
-
#
|
679
663
|
# @!attribute [rw] event_integration_name
|
680
664
|
# The name of the event integration.
|
681
665
|
# @return [String]
|
@@ -718,14 +702,6 @@ module Aws::AppIntegrationsService
|
|
718
702
|
include Aws::Structure
|
719
703
|
end
|
720
704
|
|
721
|
-
# @note When making an API call, you may pass ListEventIntegrationsRequest
|
722
|
-
# data as a hash:
|
723
|
-
#
|
724
|
-
# {
|
725
|
-
# next_token: "NextToken",
|
726
|
-
# max_results: 1,
|
727
|
-
# }
|
728
|
-
#
|
729
705
|
# @!attribute [rw] next_token
|
730
706
|
# The token for the next set of results. Use the value returned in the
|
731
707
|
# previous response in the next request to retrieve the next set of
|
@@ -763,13 +739,6 @@ module Aws::AppIntegrationsService
|
|
763
739
|
include Aws::Structure
|
764
740
|
end
|
765
741
|
|
766
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
767
|
-
# data as a hash:
|
768
|
-
#
|
769
|
-
# {
|
770
|
-
# resource_arn: "Arn", # required
|
771
|
-
# }
|
772
|
-
#
|
773
742
|
# @!attribute [rw] resource_arn
|
774
743
|
# The Amazon Resource Name (ARN) of the resource.
|
775
744
|
# @return [String]
|
@@ -823,17 +792,9 @@ module Aws::AppIntegrationsService
|
|
823
792
|
# The name of the data and how often it should be pulled from the
|
824
793
|
# source.
|
825
794
|
#
|
826
|
-
# @note When making an API call, you may pass ScheduleConfiguration
|
827
|
-
# data as a hash:
|
828
|
-
#
|
829
|
-
# {
|
830
|
-
# first_execution_from: "NonBlankString",
|
831
|
-
# object: "Object",
|
832
|
-
# schedule_expression: "Schedule",
|
833
|
-
# }
|
834
|
-
#
|
835
795
|
# @!attribute [rw] first_execution_from
|
836
|
-
# The start date for objects to import in the first flow run
|
796
|
+
# The start date for objects to import in the first flow run as an
|
797
|
+
# Unix/epoch timestamp in milliseconds or in ISO-8601 format.
|
837
798
|
# @return [String]
|
838
799
|
#
|
839
800
|
# @!attribute [rw] object
|
@@ -854,22 +815,14 @@ module Aws::AppIntegrationsService
|
|
854
815
|
include Aws::Structure
|
855
816
|
end
|
856
817
|
|
857
|
-
# @note When making an API call, you may pass TagResourceRequest
|
858
|
-
# data as a hash:
|
859
|
-
#
|
860
|
-
# {
|
861
|
-
# resource_arn: "Arn", # required
|
862
|
-
# tags: { # required
|
863
|
-
# "TagKey" => "TagValue",
|
864
|
-
# },
|
865
|
-
# }
|
866
|
-
#
|
867
818
|
# @!attribute [rw] resource_arn
|
868
819
|
# The Amazon Resource Name (ARN) of the resource.
|
869
820
|
# @return [String]
|
870
821
|
#
|
871
822
|
# @!attribute [rw] tags
|
872
|
-
#
|
823
|
+
# The tags used to organize, track, or control access for this
|
824
|
+
# resource. For example, \\\{ "tags": \\\{"key1":"value1",
|
825
|
+
# "key2":"value2"\\} \\}.
|
873
826
|
# @return [Hash<String,String>]
|
874
827
|
#
|
875
828
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/TagResourceRequest AWS API Documentation
|
@@ -898,14 +851,6 @@ module Aws::AppIntegrationsService
|
|
898
851
|
include Aws::Structure
|
899
852
|
end
|
900
853
|
|
901
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
902
|
-
# data as a hash:
|
903
|
-
#
|
904
|
-
# {
|
905
|
-
# resource_arn: "Arn", # required
|
906
|
-
# tag_keys: ["TagKey"], # required
|
907
|
-
# }
|
908
|
-
#
|
909
854
|
# @!attribute [rw] resource_arn
|
910
855
|
# The Amazon Resource Name (ARN) of the resource.
|
911
856
|
# @return [String]
|
@@ -927,15 +872,6 @@ module Aws::AppIntegrationsService
|
|
927
872
|
#
|
928
873
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
929
874
|
|
930
|
-
# @note When making an API call, you may pass UpdateDataIntegrationRequest
|
931
|
-
# data as a hash:
|
932
|
-
#
|
933
|
-
# {
|
934
|
-
# identifier: "Identifier", # required
|
935
|
-
# name: "Name",
|
936
|
-
# description: "Description",
|
937
|
-
# }
|
938
|
-
#
|
939
875
|
# @!attribute [rw] identifier
|
940
876
|
# A unique identifier for the DataIntegration.
|
941
877
|
# @return [String]
|
@@ -962,14 +898,6 @@ module Aws::AppIntegrationsService
|
|
962
898
|
#
|
963
899
|
class UpdateDataIntegrationResponse < Aws::EmptyStructure; end
|
964
900
|
|
965
|
-
# @note When making an API call, you may pass UpdateEventIntegrationRequest
|
966
|
-
# data as a hash:
|
967
|
-
#
|
968
|
-
# {
|
969
|
-
# name: "Name", # required
|
970
|
-
# description: "Description",
|
971
|
-
# }
|
972
|
-
#
|
973
901
|
# @!attribute [rw] name
|
974
902
|
# The name of the event integration.
|
975
903
|
# @return [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.16.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:
|
11
|
+
date: 2023-03-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|