aws-sdk-appintegrationsservice 1.74.0 → 1.75.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appintegrationsservice/client.rb +25 -6
- data/lib/aws-sdk-appintegrationsservice/client_api.rb +9 -0
- data/lib/aws-sdk-appintegrationsservice/types.rb +44 -3
- data/lib/aws-sdk-appintegrationsservice.rb +1 -1
- data/sig/client.rbs +13 -4
- data/sig/types.rbs +14 -5
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7cb842dc6fa11741d3e538d35d73d03fbf4fcde2f415565714edc552604d8f85
|
|
4
|
+
data.tar.gz: 5c599354bca6b92cf04e1092d1bff8a9ff1b6aa190b361029e8e7484293f0aa6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d972eba3d8742da28652086c1eeabb67cc814b493891e663cae007b9c0098d278263c2a816ece536c99d18d7608330ef89b6d90c5ecf134b8fc4c5a223612965
|
|
7
|
+
data.tar.gz: e2308a066a1dea6d98d86e81bb5147c2e4eedcc1b754c19619be41f532226adb608ecaaf8390465c6fcbe1577907ece08f6dc57729971cba9aaa447181360e47
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.75.0 (2026-09-18)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds support for A2A servers via the ApplicationType and AuthConfig fields, allowing customers to register their agent-to-agent servers with API key authentication.
|
|
8
|
+
|
|
4
9
|
1.74.0 (2026-09-11)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.75.0
|
|
@@ -532,6 +532,10 @@ module Aws::AppIntegrationsService
|
|
|
532
532
|
# @option params [String] :application_type
|
|
533
533
|
# The type of application.
|
|
534
534
|
#
|
|
535
|
+
# @option params [Types::AuthConfig] :auth_config
|
|
536
|
+
# The authentication settings that Connect Customer uses when calling
|
|
537
|
+
# the external application.
|
|
538
|
+
#
|
|
535
539
|
# @return [Types::CreateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
536
540
|
#
|
|
537
541
|
# * {Types::CreateApplicationResponse#arn #arn} => String
|
|
@@ -600,7 +604,11 @@ module Aws::AppIntegrationsService
|
|
|
600
604
|
# allow: ["IframePermission"],
|
|
601
605
|
# sandbox: ["IframePermission"],
|
|
602
606
|
# },
|
|
603
|
-
# application_type: "STANDARD", # accepts STANDARD, SERVICE, MCP_SERVER
|
|
607
|
+
# application_type: "STANDARD", # accepts STANDARD, SERVICE, MCP_SERVER, A2A_SERVER
|
|
608
|
+
# auth_config: {
|
|
609
|
+
# auth_type: "API_KEY", # accepts API_KEY
|
|
610
|
+
# credential_provider_identifier: "Arn",
|
|
611
|
+
# },
|
|
604
612
|
# })
|
|
605
613
|
#
|
|
606
614
|
# @example Response structure
|
|
@@ -1023,6 +1031,7 @@ module Aws::AppIntegrationsService
|
|
|
1023
1031
|
# * {Types::GetApplicationResponse#application_config #application_config} => Types::ApplicationConfig
|
|
1024
1032
|
# * {Types::GetApplicationResponse#iframe_config #iframe_config} => Types::IframeConfig
|
|
1025
1033
|
# * {Types::GetApplicationResponse#application_type #application_type} => String
|
|
1034
|
+
# * {Types::GetApplicationResponse#auth_config #auth_config} => Types::AuthConfig
|
|
1026
1035
|
#
|
|
1027
1036
|
#
|
|
1028
1037
|
# @example Example: To get an application
|
|
@@ -1081,7 +1090,9 @@ module Aws::AppIntegrationsService
|
|
|
1081
1090
|
# resp.iframe_config.allow[0] #=> String
|
|
1082
1091
|
# resp.iframe_config.sandbox #=> Array
|
|
1083
1092
|
# resp.iframe_config.sandbox[0] #=> String
|
|
1084
|
-
# resp.application_type #=> String, one of "STANDARD", "SERVICE", "MCP_SERVER"
|
|
1093
|
+
# resp.application_type #=> String, one of "STANDARD", "SERVICE", "MCP_SERVER", "A2A_SERVER"
|
|
1094
|
+
# resp.auth_config.auth_type #=> String, one of "API_KEY"
|
|
1095
|
+
# resp.auth_config.credential_provider_identifier #=> String
|
|
1085
1096
|
#
|
|
1086
1097
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/GetApplication AWS API Documentation
|
|
1087
1098
|
#
|
|
@@ -1312,7 +1323,7 @@ module Aws::AppIntegrationsService
|
|
|
1312
1323
|
# resp = client.list_applications({
|
|
1313
1324
|
# next_token: "NextToken",
|
|
1314
1325
|
# max_results: 1,
|
|
1315
|
-
# application_type: "STANDARD", # accepts STANDARD, SERVICE, MCP_SERVER
|
|
1326
|
+
# application_type: "STANDARD", # accepts STANDARD, SERVICE, MCP_SERVER, A2A_SERVER
|
|
1316
1327
|
# })
|
|
1317
1328
|
#
|
|
1318
1329
|
# @example Response structure
|
|
@@ -1325,7 +1336,7 @@ module Aws::AppIntegrationsService
|
|
|
1325
1336
|
# resp.applications[0].created_time #=> Time
|
|
1326
1337
|
# resp.applications[0].last_modified_time #=> Time
|
|
1327
1338
|
# resp.applications[0].is_service #=> Boolean
|
|
1328
|
-
# resp.applications[0].application_type #=> String, one of "STANDARD", "SERVICE", "MCP_SERVER"
|
|
1339
|
+
# resp.applications[0].application_type #=> String, one of "STANDARD", "SERVICE", "MCP_SERVER", "A2A_SERVER"
|
|
1329
1340
|
# resp.next_token #=> String
|
|
1330
1341
|
#
|
|
1331
1342
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListApplications AWS API Documentation
|
|
@@ -1675,6 +1686,10 @@ module Aws::AppIntegrationsService
|
|
|
1675
1686
|
# @option params [String] :application_type
|
|
1676
1687
|
# The type of application.
|
|
1677
1688
|
#
|
|
1689
|
+
# @option params [Types::AuthConfig] :auth_config
|
|
1690
|
+
# The authentication settings that Connect Customer uses when calling
|
|
1691
|
+
# the external application.
|
|
1692
|
+
#
|
|
1678
1693
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1679
1694
|
#
|
|
1680
1695
|
#
|
|
@@ -1728,7 +1743,11 @@ module Aws::AppIntegrationsService
|
|
|
1728
1743
|
# allow: ["IframePermission"],
|
|
1729
1744
|
# sandbox: ["IframePermission"],
|
|
1730
1745
|
# },
|
|
1731
|
-
# application_type: "STANDARD", # accepts STANDARD, SERVICE, MCP_SERVER
|
|
1746
|
+
# application_type: "STANDARD", # accepts STANDARD, SERVICE, MCP_SERVER, A2A_SERVER
|
|
1747
|
+
# auth_config: {
|
|
1748
|
+
# auth_type: "API_KEY", # accepts API_KEY
|
|
1749
|
+
# credential_provider_identifier: "Arn",
|
|
1750
|
+
# },
|
|
1732
1751
|
# })
|
|
1733
1752
|
#
|
|
1734
1753
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/UpdateApplication AWS API Documentation
|
|
@@ -1871,7 +1890,7 @@ module Aws::AppIntegrationsService
|
|
|
1871
1890
|
tracer: tracer
|
|
1872
1891
|
)
|
|
1873
1892
|
context[:gem_name] = 'aws-sdk-appintegrationsservice'
|
|
1874
|
-
context[:gem_version] = '1.
|
|
1893
|
+
context[:gem_version] = '1.75.0'
|
|
1875
1894
|
Seahorse::Client::Request.new(handlers, context)
|
|
1876
1895
|
end
|
|
1877
1896
|
|
|
@@ -28,6 +28,8 @@ module Aws::AppIntegrationsService
|
|
|
28
28
|
ApplicationsList = Shapes::ListShape.new(name: 'ApplicationsList')
|
|
29
29
|
Arn = Shapes::StringShape.new(name: 'Arn')
|
|
30
30
|
ArnOrUUID = Shapes::StringShape.new(name: 'ArnOrUUID')
|
|
31
|
+
AuthConfig = Shapes::StructureShape.new(name: 'AuthConfig')
|
|
32
|
+
AuthType = Shapes::StringShape.new(name: 'AuthType')
|
|
31
33
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
32
34
|
ClientAssociationMetadata = Shapes::MapShape.new(name: 'ClientAssociationMetadata')
|
|
33
35
|
ClientId = Shapes::StringShape.new(name: 'ClientId')
|
|
@@ -174,6 +176,10 @@ module Aws::AppIntegrationsService
|
|
|
174
176
|
|
|
175
177
|
ApplicationsList.member = Shapes::ShapeRef.new(shape: ApplicationSummary)
|
|
176
178
|
|
|
179
|
+
AuthConfig.add_member(:auth_type, Shapes::ShapeRef.new(shape: AuthType, location_name: "AuthType"))
|
|
180
|
+
AuthConfig.add_member(:credential_provider_identifier, Shapes::ShapeRef.new(shape: Arn, location_name: "CredentialProviderIdentifier"))
|
|
181
|
+
AuthConfig.struct_class = Types::AuthConfig
|
|
182
|
+
|
|
177
183
|
ClientAssociationMetadata.key = Shapes::ShapeRef.new(shape: NonBlankString)
|
|
178
184
|
ClientAssociationMetadata.value = Shapes::ShapeRef.new(shape: NonBlankString)
|
|
179
185
|
|
|
@@ -197,6 +203,7 @@ module Aws::AppIntegrationsService
|
|
|
197
203
|
CreateApplicationRequest.add_member(:application_config, Shapes::ShapeRef.new(shape: ApplicationConfig, location_name: "ApplicationConfig"))
|
|
198
204
|
CreateApplicationRequest.add_member(:iframe_config, Shapes::ShapeRef.new(shape: IframeConfig, location_name: "IframeConfig"))
|
|
199
205
|
CreateApplicationRequest.add_member(:application_type, Shapes::ShapeRef.new(shape: ApplicationType, location_name: "ApplicationType"))
|
|
206
|
+
CreateApplicationRequest.add_member(:auth_config, Shapes::ShapeRef.new(shape: AuthConfig, location_name: "AuthConfig"))
|
|
200
207
|
CreateApplicationRequest.struct_class = Types::CreateApplicationRequest
|
|
201
208
|
|
|
202
209
|
CreateApplicationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
|
@@ -350,6 +357,7 @@ module Aws::AppIntegrationsService
|
|
|
350
357
|
GetApplicationResponse.add_member(:application_config, Shapes::ShapeRef.new(shape: ApplicationConfig, location_name: "ApplicationConfig"))
|
|
351
358
|
GetApplicationResponse.add_member(:iframe_config, Shapes::ShapeRef.new(shape: IframeConfig, location_name: "IframeConfig"))
|
|
352
359
|
GetApplicationResponse.add_member(:application_type, Shapes::ShapeRef.new(shape: ApplicationType, location_name: "ApplicationType"))
|
|
360
|
+
GetApplicationResponse.add_member(:auth_config, Shapes::ShapeRef.new(shape: AuthConfig, location_name: "AuthConfig"))
|
|
353
361
|
GetApplicationResponse.struct_class = Types::GetApplicationResponse
|
|
354
362
|
|
|
355
363
|
GetDataIntegrationRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "Identifier"))
|
|
@@ -520,6 +528,7 @@ module Aws::AppIntegrationsService
|
|
|
520
528
|
UpdateApplicationRequest.add_member(:application_config, Shapes::ShapeRef.new(shape: ApplicationConfig, location_name: "ApplicationConfig"))
|
|
521
529
|
UpdateApplicationRequest.add_member(:iframe_config, Shapes::ShapeRef.new(shape: IframeConfig, location_name: "IframeConfig"))
|
|
522
530
|
UpdateApplicationRequest.add_member(:application_type, Shapes::ShapeRef.new(shape: ApplicationType, location_name: "ApplicationType"))
|
|
531
|
+
UpdateApplicationRequest.add_member(:auth_config, Shapes::ShapeRef.new(shape: AuthConfig, location_name: "AuthConfig"))
|
|
523
532
|
UpdateApplicationRequest.struct_class = Types::UpdateApplicationRequest
|
|
524
533
|
|
|
525
534
|
UpdateApplicationResponse.struct_class = Types::UpdateApplicationResponse
|
|
@@ -125,6 +125,29 @@ module Aws::AppIntegrationsService
|
|
|
125
125
|
include Aws::Structure
|
|
126
126
|
end
|
|
127
127
|
|
|
128
|
+
# Contains the authentication settings that Connect Customer uses to
|
|
129
|
+
# call an external application endpoint. The configuration includes the
|
|
130
|
+
# authentication type and credential location.
|
|
131
|
+
#
|
|
132
|
+
# @!attribute [rw] auth_type
|
|
133
|
+
# The type of authentication used when calling the external
|
|
134
|
+
# application.
|
|
135
|
+
# @return [String]
|
|
136
|
+
#
|
|
137
|
+
# @!attribute [rw] credential_provider_identifier
|
|
138
|
+
# The ARN of the Secrets Manager secret that stores the credentials.
|
|
139
|
+
# The secret must be accessible to Connect Customer.
|
|
140
|
+
# @return [String]
|
|
141
|
+
#
|
|
142
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/AuthConfig AWS API Documentation
|
|
143
|
+
#
|
|
144
|
+
class AuthConfig < Struct.new(
|
|
145
|
+
:auth_type,
|
|
146
|
+
:credential_provider_identifier)
|
|
147
|
+
SENSITIVE = []
|
|
148
|
+
include Aws::Structure
|
|
149
|
+
end
|
|
150
|
+
|
|
128
151
|
# The request conflicts with the current state of the resource. Verify
|
|
129
152
|
# the application's current state and retry the request.
|
|
130
153
|
#
|
|
@@ -224,6 +247,11 @@ module Aws::AppIntegrationsService
|
|
|
224
247
|
# The type of application.
|
|
225
248
|
# @return [String]
|
|
226
249
|
#
|
|
250
|
+
# @!attribute [rw] auth_config
|
|
251
|
+
# The authentication settings that Connect Customer uses when calling
|
|
252
|
+
# the external application.
|
|
253
|
+
# @return [Types::AuthConfig]
|
|
254
|
+
#
|
|
227
255
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/CreateApplicationRequest AWS API Documentation
|
|
228
256
|
#
|
|
229
257
|
class CreateApplicationRequest < Struct.new(
|
|
@@ -240,7 +268,8 @@ module Aws::AppIntegrationsService
|
|
|
240
268
|
:initialization_timeout,
|
|
241
269
|
:application_config,
|
|
242
270
|
:iframe_config,
|
|
243
|
-
:application_type
|
|
271
|
+
:application_type,
|
|
272
|
+
:auth_config)
|
|
244
273
|
SENSITIVE = []
|
|
245
274
|
include Aws::Structure
|
|
246
275
|
end
|
|
@@ -914,6 +943,11 @@ module Aws::AppIntegrationsService
|
|
|
914
943
|
# The type of application.
|
|
915
944
|
# @return [String]
|
|
916
945
|
#
|
|
946
|
+
# @!attribute [rw] auth_config
|
|
947
|
+
# The authentication settings that Connect Customer uses when calling
|
|
948
|
+
# the external application.
|
|
949
|
+
# @return [Types::AuthConfig]
|
|
950
|
+
#
|
|
917
951
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/GetApplicationResponse AWS API Documentation
|
|
918
952
|
#
|
|
919
953
|
class GetApplicationResponse < Struct.new(
|
|
@@ -933,7 +967,8 @@ module Aws::AppIntegrationsService
|
|
|
933
967
|
:initialization_timeout,
|
|
934
968
|
:application_config,
|
|
935
969
|
:iframe_config,
|
|
936
|
-
:application_type
|
|
970
|
+
:application_type,
|
|
971
|
+
:auth_config)
|
|
937
972
|
SENSITIVE = []
|
|
938
973
|
include Aws::Structure
|
|
939
974
|
end
|
|
@@ -1628,6 +1663,11 @@ module Aws::AppIntegrationsService
|
|
|
1628
1663
|
# The type of application.
|
|
1629
1664
|
# @return [String]
|
|
1630
1665
|
#
|
|
1666
|
+
# @!attribute [rw] auth_config
|
|
1667
|
+
# The authentication settings that Connect Customer uses when calling
|
|
1668
|
+
# the external application.
|
|
1669
|
+
# @return [Types::AuthConfig]
|
|
1670
|
+
#
|
|
1631
1671
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/UpdateApplicationRequest AWS API Documentation
|
|
1632
1672
|
#
|
|
1633
1673
|
class UpdateApplicationRequest < Struct.new(
|
|
@@ -1642,7 +1682,8 @@ module Aws::AppIntegrationsService
|
|
|
1642
1682
|
:initialization_timeout,
|
|
1643
1683
|
:application_config,
|
|
1644
1684
|
:iframe_config,
|
|
1645
|
-
:application_type
|
|
1685
|
+
:application_type,
|
|
1686
|
+
:auth_config)
|
|
1646
1687
|
SENSITIVE = []
|
|
1647
1688
|
include Aws::Structure
|
|
1648
1689
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -121,7 +121,11 @@ module Aws
|
|
|
121
121
|
allow: Array[::String]?,
|
|
122
122
|
sandbox: Array[::String]?
|
|
123
123
|
},
|
|
124
|
-
?application_type: ("STANDARD" | "SERVICE" | "MCP_SERVER")
|
|
124
|
+
?application_type: ("STANDARD" | "SERVICE" | "MCP_SERVER" | "A2A_SERVER"),
|
|
125
|
+
?auth_config: {
|
|
126
|
+
auth_type: ("API_KEY")?,
|
|
127
|
+
credential_provider_identifier: ::String?
|
|
128
|
+
}
|
|
125
129
|
) -> _CreateApplicationResponseSuccess
|
|
126
130
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
|
|
127
131
|
|
|
@@ -240,7 +244,8 @@ module Aws
|
|
|
240
244
|
def initialization_timeout: () -> ::Integer
|
|
241
245
|
def application_config: () -> Types::ApplicationConfig
|
|
242
246
|
def iframe_config: () -> Types::IframeConfig
|
|
243
|
-
def application_type: () -> ("STANDARD" | "SERVICE" | "MCP_SERVER")
|
|
247
|
+
def application_type: () -> ("STANDARD" | "SERVICE" | "MCP_SERVER" | "A2A_SERVER")
|
|
248
|
+
def auth_config: () -> Types::AuthConfig
|
|
244
249
|
end
|
|
245
250
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#get_application-instance_method
|
|
246
251
|
def get_application: (
|
|
@@ -304,7 +309,7 @@ module Aws
|
|
|
304
309
|
def list_applications: (
|
|
305
310
|
?next_token: ::String,
|
|
306
311
|
?max_results: ::Integer,
|
|
307
|
-
?application_type: ("STANDARD" | "SERVICE" | "MCP_SERVER")
|
|
312
|
+
?application_type: ("STANDARD" | "SERVICE" | "MCP_SERVER" | "A2A_SERVER")
|
|
308
313
|
) -> _ListApplicationsResponseSuccess
|
|
309
314
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApplicationsResponseSuccess
|
|
310
315
|
|
|
@@ -427,7 +432,11 @@ module Aws
|
|
|
427
432
|
allow: Array[::String]?,
|
|
428
433
|
sandbox: Array[::String]?
|
|
429
434
|
},
|
|
430
|
-
?application_type: ("STANDARD" | "SERVICE" | "MCP_SERVER")
|
|
435
|
+
?application_type: ("STANDARD" | "SERVICE" | "MCP_SERVER" | "A2A_SERVER"),
|
|
436
|
+
?auth_config: {
|
|
437
|
+
auth_type: ("API_KEY")?,
|
|
438
|
+
credential_provider_identifier: ::String?
|
|
439
|
+
}
|
|
431
440
|
) -> _UpdateApplicationResponseSuccess
|
|
432
441
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResponseSuccess
|
|
433
442
|
|
data/sig/types.rbs
CHANGED
|
@@ -38,7 +38,13 @@ module Aws::AppIntegrationsService
|
|
|
38
38
|
attr_accessor created_time: ::Time
|
|
39
39
|
attr_accessor last_modified_time: ::Time
|
|
40
40
|
attr_accessor is_service: bool
|
|
41
|
-
attr_accessor application_type: ("STANDARD" | "SERVICE" | "MCP_SERVER")
|
|
41
|
+
attr_accessor application_type: ("STANDARD" | "SERVICE" | "MCP_SERVER" | "A2A_SERVER")
|
|
42
|
+
SENSITIVE: []
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
class AuthConfig
|
|
46
|
+
attr_accessor auth_type: ("API_KEY")
|
|
47
|
+
attr_accessor credential_provider_identifier: ::String
|
|
42
48
|
SENSITIVE: []
|
|
43
49
|
end
|
|
44
50
|
|
|
@@ -66,7 +72,8 @@ module Aws::AppIntegrationsService
|
|
|
66
72
|
attr_accessor initialization_timeout: ::Integer
|
|
67
73
|
attr_accessor application_config: Types::ApplicationConfig
|
|
68
74
|
attr_accessor iframe_config: Types::IframeConfig
|
|
69
|
-
attr_accessor application_type: ("STANDARD" | "SERVICE" | "MCP_SERVER")
|
|
75
|
+
attr_accessor application_type: ("STANDARD" | "SERVICE" | "MCP_SERVER" | "A2A_SERVER")
|
|
76
|
+
attr_accessor auth_config: Types::AuthConfig
|
|
70
77
|
SENSITIVE: []
|
|
71
78
|
end
|
|
72
79
|
|
|
@@ -249,7 +256,8 @@ module Aws::AppIntegrationsService
|
|
|
249
256
|
attr_accessor initialization_timeout: ::Integer
|
|
250
257
|
attr_accessor application_config: Types::ApplicationConfig
|
|
251
258
|
attr_accessor iframe_config: Types::IframeConfig
|
|
252
|
-
attr_accessor application_type: ("STANDARD" | "SERVICE" | "MCP_SERVER")
|
|
259
|
+
attr_accessor application_type: ("STANDARD" | "SERVICE" | "MCP_SERVER" | "A2A_SERVER")
|
|
260
|
+
attr_accessor auth_config: Types::AuthConfig
|
|
253
261
|
SENSITIVE: []
|
|
254
262
|
end
|
|
255
263
|
|
|
@@ -325,7 +333,7 @@ module Aws::AppIntegrationsService
|
|
|
325
333
|
class ListApplicationsRequest
|
|
326
334
|
attr_accessor next_token: ::String
|
|
327
335
|
attr_accessor max_results: ::Integer
|
|
328
|
-
attr_accessor application_type: ("STANDARD" | "SERVICE" | "MCP_SERVER")
|
|
336
|
+
attr_accessor application_type: ("STANDARD" | "SERVICE" | "MCP_SERVER" | "A2A_SERVER")
|
|
329
337
|
SENSITIVE: []
|
|
330
338
|
end
|
|
331
339
|
|
|
@@ -471,7 +479,8 @@ module Aws::AppIntegrationsService
|
|
|
471
479
|
attr_accessor initialization_timeout: ::Integer
|
|
472
480
|
attr_accessor application_config: Types::ApplicationConfig
|
|
473
481
|
attr_accessor iframe_config: Types::IframeConfig
|
|
474
|
-
attr_accessor application_type: ("STANDARD" | "SERVICE" | "MCP_SERVER")
|
|
482
|
+
attr_accessor application_type: ("STANDARD" | "SERVICE" | "MCP_SERVER" | "A2A_SERVER")
|
|
483
|
+
attr_accessor auth_config: Types::AuthConfig
|
|
475
484
|
SENSITIVE: []
|
|
476
485
|
end
|
|
477
486
|
|