aws-sdk-transfer 1.107.0 → 1.109.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-transfer/client.rb +379 -10
- data/lib/aws-sdk-transfer/client_api.rb +269 -0
- data/lib/aws-sdk-transfer/types.rb +634 -16
- data/lib/aws-sdk-transfer.rb +1 -1
- data/sig/client.rbs +111 -4
- data/sig/types.rbs +178 -0
- metadata +2 -2
@@ -55,6 +55,8 @@ module Aws::Transfer
|
|
55
55
|
CreateServerResponse = Shapes::StructureShape.new(name: 'CreateServerResponse')
|
56
56
|
CreateUserRequest = Shapes::StructureShape.new(name: 'CreateUserRequest')
|
57
57
|
CreateUserResponse = Shapes::StructureShape.new(name: 'CreateUserResponse')
|
58
|
+
CreateWebAppRequest = Shapes::StructureShape.new(name: 'CreateWebAppRequest')
|
59
|
+
CreateWebAppResponse = Shapes::StructureShape.new(name: 'CreateWebAppResponse')
|
58
60
|
CreateWorkflowRequest = Shapes::StructureShape.new(name: 'CreateWorkflowRequest')
|
59
61
|
CreateWorkflowResponse = Shapes::StructureShape.new(name: 'CreateWorkflowResponse')
|
60
62
|
CustomStepDetails = Shapes::StructureShape.new(name: 'CustomStepDetails')
|
@@ -73,6 +75,8 @@ module Aws::Transfer
|
|
73
75
|
DeleteSshPublicKeyRequest = Shapes::StructureShape.new(name: 'DeleteSshPublicKeyRequest')
|
74
76
|
DeleteStepDetails = Shapes::StructureShape.new(name: 'DeleteStepDetails')
|
75
77
|
DeleteUserRequest = Shapes::StructureShape.new(name: 'DeleteUserRequest')
|
78
|
+
DeleteWebAppCustomizationRequest = Shapes::StructureShape.new(name: 'DeleteWebAppCustomizationRequest')
|
79
|
+
DeleteWebAppRequest = Shapes::StructureShape.new(name: 'DeleteWebAppRequest')
|
76
80
|
DeleteWorkflowRequest = Shapes::StructureShape.new(name: 'DeleteWorkflowRequest')
|
77
81
|
DescribeAccessRequest = Shapes::StructureShape.new(name: 'DescribeAccessRequest')
|
78
82
|
DescribeAccessResponse = Shapes::StructureShape.new(name: 'DescribeAccessResponse')
|
@@ -94,6 +98,10 @@ module Aws::Transfer
|
|
94
98
|
DescribeServerResponse = Shapes::StructureShape.new(name: 'DescribeServerResponse')
|
95
99
|
DescribeUserRequest = Shapes::StructureShape.new(name: 'DescribeUserRequest')
|
96
100
|
DescribeUserResponse = Shapes::StructureShape.new(name: 'DescribeUserResponse')
|
101
|
+
DescribeWebAppCustomizationRequest = Shapes::StructureShape.new(name: 'DescribeWebAppCustomizationRequest')
|
102
|
+
DescribeWebAppCustomizationResponse = Shapes::StructureShape.new(name: 'DescribeWebAppCustomizationResponse')
|
103
|
+
DescribeWebAppRequest = Shapes::StructureShape.new(name: 'DescribeWebAppRequest')
|
104
|
+
DescribeWebAppResponse = Shapes::StructureShape.new(name: 'DescribeWebAppResponse')
|
97
105
|
DescribeWorkflowRequest = Shapes::StructureShape.new(name: 'DescribeWorkflowRequest')
|
98
106
|
DescribeWorkflowResponse = Shapes::StructureShape.new(name: 'DescribeWorkflowResponse')
|
99
107
|
DescribedAccess = Shapes::StructureShape.new(name: 'DescribedAccess')
|
@@ -102,10 +110,14 @@ module Aws::Transfer
|
|
102
110
|
DescribedConnector = Shapes::StructureShape.new(name: 'DescribedConnector')
|
103
111
|
DescribedExecution = Shapes::StructureShape.new(name: 'DescribedExecution')
|
104
112
|
DescribedHostKey = Shapes::StructureShape.new(name: 'DescribedHostKey')
|
113
|
+
DescribedIdentityCenterConfig = Shapes::StructureShape.new(name: 'DescribedIdentityCenterConfig')
|
105
114
|
DescribedProfile = Shapes::StructureShape.new(name: 'DescribedProfile')
|
106
115
|
DescribedSecurityPolicy = Shapes::StructureShape.new(name: 'DescribedSecurityPolicy')
|
107
116
|
DescribedServer = Shapes::StructureShape.new(name: 'DescribedServer')
|
108
117
|
DescribedUser = Shapes::StructureShape.new(name: 'DescribedUser')
|
118
|
+
DescribedWebApp = Shapes::StructureShape.new(name: 'DescribedWebApp')
|
119
|
+
DescribedWebAppCustomization = Shapes::StructureShape.new(name: 'DescribedWebAppCustomization')
|
120
|
+
DescribedWebAppIdentityProviderDetails = Shapes::UnionShape.new(name: 'DescribedWebAppIdentityProviderDetails')
|
109
121
|
DescribedWorkflow = Shapes::StructureShape.new(name: 'DescribedWorkflow')
|
110
122
|
Description = Shapes::StringShape.new(name: 'Description')
|
111
123
|
DirectoryId = Shapes::StringShape.new(name: 'DirectoryId')
|
@@ -118,6 +130,7 @@ module Aws::Transfer
|
|
118
130
|
EncryptionType = Shapes::StringShape.new(name: 'EncryptionType')
|
119
131
|
EndpointDetails = Shapes::StructureShape.new(name: 'EndpointDetails')
|
120
132
|
EndpointType = Shapes::StringShape.new(name: 'EndpointType')
|
133
|
+
EnforceMessageSigningType = Shapes::StringShape.new(name: 'EnforceMessageSigningType')
|
121
134
|
ExecutionError = Shapes::StructureShape.new(name: 'ExecutionError')
|
122
135
|
ExecutionErrorMessage = Shapes::StringShape.new(name: 'ExecutionErrorMessage')
|
123
136
|
ExecutionErrorType = Shapes::StringShape.new(name: 'ExecutionErrorType')
|
@@ -142,6 +155,9 @@ module Aws::Transfer
|
|
142
155
|
HostKeyFingerprint = Shapes::StringShape.new(name: 'HostKeyFingerprint')
|
143
156
|
HostKeyId = Shapes::StringShape.new(name: 'HostKeyId')
|
144
157
|
HostKeyType = Shapes::StringShape.new(name: 'HostKeyType')
|
158
|
+
IdentityCenterApplicationArn = Shapes::StringShape.new(name: 'IdentityCenterApplicationArn')
|
159
|
+
IdentityCenterConfig = Shapes::StructureShape.new(name: 'IdentityCenterConfig')
|
160
|
+
IdentityCenterInstanceArn = Shapes::StringShape.new(name: 'IdentityCenterInstanceArn')
|
145
161
|
IdentityProviderDetails = Shapes::StructureShape.new(name: 'IdentityProviderDetails')
|
146
162
|
IdentityProviderType = Shapes::StringShape.new(name: 'IdentityProviderType')
|
147
163
|
ImportCertificateRequest = Shapes::StructureShape.new(name: 'ImportCertificateRequest')
|
@@ -178,6 +194,8 @@ module Aws::Transfer
|
|
178
194
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
179
195
|
ListUsersRequest = Shapes::StructureShape.new(name: 'ListUsersRequest')
|
180
196
|
ListUsersResponse = Shapes::StructureShape.new(name: 'ListUsersResponse')
|
197
|
+
ListWebAppsRequest = Shapes::StructureShape.new(name: 'ListWebAppsRequest')
|
198
|
+
ListWebAppsResponse = Shapes::StructureShape.new(name: 'ListWebAppsResponse')
|
181
199
|
ListWorkflowsRequest = Shapes::StructureShape.new(name: 'ListWorkflowsRequest')
|
182
200
|
ListWorkflowsResponse = Shapes::StructureShape.new(name: 'ListWorkflowsResponse')
|
183
201
|
ListedAccess = Shapes::StructureShape.new(name: 'ListedAccess')
|
@@ -198,6 +216,8 @@ module Aws::Transfer
|
|
198
216
|
ListedServers = Shapes::ListShape.new(name: 'ListedServers')
|
199
217
|
ListedUser = Shapes::StructureShape.new(name: 'ListedUser')
|
200
218
|
ListedUsers = Shapes::ListShape.new(name: 'ListedUsers')
|
219
|
+
ListedWebApp = Shapes::StructureShape.new(name: 'ListedWebApp')
|
220
|
+
ListedWebApps = Shapes::ListShape.new(name: 'ListedWebApps')
|
201
221
|
ListedWorkflow = Shapes::StructureShape.new(name: 'ListedWorkflow')
|
202
222
|
ListedWorkflows = Shapes::ListShape.new(name: 'ListedWorkflows')
|
203
223
|
ListingId = Shapes::StringShape.new(name: 'ListingId')
|
@@ -224,6 +244,8 @@ module Aws::Transfer
|
|
224
244
|
PosixProfile = Shapes::StructureShape.new(name: 'PosixProfile')
|
225
245
|
PostAuthenticationLoginBanner = Shapes::StringShape.new(name: 'PostAuthenticationLoginBanner')
|
226
246
|
PreAuthenticationLoginBanner = Shapes::StringShape.new(name: 'PreAuthenticationLoginBanner')
|
247
|
+
PreserveContentType = Shapes::StringShape.new(name: 'PreserveContentType')
|
248
|
+
PreserveFilenameType = Shapes::StringShape.new(name: 'PreserveFilenameType')
|
227
249
|
PrivateKeyType = Shapes::StringShape.new(name: 'PrivateKeyType')
|
228
250
|
ProfileId = Shapes::StringShape.new(name: 'ProfileId')
|
229
251
|
ProfileType = Shapes::StringShape.new(name: 'ProfileType')
|
@@ -326,6 +348,12 @@ module Aws::Transfer
|
|
326
348
|
UpdateServerResponse = Shapes::StructureShape.new(name: 'UpdateServerResponse')
|
327
349
|
UpdateUserRequest = Shapes::StructureShape.new(name: 'UpdateUserRequest')
|
328
350
|
UpdateUserResponse = Shapes::StructureShape.new(name: 'UpdateUserResponse')
|
351
|
+
UpdateWebAppCustomizationRequest = Shapes::StructureShape.new(name: 'UpdateWebAppCustomizationRequest')
|
352
|
+
UpdateWebAppCustomizationResponse = Shapes::StructureShape.new(name: 'UpdateWebAppCustomizationResponse')
|
353
|
+
UpdateWebAppIdentityCenterConfig = Shapes::StructureShape.new(name: 'UpdateWebAppIdentityCenterConfig')
|
354
|
+
UpdateWebAppIdentityProviderDetails = Shapes::UnionShape.new(name: 'UpdateWebAppIdentityProviderDetails')
|
355
|
+
UpdateWebAppRequest = Shapes::StructureShape.new(name: 'UpdateWebAppRequest')
|
356
|
+
UpdateWebAppResponse = Shapes::StructureShape.new(name: 'UpdateWebAppResponse')
|
329
357
|
Url = Shapes::StringShape.new(name: 'Url')
|
330
358
|
UserCount = Shapes::IntegerShape.new(name: 'UserCount')
|
331
359
|
UserDetails = Shapes::StructureShape.new(name: 'UserDetails')
|
@@ -333,6 +361,15 @@ module Aws::Transfer
|
|
333
361
|
UserPassword = Shapes::StringShape.new(name: 'UserPassword')
|
334
362
|
VpcEndpointId = Shapes::StringShape.new(name: 'VpcEndpointId')
|
335
363
|
VpcId = Shapes::StringShape.new(name: 'VpcId')
|
364
|
+
WebAppAccessEndpoint = Shapes::StringShape.new(name: 'WebAppAccessEndpoint')
|
365
|
+
WebAppEndpoint = Shapes::StringShape.new(name: 'WebAppEndpoint')
|
366
|
+
WebAppFaviconFile = Shapes::BlobShape.new(name: 'WebAppFaviconFile')
|
367
|
+
WebAppId = Shapes::StringShape.new(name: 'WebAppId')
|
368
|
+
WebAppIdentityProviderDetails = Shapes::UnionShape.new(name: 'WebAppIdentityProviderDetails')
|
369
|
+
WebAppLogoFile = Shapes::BlobShape.new(name: 'WebAppLogoFile')
|
370
|
+
WebAppTitle = Shapes::StringShape.new(name: 'WebAppTitle')
|
371
|
+
WebAppUnitCount = Shapes::IntegerShape.new(name: 'WebAppUnitCount')
|
372
|
+
WebAppUnits = Shapes::UnionShape.new(name: 'WebAppUnits')
|
336
373
|
WorkflowDescription = Shapes::StringShape.new(name: 'WorkflowDescription')
|
337
374
|
WorkflowDetail = Shapes::StructureShape.new(name: 'WorkflowDetail')
|
338
375
|
WorkflowDetails = Shapes::StructureShape.new(name: 'WorkflowDetails')
|
@@ -356,6 +393,7 @@ module Aws::Transfer
|
|
356
393
|
As2ConnectorConfig.add_member(:mdn_signing_algorithm, Shapes::ShapeRef.new(shape: MdnSigningAlg, location_name: "MdnSigningAlgorithm"))
|
357
394
|
As2ConnectorConfig.add_member(:mdn_response, Shapes::ShapeRef.new(shape: MdnResponse, location_name: "MdnResponse"))
|
358
395
|
As2ConnectorConfig.add_member(:basic_auth_secret_id, Shapes::ShapeRef.new(shape: As2ConnectorSecretId, location_name: "BasicAuthSecretId"))
|
396
|
+
As2ConnectorConfig.add_member(:preserve_content_type, Shapes::ShapeRef.new(shape: PreserveContentType, location_name: "PreserveContentType"))
|
359
397
|
As2ConnectorConfig.struct_class = Types::As2ConnectorConfig
|
360
398
|
|
361
399
|
As2Transports.member = Shapes::ShapeRef.new(shape: As2Transport)
|
@@ -401,6 +439,8 @@ module Aws::Transfer
|
|
401
439
|
CreateAgreementRequest.add_member(:access_role, Shapes::ShapeRef.new(shape: Role, required: true, location_name: "AccessRole"))
|
402
440
|
CreateAgreementRequest.add_member(:status, Shapes::ShapeRef.new(shape: AgreementStatusType, location_name: "Status"))
|
403
441
|
CreateAgreementRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
442
|
+
CreateAgreementRequest.add_member(:preserve_filename, Shapes::ShapeRef.new(shape: PreserveFilenameType, location_name: "PreserveFilename"))
|
443
|
+
CreateAgreementRequest.add_member(:enforce_message_signing, Shapes::ShapeRef.new(shape: EnforceMessageSigningType, location_name: "EnforceMessageSigning"))
|
404
444
|
CreateAgreementRequest.struct_class = Types::CreateAgreementRequest
|
405
445
|
|
406
446
|
CreateAgreementResponse.add_member(:agreement_id, Shapes::ShapeRef.new(shape: AgreementId, required: true, location_name: "AgreementId"))
|
@@ -465,6 +505,15 @@ module Aws::Transfer
|
|
465
505
|
CreateUserResponse.add_member(:user_name, Shapes::ShapeRef.new(shape: UserName, required: true, location_name: "UserName"))
|
466
506
|
CreateUserResponse.struct_class = Types::CreateUserResponse
|
467
507
|
|
508
|
+
CreateWebAppRequest.add_member(:identity_provider_details, Shapes::ShapeRef.new(shape: WebAppIdentityProviderDetails, required: true, location_name: "IdentityProviderDetails"))
|
509
|
+
CreateWebAppRequest.add_member(:access_endpoint, Shapes::ShapeRef.new(shape: WebAppAccessEndpoint, location_name: "AccessEndpoint"))
|
510
|
+
CreateWebAppRequest.add_member(:web_app_units, Shapes::ShapeRef.new(shape: WebAppUnits, location_name: "WebAppUnits"))
|
511
|
+
CreateWebAppRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
512
|
+
CreateWebAppRequest.struct_class = Types::CreateWebAppRequest
|
513
|
+
|
514
|
+
CreateWebAppResponse.add_member(:web_app_id, Shapes::ShapeRef.new(shape: WebAppId, required: true, location_name: "WebAppId"))
|
515
|
+
CreateWebAppResponse.struct_class = Types::CreateWebAppResponse
|
516
|
+
|
468
517
|
CreateWorkflowRequest.add_member(:description, Shapes::ShapeRef.new(shape: WorkflowDescription, location_name: "Description"))
|
469
518
|
CreateWorkflowRequest.add_member(:steps, Shapes::ShapeRef.new(shape: WorkflowSteps, required: true, location_name: "Steps"))
|
470
519
|
CreateWorkflowRequest.add_member(:on_exception_steps, Shapes::ShapeRef.new(shape: WorkflowSteps, location_name: "OnExceptionSteps"))
|
@@ -524,6 +573,12 @@ module Aws::Transfer
|
|
524
573
|
DeleteUserRequest.add_member(:user_name, Shapes::ShapeRef.new(shape: UserName, required: true, location_name: "UserName"))
|
525
574
|
DeleteUserRequest.struct_class = Types::DeleteUserRequest
|
526
575
|
|
576
|
+
DeleteWebAppCustomizationRequest.add_member(:web_app_id, Shapes::ShapeRef.new(shape: WebAppId, required: true, location_name: "WebAppId"))
|
577
|
+
DeleteWebAppCustomizationRequest.struct_class = Types::DeleteWebAppCustomizationRequest
|
578
|
+
|
579
|
+
DeleteWebAppRequest.add_member(:web_app_id, Shapes::ShapeRef.new(shape: WebAppId, required: true, location_name: "WebAppId"))
|
580
|
+
DeleteWebAppRequest.struct_class = Types::DeleteWebAppRequest
|
581
|
+
|
527
582
|
DeleteWorkflowRequest.add_member(:workflow_id, Shapes::ShapeRef.new(shape: WorkflowId, required: true, location_name: "WorkflowId"))
|
528
583
|
DeleteWorkflowRequest.struct_class = Types::DeleteWorkflowRequest
|
529
584
|
|
@@ -595,6 +650,18 @@ module Aws::Transfer
|
|
595
650
|
DescribeUserResponse.add_member(:user, Shapes::ShapeRef.new(shape: DescribedUser, required: true, location_name: "User"))
|
596
651
|
DescribeUserResponse.struct_class = Types::DescribeUserResponse
|
597
652
|
|
653
|
+
DescribeWebAppCustomizationRequest.add_member(:web_app_id, Shapes::ShapeRef.new(shape: WebAppId, required: true, location_name: "WebAppId"))
|
654
|
+
DescribeWebAppCustomizationRequest.struct_class = Types::DescribeWebAppCustomizationRequest
|
655
|
+
|
656
|
+
DescribeWebAppCustomizationResponse.add_member(:web_app_customization, Shapes::ShapeRef.new(shape: DescribedWebAppCustomization, required: true, location_name: "WebAppCustomization"))
|
657
|
+
DescribeWebAppCustomizationResponse.struct_class = Types::DescribeWebAppCustomizationResponse
|
658
|
+
|
659
|
+
DescribeWebAppRequest.add_member(:web_app_id, Shapes::ShapeRef.new(shape: WebAppId, required: true, location_name: "WebAppId"))
|
660
|
+
DescribeWebAppRequest.struct_class = Types::DescribeWebAppRequest
|
661
|
+
|
662
|
+
DescribeWebAppResponse.add_member(:web_app, Shapes::ShapeRef.new(shape: DescribedWebApp, required: true, location_name: "WebApp"))
|
663
|
+
DescribeWebAppResponse.struct_class = Types::DescribeWebAppResponse
|
664
|
+
|
598
665
|
DescribeWorkflowRequest.add_member(:workflow_id, Shapes::ShapeRef.new(shape: WorkflowId, required: true, location_name: "WorkflowId"))
|
599
666
|
DescribeWorkflowRequest.struct_class = Types::DescribeWorkflowRequest
|
600
667
|
|
@@ -620,6 +687,8 @@ module Aws::Transfer
|
|
620
687
|
DescribedAgreement.add_member(:base_directory, Shapes::ShapeRef.new(shape: HomeDirectory, location_name: "BaseDirectory"))
|
621
688
|
DescribedAgreement.add_member(:access_role, Shapes::ShapeRef.new(shape: Role, location_name: "AccessRole"))
|
622
689
|
DescribedAgreement.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
690
|
+
DescribedAgreement.add_member(:preserve_filename, Shapes::ShapeRef.new(shape: PreserveFilenameType, location_name: "PreserveFilename"))
|
691
|
+
DescribedAgreement.add_member(:enforce_message_signing, Shapes::ShapeRef.new(shape: EnforceMessageSigningType, location_name: "EnforceMessageSigning"))
|
623
692
|
DescribedAgreement.struct_class = Types::DescribedAgreement
|
624
693
|
|
625
694
|
DescribedCertificate.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "Arn"))
|
@@ -669,6 +738,11 @@ module Aws::Transfer
|
|
669
738
|
DescribedHostKey.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
670
739
|
DescribedHostKey.struct_class = Types::DescribedHostKey
|
671
740
|
|
741
|
+
DescribedIdentityCenterConfig.add_member(:application_arn, Shapes::ShapeRef.new(shape: IdentityCenterApplicationArn, location_name: "ApplicationArn"))
|
742
|
+
DescribedIdentityCenterConfig.add_member(:instance_arn, Shapes::ShapeRef.new(shape: IdentityCenterInstanceArn, location_name: "InstanceArn"))
|
743
|
+
DescribedIdentityCenterConfig.add_member(:role, Shapes::ShapeRef.new(shape: Role, location_name: "Role"))
|
744
|
+
DescribedIdentityCenterConfig.struct_class = Types::DescribedIdentityCenterConfig
|
745
|
+
|
672
746
|
DescribedProfile.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "Arn"))
|
673
747
|
DescribedProfile.add_member(:profile_id, Shapes::ShapeRef.new(shape: ProfileId, location_name: "ProfileId"))
|
674
748
|
DescribedProfile.add_member(:profile_type, Shapes::ShapeRef.new(shape: ProfileType, location_name: "ProfileType"))
|
@@ -724,6 +798,28 @@ module Aws::Transfer
|
|
724
798
|
DescribedUser.add_member(:user_name, Shapes::ShapeRef.new(shape: UserName, location_name: "UserName"))
|
725
799
|
DescribedUser.struct_class = Types::DescribedUser
|
726
800
|
|
801
|
+
DescribedWebApp.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "Arn"))
|
802
|
+
DescribedWebApp.add_member(:web_app_id, Shapes::ShapeRef.new(shape: WebAppId, required: true, location_name: "WebAppId"))
|
803
|
+
DescribedWebApp.add_member(:described_identity_provider_details, Shapes::ShapeRef.new(shape: DescribedWebAppIdentityProviderDetails, location_name: "DescribedIdentityProviderDetails"))
|
804
|
+
DescribedWebApp.add_member(:access_endpoint, Shapes::ShapeRef.new(shape: WebAppAccessEndpoint, location_name: "AccessEndpoint"))
|
805
|
+
DescribedWebApp.add_member(:web_app_endpoint, Shapes::ShapeRef.new(shape: WebAppEndpoint, location_name: "WebAppEndpoint"))
|
806
|
+
DescribedWebApp.add_member(:web_app_units, Shapes::ShapeRef.new(shape: WebAppUnits, location_name: "WebAppUnits"))
|
807
|
+
DescribedWebApp.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
808
|
+
DescribedWebApp.struct_class = Types::DescribedWebApp
|
809
|
+
|
810
|
+
DescribedWebAppCustomization.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "Arn"))
|
811
|
+
DescribedWebAppCustomization.add_member(:web_app_id, Shapes::ShapeRef.new(shape: WebAppId, required: true, location_name: "WebAppId"))
|
812
|
+
DescribedWebAppCustomization.add_member(:title, Shapes::ShapeRef.new(shape: WebAppTitle, location_name: "Title"))
|
813
|
+
DescribedWebAppCustomization.add_member(:logo_file, Shapes::ShapeRef.new(shape: WebAppLogoFile, location_name: "LogoFile"))
|
814
|
+
DescribedWebAppCustomization.add_member(:favicon_file, Shapes::ShapeRef.new(shape: WebAppFaviconFile, location_name: "FaviconFile"))
|
815
|
+
DescribedWebAppCustomization.struct_class = Types::DescribedWebAppCustomization
|
816
|
+
|
817
|
+
DescribedWebAppIdentityProviderDetails.add_member(:identity_center_config, Shapes::ShapeRef.new(shape: DescribedIdentityCenterConfig, location_name: "IdentityCenterConfig"))
|
818
|
+
DescribedWebAppIdentityProviderDetails.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
819
|
+
DescribedWebAppIdentityProviderDetails.add_member_subclass(:identity_center_config, Types::DescribedWebAppIdentityProviderDetails::IdentityCenterConfig)
|
820
|
+
DescribedWebAppIdentityProviderDetails.add_member_subclass(:unknown, Types::DescribedWebAppIdentityProviderDetails::Unknown)
|
821
|
+
DescribedWebAppIdentityProviderDetails.struct_class = Types::DescribedWebAppIdentityProviderDetails
|
822
|
+
|
727
823
|
DescribedWorkflow.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "Arn"))
|
728
824
|
DescribedWorkflow.add_member(:description, Shapes::ShapeRef.new(shape: WorkflowDescription, location_name: "Description"))
|
729
825
|
DescribedWorkflow.add_member(:steps, Shapes::ShapeRef.new(shape: WorkflowSteps, location_name: "Steps"))
|
@@ -771,6 +867,10 @@ module Aws::Transfer
|
|
771
867
|
|
772
868
|
HomeDirectoryMappings.member = Shapes::ShapeRef.new(shape: HomeDirectoryMapEntry)
|
773
869
|
|
870
|
+
IdentityCenterConfig.add_member(:instance_arn, Shapes::ShapeRef.new(shape: IdentityCenterInstanceArn, location_name: "InstanceArn"))
|
871
|
+
IdentityCenterConfig.add_member(:role, Shapes::ShapeRef.new(shape: Role, location_name: "Role"))
|
872
|
+
IdentityCenterConfig.struct_class = Types::IdentityCenterConfig
|
873
|
+
|
774
874
|
IdentityProviderDetails.add_member(:url, Shapes::ShapeRef.new(shape: Url, location_name: "Url"))
|
775
875
|
IdentityProviderDetails.add_member(:invocation_role, Shapes::ShapeRef.new(shape: Role, location_name: "InvocationRole"))
|
776
876
|
IdentityProviderDetails.add_member(:directory_id, Shapes::ShapeRef.new(shape: DirectoryId, location_name: "DirectoryId"))
|
@@ -934,6 +1034,14 @@ module Aws::Transfer
|
|
934
1034
|
ListUsersResponse.add_member(:users, Shapes::ShapeRef.new(shape: ListedUsers, required: true, location_name: "Users"))
|
935
1035
|
ListUsersResponse.struct_class = Types::ListUsersResponse
|
936
1036
|
|
1037
|
+
ListWebAppsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
1038
|
+
ListWebAppsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1039
|
+
ListWebAppsRequest.struct_class = Types::ListWebAppsRequest
|
1040
|
+
|
1041
|
+
ListWebAppsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1042
|
+
ListWebAppsResponse.add_member(:web_apps, Shapes::ShapeRef.new(shape: ListedWebApps, required: true, location_name: "WebApps"))
|
1043
|
+
ListWebAppsResponse.struct_class = Types::ListWebAppsResponse
|
1044
|
+
|
937
1045
|
ListWorkflowsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
938
1046
|
ListWorkflowsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
939
1047
|
ListWorkflowsRequest.struct_class = Types::ListWorkflowsRequest
|
@@ -1028,6 +1136,14 @@ module Aws::Transfer
|
|
1028
1136
|
|
1029
1137
|
ListedUsers.member = Shapes::ShapeRef.new(shape: ListedUser)
|
1030
1138
|
|
1139
|
+
ListedWebApp.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "Arn"))
|
1140
|
+
ListedWebApp.add_member(:web_app_id, Shapes::ShapeRef.new(shape: WebAppId, required: true, location_name: "WebAppId"))
|
1141
|
+
ListedWebApp.add_member(:access_endpoint, Shapes::ShapeRef.new(shape: WebAppAccessEndpoint, location_name: "AccessEndpoint"))
|
1142
|
+
ListedWebApp.add_member(:web_app_endpoint, Shapes::ShapeRef.new(shape: WebAppEndpoint, location_name: "WebAppEndpoint"))
|
1143
|
+
ListedWebApp.struct_class = Types::ListedWebApp
|
1144
|
+
|
1145
|
+
ListedWebApps.member = Shapes::ShapeRef.new(shape: ListedWebApp)
|
1146
|
+
|
1031
1147
|
ListedWorkflow.add_member(:workflow_id, Shapes::ShapeRef.new(shape: WorkflowId, location_name: "WorkflowId"))
|
1032
1148
|
ListedWorkflow.add_member(:description, Shapes::ShapeRef.new(shape: WorkflowDescription, location_name: "Description"))
|
1033
1149
|
ListedWorkflow.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
@@ -1221,6 +1337,8 @@ module Aws::Transfer
|
|
1221
1337
|
UpdateAgreementRequest.add_member(:partner_profile_id, Shapes::ShapeRef.new(shape: ProfileId, location_name: "PartnerProfileId"))
|
1222
1338
|
UpdateAgreementRequest.add_member(:base_directory, Shapes::ShapeRef.new(shape: HomeDirectory, location_name: "BaseDirectory"))
|
1223
1339
|
UpdateAgreementRequest.add_member(:access_role, Shapes::ShapeRef.new(shape: Role, location_name: "AccessRole"))
|
1340
|
+
UpdateAgreementRequest.add_member(:preserve_filename, Shapes::ShapeRef.new(shape: PreserveFilenameType, location_name: "PreserveFilename"))
|
1341
|
+
UpdateAgreementRequest.add_member(:enforce_message_signing, Shapes::ShapeRef.new(shape: EnforceMessageSigningType, location_name: "EnforceMessageSigning"))
|
1224
1342
|
UpdateAgreementRequest.struct_class = Types::UpdateAgreementRequest
|
1225
1343
|
|
1226
1344
|
UpdateAgreementResponse.add_member(:agreement_id, Shapes::ShapeRef.new(shape: AgreementId, required: true, location_name: "AgreementId"))
|
@@ -1297,11 +1415,50 @@ module Aws::Transfer
|
|
1297
1415
|
UpdateUserResponse.add_member(:user_name, Shapes::ShapeRef.new(shape: UserName, required: true, location_name: "UserName"))
|
1298
1416
|
UpdateUserResponse.struct_class = Types::UpdateUserResponse
|
1299
1417
|
|
1418
|
+
UpdateWebAppCustomizationRequest.add_member(:web_app_id, Shapes::ShapeRef.new(shape: WebAppId, required: true, location_name: "WebAppId"))
|
1419
|
+
UpdateWebAppCustomizationRequest.add_member(:title, Shapes::ShapeRef.new(shape: WebAppTitle, location_name: "Title"))
|
1420
|
+
UpdateWebAppCustomizationRequest.add_member(:logo_file, Shapes::ShapeRef.new(shape: WebAppLogoFile, location_name: "LogoFile"))
|
1421
|
+
UpdateWebAppCustomizationRequest.add_member(:favicon_file, Shapes::ShapeRef.new(shape: WebAppFaviconFile, location_name: "FaviconFile"))
|
1422
|
+
UpdateWebAppCustomizationRequest.struct_class = Types::UpdateWebAppCustomizationRequest
|
1423
|
+
|
1424
|
+
UpdateWebAppCustomizationResponse.add_member(:web_app_id, Shapes::ShapeRef.new(shape: WebAppId, required: true, location_name: "WebAppId"))
|
1425
|
+
UpdateWebAppCustomizationResponse.struct_class = Types::UpdateWebAppCustomizationResponse
|
1426
|
+
|
1427
|
+
UpdateWebAppIdentityCenterConfig.add_member(:role, Shapes::ShapeRef.new(shape: Role, location_name: "Role"))
|
1428
|
+
UpdateWebAppIdentityCenterConfig.struct_class = Types::UpdateWebAppIdentityCenterConfig
|
1429
|
+
|
1430
|
+
UpdateWebAppIdentityProviderDetails.add_member(:identity_center_config, Shapes::ShapeRef.new(shape: UpdateWebAppIdentityCenterConfig, location_name: "IdentityCenterConfig"))
|
1431
|
+
UpdateWebAppIdentityProviderDetails.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
1432
|
+
UpdateWebAppIdentityProviderDetails.add_member_subclass(:identity_center_config, Types::UpdateWebAppIdentityProviderDetails::IdentityCenterConfig)
|
1433
|
+
UpdateWebAppIdentityProviderDetails.add_member_subclass(:unknown, Types::UpdateWebAppIdentityProviderDetails::Unknown)
|
1434
|
+
UpdateWebAppIdentityProviderDetails.struct_class = Types::UpdateWebAppIdentityProviderDetails
|
1435
|
+
|
1436
|
+
UpdateWebAppRequest.add_member(:web_app_id, Shapes::ShapeRef.new(shape: WebAppId, required: true, location_name: "WebAppId"))
|
1437
|
+
UpdateWebAppRequest.add_member(:identity_provider_details, Shapes::ShapeRef.new(shape: UpdateWebAppIdentityProviderDetails, location_name: "IdentityProviderDetails"))
|
1438
|
+
UpdateWebAppRequest.add_member(:access_endpoint, Shapes::ShapeRef.new(shape: WebAppAccessEndpoint, location_name: "AccessEndpoint"))
|
1439
|
+
UpdateWebAppRequest.add_member(:web_app_units, Shapes::ShapeRef.new(shape: WebAppUnits, location_name: "WebAppUnits"))
|
1440
|
+
UpdateWebAppRequest.struct_class = Types::UpdateWebAppRequest
|
1441
|
+
|
1442
|
+
UpdateWebAppResponse.add_member(:web_app_id, Shapes::ShapeRef.new(shape: WebAppId, required: true, location_name: "WebAppId"))
|
1443
|
+
UpdateWebAppResponse.struct_class = Types::UpdateWebAppResponse
|
1444
|
+
|
1300
1445
|
UserDetails.add_member(:user_name, Shapes::ShapeRef.new(shape: UserName, required: true, location_name: "UserName"))
|
1301
1446
|
UserDetails.add_member(:server_id, Shapes::ShapeRef.new(shape: ServerId, required: true, location_name: "ServerId"))
|
1302
1447
|
UserDetails.add_member(:session_id, Shapes::ShapeRef.new(shape: SessionId, location_name: "SessionId"))
|
1303
1448
|
UserDetails.struct_class = Types::UserDetails
|
1304
1449
|
|
1450
|
+
WebAppIdentityProviderDetails.add_member(:identity_center_config, Shapes::ShapeRef.new(shape: IdentityCenterConfig, location_name: "IdentityCenterConfig"))
|
1451
|
+
WebAppIdentityProviderDetails.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
1452
|
+
WebAppIdentityProviderDetails.add_member_subclass(:identity_center_config, Types::WebAppIdentityProviderDetails::IdentityCenterConfig)
|
1453
|
+
WebAppIdentityProviderDetails.add_member_subclass(:unknown, Types::WebAppIdentityProviderDetails::Unknown)
|
1454
|
+
WebAppIdentityProviderDetails.struct_class = Types::WebAppIdentityProviderDetails
|
1455
|
+
|
1456
|
+
WebAppUnits.add_member(:provisioned, Shapes::ShapeRef.new(shape: WebAppUnitCount, location_name: "Provisioned"))
|
1457
|
+
WebAppUnits.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
1458
|
+
WebAppUnits.add_member_subclass(:provisioned, Types::WebAppUnits::Provisioned)
|
1459
|
+
WebAppUnits.add_member_subclass(:unknown, Types::WebAppUnits::Unknown)
|
1460
|
+
WebAppUnits.struct_class = Types::WebAppUnits
|
1461
|
+
|
1305
1462
|
WorkflowDetail.add_member(:workflow_id, Shapes::ShapeRef.new(shape: WorkflowId, required: true, location_name: "WorkflowId"))
|
1306
1463
|
WorkflowDetail.add_member(:execution_role, Shapes::ShapeRef.new(shape: Role, required: true, location_name: "ExecutionRole"))
|
1307
1464
|
WorkflowDetail.struct_class = Types::WorkflowDetail
|
@@ -1424,6 +1581,19 @@ module Aws::Transfer
|
|
1424
1581
|
o.errors << Shapes::ShapeRef.new(shape: ResourceExistsException)
|
1425
1582
|
end)
|
1426
1583
|
|
1584
|
+
api.add_operation(:create_web_app, Seahorse::Model::Operation.new.tap do |o|
|
1585
|
+
o.name = "CreateWebApp"
|
1586
|
+
o.http_method = "POST"
|
1587
|
+
o.http_request_uri = "/"
|
1588
|
+
o.input = Shapes::ShapeRef.new(shape: CreateWebAppRequest)
|
1589
|
+
o.output = Shapes::ShapeRef.new(shape: CreateWebAppResponse)
|
1590
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1591
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
1592
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1593
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
|
1594
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1595
|
+
end)
|
1596
|
+
|
1427
1597
|
api.add_operation(:create_workflow, Seahorse::Model::Operation.new.tap do |o|
|
1428
1598
|
o.name = "CreateWorkflow"
|
1429
1599
|
o.http_method = "POST"
|
@@ -1549,6 +1719,33 @@ module Aws::Transfer
|
|
1549
1719
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
1550
1720
|
end)
|
1551
1721
|
|
1722
|
+
api.add_operation(:delete_web_app, Seahorse::Model::Operation.new.tap do |o|
|
1723
|
+
o.name = "DeleteWebApp"
|
1724
|
+
o.http_method = "POST"
|
1725
|
+
o.http_request_uri = "/"
|
1726
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteWebAppRequest)
|
1727
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1728
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1729
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
1730
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1731
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
|
1732
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1733
|
+
end)
|
1734
|
+
|
1735
|
+
api.add_operation(:delete_web_app_customization, Seahorse::Model::Operation.new.tap do |o|
|
1736
|
+
o.name = "DeleteWebAppCustomization"
|
1737
|
+
o.http_method = "POST"
|
1738
|
+
o.http_request_uri = "/"
|
1739
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteWebAppCustomizationRequest)
|
1740
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1741
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1742
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1743
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
1744
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1745
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
|
1746
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1747
|
+
end)
|
1748
|
+
|
1552
1749
|
api.add_operation(:delete_workflow, Seahorse::Model::Operation.new.tap do |o|
|
1553
1750
|
o.name = "DeleteWorkflow"
|
1554
1751
|
o.http_method = "POST"
|
@@ -1682,6 +1879,32 @@ module Aws::Transfer
|
|
1682
1879
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
1683
1880
|
end)
|
1684
1881
|
|
1882
|
+
api.add_operation(:describe_web_app, Seahorse::Model::Operation.new.tap do |o|
|
1883
|
+
o.name = "DescribeWebApp"
|
1884
|
+
o.http_method = "POST"
|
1885
|
+
o.http_request_uri = "/"
|
1886
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeWebAppRequest)
|
1887
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeWebAppResponse)
|
1888
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1889
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
1890
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1891
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
|
1892
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1893
|
+
end)
|
1894
|
+
|
1895
|
+
api.add_operation(:describe_web_app_customization, Seahorse::Model::Operation.new.tap do |o|
|
1896
|
+
o.name = "DescribeWebAppCustomization"
|
1897
|
+
o.http_method = "POST"
|
1898
|
+
o.http_request_uri = "/"
|
1899
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeWebAppCustomizationRequest)
|
1900
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeWebAppCustomizationResponse)
|
1901
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1902
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
1903
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1904
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
|
1905
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1906
|
+
end)
|
1907
|
+
|
1685
1908
|
api.add_operation(:describe_workflow, Seahorse::Model::Operation.new.tap do |o|
|
1686
1909
|
o.name = "DescribeWorkflow"
|
1687
1910
|
o.http_method = "POST"
|
@@ -1952,6 +2175,24 @@ module Aws::Transfer
|
|
1952
2175
|
)
|
1953
2176
|
end)
|
1954
2177
|
|
2178
|
+
api.add_operation(:list_web_apps, Seahorse::Model::Operation.new.tap do |o|
|
2179
|
+
o.name = "ListWebApps"
|
2180
|
+
o.http_method = "POST"
|
2181
|
+
o.http_request_uri = "/"
|
2182
|
+
o.input = Shapes::ShapeRef.new(shape: ListWebAppsRequest)
|
2183
|
+
o.output = Shapes::ShapeRef.new(shape: ListWebAppsResponse)
|
2184
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2185
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2186
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
|
2187
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2188
|
+
o[:pager] = Aws::Pager.new(
|
2189
|
+
limit_key: "max_results",
|
2190
|
+
tokens: {
|
2191
|
+
"next_token" => "next_token"
|
2192
|
+
}
|
2193
|
+
)
|
2194
|
+
end)
|
2195
|
+
|
1955
2196
|
api.add_operation(:list_workflows, Seahorse::Model::Operation.new.tap do |o|
|
1956
2197
|
o.name = "ListWorkflows"
|
1957
2198
|
o.http_method = "POST"
|
@@ -2193,6 +2434,34 @@ module Aws::Transfer
|
|
2193
2434
|
o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
|
2194
2435
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
2195
2436
|
end)
|
2437
|
+
|
2438
|
+
api.add_operation(:update_web_app, Seahorse::Model::Operation.new.tap do |o|
|
2439
|
+
o.name = "UpdateWebApp"
|
2440
|
+
o.http_method = "POST"
|
2441
|
+
o.http_request_uri = "/"
|
2442
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateWebAppRequest)
|
2443
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateWebAppResponse)
|
2444
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
2445
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2446
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2447
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2448
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
|
2449
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
2450
|
+
end)
|
2451
|
+
|
2452
|
+
api.add_operation(:update_web_app_customization, Seahorse::Model::Operation.new.tap do |o|
|
2453
|
+
o.name = "UpdateWebAppCustomization"
|
2454
|
+
o.http_method = "POST"
|
2455
|
+
o.http_request_uri = "/"
|
2456
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateWebAppCustomizationRequest)
|
2457
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateWebAppCustomizationResponse)
|
2458
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
2459
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2460
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2461
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2462
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
|
2463
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
2464
|
+
end)
|
2196
2465
|
end
|
2197
2466
|
|
2198
2467
|
end
|