aws-sdk-appintegrationsservice 1.6.0 → 1.10.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appintegrationsservice/client.rb +340 -3
- data/lib/aws-sdk-appintegrationsservice/client_api.rb +179 -0
- data/lib/aws-sdk-appintegrationsservice/types.rb +425 -0
- data/lib/aws-sdk-appintegrationsservice.rb +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5bcdb270bb0296f7aaa81789428036a01a2e880debbabd5b7009c3c8ecc5b385
|
4
|
+
data.tar.gz: 3b57bc22a906dc56fb52937e0d92fa8916eee72a08f4c743cd6c518ccbebfd02
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8f0700fd130e4f9d9b2683a0441ec8098ad6fb9b74c99ef319b713b8985ea7a67bb740fc50728174fc54a46a7037ce7b196e46d3c3cb2bd1af63d338f5e53fe
|
7
|
+
data.tar.gz: 25e0814bf521de6ee66e4fd9ff5a4d2b7d86622f57906cb3eb32173e3bccba728f7aff9bd8f345caf20b50f406c23f709ba036f77e4655c358e629b57abcb846
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.10.0 (2021-11-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.9.0 (2021-11-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.8.0 (2021-10-18)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.7.0 (2021-09-27)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - The Amazon AppIntegrations service enables you to configure and reuse connections to external applications.
|
23
|
+
|
4
24
|
1.6.0 (2021-09-01)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.10.0
|
@@ -119,7 +119,9 @@ module Aws::AppIntegrationsService
|
|
119
119
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
120
|
# are very aggressive. Construct and pass an instance of
|
121
121
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
122
|
+
# enable retries and extended timeouts. Instance profile credential
|
123
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
124
|
+
# to true.
|
123
125
|
#
|
124
126
|
# @option options [required, String] :region
|
125
127
|
# The AWS region to connect to. The configured `:region` is
|
@@ -275,6 +277,15 @@ module Aws::AppIntegrationsService
|
|
275
277
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
276
278
|
# requests are made, and retries are disabled.
|
277
279
|
#
|
280
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
281
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
282
|
+
# will be used if available.
|
283
|
+
#
|
284
|
+
# @option options [Boolean] :use_fips_endpoint
|
285
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
286
|
+
# When a `fips` region is used, the region is normalized and this config
|
287
|
+
# is set to `true`.
|
288
|
+
#
|
278
289
|
# @option options [Boolean] :validate_params (true)
|
279
290
|
# When `true`, request parameters are validated before
|
280
291
|
# sending the request.
|
@@ -327,6 +338,94 @@ module Aws::AppIntegrationsService
|
|
327
338
|
|
328
339
|
# @!group API Operations
|
329
340
|
|
341
|
+
# Creates and persists a DataIntegration resource.
|
342
|
+
#
|
343
|
+
# <note markdown="1"> You cannot create a DataIntegration association for a DataIntegration
|
344
|
+
# that has been previously associated. Use a different DataIntegration,
|
345
|
+
# or recreate the DataIntegration using the `CreateDataIntegration` API.
|
346
|
+
#
|
347
|
+
# </note>
|
348
|
+
#
|
349
|
+
# @option params [required, String] :name
|
350
|
+
# The name of the DataIntegration.
|
351
|
+
#
|
352
|
+
# @option params [String] :description
|
353
|
+
# A description of the DataIntegration.
|
354
|
+
#
|
355
|
+
# @option params [String] :kms_key
|
356
|
+
# The KMS key for the DataIntegration.
|
357
|
+
#
|
358
|
+
# @option params [String] :source_uri
|
359
|
+
# The URI of the data source.
|
360
|
+
#
|
361
|
+
# @option params [Types::ScheduleConfiguration] :schedule_config
|
362
|
+
# The name of the data and how often it should be pulled from the
|
363
|
+
# source.
|
364
|
+
#
|
365
|
+
# @option params [Hash<String,String>] :tags
|
366
|
+
# One or more tags.
|
367
|
+
#
|
368
|
+
# @option params [String] :client_token
|
369
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
370
|
+
# idempotency of the request.
|
371
|
+
#
|
372
|
+
# **A suitable default value is auto-generated.** You should normally
|
373
|
+
# not need to pass this option.**
|
374
|
+
#
|
375
|
+
# @return [Types::CreateDataIntegrationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
376
|
+
#
|
377
|
+
# * {Types::CreateDataIntegrationResponse#arn #arn} => String
|
378
|
+
# * {Types::CreateDataIntegrationResponse#id #id} => String
|
379
|
+
# * {Types::CreateDataIntegrationResponse#name #name} => String
|
380
|
+
# * {Types::CreateDataIntegrationResponse#description #description} => String
|
381
|
+
# * {Types::CreateDataIntegrationResponse#kms_key #kms_key} => String
|
382
|
+
# * {Types::CreateDataIntegrationResponse#source_uri #source_uri} => String
|
383
|
+
# * {Types::CreateDataIntegrationResponse#schedule_configuration #schedule_configuration} => Types::ScheduleConfiguration
|
384
|
+
# * {Types::CreateDataIntegrationResponse#tags #tags} => Hash<String,String>
|
385
|
+
# * {Types::CreateDataIntegrationResponse#client_token #client_token} => String
|
386
|
+
#
|
387
|
+
# @example Request syntax with placeholder values
|
388
|
+
#
|
389
|
+
# resp = client.create_data_integration({
|
390
|
+
# name: "Name", # required
|
391
|
+
# description: "Description",
|
392
|
+
# kms_key: "NonBlankString",
|
393
|
+
# source_uri: "NonBlankString",
|
394
|
+
# schedule_config: {
|
395
|
+
# first_execution_from: "NonBlankString",
|
396
|
+
# object: "Object",
|
397
|
+
# schedule_expression: "Schedule",
|
398
|
+
# },
|
399
|
+
# tags: {
|
400
|
+
# "TagKey" => "TagValue",
|
401
|
+
# },
|
402
|
+
# client_token: "IdempotencyToken",
|
403
|
+
# })
|
404
|
+
#
|
405
|
+
# @example Response structure
|
406
|
+
#
|
407
|
+
# resp.arn #=> String
|
408
|
+
# resp.id #=> String
|
409
|
+
# resp.name #=> String
|
410
|
+
# resp.description #=> String
|
411
|
+
# resp.kms_key #=> String
|
412
|
+
# resp.source_uri #=> String
|
413
|
+
# resp.schedule_configuration.first_execution_from #=> String
|
414
|
+
# resp.schedule_configuration.object #=> String
|
415
|
+
# resp.schedule_configuration.schedule_expression #=> String
|
416
|
+
# resp.tags #=> Hash
|
417
|
+
# resp.tags["TagKey"] #=> String
|
418
|
+
# resp.client_token #=> String
|
419
|
+
#
|
420
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/CreateDataIntegration AWS API Documentation
|
421
|
+
#
|
422
|
+
# @overload create_data_integration(params = {})
|
423
|
+
# @param [Hash] params ({})
|
424
|
+
def create_data_integration(params = {}, options = {})
|
425
|
+
req = build_request(:create_data_integration, params)
|
426
|
+
req.send_request(options)
|
427
|
+
end
|
428
|
+
|
330
429
|
# Creates an EventIntegration, given a specified name, description, and
|
331
430
|
# a reference to an Amazon EventBridge bus in your account and a partner
|
332
431
|
# event source that pushes events to that bus. No objects are created in
|
@@ -387,6 +486,42 @@ module Aws::AppIntegrationsService
|
|
387
486
|
req.send_request(options)
|
388
487
|
end
|
389
488
|
|
489
|
+
# Deletes the DataIntegration. Only DataIntegrations that don't have
|
490
|
+
# any DataIntegrationAssociations can be deleted. Deleting a
|
491
|
+
# DataIntegration also deletes the underlying Amazon AppFlow flow and
|
492
|
+
# service linked role.
|
493
|
+
#
|
494
|
+
# <note markdown="1"> You cannot create a DataIntegration association for a DataIntegration
|
495
|
+
# that has been previously associated. Use a different DataIntegration,
|
496
|
+
# or recreate the DataIntegration using the [CreateDataIntegration][1]
|
497
|
+
# API.
|
498
|
+
#
|
499
|
+
# </note>
|
500
|
+
#
|
501
|
+
#
|
502
|
+
#
|
503
|
+
# [1]: https://docs.aws.amazon.com/appintegrations/latest/APIReference/API_CreateDataIntegration.html
|
504
|
+
#
|
505
|
+
# @option params [required, String] :data_integration_identifier
|
506
|
+
# A unique identifier for the DataIntegration.
|
507
|
+
#
|
508
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
509
|
+
#
|
510
|
+
# @example Request syntax with placeholder values
|
511
|
+
#
|
512
|
+
# resp = client.delete_data_integration({
|
513
|
+
# data_integration_identifier: "Identifier", # required
|
514
|
+
# })
|
515
|
+
#
|
516
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/DeleteDataIntegration AWS API Documentation
|
517
|
+
#
|
518
|
+
# @overload delete_data_integration(params = {})
|
519
|
+
# @param [Hash] params ({})
|
520
|
+
def delete_data_integration(params = {}, options = {})
|
521
|
+
req = build_request(:delete_data_integration, params)
|
522
|
+
req.send_request(options)
|
523
|
+
end
|
524
|
+
|
390
525
|
# Deletes the specified existing event integration. If the event
|
391
526
|
# integration is associated with clients, the request is rejected.
|
392
527
|
#
|
@@ -410,7 +545,63 @@ module Aws::AppIntegrationsService
|
|
410
545
|
req.send_request(options)
|
411
546
|
end
|
412
547
|
|
413
|
-
#
|
548
|
+
# Returns information about the DataIntegration.
|
549
|
+
#
|
550
|
+
# <note markdown="1"> You cannot create a DataIntegration association for a DataIntegration
|
551
|
+
# that has been previously associated. Use a different DataIntegration,
|
552
|
+
# or recreate the DataIntegration using the [CreateDataIntegration][1]
|
553
|
+
# API.
|
554
|
+
#
|
555
|
+
# </note>
|
556
|
+
#
|
557
|
+
#
|
558
|
+
#
|
559
|
+
# [1]: https://docs.aws.amazon.com/appintegrations/latest/APIReference/API_CreateDataIntegration.html
|
560
|
+
#
|
561
|
+
# @option params [required, String] :identifier
|
562
|
+
# A unique identifier.
|
563
|
+
#
|
564
|
+
# @return [Types::GetDataIntegrationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
565
|
+
#
|
566
|
+
# * {Types::GetDataIntegrationResponse#arn #arn} => String
|
567
|
+
# * {Types::GetDataIntegrationResponse#id #id} => String
|
568
|
+
# * {Types::GetDataIntegrationResponse#name #name} => String
|
569
|
+
# * {Types::GetDataIntegrationResponse#description #description} => String
|
570
|
+
# * {Types::GetDataIntegrationResponse#kms_key #kms_key} => String
|
571
|
+
# * {Types::GetDataIntegrationResponse#source_uri #source_uri} => String
|
572
|
+
# * {Types::GetDataIntegrationResponse#schedule_configuration #schedule_configuration} => Types::ScheduleConfiguration
|
573
|
+
# * {Types::GetDataIntegrationResponse#tags #tags} => Hash<String,String>
|
574
|
+
#
|
575
|
+
# @example Request syntax with placeholder values
|
576
|
+
#
|
577
|
+
# resp = client.get_data_integration({
|
578
|
+
# identifier: "Identifier", # required
|
579
|
+
# })
|
580
|
+
#
|
581
|
+
# @example Response structure
|
582
|
+
#
|
583
|
+
# resp.arn #=> String
|
584
|
+
# resp.id #=> String
|
585
|
+
# resp.name #=> String
|
586
|
+
# resp.description #=> String
|
587
|
+
# resp.kms_key #=> String
|
588
|
+
# resp.source_uri #=> String
|
589
|
+
# resp.schedule_configuration.first_execution_from #=> String
|
590
|
+
# resp.schedule_configuration.object #=> String
|
591
|
+
# resp.schedule_configuration.schedule_expression #=> String
|
592
|
+
# resp.tags #=> Hash
|
593
|
+
# resp.tags["TagKey"] #=> String
|
594
|
+
#
|
595
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/GetDataIntegration AWS API Documentation
|
596
|
+
#
|
597
|
+
# @overload get_data_integration(params = {})
|
598
|
+
# @param [Hash] params ({})
|
599
|
+
def get_data_integration(params = {}, options = {})
|
600
|
+
req = build_request(:get_data_integration, params)
|
601
|
+
req.send_request(options)
|
602
|
+
end
|
603
|
+
|
604
|
+
# Returns information about the event integration.
|
414
605
|
#
|
415
606
|
# @option params [required, String] :name
|
416
607
|
# The name of the event integration.
|
@@ -449,6 +640,111 @@ module Aws::AppIntegrationsService
|
|
449
640
|
req.send_request(options)
|
450
641
|
end
|
451
642
|
|
643
|
+
# Returns a paginated list of DataIntegration associations in the
|
644
|
+
# account.
|
645
|
+
#
|
646
|
+
# <note markdown="1"> You cannot create a DataIntegration association for a DataIntegration
|
647
|
+
# that has been previously associated. Use a different DataIntegration,
|
648
|
+
# or recreate the DataIntegration using the [CreateDataIntegration][1]
|
649
|
+
# API.
|
650
|
+
#
|
651
|
+
# </note>
|
652
|
+
#
|
653
|
+
#
|
654
|
+
#
|
655
|
+
# [1]: https://docs.aws.amazon.com/appintegrations/latest/APIReference/API_CreateDataIntegration.html
|
656
|
+
#
|
657
|
+
# @option params [required, String] :data_integration_identifier
|
658
|
+
# A unique identifier for the DataIntegration.
|
659
|
+
#
|
660
|
+
# @option params [String] :next_token
|
661
|
+
# The token for the next set of results. Use the value returned in the
|
662
|
+
# previous response in the next request to retrieve the next set of
|
663
|
+
# results.
|
664
|
+
#
|
665
|
+
# @option params [Integer] :max_results
|
666
|
+
# The maximum number of results to return per page.
|
667
|
+
#
|
668
|
+
# @return [Types::ListDataIntegrationAssociationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
669
|
+
#
|
670
|
+
# * {Types::ListDataIntegrationAssociationsResponse#data_integration_associations #data_integration_associations} => Array<Types::DataIntegrationAssociationSummary>
|
671
|
+
# * {Types::ListDataIntegrationAssociationsResponse#next_token #next_token} => String
|
672
|
+
#
|
673
|
+
# @example Request syntax with placeholder values
|
674
|
+
#
|
675
|
+
# resp = client.list_data_integration_associations({
|
676
|
+
# data_integration_identifier: "Identifier", # required
|
677
|
+
# next_token: "NextToken",
|
678
|
+
# max_results: 1,
|
679
|
+
# })
|
680
|
+
#
|
681
|
+
# @example Response structure
|
682
|
+
#
|
683
|
+
# resp.data_integration_associations #=> Array
|
684
|
+
# resp.data_integration_associations[0].data_integration_association_arn #=> String
|
685
|
+
# resp.data_integration_associations[0].data_integration_arn #=> String
|
686
|
+
# resp.data_integration_associations[0].client_id #=> String
|
687
|
+
# resp.next_token #=> String
|
688
|
+
#
|
689
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListDataIntegrationAssociations AWS API Documentation
|
690
|
+
#
|
691
|
+
# @overload list_data_integration_associations(params = {})
|
692
|
+
# @param [Hash] params ({})
|
693
|
+
def list_data_integration_associations(params = {}, options = {})
|
694
|
+
req = build_request(:list_data_integration_associations, params)
|
695
|
+
req.send_request(options)
|
696
|
+
end
|
697
|
+
|
698
|
+
# Returns a paginated list of DataIntegrations in the account.
|
699
|
+
#
|
700
|
+
# <note markdown="1"> You cannot create a DataIntegration association for a DataIntegration
|
701
|
+
# that has been previously associated. Use a different DataIntegration,
|
702
|
+
# or recreate the DataIntegration using the [CreateDataIntegration][1]
|
703
|
+
# API.
|
704
|
+
#
|
705
|
+
# </note>
|
706
|
+
#
|
707
|
+
#
|
708
|
+
#
|
709
|
+
# [1]: https://docs.aws.amazon.com/appintegrations/latest/APIReference/API_CreateDataIntegration.html
|
710
|
+
#
|
711
|
+
# @option params [String] :next_token
|
712
|
+
# The token for the next set of results. Use the value returned in the
|
713
|
+
# previous response in the next request to retrieve the next set of
|
714
|
+
# results.
|
715
|
+
#
|
716
|
+
# @option params [Integer] :max_results
|
717
|
+
# The maximum number of results to return per page.
|
718
|
+
#
|
719
|
+
# @return [Types::ListDataIntegrationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
720
|
+
#
|
721
|
+
# * {Types::ListDataIntegrationsResponse#data_integrations #data_integrations} => Array<Types::DataIntegrationSummary>
|
722
|
+
# * {Types::ListDataIntegrationsResponse#next_token #next_token} => String
|
723
|
+
#
|
724
|
+
# @example Request syntax with placeholder values
|
725
|
+
#
|
726
|
+
# resp = client.list_data_integrations({
|
727
|
+
# next_token: "NextToken",
|
728
|
+
# max_results: 1,
|
729
|
+
# })
|
730
|
+
#
|
731
|
+
# @example Response structure
|
732
|
+
#
|
733
|
+
# resp.data_integrations #=> Array
|
734
|
+
# resp.data_integrations[0].arn #=> String
|
735
|
+
# resp.data_integrations[0].name #=> String
|
736
|
+
# resp.data_integrations[0].source_uri #=> String
|
737
|
+
# resp.next_token #=> String
|
738
|
+
#
|
739
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListDataIntegrations AWS API Documentation
|
740
|
+
#
|
741
|
+
# @overload list_data_integrations(params = {})
|
742
|
+
# @param [Hash] params ({})
|
743
|
+
def list_data_integrations(params = {}, options = {})
|
744
|
+
req = build_request(:list_data_integrations, params)
|
745
|
+
req.send_request(options)
|
746
|
+
end
|
747
|
+
|
452
748
|
# Returns a paginated list of event integration associations in the
|
453
749
|
# account.
|
454
750
|
#
|
@@ -623,6 +919,47 @@ module Aws::AppIntegrationsService
|
|
623
919
|
req.send_request(options)
|
624
920
|
end
|
625
921
|
|
922
|
+
# Updates the description of a DataIntegration.
|
923
|
+
#
|
924
|
+
# <note markdown="1"> You cannot create a DataIntegration association for a DataIntegration
|
925
|
+
# that has been previously associated. Use a different DataIntegration,
|
926
|
+
# or recreate the DataIntegration using the [CreateDataIntegration][1]
|
927
|
+
# API.
|
928
|
+
#
|
929
|
+
# </note>
|
930
|
+
#
|
931
|
+
#
|
932
|
+
#
|
933
|
+
# [1]: https://docs.aws.amazon.com/appintegrations/latest/APIReference/API_CreateDataIntegration.html
|
934
|
+
#
|
935
|
+
# @option params [required, String] :identifier
|
936
|
+
# A unique identifier for the DataIntegration.
|
937
|
+
#
|
938
|
+
# @option params [String] :name
|
939
|
+
# The name of the DataIntegration.
|
940
|
+
#
|
941
|
+
# @option params [String] :description
|
942
|
+
# A description of the DataIntegration.
|
943
|
+
#
|
944
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
945
|
+
#
|
946
|
+
# @example Request syntax with placeholder values
|
947
|
+
#
|
948
|
+
# resp = client.update_data_integration({
|
949
|
+
# identifier: "Identifier", # required
|
950
|
+
# name: "Name",
|
951
|
+
# description: "Description",
|
952
|
+
# })
|
953
|
+
#
|
954
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/UpdateDataIntegration AWS API Documentation
|
955
|
+
#
|
956
|
+
# @overload update_data_integration(params = {})
|
957
|
+
# @param [Hash] params ({})
|
958
|
+
def update_data_integration(params = {}, options = {})
|
959
|
+
req = build_request(:update_data_integration, params)
|
960
|
+
req.send_request(options)
|
961
|
+
end
|
962
|
+
|
626
963
|
# Updates the description of an event integration.
|
627
964
|
#
|
628
965
|
# @option params [required, String] :name
|
@@ -662,7 +999,7 @@ module Aws::AppIntegrationsService
|
|
662
999
|
params: params,
|
663
1000
|
config: config)
|
664
1001
|
context[:gem_name] = 'aws-sdk-appintegrationsservice'
|
665
|
-
context[:gem_version] = '1.
|
1002
|
+
context[:gem_version] = '1.10.0'
|
666
1003
|
Seahorse::Client::Request.new(handlers, context)
|
667
1004
|
end
|
668
1005
|
|
@@ -17,8 +17,16 @@ module Aws::AppIntegrationsService
|
|
17
17
|
Arn = Shapes::StringShape.new(name: 'Arn')
|
18
18
|
ClientAssociationMetadata = Shapes::MapShape.new(name: 'ClientAssociationMetadata')
|
19
19
|
ClientId = Shapes::StringShape.new(name: 'ClientId')
|
20
|
+
CreateDataIntegrationRequest = Shapes::StructureShape.new(name: 'CreateDataIntegrationRequest')
|
21
|
+
CreateDataIntegrationResponse = Shapes::StructureShape.new(name: 'CreateDataIntegrationResponse')
|
20
22
|
CreateEventIntegrationRequest = Shapes::StructureShape.new(name: 'CreateEventIntegrationRequest')
|
21
23
|
CreateEventIntegrationResponse = Shapes::StructureShape.new(name: 'CreateEventIntegrationResponse')
|
24
|
+
DataIntegrationAssociationSummary = Shapes::StructureShape.new(name: 'DataIntegrationAssociationSummary')
|
25
|
+
DataIntegrationAssociationsList = Shapes::ListShape.new(name: 'DataIntegrationAssociationsList')
|
26
|
+
DataIntegrationSummary = Shapes::StructureShape.new(name: 'DataIntegrationSummary')
|
27
|
+
DataIntegrationsList = Shapes::ListShape.new(name: 'DataIntegrationsList')
|
28
|
+
DeleteDataIntegrationRequest = Shapes::StructureShape.new(name: 'DeleteDataIntegrationRequest')
|
29
|
+
DeleteDataIntegrationResponse = Shapes::StructureShape.new(name: 'DeleteDataIntegrationResponse')
|
22
30
|
DeleteEventIntegrationRequest = Shapes::StructureShape.new(name: 'DeleteEventIntegrationRequest')
|
23
31
|
DeleteEventIntegrationResponse = Shapes::StructureShape.new(name: 'DeleteEventIntegrationResponse')
|
24
32
|
Description = Shapes::StringShape.new(name: 'Description')
|
@@ -30,11 +38,18 @@ module Aws::AppIntegrationsService
|
|
30
38
|
EventIntegrationAssociation = Shapes::StructureShape.new(name: 'EventIntegrationAssociation')
|
31
39
|
EventIntegrationAssociationsList = Shapes::ListShape.new(name: 'EventIntegrationAssociationsList')
|
32
40
|
EventIntegrationsList = Shapes::ListShape.new(name: 'EventIntegrationsList')
|
41
|
+
GetDataIntegrationRequest = Shapes::StructureShape.new(name: 'GetDataIntegrationRequest')
|
42
|
+
GetDataIntegrationResponse = Shapes::StructureShape.new(name: 'GetDataIntegrationResponse')
|
33
43
|
GetEventIntegrationRequest = Shapes::StructureShape.new(name: 'GetEventIntegrationRequest')
|
34
44
|
GetEventIntegrationResponse = Shapes::StructureShape.new(name: 'GetEventIntegrationResponse')
|
35
45
|
IdempotencyToken = Shapes::StringShape.new(name: 'IdempotencyToken')
|
46
|
+
Identifier = Shapes::StringShape.new(name: 'Identifier')
|
36
47
|
InternalServiceError = Shapes::StructureShape.new(name: 'InternalServiceError')
|
37
48
|
InvalidRequestException = Shapes::StructureShape.new(name: 'InvalidRequestException')
|
49
|
+
ListDataIntegrationAssociationsRequest = Shapes::StructureShape.new(name: 'ListDataIntegrationAssociationsRequest')
|
50
|
+
ListDataIntegrationAssociationsResponse = Shapes::StructureShape.new(name: 'ListDataIntegrationAssociationsResponse')
|
51
|
+
ListDataIntegrationsRequest = Shapes::StructureShape.new(name: 'ListDataIntegrationsRequest')
|
52
|
+
ListDataIntegrationsResponse = Shapes::StructureShape.new(name: 'ListDataIntegrationsResponse')
|
38
53
|
ListEventIntegrationAssociationsRequest = Shapes::StructureShape.new(name: 'ListEventIntegrationAssociationsRequest')
|
39
54
|
ListEventIntegrationAssociationsResponse = Shapes::StructureShape.new(name: 'ListEventIntegrationAssociationsResponse')
|
40
55
|
ListEventIntegrationsRequest = Shapes::StructureShape.new(name: 'ListEventIntegrationsRequest')
|
@@ -46,8 +61,11 @@ module Aws::AppIntegrationsService
|
|
46
61
|
Name = Shapes::StringShape.new(name: 'Name')
|
47
62
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
48
63
|
NonBlankString = Shapes::StringShape.new(name: 'NonBlankString')
|
64
|
+
Object = Shapes::StringShape.new(name: 'Object')
|
49
65
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
50
66
|
ResourceQuotaExceededException = Shapes::StructureShape.new(name: 'ResourceQuotaExceededException')
|
67
|
+
Schedule = Shapes::StringShape.new(name: 'Schedule')
|
68
|
+
ScheduleConfiguration = Shapes::StructureShape.new(name: 'ScheduleConfiguration')
|
51
69
|
Source = Shapes::StringShape.new(name: 'Source')
|
52
70
|
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
53
71
|
TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
|
@@ -59,6 +77,8 @@ module Aws::AppIntegrationsService
|
|
59
77
|
UUID = Shapes::StringShape.new(name: 'UUID')
|
60
78
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
61
79
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
80
|
+
UpdateDataIntegrationRequest = Shapes::StructureShape.new(name: 'UpdateDataIntegrationRequest')
|
81
|
+
UpdateDataIntegrationResponse = Shapes::StructureShape.new(name: 'UpdateDataIntegrationResponse')
|
62
82
|
UpdateEventIntegrationRequest = Shapes::StructureShape.new(name: 'UpdateEventIntegrationRequest')
|
63
83
|
UpdateEventIntegrationResponse = Shapes::StructureShape.new(name: 'UpdateEventIntegrationResponse')
|
64
84
|
|
@@ -68,6 +88,26 @@ module Aws::AppIntegrationsService
|
|
68
88
|
ClientAssociationMetadata.key = Shapes::ShapeRef.new(shape: NonBlankString)
|
69
89
|
ClientAssociationMetadata.value = Shapes::ShapeRef.new(shape: NonBlankString)
|
70
90
|
|
91
|
+
CreateDataIntegrationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "Name"))
|
92
|
+
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: NonBlankString, location_name: "SourceURI"))
|
95
|
+
CreateDataIntegrationRequest.add_member(:schedule_config, Shapes::ShapeRef.new(shape: ScheduleConfiguration, location_name: "ScheduleConfig"))
|
96
|
+
CreateDataIntegrationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
97
|
+
CreateDataIntegrationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
98
|
+
CreateDataIntegrationRequest.struct_class = Types::CreateDataIntegrationRequest
|
99
|
+
|
100
|
+
CreateDataIntegrationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
101
|
+
CreateDataIntegrationResponse.add_member(:id, Shapes::ShapeRef.new(shape: UUID, location_name: "Id"))
|
102
|
+
CreateDataIntegrationResponse.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
|
103
|
+
CreateDataIntegrationResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
104
|
+
CreateDataIntegrationResponse.add_member(:kms_key, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "KmsKey"))
|
105
|
+
CreateDataIntegrationResponse.add_member(:source_uri, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "SourceURI"))
|
106
|
+
CreateDataIntegrationResponse.add_member(:schedule_configuration, Shapes::ShapeRef.new(shape: ScheduleConfiguration, location_name: "ScheduleConfiguration"))
|
107
|
+
CreateDataIntegrationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
108
|
+
CreateDataIntegrationResponse.add_member(:client_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "ClientToken"))
|
109
|
+
CreateDataIntegrationResponse.struct_class = Types::CreateDataIntegrationResponse
|
110
|
+
|
71
111
|
CreateEventIntegrationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "Name"))
|
72
112
|
CreateEventIntegrationRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
73
113
|
CreateEventIntegrationRequest.add_member(:event_filter, Shapes::ShapeRef.new(shape: EventFilter, required: true, location_name: "EventFilter"))
|
@@ -79,6 +119,25 @@ module Aws::AppIntegrationsService
|
|
79
119
|
CreateEventIntegrationResponse.add_member(:event_integration_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "EventIntegrationArn"))
|
80
120
|
CreateEventIntegrationResponse.struct_class = Types::CreateEventIntegrationResponse
|
81
121
|
|
122
|
+
DataIntegrationAssociationSummary.add_member(:data_integration_association_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "DataIntegrationAssociationArn"))
|
123
|
+
DataIntegrationAssociationSummary.add_member(:data_integration_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "DataIntegrationArn"))
|
124
|
+
DataIntegrationAssociationSummary.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientId, location_name: "ClientId"))
|
125
|
+
DataIntegrationAssociationSummary.struct_class = Types::DataIntegrationAssociationSummary
|
126
|
+
|
127
|
+
DataIntegrationAssociationsList.member = Shapes::ShapeRef.new(shape: DataIntegrationAssociationSummary)
|
128
|
+
|
129
|
+
DataIntegrationSummary.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
130
|
+
DataIntegrationSummary.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
|
131
|
+
DataIntegrationSummary.add_member(:source_uri, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "SourceURI"))
|
132
|
+
DataIntegrationSummary.struct_class = Types::DataIntegrationSummary
|
133
|
+
|
134
|
+
DataIntegrationsList.member = Shapes::ShapeRef.new(shape: DataIntegrationSummary)
|
135
|
+
|
136
|
+
DeleteDataIntegrationRequest.add_member(:data_integration_identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "Identifier"))
|
137
|
+
DeleteDataIntegrationRequest.struct_class = Types::DeleteDataIntegrationRequest
|
138
|
+
|
139
|
+
DeleteDataIntegrationResponse.struct_class = Types::DeleteDataIntegrationResponse
|
140
|
+
|
82
141
|
DeleteEventIntegrationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location: "uri", location_name: "Name"))
|
83
142
|
DeleteEventIntegrationRequest.struct_class = Types::DeleteEventIntegrationRequest
|
84
143
|
|
@@ -110,6 +169,19 @@ module Aws::AppIntegrationsService
|
|
110
169
|
|
111
170
|
EventIntegrationsList.member = Shapes::ShapeRef.new(shape: EventIntegration)
|
112
171
|
|
172
|
+
GetDataIntegrationRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "Identifier"))
|
173
|
+
GetDataIntegrationRequest.struct_class = Types::GetDataIntegrationRequest
|
174
|
+
|
175
|
+
GetDataIntegrationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
176
|
+
GetDataIntegrationResponse.add_member(:id, Shapes::ShapeRef.new(shape: UUID, location_name: "Id"))
|
177
|
+
GetDataIntegrationResponse.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
|
178
|
+
GetDataIntegrationResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
179
|
+
GetDataIntegrationResponse.add_member(:kms_key, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "KmsKey"))
|
180
|
+
GetDataIntegrationResponse.add_member(:source_uri, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "SourceURI"))
|
181
|
+
GetDataIntegrationResponse.add_member(:schedule_configuration, Shapes::ShapeRef.new(shape: ScheduleConfiguration, location_name: "ScheduleConfiguration"))
|
182
|
+
GetDataIntegrationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
183
|
+
GetDataIntegrationResponse.struct_class = Types::GetDataIntegrationResponse
|
184
|
+
|
113
185
|
GetEventIntegrationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location: "uri", location_name: "Name"))
|
114
186
|
GetEventIntegrationRequest.struct_class = Types::GetEventIntegrationRequest
|
115
187
|
|
@@ -127,6 +199,23 @@ module Aws::AppIntegrationsService
|
|
127
199
|
InvalidRequestException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
128
200
|
InvalidRequestException.struct_class = Types::InvalidRequestException
|
129
201
|
|
202
|
+
ListDataIntegrationAssociationsRequest.add_member(:data_integration_identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "Identifier"))
|
203
|
+
ListDataIntegrationAssociationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
204
|
+
ListDataIntegrationAssociationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
205
|
+
ListDataIntegrationAssociationsRequest.struct_class = Types::ListDataIntegrationAssociationsRequest
|
206
|
+
|
207
|
+
ListDataIntegrationAssociationsResponse.add_member(:data_integration_associations, Shapes::ShapeRef.new(shape: DataIntegrationAssociationsList, location_name: "DataIntegrationAssociations"))
|
208
|
+
ListDataIntegrationAssociationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
209
|
+
ListDataIntegrationAssociationsResponse.struct_class = Types::ListDataIntegrationAssociationsResponse
|
210
|
+
|
211
|
+
ListDataIntegrationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
212
|
+
ListDataIntegrationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
213
|
+
ListDataIntegrationsRequest.struct_class = Types::ListDataIntegrationsRequest
|
214
|
+
|
215
|
+
ListDataIntegrationsResponse.add_member(:data_integrations, Shapes::ShapeRef.new(shape: DataIntegrationsList, location_name: "DataIntegrations"))
|
216
|
+
ListDataIntegrationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
217
|
+
ListDataIntegrationsResponse.struct_class = Types::ListDataIntegrationsResponse
|
218
|
+
|
130
219
|
ListEventIntegrationAssociationsRequest.add_member(:event_integration_name, Shapes::ShapeRef.new(shape: Name, required: true, location: "uri", location_name: "Name"))
|
131
220
|
ListEventIntegrationAssociationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
132
221
|
ListEventIntegrationAssociationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
@@ -156,6 +245,11 @@ module Aws::AppIntegrationsService
|
|
156
245
|
ResourceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
157
246
|
ResourceQuotaExceededException.struct_class = Types::ResourceQuotaExceededException
|
158
247
|
|
248
|
+
ScheduleConfiguration.add_member(:first_execution_from, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "FirstExecutionFrom"))
|
249
|
+
ScheduleConfiguration.add_member(:object, Shapes::ShapeRef.new(shape: Object, location_name: "Object"))
|
250
|
+
ScheduleConfiguration.add_member(:schedule_expression, Shapes::ShapeRef.new(shape: Schedule, location_name: "ScheduleExpression"))
|
251
|
+
ScheduleConfiguration.struct_class = Types::ScheduleConfiguration
|
252
|
+
|
159
253
|
TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
|
160
254
|
|
161
255
|
TagMap.key = Shapes::ShapeRef.new(shape: TagKey)
|
@@ -176,6 +270,13 @@ module Aws::AppIntegrationsService
|
|
176
270
|
|
177
271
|
UntagResourceResponse.struct_class = Types::UntagResourceResponse
|
178
272
|
|
273
|
+
UpdateDataIntegrationRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "Identifier"))
|
274
|
+
UpdateDataIntegrationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
|
275
|
+
UpdateDataIntegrationRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
276
|
+
UpdateDataIntegrationRequest.struct_class = Types::UpdateDataIntegrationRequest
|
277
|
+
|
278
|
+
UpdateDataIntegrationResponse.struct_class = Types::UpdateDataIntegrationResponse
|
279
|
+
|
179
280
|
UpdateEventIntegrationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location: "uri", location_name: "Name"))
|
180
281
|
UpdateEventIntegrationRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
181
282
|
UpdateEventIntegrationRequest.struct_class = Types::UpdateEventIntegrationRequest
|
@@ -200,6 +301,20 @@ module Aws::AppIntegrationsService
|
|
200
301
|
"uid" => "appintegrations-2020-07-29",
|
201
302
|
}
|
202
303
|
|
304
|
+
api.add_operation(:create_data_integration, Seahorse::Model::Operation.new.tap do |o|
|
305
|
+
o.name = "CreateDataIntegration"
|
306
|
+
o.http_method = "POST"
|
307
|
+
o.http_request_uri = "/dataIntegrations"
|
308
|
+
o.input = Shapes::ShapeRef.new(shape: CreateDataIntegrationRequest)
|
309
|
+
o.output = Shapes::ShapeRef.new(shape: CreateDataIntegrationResponse)
|
310
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
|
311
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceQuotaExceededException)
|
312
|
+
o.errors << Shapes::ShapeRef.new(shape: DuplicateResourceException)
|
313
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
314
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
315
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
316
|
+
end)
|
317
|
+
|
203
318
|
api.add_operation(:create_event_integration, Seahorse::Model::Operation.new.tap do |o|
|
204
319
|
o.name = "CreateEventIntegration"
|
205
320
|
o.http_method = "POST"
|
@@ -214,6 +329,19 @@ module Aws::AppIntegrationsService
|
|
214
329
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
215
330
|
end)
|
216
331
|
|
332
|
+
api.add_operation(:delete_data_integration, Seahorse::Model::Operation.new.tap do |o|
|
333
|
+
o.name = "DeleteDataIntegration"
|
334
|
+
o.http_method = "DELETE"
|
335
|
+
o.http_request_uri = "/dataIntegrations/{Identifier}"
|
336
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteDataIntegrationRequest)
|
337
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteDataIntegrationResponse)
|
338
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
|
339
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
340
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
341
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
342
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
343
|
+
end)
|
344
|
+
|
217
345
|
api.add_operation(:delete_event_integration, Seahorse::Model::Operation.new.tap do |o|
|
218
346
|
o.name = "DeleteEventIntegration"
|
219
347
|
o.http_method = "DELETE"
|
@@ -227,6 +355,19 @@ module Aws::AppIntegrationsService
|
|
227
355
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
228
356
|
end)
|
229
357
|
|
358
|
+
api.add_operation(:get_data_integration, Seahorse::Model::Operation.new.tap do |o|
|
359
|
+
o.name = "GetDataIntegration"
|
360
|
+
o.http_method = "GET"
|
361
|
+
o.http_request_uri = "/dataIntegrations/{Identifier}"
|
362
|
+
o.input = Shapes::ShapeRef.new(shape: GetDataIntegrationRequest)
|
363
|
+
o.output = Shapes::ShapeRef.new(shape: GetDataIntegrationResponse)
|
364
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
|
365
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
366
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
367
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
368
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
369
|
+
end)
|
370
|
+
|
230
371
|
api.add_operation(:get_event_integration, Seahorse::Model::Operation.new.tap do |o|
|
231
372
|
o.name = "GetEventIntegration"
|
232
373
|
o.http_method = "GET"
|
@@ -240,6 +381,31 @@ module Aws::AppIntegrationsService
|
|
240
381
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
241
382
|
end)
|
242
383
|
|
384
|
+
api.add_operation(:list_data_integration_associations, Seahorse::Model::Operation.new.tap do |o|
|
385
|
+
o.name = "ListDataIntegrationAssociations"
|
386
|
+
o.http_method = "GET"
|
387
|
+
o.http_request_uri = "/dataIntegrations/{Identifier}/associations"
|
388
|
+
o.input = Shapes::ShapeRef.new(shape: ListDataIntegrationAssociationsRequest)
|
389
|
+
o.output = Shapes::ShapeRef.new(shape: ListDataIntegrationAssociationsResponse)
|
390
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
|
391
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
392
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
393
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
394
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
395
|
+
end)
|
396
|
+
|
397
|
+
api.add_operation(:list_data_integrations, Seahorse::Model::Operation.new.tap do |o|
|
398
|
+
o.name = "ListDataIntegrations"
|
399
|
+
o.http_method = "GET"
|
400
|
+
o.http_request_uri = "/dataIntegrations"
|
401
|
+
o.input = Shapes::ShapeRef.new(shape: ListDataIntegrationsRequest)
|
402
|
+
o.output = Shapes::ShapeRef.new(shape: ListDataIntegrationsResponse)
|
403
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
|
404
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
405
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
406
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
407
|
+
end)
|
408
|
+
|
243
409
|
api.add_operation(:list_event_integration_associations, Seahorse::Model::Operation.new.tap do |o|
|
244
410
|
o.name = "ListEventIntegrationAssociations"
|
245
411
|
o.http_method = "GET"
|
@@ -301,6 +467,19 @@ module Aws::AppIntegrationsService
|
|
301
467
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
302
468
|
end)
|
303
469
|
|
470
|
+
api.add_operation(:update_data_integration, Seahorse::Model::Operation.new.tap do |o|
|
471
|
+
o.name = "UpdateDataIntegration"
|
472
|
+
o.http_method = "PATCH"
|
473
|
+
o.http_request_uri = "/dataIntegrations/{Identifier}"
|
474
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateDataIntegrationRequest)
|
475
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateDataIntegrationResponse)
|
476
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
|
477
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
478
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
479
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
480
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
481
|
+
end)
|
482
|
+
|
304
483
|
api.add_operation(:update_event_integration, Seahorse::Model::Operation.new.tap do |o|
|
305
484
|
o.name = "UpdateEventIntegration"
|
306
485
|
o.http_method = "PATCH"
|
@@ -23,6 +23,126 @@ 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
|
+
# @!attribute [rw] name
|
46
|
+
# The name of the DataIntegration.
|
47
|
+
# @return [String]
|
48
|
+
#
|
49
|
+
# @!attribute [rw] description
|
50
|
+
# A description of the DataIntegration.
|
51
|
+
# @return [String]
|
52
|
+
#
|
53
|
+
# @!attribute [rw] kms_key
|
54
|
+
# The KMS key for the DataIntegration.
|
55
|
+
# @return [String]
|
56
|
+
#
|
57
|
+
# @!attribute [rw] source_uri
|
58
|
+
# The URI of the data source.
|
59
|
+
# @return [String]
|
60
|
+
#
|
61
|
+
# @!attribute [rw] schedule_config
|
62
|
+
# The name of the data and how often it should be pulled from the
|
63
|
+
# source.
|
64
|
+
# @return [Types::ScheduleConfiguration]
|
65
|
+
#
|
66
|
+
# @!attribute [rw] tags
|
67
|
+
# One or more tags.
|
68
|
+
# @return [Hash<String,String>]
|
69
|
+
#
|
70
|
+
# @!attribute [rw] client_token
|
71
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
72
|
+
# idempotency of the request.
|
73
|
+
#
|
74
|
+
# **A suitable default value is auto-generated.** You should normally
|
75
|
+
# not need to pass this option.
|
76
|
+
# @return [String]
|
77
|
+
#
|
78
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/CreateDataIntegrationRequest AWS API Documentation
|
79
|
+
#
|
80
|
+
class CreateDataIntegrationRequest < Struct.new(
|
81
|
+
:name,
|
82
|
+
:description,
|
83
|
+
:kms_key,
|
84
|
+
:source_uri,
|
85
|
+
:schedule_config,
|
86
|
+
:tags,
|
87
|
+
:client_token)
|
88
|
+
SENSITIVE = []
|
89
|
+
include Aws::Structure
|
90
|
+
end
|
91
|
+
|
92
|
+
# @!attribute [rw] arn
|
93
|
+
# The Amazon Resource Name (ARN)
|
94
|
+
# @return [String]
|
95
|
+
#
|
96
|
+
# @!attribute [rw] id
|
97
|
+
# A unique identifier.
|
98
|
+
# @return [String]
|
99
|
+
#
|
100
|
+
# @!attribute [rw] name
|
101
|
+
# The name of the DataIntegration.
|
102
|
+
# @return [String]
|
103
|
+
#
|
104
|
+
# @!attribute [rw] description
|
105
|
+
# A description of the DataIntegration.
|
106
|
+
# @return [String]
|
107
|
+
#
|
108
|
+
# @!attribute [rw] kms_key
|
109
|
+
# The KMS key for the DataIntegration.
|
110
|
+
# @return [String]
|
111
|
+
#
|
112
|
+
# @!attribute [rw] source_uri
|
113
|
+
# The URI of the data source.
|
114
|
+
# @return [String]
|
115
|
+
#
|
116
|
+
# @!attribute [rw] schedule_configuration
|
117
|
+
# The name of the data and how often it should be pulled from the
|
118
|
+
# source.
|
119
|
+
# @return [Types::ScheduleConfiguration]
|
120
|
+
#
|
121
|
+
# @!attribute [rw] tags
|
122
|
+
# One or more tags.
|
123
|
+
# @return [Hash<String,String>]
|
124
|
+
#
|
125
|
+
# @!attribute [rw] client_token
|
126
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
127
|
+
# idempotency of the request.
|
128
|
+
# @return [String]
|
129
|
+
#
|
130
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/CreateDataIntegrationResponse AWS API Documentation
|
131
|
+
#
|
132
|
+
class CreateDataIntegrationResponse < Struct.new(
|
133
|
+
:arn,
|
134
|
+
:id,
|
135
|
+
:name,
|
136
|
+
:description,
|
137
|
+
:kms_key,
|
138
|
+
:source_uri,
|
139
|
+
:schedule_configuration,
|
140
|
+
:tags,
|
141
|
+
:client_token)
|
142
|
+
SENSITIVE = []
|
143
|
+
include Aws::Structure
|
144
|
+
end
|
145
|
+
|
26
146
|
# @note When making an API call, you may pass CreateEventIntegrationRequest
|
27
147
|
# data as a hash:
|
28
148
|
#
|
@@ -92,6 +212,78 @@ module Aws::AppIntegrationsService
|
|
92
212
|
include Aws::Structure
|
93
213
|
end
|
94
214
|
|
215
|
+
# Summary information about the DataIntegration association.
|
216
|
+
#
|
217
|
+
# @!attribute [rw] data_integration_association_arn
|
218
|
+
# The Amazon Resource Name (ARN) of the DataIntegration association.
|
219
|
+
# @return [String]
|
220
|
+
#
|
221
|
+
# @!attribute [rw] data_integration_arn
|
222
|
+
# The Amazon Resource Name (ARN)of the DataIntegration.
|
223
|
+
# @return [String]
|
224
|
+
#
|
225
|
+
# @!attribute [rw] client_id
|
226
|
+
# The identifier for teh client that is associated with the
|
227
|
+
# DataIntegration association.
|
228
|
+
# @return [String]
|
229
|
+
#
|
230
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/DataIntegrationAssociationSummary AWS API Documentation
|
231
|
+
#
|
232
|
+
class DataIntegrationAssociationSummary < Struct.new(
|
233
|
+
:data_integration_association_arn,
|
234
|
+
:data_integration_arn,
|
235
|
+
:client_id)
|
236
|
+
SENSITIVE = []
|
237
|
+
include Aws::Structure
|
238
|
+
end
|
239
|
+
|
240
|
+
# Summary information about the DataIntegration.
|
241
|
+
#
|
242
|
+
# @!attribute [rw] arn
|
243
|
+
# The Amazon Resource Name (ARN) of the DataIntegration.
|
244
|
+
# @return [String]
|
245
|
+
#
|
246
|
+
# @!attribute [rw] name
|
247
|
+
# The name of the DataIntegration.
|
248
|
+
# @return [String]
|
249
|
+
#
|
250
|
+
# @!attribute [rw] source_uri
|
251
|
+
# The URI of the data source.
|
252
|
+
# @return [String]
|
253
|
+
#
|
254
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/DataIntegrationSummary AWS API Documentation
|
255
|
+
#
|
256
|
+
class DataIntegrationSummary < Struct.new(
|
257
|
+
:arn,
|
258
|
+
:name,
|
259
|
+
:source_uri)
|
260
|
+
SENSITIVE = []
|
261
|
+
include Aws::Structure
|
262
|
+
end
|
263
|
+
|
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
|
+
# @!attribute [rw] data_integration_identifier
|
272
|
+
# A unique identifier for the DataIntegration.
|
273
|
+
# @return [String]
|
274
|
+
#
|
275
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/DeleteDataIntegrationRequest AWS API Documentation
|
276
|
+
#
|
277
|
+
class DeleteDataIntegrationRequest < Struct.new(
|
278
|
+
:data_integration_identifier)
|
279
|
+
SENSITIVE = []
|
280
|
+
include Aws::Structure
|
281
|
+
end
|
282
|
+
|
283
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/DeleteDataIntegrationResponse AWS API Documentation
|
284
|
+
#
|
285
|
+
class DeleteDataIntegrationResponse < Aws::EmptyStructure; end
|
286
|
+
|
95
287
|
# @note When making an API call, you may pass DeleteEventIntegrationRequest
|
96
288
|
# data as a hash:
|
97
289
|
#
|
@@ -229,6 +421,73 @@ module Aws::AppIntegrationsService
|
|
229
421
|
include Aws::Structure
|
230
422
|
end
|
231
423
|
|
424
|
+
# @note When making an API call, you may pass GetDataIntegrationRequest
|
425
|
+
# data as a hash:
|
426
|
+
#
|
427
|
+
# {
|
428
|
+
# identifier: "Identifier", # required
|
429
|
+
# }
|
430
|
+
#
|
431
|
+
# @!attribute [rw] identifier
|
432
|
+
# A unique identifier.
|
433
|
+
# @return [String]
|
434
|
+
#
|
435
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/GetDataIntegrationRequest AWS API Documentation
|
436
|
+
#
|
437
|
+
class GetDataIntegrationRequest < Struct.new(
|
438
|
+
:identifier)
|
439
|
+
SENSITIVE = []
|
440
|
+
include Aws::Structure
|
441
|
+
end
|
442
|
+
|
443
|
+
# @!attribute [rw] arn
|
444
|
+
# The Amazon Resource Name (ARN) for the DataIntegration.
|
445
|
+
# @return [String]
|
446
|
+
#
|
447
|
+
# @!attribute [rw] id
|
448
|
+
# A unique identifier.
|
449
|
+
# @return [String]
|
450
|
+
#
|
451
|
+
# @!attribute [rw] name
|
452
|
+
# The name of the DataIntegration.
|
453
|
+
# @return [String]
|
454
|
+
#
|
455
|
+
# @!attribute [rw] description
|
456
|
+
# The KMS key for the DataIntegration.
|
457
|
+
# @return [String]
|
458
|
+
#
|
459
|
+
# @!attribute [rw] kms_key
|
460
|
+
# The KMS key for the DataIntegration.
|
461
|
+
# @return [String]
|
462
|
+
#
|
463
|
+
# @!attribute [rw] source_uri
|
464
|
+
# The URI of the data source.
|
465
|
+
# @return [String]
|
466
|
+
#
|
467
|
+
# @!attribute [rw] schedule_configuration
|
468
|
+
# The name of the data and how often it should be pulled from the
|
469
|
+
# source.
|
470
|
+
# @return [Types::ScheduleConfiguration]
|
471
|
+
#
|
472
|
+
# @!attribute [rw] tags
|
473
|
+
# One or more tags.
|
474
|
+
# @return [Hash<String,String>]
|
475
|
+
#
|
476
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/GetDataIntegrationResponse AWS API Documentation
|
477
|
+
#
|
478
|
+
class GetDataIntegrationResponse < Struct.new(
|
479
|
+
:arn,
|
480
|
+
:id,
|
481
|
+
:name,
|
482
|
+
:description,
|
483
|
+
:kms_key,
|
484
|
+
:source_uri,
|
485
|
+
:schedule_configuration,
|
486
|
+
:tags)
|
487
|
+
SENSITIVE = []
|
488
|
+
include Aws::Structure
|
489
|
+
end
|
490
|
+
|
232
491
|
# @note When making an API call, you may pass GetEventIntegrationRequest
|
233
492
|
# data as a hash:
|
234
493
|
#
|
@@ -311,6 +570,103 @@ module Aws::AppIntegrationsService
|
|
311
570
|
include Aws::Structure
|
312
571
|
end
|
313
572
|
|
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
|
+
# @!attribute [rw] data_integration_identifier
|
583
|
+
# A unique identifier for the DataIntegration.
|
584
|
+
# @return [String]
|
585
|
+
#
|
586
|
+
# @!attribute [rw] next_token
|
587
|
+
# The token for the next set of results. Use the value returned in the
|
588
|
+
# previous response in the next request to retrieve the next set of
|
589
|
+
# results.
|
590
|
+
# @return [String]
|
591
|
+
#
|
592
|
+
# @!attribute [rw] max_results
|
593
|
+
# The maximum number of results to return per page.
|
594
|
+
# @return [Integer]
|
595
|
+
#
|
596
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListDataIntegrationAssociationsRequest AWS API Documentation
|
597
|
+
#
|
598
|
+
class ListDataIntegrationAssociationsRequest < Struct.new(
|
599
|
+
:data_integration_identifier,
|
600
|
+
:next_token,
|
601
|
+
:max_results)
|
602
|
+
SENSITIVE = []
|
603
|
+
include Aws::Structure
|
604
|
+
end
|
605
|
+
|
606
|
+
# @!attribute [rw] data_integration_associations
|
607
|
+
# The Amazon Resource Name (ARN) and unique ID of the DataIntegration
|
608
|
+
# association.
|
609
|
+
# @return [Array<Types::DataIntegrationAssociationSummary>]
|
610
|
+
#
|
611
|
+
# @!attribute [rw] next_token
|
612
|
+
# If there are additional results, this is the token for the next set
|
613
|
+
# of results.
|
614
|
+
# @return [String]
|
615
|
+
#
|
616
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListDataIntegrationAssociationsResponse AWS API Documentation
|
617
|
+
#
|
618
|
+
class ListDataIntegrationAssociationsResponse < Struct.new(
|
619
|
+
:data_integration_associations,
|
620
|
+
:next_token)
|
621
|
+
SENSITIVE = []
|
622
|
+
include Aws::Structure
|
623
|
+
end
|
624
|
+
|
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
|
+
# @!attribute [rw] next_token
|
634
|
+
# The token for the next set of results. Use the value returned in the
|
635
|
+
# previous response in the next request to retrieve the next set of
|
636
|
+
# results.
|
637
|
+
# @return [String]
|
638
|
+
#
|
639
|
+
# @!attribute [rw] max_results
|
640
|
+
# The maximum number of results to return per page.
|
641
|
+
# @return [Integer]
|
642
|
+
#
|
643
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListDataIntegrationsRequest AWS API Documentation
|
644
|
+
#
|
645
|
+
class ListDataIntegrationsRequest < Struct.new(
|
646
|
+
:next_token,
|
647
|
+
:max_results)
|
648
|
+
SENSITIVE = []
|
649
|
+
include Aws::Structure
|
650
|
+
end
|
651
|
+
|
652
|
+
# @!attribute [rw] data_integrations
|
653
|
+
# The DataIntegrations associated with this account.
|
654
|
+
# @return [Array<Types::DataIntegrationSummary>]
|
655
|
+
#
|
656
|
+
# @!attribute [rw] next_token
|
657
|
+
# If there are additional results, this is the token for the next set
|
658
|
+
# of results.
|
659
|
+
# @return [String]
|
660
|
+
#
|
661
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListDataIntegrationsResponse AWS API Documentation
|
662
|
+
#
|
663
|
+
class ListDataIntegrationsResponse < Struct.new(
|
664
|
+
:data_integrations,
|
665
|
+
:next_token)
|
666
|
+
SENSITIVE = []
|
667
|
+
include Aws::Structure
|
668
|
+
end
|
669
|
+
|
314
670
|
# @note When making an API call, you may pass ListEventIntegrationAssociationsRequest
|
315
671
|
# data as a hash:
|
316
672
|
#
|
@@ -464,6 +820,40 @@ module Aws::AppIntegrationsService
|
|
464
820
|
include Aws::Structure
|
465
821
|
end
|
466
822
|
|
823
|
+
# The name of the data and how often it should be pulled from the
|
824
|
+
# source.
|
825
|
+
#
|
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
|
+
# @!attribute [rw] first_execution_from
|
836
|
+
# The start date for objects to import in the first flow run.
|
837
|
+
# @return [String]
|
838
|
+
#
|
839
|
+
# @!attribute [rw] object
|
840
|
+
# The name of the object to pull from the data source.
|
841
|
+
# @return [String]
|
842
|
+
#
|
843
|
+
# @!attribute [rw] schedule_expression
|
844
|
+
# How often the data should be pulled from data source.
|
845
|
+
# @return [String]
|
846
|
+
#
|
847
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ScheduleConfiguration AWS API Documentation
|
848
|
+
#
|
849
|
+
class ScheduleConfiguration < Struct.new(
|
850
|
+
:first_execution_from,
|
851
|
+
:object,
|
852
|
+
:schedule_expression)
|
853
|
+
SENSITIVE = []
|
854
|
+
include Aws::Structure
|
855
|
+
end
|
856
|
+
|
467
857
|
# @note When making an API call, you may pass TagResourceRequest
|
468
858
|
# data as a hash:
|
469
859
|
#
|
@@ -537,6 +927,41 @@ module Aws::AppIntegrationsService
|
|
537
927
|
#
|
538
928
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
539
929
|
|
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
|
+
# @!attribute [rw] identifier
|
940
|
+
# A unique identifier for the DataIntegration.
|
941
|
+
# @return [String]
|
942
|
+
#
|
943
|
+
# @!attribute [rw] name
|
944
|
+
# The name of the DataIntegration.
|
945
|
+
# @return [String]
|
946
|
+
#
|
947
|
+
# @!attribute [rw] description
|
948
|
+
# A description of the DataIntegration.
|
949
|
+
# @return [String]
|
950
|
+
#
|
951
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/UpdateDataIntegrationRequest AWS API Documentation
|
952
|
+
#
|
953
|
+
class UpdateDataIntegrationRequest < Struct.new(
|
954
|
+
:identifier,
|
955
|
+
:name,
|
956
|
+
:description)
|
957
|
+
SENSITIVE = []
|
958
|
+
include Aws::Structure
|
959
|
+
end
|
960
|
+
|
961
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/UpdateDataIntegrationResponse AWS API Documentation
|
962
|
+
#
|
963
|
+
class UpdateDataIntegrationResponse < Aws::EmptyStructure; end
|
964
|
+
|
540
965
|
# @note When making an API call, you may pass UpdateEventIntegrationRequest
|
541
966
|
# data as a hash:
|
542
967
|
#
|
@@ -28,7 +28,7 @@ require_relative 'aws-sdk-appintegrationsservice/customizations'
|
|
28
28
|
# structure.
|
29
29
|
#
|
30
30
|
# app_integrations_service = Aws::AppIntegrationsService::Client.new
|
31
|
-
# resp = app_integrations_service.
|
31
|
+
# resp = app_integrations_service.create_data_integration(params)
|
32
32
|
#
|
33
33
|
# See {Client} for more information.
|
34
34
|
#
|
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-appintegrationsservice/customizations'
|
|
48
48
|
# @!group service
|
49
49
|
module Aws::AppIntegrationsService
|
50
50
|
|
51
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.10.0'
|
52
52
|
|
53
53
|
end
|
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.10.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: 2021-
|
11
|
+
date: 2021-11-30 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.122.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.122.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|