aws-sdk-appintegrationsservice 1.5.0 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7bee3e11e44faf743a512e4fc76006ea2f97fba5086725f3e417158531a54904
4
- data.tar.gz: 8c291cc61ccf37880e5410590e329e3059f15e62bc1635413604a43c193ca596
3
+ metadata.gz: d2cb89baa591f9c1c3b3d79b645872ca345545719c95415443e5c014543a1b33
4
+ data.tar.gz: 10a0f7c611c4bdea542c0e0372525045b4481d4a5a5f14c10b78f48c6632c2a1
5
5
  SHA512:
6
- metadata.gz: 8b367a62d22e5eb55b5cb80c65aa5497e1250e943a9ce9d21d769138197e4eafd1e92ef4698d3efae85df75e669188591cae362af73c57c80a250fa0f4a43efa
7
- data.tar.gz: 1237cd198d9e5080a5baefa562130fe7ee3f16a44e5bf2f2e346fb80e9f961a0eedc70b58dacea7eb62d1caee6713bb912c79595cbcfa8acba4a6724d1f36e87
6
+ metadata.gz: b07a294d5bfcd5bb9d52b7969cb004d9bf50576a9ed3fe580c0e9f2fc1963f864cc2feb65d7040e30f518d2882718fa5109ab73a303b28956dbd7839b136c5fa
7
+ data.tar.gz: f2cd4aa92314f75a53a63094b98b2df6c5ba11d236f6b9ec3a522589f533a68f9e61fa88776e3e2c3e016289400b56b9d29b5cf2365fdea67ef332ef1afc27ba
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.9.0 (2021-11-04)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.8.0 (2021-10-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.7.0 (2021-09-27)
15
+ ------------------
16
+
17
+ * Feature - The Amazon AppIntegrations service enables you to configure and reuse connections to external applications.
18
+
19
+ 1.6.0 (2021-09-01)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.5.0 (2021-07-30)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.5.0
1
+ 1.9.0
@@ -275,6 +275,15 @@ module Aws::AppIntegrationsService
275
275
  # ** Please note ** When response stubbing is enabled, no HTTP
276
276
  # requests are made, and retries are disabled.
277
277
  #
278
+ # @option options [Boolean] :use_dualstack_endpoint
279
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
280
+ # will be used if available.
281
+ #
282
+ # @option options [Boolean] :use_fips_endpoint
283
+ # When set to `true`, fips compatible endpoints will be used if available.
284
+ # When a `fips` region is used, the region is normalized and this config
285
+ # is set to `true`.
286
+ #
278
287
  # @option options [Boolean] :validate_params (true)
279
288
  # When `true`, request parameters are validated before
280
289
  # sending the request.
@@ -327,6 +336,94 @@ module Aws::AppIntegrationsService
327
336
 
328
337
  # @!group API Operations
329
338
 
339
+ # Creates and persists a DataIntegration resource.
340
+ #
341
+ # <note markdown="1"> You cannot create a DataIntegration association for a DataIntegration
342
+ # that has been previously associated. Use a different DataIntegration,
343
+ # or recreate the DataIntegration using the `CreateDataIntegration` API.
344
+ #
345
+ # </note>
346
+ #
347
+ # @option params [required, String] :name
348
+ # The name of the DataIntegration.
349
+ #
350
+ # @option params [String] :description
351
+ # A description of the DataIntegration.
352
+ #
353
+ # @option params [String] :kms_key
354
+ # The KMS key for the DataIntegration.
355
+ #
356
+ # @option params [String] :source_uri
357
+ # The URI of the data source.
358
+ #
359
+ # @option params [Types::ScheduleConfiguration] :schedule_config
360
+ # The name of the data and how often it should be pulled from the
361
+ # source.
362
+ #
363
+ # @option params [Hash<String,String>] :tags
364
+ # One or more tags.
365
+ #
366
+ # @option params [String] :client_token
367
+ # A unique, case-sensitive identifier that you provide to ensure the
368
+ # idempotency of the request.
369
+ #
370
+ # **A suitable default value is auto-generated.** You should normally
371
+ # not need to pass this option.**
372
+ #
373
+ # @return [Types::CreateDataIntegrationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
374
+ #
375
+ # * {Types::CreateDataIntegrationResponse#arn #arn} => String
376
+ # * {Types::CreateDataIntegrationResponse#id #id} => String
377
+ # * {Types::CreateDataIntegrationResponse#name #name} => String
378
+ # * {Types::CreateDataIntegrationResponse#description #description} => String
379
+ # * {Types::CreateDataIntegrationResponse#kms_key #kms_key} => String
380
+ # * {Types::CreateDataIntegrationResponse#source_uri #source_uri} => String
381
+ # * {Types::CreateDataIntegrationResponse#schedule_configuration #schedule_configuration} => Types::ScheduleConfiguration
382
+ # * {Types::CreateDataIntegrationResponse#tags #tags} => Hash&lt;String,String&gt;
383
+ # * {Types::CreateDataIntegrationResponse#client_token #client_token} => String
384
+ #
385
+ # @example Request syntax with placeholder values
386
+ #
387
+ # resp = client.create_data_integration({
388
+ # name: "Name", # required
389
+ # description: "Description",
390
+ # kms_key: "NonBlankString",
391
+ # source_uri: "NonBlankString",
392
+ # schedule_config: {
393
+ # first_execution_from: "NonBlankString",
394
+ # object: "Object",
395
+ # schedule_expression: "Schedule",
396
+ # },
397
+ # tags: {
398
+ # "TagKey" => "TagValue",
399
+ # },
400
+ # client_token: "IdempotencyToken",
401
+ # })
402
+ #
403
+ # @example Response structure
404
+ #
405
+ # resp.arn #=> String
406
+ # resp.id #=> String
407
+ # resp.name #=> String
408
+ # resp.description #=> String
409
+ # resp.kms_key #=> String
410
+ # resp.source_uri #=> String
411
+ # resp.schedule_configuration.first_execution_from #=> String
412
+ # resp.schedule_configuration.object #=> String
413
+ # resp.schedule_configuration.schedule_expression #=> String
414
+ # resp.tags #=> Hash
415
+ # resp.tags["TagKey"] #=> String
416
+ # resp.client_token #=> String
417
+ #
418
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/CreateDataIntegration AWS API Documentation
419
+ #
420
+ # @overload create_data_integration(params = {})
421
+ # @param [Hash] params ({})
422
+ def create_data_integration(params = {}, options = {})
423
+ req = build_request(:create_data_integration, params)
424
+ req.send_request(options)
425
+ end
426
+
330
427
  # Creates an EventIntegration, given a specified name, description, and
331
428
  # a reference to an Amazon EventBridge bus in your account and a partner
332
429
  # event source that pushes events to that bus. No objects are created in
@@ -387,6 +484,42 @@ module Aws::AppIntegrationsService
387
484
  req.send_request(options)
388
485
  end
389
486
 
487
+ # Deletes the DataIntegration. Only DataIntegrations that don't have
488
+ # any DataIntegrationAssociations can be deleted. Deleting a
489
+ # DataIntegration also deletes the underlying Amazon AppFlow flow and
490
+ # service linked role.
491
+ #
492
+ # <note markdown="1"> You cannot create a DataIntegration association for a DataIntegration
493
+ # that has been previously associated. Use a different DataIntegration,
494
+ # or recreate the DataIntegration using the [CreateDataIntegration][1]
495
+ # API.
496
+ #
497
+ # </note>
498
+ #
499
+ #
500
+ #
501
+ # [1]: https://docs.aws.amazon.com/appintegrations/latest/APIReference/API_CreateDataIntegration.html
502
+ #
503
+ # @option params [required, String] :data_integration_identifier
504
+ # A unique identifier for the DataIntegration.
505
+ #
506
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
507
+ #
508
+ # @example Request syntax with placeholder values
509
+ #
510
+ # resp = client.delete_data_integration({
511
+ # data_integration_identifier: "Identifier", # required
512
+ # })
513
+ #
514
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/DeleteDataIntegration AWS API Documentation
515
+ #
516
+ # @overload delete_data_integration(params = {})
517
+ # @param [Hash] params ({})
518
+ def delete_data_integration(params = {}, options = {})
519
+ req = build_request(:delete_data_integration, params)
520
+ req.send_request(options)
521
+ end
522
+
390
523
  # Deletes the specified existing event integration. If the event
391
524
  # integration is associated with clients, the request is rejected.
392
525
  #
@@ -410,7 +543,63 @@ module Aws::AppIntegrationsService
410
543
  req.send_request(options)
411
544
  end
412
545
 
413
- # Return information about the event integration.
546
+ # Returns information about the DataIntegration.
547
+ #
548
+ # <note markdown="1"> You cannot create a DataIntegration association for a DataIntegration
549
+ # that has been previously associated. Use a different DataIntegration,
550
+ # or recreate the DataIntegration using the [CreateDataIntegration][1]
551
+ # API.
552
+ #
553
+ # </note>
554
+ #
555
+ #
556
+ #
557
+ # [1]: https://docs.aws.amazon.com/appintegrations/latest/APIReference/API_CreateDataIntegration.html
558
+ #
559
+ # @option params [required, String] :identifier
560
+ # A unique identifier.
561
+ #
562
+ # @return [Types::GetDataIntegrationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
563
+ #
564
+ # * {Types::GetDataIntegrationResponse#arn #arn} => String
565
+ # * {Types::GetDataIntegrationResponse#id #id} => String
566
+ # * {Types::GetDataIntegrationResponse#name #name} => String
567
+ # * {Types::GetDataIntegrationResponse#description #description} => String
568
+ # * {Types::GetDataIntegrationResponse#kms_key #kms_key} => String
569
+ # * {Types::GetDataIntegrationResponse#source_uri #source_uri} => String
570
+ # * {Types::GetDataIntegrationResponse#schedule_configuration #schedule_configuration} => Types::ScheduleConfiguration
571
+ # * {Types::GetDataIntegrationResponse#tags #tags} => Hash&lt;String,String&gt;
572
+ #
573
+ # @example Request syntax with placeholder values
574
+ #
575
+ # resp = client.get_data_integration({
576
+ # identifier: "Identifier", # required
577
+ # })
578
+ #
579
+ # @example Response structure
580
+ #
581
+ # resp.arn #=> String
582
+ # resp.id #=> String
583
+ # resp.name #=> String
584
+ # resp.description #=> String
585
+ # resp.kms_key #=> String
586
+ # resp.source_uri #=> String
587
+ # resp.schedule_configuration.first_execution_from #=> String
588
+ # resp.schedule_configuration.object #=> String
589
+ # resp.schedule_configuration.schedule_expression #=> String
590
+ # resp.tags #=> Hash
591
+ # resp.tags["TagKey"] #=> String
592
+ #
593
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/GetDataIntegration AWS API Documentation
594
+ #
595
+ # @overload get_data_integration(params = {})
596
+ # @param [Hash] params ({})
597
+ def get_data_integration(params = {}, options = {})
598
+ req = build_request(:get_data_integration, params)
599
+ req.send_request(options)
600
+ end
601
+
602
+ # Returns information about the event integration.
414
603
  #
415
604
  # @option params [required, String] :name
416
605
  # The name of the event integration.
@@ -449,6 +638,111 @@ module Aws::AppIntegrationsService
449
638
  req.send_request(options)
450
639
  end
451
640
 
641
+ # Returns a paginated list of DataIntegration associations in the
642
+ # account.
643
+ #
644
+ # <note markdown="1"> You cannot create a DataIntegration association for a DataIntegration
645
+ # that has been previously associated. Use a different DataIntegration,
646
+ # or recreate the DataIntegration using the [CreateDataIntegration][1]
647
+ # API.
648
+ #
649
+ # </note>
650
+ #
651
+ #
652
+ #
653
+ # [1]: https://docs.aws.amazon.com/appintegrations/latest/APIReference/API_CreateDataIntegration.html
654
+ #
655
+ # @option params [required, String] :data_integration_identifier
656
+ # A unique identifier for the DataIntegration.
657
+ #
658
+ # @option params [String] :next_token
659
+ # The token for the next set of results. Use the value returned in the
660
+ # previous response in the next request to retrieve the next set of
661
+ # results.
662
+ #
663
+ # @option params [Integer] :max_results
664
+ # The maximum number of results to return per page.
665
+ #
666
+ # @return [Types::ListDataIntegrationAssociationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
667
+ #
668
+ # * {Types::ListDataIntegrationAssociationsResponse#data_integration_associations #data_integration_associations} => Array&lt;Types::DataIntegrationAssociationSummary&gt;
669
+ # * {Types::ListDataIntegrationAssociationsResponse#next_token #next_token} => String
670
+ #
671
+ # @example Request syntax with placeholder values
672
+ #
673
+ # resp = client.list_data_integration_associations({
674
+ # data_integration_identifier: "Identifier", # required
675
+ # next_token: "NextToken",
676
+ # max_results: 1,
677
+ # })
678
+ #
679
+ # @example Response structure
680
+ #
681
+ # resp.data_integration_associations #=> Array
682
+ # resp.data_integration_associations[0].data_integration_association_arn #=> String
683
+ # resp.data_integration_associations[0].data_integration_arn #=> String
684
+ # resp.data_integration_associations[0].client_id #=> String
685
+ # resp.next_token #=> String
686
+ #
687
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListDataIntegrationAssociations AWS API Documentation
688
+ #
689
+ # @overload list_data_integration_associations(params = {})
690
+ # @param [Hash] params ({})
691
+ def list_data_integration_associations(params = {}, options = {})
692
+ req = build_request(:list_data_integration_associations, params)
693
+ req.send_request(options)
694
+ end
695
+
696
+ # Returns a paginated list of DataIntegrations in the account.
697
+ #
698
+ # <note markdown="1"> You cannot create a DataIntegration association for a DataIntegration
699
+ # that has been previously associated. Use a different DataIntegration,
700
+ # or recreate the DataIntegration using the [CreateDataIntegration][1]
701
+ # API.
702
+ #
703
+ # </note>
704
+ #
705
+ #
706
+ #
707
+ # [1]: https://docs.aws.amazon.com/appintegrations/latest/APIReference/API_CreateDataIntegration.html
708
+ #
709
+ # @option params [String] :next_token
710
+ # The token for the next set of results. Use the value returned in the
711
+ # previous response in the next request to retrieve the next set of
712
+ # results.
713
+ #
714
+ # @option params [Integer] :max_results
715
+ # The maximum number of results to return per page.
716
+ #
717
+ # @return [Types::ListDataIntegrationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
718
+ #
719
+ # * {Types::ListDataIntegrationsResponse#data_integrations #data_integrations} => Array&lt;Types::DataIntegrationSummary&gt;
720
+ # * {Types::ListDataIntegrationsResponse#next_token #next_token} => String
721
+ #
722
+ # @example Request syntax with placeholder values
723
+ #
724
+ # resp = client.list_data_integrations({
725
+ # next_token: "NextToken",
726
+ # max_results: 1,
727
+ # })
728
+ #
729
+ # @example Response structure
730
+ #
731
+ # resp.data_integrations #=> Array
732
+ # resp.data_integrations[0].arn #=> String
733
+ # resp.data_integrations[0].name #=> String
734
+ # resp.data_integrations[0].source_uri #=> String
735
+ # resp.next_token #=> String
736
+ #
737
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListDataIntegrations AWS API Documentation
738
+ #
739
+ # @overload list_data_integrations(params = {})
740
+ # @param [Hash] params ({})
741
+ def list_data_integrations(params = {}, options = {})
742
+ req = build_request(:list_data_integrations, params)
743
+ req.send_request(options)
744
+ end
745
+
452
746
  # Returns a paginated list of event integration associations in the
453
747
  # account.
454
748
  #
@@ -623,6 +917,47 @@ module Aws::AppIntegrationsService
623
917
  req.send_request(options)
624
918
  end
625
919
 
920
+ # Updates the description of a DataIntegration.
921
+ #
922
+ # <note markdown="1"> You cannot create a DataIntegration association for a DataIntegration
923
+ # that has been previously associated. Use a different DataIntegration,
924
+ # or recreate the DataIntegration using the [CreateDataIntegration][1]
925
+ # API.
926
+ #
927
+ # </note>
928
+ #
929
+ #
930
+ #
931
+ # [1]: https://docs.aws.amazon.com/appintegrations/latest/APIReference/API_CreateDataIntegration.html
932
+ #
933
+ # @option params [required, String] :identifier
934
+ # A unique identifier for the DataIntegration.
935
+ #
936
+ # @option params [String] :name
937
+ # The name of the DataIntegration.
938
+ #
939
+ # @option params [String] :description
940
+ # A description of the DataIntegration.
941
+ #
942
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
943
+ #
944
+ # @example Request syntax with placeholder values
945
+ #
946
+ # resp = client.update_data_integration({
947
+ # identifier: "Identifier", # required
948
+ # name: "Name",
949
+ # description: "Description",
950
+ # })
951
+ #
952
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/UpdateDataIntegration AWS API Documentation
953
+ #
954
+ # @overload update_data_integration(params = {})
955
+ # @param [Hash] params ({})
956
+ def update_data_integration(params = {}, options = {})
957
+ req = build_request(:update_data_integration, params)
958
+ req.send_request(options)
959
+ end
960
+
626
961
  # Updates the description of an event integration.
627
962
  #
628
963
  # @option params [required, String] :name
@@ -662,7 +997,7 @@ module Aws::AppIntegrationsService
662
997
  params: params,
663
998
  config: config)
664
999
  context[:gem_name] = 'aws-sdk-appintegrationsservice'
665
- context[:gem_version] = '1.5.0'
1000
+ context[:gem_version] = '1.9.0'
666
1001
  Seahorse::Client::Request.new(handlers, context)
667
1002
  end
668
1003
 
@@ -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.create_event_integration(params)
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.5.0'
51
+ GEM_VERSION = '1.9.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.5.0
4
+ version: 1.9.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-07-30 00:00:00.000000000 Z
11
+ date: 2021-11-04 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.119.0
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.119.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
76
76
  requirements:
77
77
  - - ">="
78
78
  - !ruby/object:Gem::Version
79
- version: '0'
79
+ version: '2.3'
80
80
  required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - ">="