aws-sdk-appintegrationsservice 1.14.0 → 1.15.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 +7 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appintegrationsservice/client.rb +1 -1
- data/lib/aws-sdk-appintegrationsservice/endpoint_provider.rb +35 -96
- data/lib/aws-sdk-appintegrationsservice/types.rb +0 -155
- data/lib/aws-sdk-appintegrationsservice.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ccff4f33534dea2f6fe8b4e452a3168c949fd93801d1c41f710e1ec1bd00b8e6
|
4
|
+
data.tar.gz: 8661b418ea12297498500edb0b408d503c350c54f1e2d7e384468a996f6aed7e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 64d598cac2ed60ff37cdbe1c63c191bd2672c814aafe6ede9e0df8697856669fe10ddc24b28ebf8a3b0a0ad94ae97533f54f1a21abeb5c1ee50db011a1daca42
|
7
|
+
data.tar.gz: ba0e1851e8eed740a6444017f0115b7dcf9e7c4e81de5a7eeb86043cb126d82e8beedd880b36cd61f4b5fcc4cab2e20864bd5b71b53cb7694f0a34a8bc9fc137
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,13 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.15.0 (2023-01-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
10
|
+
|
4
11
|
1.14.0 (2022-10-25)
|
5
12
|
------------------
|
6
13
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.15.0
|
@@ -1029,7 +1029,7 @@ module Aws::AppIntegrationsService
|
|
1029
1029
|
params: params,
|
1030
1030
|
config: config)
|
1031
1031
|
context[:gem_name] = 'aws-sdk-appintegrationsservice'
|
1032
|
-
context[:gem_version] = '1.
|
1032
|
+
context[:gem_version] = '1.15.0'
|
1033
1033
|
Seahorse::Client::Request.new(handlers, context)
|
1034
1034
|
end
|
1035
1035
|
|
@@ -9,104 +9,43 @@
|
|
9
9
|
|
10
10
|
module Aws::AppIntegrationsService
|
11
11
|
class EndpointProvider
|
12
|
-
def
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
12
|
+
def resolve_endpoint(parameters)
|
13
|
+
region = parameters.region
|
14
|
+
use_dual_stack = parameters.use_dual_stack
|
15
|
+
use_fips = parameters.use_fips
|
16
|
+
endpoint = parameters.endpoint
|
17
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
18
|
+
if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
|
19
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
20
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
21
|
+
end
|
22
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
23
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
24
|
+
end
|
25
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
26
|
+
end
|
27
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
29
|
+
return Aws::Endpoints::Endpoint.new(url: "https://app-integrations-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
30
|
+
end
|
31
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
32
|
+
end
|
33
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
35
|
+
return Aws::Endpoints::Endpoint.new(url: "https://app-integrations-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
36
|
+
end
|
37
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
38
|
+
end
|
39
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
40
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
41
|
+
return Aws::Endpoints::Endpoint.new(url: "https://app-integrations.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
42
|
+
end
|
43
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
44
|
+
end
|
45
|
+
return Aws::Endpoints::Endpoint.new(url: "https://app-integrations.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
21
46
|
end
|
22
|
-
|
23
|
-
end
|
47
|
+
raise ArgumentError, 'No endpoint could be resolved'
|
24
48
|
|
25
|
-
def resolve_endpoint(parameters)
|
26
|
-
@provider.resolve_endpoint(parameters)
|
27
49
|
end
|
28
|
-
|
29
|
-
# @api private
|
30
|
-
RULES = <<-JSON
|
31
|
-
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
32
|
-
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
|
33
|
-
dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
|
34
|
-
cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
|
35
|
-
dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
|
36
|
-
ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
|
37
|
-
ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
|
38
|
-
ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
|
39
|
-
aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
|
40
|
-
OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
|
41
|
-
UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
|
42
|
-
dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
|
43
|
-
UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
|
44
|
-
dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
|
45
|
-
ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
|
46
|
-
IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
|
47
|
-
aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
|
48
|
-
bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
|
49
|
-
ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
|
50
|
-
Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
|
51
|
-
cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
|
52
|
-
InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
53
|
-
aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
|
54
|
-
cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
|
55
|
-
InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
|
56
|
-
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
57
|
-
UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
|
58
|
-
SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
|
59
|
-
eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
|
60
|
-
InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
61
|
-
LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
|
62
|
-
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
|
63
|
-
b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
|
64
|
-
fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
|
65
|
-
RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
|
66
|
-
ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
67
|
-
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
|
68
|
-
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
|
69
|
-
dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
70
|
-
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
71
|
-
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
72
|
-
In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
|
73
|
-
YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
|
74
|
-
YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
|
75
|
-
cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
76
|
-
dCI6eyJ1cmwiOiJodHRwczovL2FwcC1pbnRlZ3JhdGlvbnMtZmlwcy57UmVn
|
77
|
-
aW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJw
|
78
|
-
cm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQi
|
79
|
-
fV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBhbmQgRHVhbFN0
|
80
|
-
YWNrIGFyZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qg
|
81
|
-
c3VwcG9ydCBvbmUgb3IgYm90aCIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25k
|
82
|
-
aXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYi
|
83
|
-
OiJVc2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
|
84
|
-
Y29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3Ry
|
85
|
-
dWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25S
|
86
|
-
ZXN1bHQifSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1
|
87
|
-
bGVzIjpbeyJjb25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6
|
88
|
-
W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8v
|
89
|
-
YXBwLWludGVncmF0aW9ucy1maXBzLntSZWdpb259LntQYXJ0aXRpb25SZXN1
|
90
|
-
bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0s
|
91
|
-
InR5cGUiOiJlbmRwb2ludCJ9XX1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJv
|
92
|
-
ciI6IkZJUFMgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBu
|
93
|
-
b3Qgc3VwcG9ydCBGSVBTIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlv
|
94
|
-
bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVz
|
95
|
-
ZUR1YWxTdGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
|
96
|
-
ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0
|
97
|
-
cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9u
|
98
|
-
UmVzdWx0In0sInN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJl
|
99
|
-
ZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJs
|
100
|
-
IjoiaHR0cHM6Ly9hcHAtaW50ZWdyYXRpb25zLntSZWdpb259LntQYXJ0aXRp
|
101
|
-
b25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9
|
102
|
-
LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRp
|
103
|
-
b25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhp
|
104
|
-
cyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBl
|
105
|
-
IjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVy
|
106
|
-
bCI6Imh0dHBzOi8vYXBwLWludGVncmF0aW9ucy57UmVnaW9ufS57UGFydGl0
|
107
|
-
aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVy
|
108
|
-
cyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0=
|
109
|
-
|
110
|
-
JSON
|
111
50
|
end
|
112
51
|
end
|
@@ -23,25 +23,6 @@ module Aws::AppIntegrationsService
|
|
23
23
|
include Aws::Structure
|
24
24
|
end
|
25
25
|
|
26
|
-
# @note When making an API call, you may pass CreateDataIntegrationRequest
|
27
|
-
# data as a hash:
|
28
|
-
#
|
29
|
-
# {
|
30
|
-
# name: "Name", # required
|
31
|
-
# description: "Description",
|
32
|
-
# kms_key: "NonBlankString",
|
33
|
-
# source_uri: "NonBlankString",
|
34
|
-
# schedule_config: {
|
35
|
-
# first_execution_from: "NonBlankString",
|
36
|
-
# object: "Object",
|
37
|
-
# schedule_expression: "Schedule",
|
38
|
-
# },
|
39
|
-
# tags: {
|
40
|
-
# "TagKey" => "TagValue",
|
41
|
-
# },
|
42
|
-
# client_token: "IdempotencyToken",
|
43
|
-
# }
|
44
|
-
#
|
45
26
|
# @!attribute [rw] name
|
46
27
|
# The name of the DataIntegration.
|
47
28
|
# @return [String]
|
@@ -143,22 +124,6 @@ module Aws::AppIntegrationsService
|
|
143
124
|
include Aws::Structure
|
144
125
|
end
|
145
126
|
|
146
|
-
# @note When making an API call, you may pass CreateEventIntegrationRequest
|
147
|
-
# data as a hash:
|
148
|
-
#
|
149
|
-
# {
|
150
|
-
# name: "Name", # required
|
151
|
-
# description: "Description",
|
152
|
-
# event_filter: { # required
|
153
|
-
# source: "Source", # required
|
154
|
-
# },
|
155
|
-
# event_bridge_bus: "EventBridgeBus", # required
|
156
|
-
# client_token: "IdempotencyToken",
|
157
|
-
# tags: {
|
158
|
-
# "TagKey" => "TagValue",
|
159
|
-
# },
|
160
|
-
# }
|
161
|
-
#
|
162
127
|
# @!attribute [rw] name
|
163
128
|
# The name of the event integration.
|
164
129
|
# @return [String]
|
@@ -261,13 +226,6 @@ module Aws::AppIntegrationsService
|
|
261
226
|
include Aws::Structure
|
262
227
|
end
|
263
228
|
|
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
229
|
# @!attribute [rw] data_integration_identifier
|
272
230
|
# A unique identifier for the DataIntegration.
|
273
231
|
# @return [String]
|
@@ -284,13 +242,6 @@ module Aws::AppIntegrationsService
|
|
284
242
|
#
|
285
243
|
class DeleteDataIntegrationResponse < Aws::EmptyStructure; end
|
286
244
|
|
287
|
-
# @note When making an API call, you may pass DeleteEventIntegrationRequest
|
288
|
-
# data as a hash:
|
289
|
-
#
|
290
|
-
# {
|
291
|
-
# name: "Name", # required
|
292
|
-
# }
|
293
|
-
#
|
294
245
|
# @!attribute [rw] name
|
295
246
|
# The name of the event integration.
|
296
247
|
# @return [String]
|
@@ -322,13 +273,6 @@ module Aws::AppIntegrationsService
|
|
322
273
|
|
323
274
|
# The event filter.
|
324
275
|
#
|
325
|
-
# @note When making an API call, you may pass EventFilter
|
326
|
-
# data as a hash:
|
327
|
-
#
|
328
|
-
# {
|
329
|
-
# source: "Source", # required
|
330
|
-
# }
|
331
|
-
#
|
332
276
|
# @!attribute [rw] source
|
333
277
|
# The source of the events.
|
334
278
|
# @return [String]
|
@@ -421,13 +365,6 @@ module Aws::AppIntegrationsService
|
|
421
365
|
include Aws::Structure
|
422
366
|
end
|
423
367
|
|
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
368
|
# @!attribute [rw] identifier
|
432
369
|
# A unique identifier.
|
433
370
|
# @return [String]
|
@@ -488,13 +425,6 @@ module Aws::AppIntegrationsService
|
|
488
425
|
include Aws::Structure
|
489
426
|
end
|
490
427
|
|
491
|
-
# @note When making an API call, you may pass GetEventIntegrationRequest
|
492
|
-
# data as a hash:
|
493
|
-
#
|
494
|
-
# {
|
495
|
-
# name: "Name", # required
|
496
|
-
# }
|
497
|
-
#
|
498
428
|
# @!attribute [rw] name
|
499
429
|
# The name of the event integration.
|
500
430
|
# @return [String]
|
@@ -570,15 +500,6 @@ module Aws::AppIntegrationsService
|
|
570
500
|
include Aws::Structure
|
571
501
|
end
|
572
502
|
|
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
503
|
# @!attribute [rw] data_integration_identifier
|
583
504
|
# A unique identifier for the DataIntegration.
|
584
505
|
# @return [String]
|
@@ -622,14 +543,6 @@ module Aws::AppIntegrationsService
|
|
622
543
|
include Aws::Structure
|
623
544
|
end
|
624
545
|
|
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
546
|
# @!attribute [rw] next_token
|
634
547
|
# The token for the next set of results. Use the value returned in the
|
635
548
|
# previous response in the next request to retrieve the next set of
|
@@ -667,15 +580,6 @@ module Aws::AppIntegrationsService
|
|
667
580
|
include Aws::Structure
|
668
581
|
end
|
669
582
|
|
670
|
-
# @note When making an API call, you may pass ListEventIntegrationAssociationsRequest
|
671
|
-
# data as a hash:
|
672
|
-
#
|
673
|
-
# {
|
674
|
-
# event_integration_name: "Name", # required
|
675
|
-
# next_token: "NextToken",
|
676
|
-
# max_results: 1,
|
677
|
-
# }
|
678
|
-
#
|
679
583
|
# @!attribute [rw] event_integration_name
|
680
584
|
# The name of the event integration.
|
681
585
|
# @return [String]
|
@@ -718,14 +622,6 @@ module Aws::AppIntegrationsService
|
|
718
622
|
include Aws::Structure
|
719
623
|
end
|
720
624
|
|
721
|
-
# @note When making an API call, you may pass ListEventIntegrationsRequest
|
722
|
-
# data as a hash:
|
723
|
-
#
|
724
|
-
# {
|
725
|
-
# next_token: "NextToken",
|
726
|
-
# max_results: 1,
|
727
|
-
# }
|
728
|
-
#
|
729
625
|
# @!attribute [rw] next_token
|
730
626
|
# The token for the next set of results. Use the value returned in the
|
731
627
|
# previous response in the next request to retrieve the next set of
|
@@ -763,13 +659,6 @@ module Aws::AppIntegrationsService
|
|
763
659
|
include Aws::Structure
|
764
660
|
end
|
765
661
|
|
766
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
767
|
-
# data as a hash:
|
768
|
-
#
|
769
|
-
# {
|
770
|
-
# resource_arn: "Arn", # required
|
771
|
-
# }
|
772
|
-
#
|
773
662
|
# @!attribute [rw] resource_arn
|
774
663
|
# The Amazon Resource Name (ARN) of the resource.
|
775
664
|
# @return [String]
|
@@ -823,15 +712,6 @@ module Aws::AppIntegrationsService
|
|
823
712
|
# The name of the data and how often it should be pulled from the
|
824
713
|
# source.
|
825
714
|
#
|
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
715
|
# @!attribute [rw] first_execution_from
|
836
716
|
# The start date for objects to import in the first flow run.
|
837
717
|
# @return [String]
|
@@ -854,16 +734,6 @@ module Aws::AppIntegrationsService
|
|
854
734
|
include Aws::Structure
|
855
735
|
end
|
856
736
|
|
857
|
-
# @note When making an API call, you may pass TagResourceRequest
|
858
|
-
# data as a hash:
|
859
|
-
#
|
860
|
-
# {
|
861
|
-
# resource_arn: "Arn", # required
|
862
|
-
# tags: { # required
|
863
|
-
# "TagKey" => "TagValue",
|
864
|
-
# },
|
865
|
-
# }
|
866
|
-
#
|
867
737
|
# @!attribute [rw] resource_arn
|
868
738
|
# The Amazon Resource Name (ARN) of the resource.
|
869
739
|
# @return [String]
|
@@ -898,14 +768,6 @@ module Aws::AppIntegrationsService
|
|
898
768
|
include Aws::Structure
|
899
769
|
end
|
900
770
|
|
901
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
902
|
-
# data as a hash:
|
903
|
-
#
|
904
|
-
# {
|
905
|
-
# resource_arn: "Arn", # required
|
906
|
-
# tag_keys: ["TagKey"], # required
|
907
|
-
# }
|
908
|
-
#
|
909
771
|
# @!attribute [rw] resource_arn
|
910
772
|
# The Amazon Resource Name (ARN) of the resource.
|
911
773
|
# @return [String]
|
@@ -927,15 +789,6 @@ module Aws::AppIntegrationsService
|
|
927
789
|
#
|
928
790
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
929
791
|
|
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
792
|
# @!attribute [rw] identifier
|
940
793
|
# A unique identifier for the DataIntegration.
|
941
794
|
# @return [String]
|
@@ -962,14 +815,6 @@ module Aws::AppIntegrationsService
|
|
962
815
|
#
|
963
816
|
class UpdateDataIntegrationResponse < Aws::EmptyStructure; end
|
964
817
|
|
965
|
-
# @note When making an API call, you may pass UpdateEventIntegrationRequest
|
966
|
-
# data as a hash:
|
967
|
-
#
|
968
|
-
# {
|
969
|
-
# name: "Name", # required
|
970
|
-
# description: "Description",
|
971
|
-
# }
|
972
|
-
#
|
973
818
|
# @!attribute [rw] name
|
974
819
|
# The name of the event integration.
|
975
820
|
# @return [String]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-appintegrationsservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.15.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-01-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|