aws-sdk-appintegrationsservice 1.60.0 → 1.61.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 +16 -1
- data/lib/aws-sdk-appintegrationsservice/client_api.rb +10 -4
- data/lib/aws-sdk-appintegrationsservice/types.rb +30 -5
- data/lib/aws-sdk-appintegrationsservice.rb +1 -1
- data/sig/client.rbs +7 -3
- data/sig/types.rbs +5 -0
- 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: 64bb96a4569774a7dae55451f233df176a694fa7d0b26cc28f90827bb4c372a1
|
|
4
|
+
data.tar.gz: a5fc85c0afbf3af736c87cc736847ea060648f4e7c2b9249755dd4844449b484
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f1854afc3c22b51bf35fadc4fe58d1128ea44ff3d7504276d7de49ca19fb9ee2976030592db7712d3cd38b6ef43fbb186d281be53ef427bb4d91660d04090ee1
|
|
7
|
+
data.tar.gz: 310de81aa6b4c91d6105e89030043a5d031b92c1c0236a690cd28e0d3bb94be62a4ee092c2c49ac029de43bdd0cc62df629d193bdae006e7805337bb97e4c7b5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.61.0 (2025-12-01)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds support for MCP servers via the ApplicationType field, allowing customers to register their Bedrock AgentCore gateways as third party applications.
|
|
8
|
+
|
|
4
9
|
1.60.0 (2025-11-21)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.61.0
|
|
@@ -531,6 +531,9 @@ module Aws::AppIntegrationsService
|
|
|
531
531
|
# @option params [Types::IframeConfig] :iframe_config
|
|
532
532
|
# The iframe configuration for the application.
|
|
533
533
|
#
|
|
534
|
+
# @option params [String] :application_type
|
|
535
|
+
# The type of application.
|
|
536
|
+
#
|
|
534
537
|
# @return [Types::CreateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
535
538
|
#
|
|
536
539
|
# * {Types::CreateApplicationResponse#arn #arn} => String
|
|
@@ -599,6 +602,7 @@ module Aws::AppIntegrationsService
|
|
|
599
602
|
# allow: ["IframePermission"],
|
|
600
603
|
# sandbox: ["IframePermission"],
|
|
601
604
|
# },
|
|
605
|
+
# application_type: "STANDARD", # accepts STANDARD, SERVICE, MCP_SERVER
|
|
602
606
|
# })
|
|
603
607
|
#
|
|
604
608
|
# @example Response structure
|
|
@@ -1007,6 +1011,7 @@ module Aws::AppIntegrationsService
|
|
|
1007
1011
|
# * {Types::GetApplicationResponse#initialization_timeout #initialization_timeout} => Integer
|
|
1008
1012
|
# * {Types::GetApplicationResponse#application_config #application_config} => Types::ApplicationConfig
|
|
1009
1013
|
# * {Types::GetApplicationResponse#iframe_config #iframe_config} => Types::IframeConfig
|
|
1014
|
+
# * {Types::GetApplicationResponse#application_type #application_type} => String
|
|
1010
1015
|
#
|
|
1011
1016
|
#
|
|
1012
1017
|
# @example Example: To get an application
|
|
@@ -1065,6 +1070,7 @@ module Aws::AppIntegrationsService
|
|
|
1065
1070
|
# resp.iframe_config.allow[0] #=> String
|
|
1066
1071
|
# resp.iframe_config.sandbox #=> Array
|
|
1067
1072
|
# resp.iframe_config.sandbox[0] #=> String
|
|
1073
|
+
# resp.application_type #=> String, one of "STANDARD", "SERVICE", "MCP_SERVER"
|
|
1068
1074
|
#
|
|
1069
1075
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/GetApplication AWS API Documentation
|
|
1070
1076
|
#
|
|
@@ -1258,6 +1264,9 @@ module Aws::AppIntegrationsService
|
|
|
1258
1264
|
# @option params [Integer] :max_results
|
|
1259
1265
|
# The maximum number of results to return per page.
|
|
1260
1266
|
#
|
|
1267
|
+
# @option params [String] :application_type
|
|
1268
|
+
# The type of application.
|
|
1269
|
+
#
|
|
1261
1270
|
# @return [Types::ListApplicationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1262
1271
|
#
|
|
1263
1272
|
# * {Types::ListApplicationsResponse#applications #applications} => Array<Types::ApplicationSummary>
|
|
@@ -1292,6 +1301,7 @@ module Aws::AppIntegrationsService
|
|
|
1292
1301
|
# resp = client.list_applications({
|
|
1293
1302
|
# next_token: "NextToken",
|
|
1294
1303
|
# max_results: 1,
|
|
1304
|
+
# application_type: "STANDARD", # accepts STANDARD, SERVICE, MCP_SERVER
|
|
1295
1305
|
# })
|
|
1296
1306
|
#
|
|
1297
1307
|
# @example Response structure
|
|
@@ -1304,6 +1314,7 @@ module Aws::AppIntegrationsService
|
|
|
1304
1314
|
# resp.applications[0].created_time #=> Time
|
|
1305
1315
|
# resp.applications[0].last_modified_time #=> Time
|
|
1306
1316
|
# resp.applications[0].is_service #=> Boolean
|
|
1317
|
+
# resp.applications[0].application_type #=> String, one of "STANDARD", "SERVICE", "MCP_SERVER"
|
|
1307
1318
|
# resp.next_token #=> String
|
|
1308
1319
|
#
|
|
1309
1320
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListApplications AWS API Documentation
|
|
@@ -1650,6 +1661,9 @@ module Aws::AppIntegrationsService
|
|
|
1650
1661
|
# @option params [Types::IframeConfig] :iframe_config
|
|
1651
1662
|
# The iframe configuration for the application.
|
|
1652
1663
|
#
|
|
1664
|
+
# @option params [String] :application_type
|
|
1665
|
+
# The type of application.
|
|
1666
|
+
#
|
|
1653
1667
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1654
1668
|
#
|
|
1655
1669
|
#
|
|
@@ -1703,6 +1717,7 @@ module Aws::AppIntegrationsService
|
|
|
1703
1717
|
# allow: ["IframePermission"],
|
|
1704
1718
|
# sandbox: ["IframePermission"],
|
|
1705
1719
|
# },
|
|
1720
|
+
# application_type: "STANDARD", # accepts STANDARD, SERVICE, MCP_SERVER
|
|
1706
1721
|
# })
|
|
1707
1722
|
#
|
|
1708
1723
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/UpdateApplication AWS API Documentation
|
|
@@ -1845,7 +1860,7 @@ module Aws::AppIntegrationsService
|
|
|
1845
1860
|
tracer: tracer
|
|
1846
1861
|
)
|
|
1847
1862
|
context[:gem_name] = 'aws-sdk-appintegrationsservice'
|
|
1848
|
-
context[:gem_version] = '1.
|
|
1863
|
+
context[:gem_version] = '1.61.0'
|
|
1849
1864
|
Seahorse::Client::Request.new(handlers, context)
|
|
1850
1865
|
end
|
|
1851
1866
|
|
|
@@ -24,6 +24,7 @@ module Aws::AppIntegrationsService
|
|
|
24
24
|
ApplicationSourceConfig = Shapes::StructureShape.new(name: 'ApplicationSourceConfig')
|
|
25
25
|
ApplicationSummary = Shapes::StructureShape.new(name: 'ApplicationSummary')
|
|
26
26
|
ApplicationTrustedSource = Shapes::StringShape.new(name: 'ApplicationTrustedSource')
|
|
27
|
+
ApplicationType = Shapes::StringShape.new(name: 'ApplicationType')
|
|
27
28
|
ApplicationsList = Shapes::ListShape.new(name: 'ApplicationsList')
|
|
28
29
|
Arn = Shapes::StringShape.new(name: 'Arn')
|
|
29
30
|
ArnOrUUID = Shapes::StringShape.new(name: 'ArnOrUUID')
|
|
@@ -166,7 +167,8 @@ module Aws::AppIntegrationsService
|
|
|
166
167
|
ApplicationSummary.add_member(:namespace, Shapes::ShapeRef.new(shape: ApplicationNamespace, location_name: "Namespace"))
|
|
167
168
|
ApplicationSummary.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedTime"))
|
|
168
169
|
ApplicationSummary.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
|
169
|
-
ApplicationSummary.add_member(:is_service, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsService"))
|
|
170
|
+
ApplicationSummary.add_member(:is_service, Shapes::ShapeRef.new(shape: Boolean, deprecated: true, location_name: "IsService", metadata: {"deprecatedMessage" => "IsService has been deprecated in favor of ApplicationType", "deprecatedSince" => "2025-12-01"}))
|
|
171
|
+
ApplicationSummary.add_member(:application_type, Shapes::ShapeRef.new(shape: ApplicationType, location_name: "ApplicationType"))
|
|
170
172
|
ApplicationSummary.struct_class = Types::ApplicationSummary
|
|
171
173
|
|
|
172
174
|
ApplicationsList.member = Shapes::ShapeRef.new(shape: ApplicationSummary)
|
|
@@ -186,10 +188,11 @@ module Aws::AppIntegrationsService
|
|
|
186
188
|
CreateApplicationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
187
189
|
CreateApplicationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
188
190
|
CreateApplicationRequest.add_member(:permissions, Shapes::ShapeRef.new(shape: PermissionList, location_name: "Permissions"))
|
|
189
|
-
CreateApplicationRequest.add_member(:is_service, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsService"))
|
|
191
|
+
CreateApplicationRequest.add_member(:is_service, Shapes::ShapeRef.new(shape: Boolean, deprecated: true, location_name: "IsService", metadata: {"deprecatedMessage" => "IsService has been deprecated in favor of ApplicationType", "deprecatedSince" => "2025-12-01"}))
|
|
190
192
|
CreateApplicationRequest.add_member(:initialization_timeout, Shapes::ShapeRef.new(shape: InitializationTimeout, location_name: "InitializationTimeout"))
|
|
191
193
|
CreateApplicationRequest.add_member(:application_config, Shapes::ShapeRef.new(shape: ApplicationConfig, location_name: "ApplicationConfig"))
|
|
192
194
|
CreateApplicationRequest.add_member(:iframe_config, Shapes::ShapeRef.new(shape: IframeConfig, location_name: "IframeConfig"))
|
|
195
|
+
CreateApplicationRequest.add_member(:application_type, Shapes::ShapeRef.new(shape: ApplicationType, location_name: "ApplicationType"))
|
|
193
196
|
CreateApplicationRequest.struct_class = Types::CreateApplicationRequest
|
|
194
197
|
|
|
195
198
|
CreateApplicationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
|
@@ -337,10 +340,11 @@ module Aws::AppIntegrationsService
|
|
|
337
340
|
GetApplicationResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
|
338
341
|
GetApplicationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
339
342
|
GetApplicationResponse.add_member(:permissions, Shapes::ShapeRef.new(shape: PermissionList, location_name: "Permissions"))
|
|
340
|
-
GetApplicationResponse.add_member(:is_service, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsService"))
|
|
343
|
+
GetApplicationResponse.add_member(:is_service, Shapes::ShapeRef.new(shape: Boolean, deprecated: true, location_name: "IsService", metadata: {"deprecatedMessage" => "IsService has been deprecated in favor of ApplicationType", "deprecatedSince" => "2025-12-01"}))
|
|
341
344
|
GetApplicationResponse.add_member(:initialization_timeout, Shapes::ShapeRef.new(shape: InitializationTimeout, location_name: "InitializationTimeout"))
|
|
342
345
|
GetApplicationResponse.add_member(:application_config, Shapes::ShapeRef.new(shape: ApplicationConfig, location_name: "ApplicationConfig"))
|
|
343
346
|
GetApplicationResponse.add_member(:iframe_config, Shapes::ShapeRef.new(shape: IframeConfig, location_name: "IframeConfig"))
|
|
347
|
+
GetApplicationResponse.add_member(:application_type, Shapes::ShapeRef.new(shape: ApplicationType, location_name: "ApplicationType"))
|
|
344
348
|
GetApplicationResponse.struct_class = Types::GetApplicationResponse
|
|
345
349
|
|
|
346
350
|
GetDataIntegrationRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "Identifier"))
|
|
@@ -396,6 +400,7 @@ module Aws::AppIntegrationsService
|
|
|
396
400
|
|
|
397
401
|
ListApplicationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
398
402
|
ListApplicationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
403
|
+
ListApplicationsRequest.add_member(:application_type, Shapes::ShapeRef.new(shape: ApplicationType, location: "querystring", location_name: "applicationType"))
|
|
399
404
|
ListApplicationsRequest.struct_class = Types::ListApplicationsRequest
|
|
400
405
|
|
|
401
406
|
ListApplicationsResponse.add_member(:applications, Shapes::ShapeRef.new(shape: ApplicationsList, location_name: "Applications"))
|
|
@@ -505,10 +510,11 @@ module Aws::AppIntegrationsService
|
|
|
505
510
|
UpdateApplicationRequest.add_member(:subscriptions, Shapes::ShapeRef.new(shape: SubscriptionList, deprecated: true, location_name: "Subscriptions", metadata: {"deprecatedMessage" => "Subscriptions has been replaced with Permissions"}))
|
|
506
511
|
UpdateApplicationRequest.add_member(:publications, Shapes::ShapeRef.new(shape: PublicationList, deprecated: true, location_name: "Publications", metadata: {"deprecatedMessage" => "Publications has been replaced with Permissions"}))
|
|
507
512
|
UpdateApplicationRequest.add_member(:permissions, Shapes::ShapeRef.new(shape: PermissionList, location_name: "Permissions"))
|
|
508
|
-
UpdateApplicationRequest.add_member(:is_service, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsService", metadata: {"box" => true}))
|
|
513
|
+
UpdateApplicationRequest.add_member(:is_service, Shapes::ShapeRef.new(shape: Boolean, deprecated: true, location_name: "IsService", metadata: {"box" => true, "deprecatedMessage" => "IsService has been deprecated in favor of ApplicationType", "deprecatedSince" => "2025-12-01"}))
|
|
509
514
|
UpdateApplicationRequest.add_member(:initialization_timeout, Shapes::ShapeRef.new(shape: InitializationTimeout, location_name: "InitializationTimeout"))
|
|
510
515
|
UpdateApplicationRequest.add_member(:application_config, Shapes::ShapeRef.new(shape: ApplicationConfig, location_name: "ApplicationConfig"))
|
|
511
516
|
UpdateApplicationRequest.add_member(:iframe_config, Shapes::ShapeRef.new(shape: IframeConfig, location_name: "IframeConfig"))
|
|
517
|
+
UpdateApplicationRequest.add_member(:application_type, Shapes::ShapeRef.new(shape: ApplicationType, location_name: "ApplicationType"))
|
|
512
518
|
UpdateApplicationRequest.struct_class = Types::UpdateApplicationRequest
|
|
513
519
|
|
|
514
520
|
UpdateApplicationResponse.struct_class = Types::UpdateApplicationResponse
|
|
@@ -106,6 +106,10 @@ module Aws::AppIntegrationsService
|
|
|
106
106
|
# Indicates whether the application is a service.
|
|
107
107
|
# @return [Boolean]
|
|
108
108
|
#
|
|
109
|
+
# @!attribute [rw] application_type
|
|
110
|
+
# The type of application.
|
|
111
|
+
# @return [String]
|
|
112
|
+
#
|
|
109
113
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ApplicationSummary AWS API Documentation
|
|
110
114
|
#
|
|
111
115
|
class ApplicationSummary < Struct.new(
|
|
@@ -115,7 +119,8 @@ module Aws::AppIntegrationsService
|
|
|
115
119
|
:namespace,
|
|
116
120
|
:created_time,
|
|
117
121
|
:last_modified_time,
|
|
118
|
-
:is_service
|
|
122
|
+
:is_service,
|
|
123
|
+
:application_type)
|
|
119
124
|
SENSITIVE = []
|
|
120
125
|
include Aws::Structure
|
|
121
126
|
end
|
|
@@ -201,6 +206,10 @@ module Aws::AppIntegrationsService
|
|
|
201
206
|
# The iframe configuration for the application.
|
|
202
207
|
# @return [Types::IframeConfig]
|
|
203
208
|
#
|
|
209
|
+
# @!attribute [rw] application_type
|
|
210
|
+
# The type of application.
|
|
211
|
+
# @return [String]
|
|
212
|
+
#
|
|
204
213
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/CreateApplicationRequest AWS API Documentation
|
|
205
214
|
#
|
|
206
215
|
class CreateApplicationRequest < Struct.new(
|
|
@@ -216,7 +225,8 @@ module Aws::AppIntegrationsService
|
|
|
216
225
|
:is_service,
|
|
217
226
|
:initialization_timeout,
|
|
218
227
|
:application_config,
|
|
219
|
-
:iframe_config
|
|
228
|
+
:iframe_config,
|
|
229
|
+
:application_type)
|
|
220
230
|
SENSITIVE = []
|
|
221
231
|
include Aws::Structure
|
|
222
232
|
end
|
|
@@ -873,6 +883,10 @@ module Aws::AppIntegrationsService
|
|
|
873
883
|
# The iframe configuration for the application.
|
|
874
884
|
# @return [Types::IframeConfig]
|
|
875
885
|
#
|
|
886
|
+
# @!attribute [rw] application_type
|
|
887
|
+
# The type of application.
|
|
888
|
+
# @return [String]
|
|
889
|
+
#
|
|
876
890
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/GetApplicationResponse AWS API Documentation
|
|
877
891
|
#
|
|
878
892
|
class GetApplicationResponse < Struct.new(
|
|
@@ -891,7 +905,8 @@ module Aws::AppIntegrationsService
|
|
|
891
905
|
:is_service,
|
|
892
906
|
:initialization_timeout,
|
|
893
907
|
:application_config,
|
|
894
|
-
:iframe_config
|
|
908
|
+
:iframe_config,
|
|
909
|
+
:application_type)
|
|
895
910
|
SENSITIVE = []
|
|
896
911
|
include Aws::Structure
|
|
897
912
|
end
|
|
@@ -1135,11 +1150,16 @@ module Aws::AppIntegrationsService
|
|
|
1135
1150
|
# The maximum number of results to return per page.
|
|
1136
1151
|
# @return [Integer]
|
|
1137
1152
|
#
|
|
1153
|
+
# @!attribute [rw] application_type
|
|
1154
|
+
# The type of application.
|
|
1155
|
+
# @return [String]
|
|
1156
|
+
#
|
|
1138
1157
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListApplicationsRequest AWS API Documentation
|
|
1139
1158
|
#
|
|
1140
1159
|
class ListApplicationsRequest < Struct.new(
|
|
1141
1160
|
:next_token,
|
|
1142
|
-
:max_results
|
|
1161
|
+
:max_results,
|
|
1162
|
+
:application_type)
|
|
1143
1163
|
SENSITIVE = []
|
|
1144
1164
|
include Aws::Structure
|
|
1145
1165
|
end
|
|
@@ -1577,6 +1597,10 @@ module Aws::AppIntegrationsService
|
|
|
1577
1597
|
# The iframe configuration for the application.
|
|
1578
1598
|
# @return [Types::IframeConfig]
|
|
1579
1599
|
#
|
|
1600
|
+
# @!attribute [rw] application_type
|
|
1601
|
+
# The type of application.
|
|
1602
|
+
# @return [String]
|
|
1603
|
+
#
|
|
1580
1604
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/UpdateApplicationRequest AWS API Documentation
|
|
1581
1605
|
#
|
|
1582
1606
|
class UpdateApplicationRequest < Struct.new(
|
|
@@ -1590,7 +1614,8 @@ module Aws::AppIntegrationsService
|
|
|
1590
1614
|
:is_service,
|
|
1591
1615
|
:initialization_timeout,
|
|
1592
1616
|
:application_config,
|
|
1593
|
-
:iframe_config
|
|
1617
|
+
:iframe_config,
|
|
1618
|
+
:application_type)
|
|
1594
1619
|
SENSITIVE = []
|
|
1595
1620
|
include Aws::Structure
|
|
1596
1621
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -120,7 +120,8 @@ module Aws
|
|
|
120
120
|
?iframe_config: {
|
|
121
121
|
allow: Array[::String]?,
|
|
122
122
|
sandbox: Array[::String]?
|
|
123
|
-
}
|
|
123
|
+
},
|
|
124
|
+
?application_type: ("STANDARD" | "SERVICE" | "MCP_SERVER")
|
|
124
125
|
) -> _CreateApplicationResponseSuccess
|
|
125
126
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
|
|
126
127
|
|
|
@@ -249,6 +250,7 @@ module Aws
|
|
|
249
250
|
def initialization_timeout: () -> ::Integer
|
|
250
251
|
def application_config: () -> Types::ApplicationConfig
|
|
251
252
|
def iframe_config: () -> Types::IframeConfig
|
|
253
|
+
def application_type: () -> ("STANDARD" | "SERVICE" | "MCP_SERVER")
|
|
252
254
|
end
|
|
253
255
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#get_application-instance_method
|
|
254
256
|
def get_application: (
|
|
@@ -311,7 +313,8 @@ module Aws
|
|
|
311
313
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#list_applications-instance_method
|
|
312
314
|
def list_applications: (
|
|
313
315
|
?next_token: ::String,
|
|
314
|
-
?max_results: ::Integer
|
|
316
|
+
?max_results: ::Integer,
|
|
317
|
+
?application_type: ("STANDARD" | "SERVICE" | "MCP_SERVER")
|
|
315
318
|
) -> _ListApplicationsResponseSuccess
|
|
316
319
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApplicationsResponseSuccess
|
|
317
320
|
|
|
@@ -433,7 +436,8 @@ module Aws
|
|
|
433
436
|
?iframe_config: {
|
|
434
437
|
allow: Array[::String]?,
|
|
435
438
|
sandbox: Array[::String]?
|
|
436
|
-
}
|
|
439
|
+
},
|
|
440
|
+
?application_type: ("STANDARD" | "SERVICE" | "MCP_SERVER")
|
|
437
441
|
) -> _UpdateApplicationResponseSuccess
|
|
438
442
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResponseSuccess
|
|
439
443
|
|
data/sig/types.rbs
CHANGED
|
@@ -38,6 +38,7 @@ 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
42
|
SENSITIVE: []
|
|
42
43
|
end
|
|
43
44
|
|
|
@@ -60,6 +61,7 @@ module Aws::AppIntegrationsService
|
|
|
60
61
|
attr_accessor initialization_timeout: ::Integer
|
|
61
62
|
attr_accessor application_config: Types::ApplicationConfig
|
|
62
63
|
attr_accessor iframe_config: Types::IframeConfig
|
|
64
|
+
attr_accessor application_type: ("STANDARD" | "SERVICE" | "MCP_SERVER")
|
|
63
65
|
SENSITIVE: []
|
|
64
66
|
end
|
|
65
67
|
|
|
@@ -241,6 +243,7 @@ module Aws::AppIntegrationsService
|
|
|
241
243
|
attr_accessor initialization_timeout: ::Integer
|
|
242
244
|
attr_accessor application_config: Types::ApplicationConfig
|
|
243
245
|
attr_accessor iframe_config: Types::IframeConfig
|
|
246
|
+
attr_accessor application_type: ("STANDARD" | "SERVICE" | "MCP_SERVER")
|
|
244
247
|
SENSITIVE: []
|
|
245
248
|
end
|
|
246
249
|
|
|
@@ -316,6 +319,7 @@ module Aws::AppIntegrationsService
|
|
|
316
319
|
class ListApplicationsRequest
|
|
317
320
|
attr_accessor next_token: ::String
|
|
318
321
|
attr_accessor max_results: ::Integer
|
|
322
|
+
attr_accessor application_type: ("STANDARD" | "SERVICE" | "MCP_SERVER")
|
|
319
323
|
SENSITIVE: []
|
|
320
324
|
end
|
|
321
325
|
|
|
@@ -461,6 +465,7 @@ module Aws::AppIntegrationsService
|
|
|
461
465
|
attr_accessor initialization_timeout: ::Integer
|
|
462
466
|
attr_accessor application_config: Types::ApplicationConfig
|
|
463
467
|
attr_accessor iframe_config: Types::IframeConfig
|
|
468
|
+
attr_accessor application_type: ("STANDARD" | "SERVICE" | "MCP_SERVER")
|
|
464
469
|
SENSITIVE: []
|
|
465
470
|
end
|
|
466
471
|
|