@cdklabs/cdk-ssm-documents 0.0.64 → 0.0.66
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.
- package/.jsii +11 -11
- package/lib/construct/synth-utils.js +1 -1
- package/lib/document/automation-document.js +1 -1
- package/lib/document/command-document.js +1 -1
- package/lib/document/document-builder.js +2 -2
- package/lib/document/ssm-document.js +1 -1
- package/lib/domain/aws-service.js +1 -1
- package/lib/domain/choice.js +1 -1
- package/lib/domain/data-type.js +1 -1
- package/lib/domain/enum/install-action.js +2 -2
- package/lib/domain/enum/install-uninstall-repair.js +2 -2
- package/lib/domain/enum/installation-type.js +2 -2
- package/lib/domain/enum/package-name.js +2 -2
- package/lib/domain/input.js +1 -1
- package/lib/domain/operation.js +1 -1
- package/lib/domain/platform.js +1 -1
- package/lib/domain/precondition.js +1 -1
- package/lib/incident-response/incident-response.js +3 -3
- package/lib/interface/approve-hook.js +2 -2
- package/lib/interface/auth-method.js +3 -3
- package/lib/interface/aws-invoker.js +2 -2
- package/lib/interface/downloadable-content.js +8 -8
- package/lib/interface/environment.js +3 -3
- package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
- package/lib/interface/observer.js +1 -1
- package/lib/interface/on-failure.js +6 -6
- package/lib/interface/pause-hook.js +2 -2
- package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
- package/lib/interface/run-document-location.js +2 -2
- package/lib/interface/sleep-hook.js +2 -2
- package/lib/interface/step-ref.js +1 -1
- package/lib/interface/variables/boolean-variable.js +2 -2
- package/lib/interface/variables/map-list-variable.js +2 -2
- package/lib/interface/variables/number-variable.js +2 -2
- package/lib/interface/variables/secure-string-variable.js +4 -4
- package/lib/interface/variables/string-list-variable.js +2 -2
- package/lib/interface/variables/string-map-variable.js +2 -2
- package/lib/interface/variables/string-variable.js +4 -4
- package/lib/interface/variables/variable.js +2 -2
- package/lib/interface/webhook.js +1 -1
- package/lib/parent-steps/automation/approve-step.js +1 -1
- package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
- package/lib/parent-steps/automation/aws-api-step.js +1 -1
- package/lib/parent-steps/automation/branch-step.js +1 -1
- package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
- package/lib/parent-steps/automation/copy-image-step.js +1 -1
- package/lib/parent-steps/automation/create-image-step.js +1 -1
- package/lib/parent-steps/automation/create-stack-step.js +3 -3
- package/lib/parent-steps/automation/create-tags-step.js +3 -3
- package/lib/parent-steps/automation/delete-image-step.js +1 -1
- package/lib/parent-steps/automation/delete-stack-step.js +1 -1
- package/lib/parent-steps/automation/execute-automation-step.js +1 -1
- package/lib/parent-steps/automation/execute-script-step.js +5 -5
- package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
- package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
- package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
- package/lib/parent-steps/automation/pause-step.js +1 -1
- package/lib/parent-steps/automation/run-command-step.js +3 -3
- package/lib/parent-steps/automation/run-instance-step.js +1 -1
- package/lib/parent-steps/automation/sleep-step.js +1 -1
- package/lib/parent-steps/automation/update-variable.js +1 -1
- package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
- package/lib/parent-steps/automation-step.js +1 -1
- package/lib/parent-steps/command/applications-step.js +1 -1
- package/lib/parent-steps/command/configure-docker-step.js +1 -1
- package/lib/parent-steps/command/configure-package-step.js +1 -1
- package/lib/parent-steps/command/domain-join-step.js +1 -1
- package/lib/parent-steps/command/download-content-step.js +1 -1
- package/lib/parent-steps/command/ps-module-step.js +1 -1
- package/lib/parent-steps/command/run-docker-action-step.js +1 -1
- package/lib/parent-steps/command/run-document-step.js +1 -1
- package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
- package/lib/parent-steps/command/run-shell-script-step.js +1 -1
- package/lib/parent-steps/command/software-inventory-step.js +1 -1
- package/lib/parent-steps/command/update-agent-step.js +1 -1
- package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
- package/lib/parent-steps/command-step.js +1 -1
- package/lib/parent-steps/step.js +1 -1
- package/lib/patterns/automation/composite-step.js +2 -2
- package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
- package/lib/patterns/automation/string-step.js +1 -1
- package/lib/patterns/document/string-document.js +1 -1
- package/lib/patterns/document/timed-document.js +1 -1
- package/lib/samples/hello-world.js +1 -1
- package/lib/simulation/automation/approve-simulation.js +1 -1
- package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
- package/lib/simulation/automation/automation-simulation-base.js +1 -1
- package/lib/simulation/automation/aws-api-simulation.js +1 -1
- package/lib/simulation/automation/branch-simulation.js +1 -1
- package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
- package/lib/simulation/automation/copy-image-simulation.js +1 -1
- package/lib/simulation/automation/create-image-simulation.js +1 -1
- package/lib/simulation/automation/create-stack-simulation.js +1 -1
- package/lib/simulation/automation/create-tags-simulation.js +1 -1
- package/lib/simulation/automation/delete-image-simulation.js +1 -1
- package/lib/simulation/automation/delete-stack-simulation.js +1 -1
- package/lib/simulation/automation/execute-script-simulation.js +1 -1
- package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
- package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
- package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
- package/lib/simulation/automation/pause-simulation.js +1 -1
- package/lib/simulation/automation/run-command-simulation.js +1 -1
- package/lib/simulation/automation/run-instance-simulation.js +1 -1
- package/lib/simulation/automation/sleep-simulation.js +1 -1
- package/lib/simulation/automation/update-variable-simulation.js +1 -1
- package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
- package/lib/simulation/automation-step-simulation.js +1 -1
- package/lib/simulation/command/command-simulation-base.js +1 -1
- package/lib/simulation/command/ps-module-simulation.js +1 -1
- package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
- package/lib/simulation/command/run-shell-script-simulation.js +1 -1
- package/lib/simulation/command-step-simulation.js +1 -1
- package/lib/simulation/document/automation-simulation.js +1 -1
- package/lib/simulation/document/command-simulation.js +1 -1
- package/lib/simulation/simulation.js +1 -1
- package/node_modules/@aws-sdk/checksums/dist-cjs/flexible-checksums/getCrc32ChecksumAlgorithmFunction.browser.js +2 -6
- package/node_modules/@aws-sdk/checksums/dist-cjs/flexible-checksums/getCrc32ChecksumAlgorithmFunction.js +6 -11
- package/node_modules/@aws-sdk/checksums/dist-cjs/index.js +56 -56
- package/node_modules/@aws-sdk/checksums/package.json +7 -7
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +449 -469
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/CloudFormationServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/errors.js +59 -91
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/schemas/schemas_0.js +814 -533
- package/node_modules/@aws-sdk/client-cloudformation/package.json +9 -9
- package/node_modules/@aws-sdk/client-cloudwatch/README.md +21 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/index.js +255 -233
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/CloudWatchServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/errors.js +93 -68
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.browser.js +25 -29
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.js +33 -37
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/schemas/schemas_0.js +476 -259
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/CloudWatch.js +6 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/AssociateDatasetKmsKeyCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DisassociateDatasetKmsKeyCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetDatasetCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/index.js +3 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/models/errors.js +68 -26
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/schemas/schemas_0.js +73 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatch.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatchClient.d.ts +5 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/AssociateDatasetKmsKeyCommand.d.ts +161 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DisassociateDatasetKmsKeyCommand.d.ts +105 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetDatasetCommand.d.ts +91 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/errors.d.ts +74 -23
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/models_0.d.ts +90 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/schemas/schemas_0.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatch.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatchClient.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/AssociateDatasetKmsKeyCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DisassociateDatasetKmsKeyCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetDatasetCommand.d.ts +49 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/errors.d.ts +40 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/models_0.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/schemas/schemas_0.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cloudwatch/package.json +13 -13
- package/node_modules/@aws-sdk/client-ec2/README.md +14 -0
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +2903 -2879
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/models/EC2ServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +6980 -4554
- package/node_modules/@aws-sdk/client-ec2/dist-es/EC2.js +4 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachImageWatermarkCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachImageWatermarkCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/index.js +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/models/enums.js +5 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +108 -13
- package/node_modules/@aws-sdk/client-ec2/dist-types/EC2.d.ts +14 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/EC2Client.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachImageWatermarkCommand.d.ts +84 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelCapacityReservationCommand.d.ts +16 -10
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationFleetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDefaultSubnetCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDefaultVpcCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFlowLogsCommand.d.ts +8 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerPeerCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteTableCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSecurityGroupCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSnapshotCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFlowLogsCommand.d.ts +8 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImagesCommand.d.ts +9 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImportSnapshotTasksCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceAttributeCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +9 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotInstanceRequestsCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeStaleSecurityGroupsCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumesModificationsCommand.d.ts +0 -5
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachImageWatermarkCommand.d.ts +82 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerAttributesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDataCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamScopeCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLaunchTemplateCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLocalGatewayRouteCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedPrefixListCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVolumeCommand.d.ts +0 -5
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/enums.d.ts +13 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_0.d.ts +38 -23
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_1.d.ts +45 -128
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_2.d.ts +128 -48
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_3.d.ts +109 -161
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +169 -219
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +250 -353
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +351 -182
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +178 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +9 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2.d.ts +34 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2Client.d.ts +12 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachImageWatermarkCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDefaultSubnetCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDefaultVpcCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteServerPeerCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteTableCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSecurityGroupCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSnapshotCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImportSnapshotTasksCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceAttributeCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotInstanceRequestsCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotPriceHistoryCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeStaleSecurityGroupsCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachImageWatermarkCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerAttributesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMetricDataCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamScopeCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyLaunchTemplateCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyLocalGatewayRouteCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyManagedPrefixListCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/enums.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_0.d.ts +9 -7
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_1.d.ts +13 -26
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_2.d.ts +29 -12
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_3.d.ts +25 -36
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +40 -35
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +49 -67
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +66 -47
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +40 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
- package/node_modules/@aws-sdk/client-ec2/package.json +15 -15
- package/node_modules/@aws-sdk/client-iam/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-iam/dist-cjs/index.js +634 -654
- package/node_modules/@aws-sdk/client-iam/dist-cjs/models/IAMServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-iam/dist-cjs/models/errors.js +71 -109
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-iam/dist-cjs/schemas/schemas_0.js +1006 -665
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateServiceSpecificCredentialCommand.d.ts +18 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListServiceSpecificCredentialsCommand.d.ts +17 -2
- package/node_modules/@aws-sdk/client-iam/dist-types/models/models_0.d.ts +5 -2
- package/node_modules/@aws-sdk/client-iam/package.json +14 -14
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/index.js +368 -386
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/LambdaServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/errors.js +229 -145
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.browser.js +24 -28
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.js +32 -36
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/schemas/schemas_0.js +959 -581
- package/node_modules/@aws-sdk/client-lambda/dist-es/models/enums.js +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/models/errors.js +134 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/schemas/schemas_0.js +100 -31
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/AddPermissionCommand.d.ts +5 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateAliasCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateEventSourceMappingCommand.d.ts +28 -28
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateFunctionCommand.d.ts +14 -14
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteAliasCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteEventSourceMappingCommand.d.ts +16 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionUrlConfigCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteLayerVersionCommand.d.ts +6 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetEventSourceMappingCommand.d.ts +16 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCodeSigningConfigCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConfigurationCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionByArnCommand.d.ts +4 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionCommand.d.ts +4 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetRuntimeManagementConfigCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeAsyncCommand.d.ts +72 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeCommand.d.ts +21 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +6 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListEventSourceMappingsCommand.d.ts +16 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayerVersionsCommand.d.ts +6 -6
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayersCommand.d.ts +6 -6
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListVersionsByFunctionCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishLayerVersionCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishVersionCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutProvisionedConcurrencyConfigCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/RemovePermissionCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackFailureCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateEventSourceMappingCommand.d.ts +32 -32
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionCodeCommand.d.ts +12 -12
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +9 -9
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/enums.d.ts +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/errors.d.ts +173 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/models_0.d.ts +158 -158
- package/node_modules/@aws-sdk/client-lambda/dist-types/schemas/schemas_0.d.ts +9 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/enums.d.ts +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/errors.d.ts +88 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/models_0.d.ts +33 -33
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
- package/node_modules/@aws-sdk/client-lambda/package.json +13 -13
- package/node_modules/@aws-sdk/client-s3/README.md +35 -0
- package/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js +15 -19
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +646 -535
- package/node_modules/@aws-sdk/client-s3/dist-cjs/models/S3ServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-s3/dist-cjs/models/errors.js +106 -52
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.browser.js +29 -33
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +43 -47
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +25 -29
- package/node_modules/@aws-sdk/client-s3/dist-cjs/schemas/schemas_0.js +1256 -740
- package/node_modules/@aws-sdk/client-s3/dist-es/S3.js +12 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectAnnotationCommand.js +23 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAnnotationCommand.js +28 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectAnnotationsCommand.js +23 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAnnotationCommand.js +29 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.js +27 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/index.js +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/models/enums.js +12 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/models/errors.js +76 -4
- package/node_modules/@aws-sdk/client-s3/dist-es/pagination/ListObjectAnnotationsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/pagination/index.js +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/schemas/schemas_0.js +260 -100
- package/node_modules/@aws-sdk/client-s3/dist-types/S3.d.ts +42 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +7 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +27 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectAnnotationCommand.d.ts +119 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataConfigurationCommand.d.ts +11 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketNotificationConfigurationCommand.d.ts +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAnnotationCommand.d.ts +141 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectAnnotationsCommand.d.ts +138 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAnnotationCommand.d.ts +166 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RenameObjectCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RestoreObjectCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +110 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/models/enums.d.ts +29 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/models/errors.d.ts +76 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +925 -549
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_1.d.ts +380 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListObjectAnnotationsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/pagination/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3.d.ts +98 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +30 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectAnnotationCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAnnotationCommand.d.ts +61 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectAnnotationsCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAnnotationCommand.d.ts +61 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RenameObjectCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +49 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/enums.d.ts +18 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/errors.d.ts +41 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +138 -64
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_1.d.ts +75 -5
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListObjectAnnotationsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/client-s3/package.json +21 -21
- package/node_modules/@aws-sdk/client-sns/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-sns/dist-cjs/index.js +174 -194
- package/node_modules/@aws-sdk/client-sns/dist-cjs/models/SNSServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-sns/dist-cjs/models/errors.js +69 -106
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-sns/dist-cjs/schemas/schemas_0.js +331 -218
- package/node_modules/@aws-sdk/client-sns/package.json +10 -10
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/index.js +118 -138
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/models/SQSServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/models/errors.js +57 -88
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.browser.js +24 -28
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.js +31 -35
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/schemas/schemas_0.js +222 -150
- package/node_modules/@aws-sdk/client-sqs/package.json +16 -16
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +543 -563
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/SSMServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/errors.js +279 -423
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/schemas/schemas_0.js +1693 -1109
- package/node_modules/@aws-sdk/client-ssm/package.json +10 -10
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +19 -2274
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +2 -4
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.browser.js +297 -23
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +327 -52
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.native.js +297 -23
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +19 -21
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +107 -109
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/util/index.js +2 -4
- package/node_modules/@aws-sdk/core/dist-es/index.js +3 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/aws/partitions.js +276 -1
- package/node_modules/@aws-sdk/core/dist-types/index.d.ts +5 -5
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +5 -5
- package/node_modules/@aws-sdk/core/package.json +12 -12
- package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +4 -6
- package/node_modules/@aws-sdk/credential-provider-env/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +3 -7
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +12 -16
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +16 -21
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +14 -18
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +1 -5
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +2 -5
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +2 -7
- package/node_modules/@aws-sdk/credential-provider-http/package.json +9 -8
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +47 -41
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +8 -4
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +14 -10
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +14 -14
- package/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +31 -33
- package/node_modules/@aws-sdk/credential-provider-login/package.json +8 -8
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +16 -18
- package/node_modules/@aws-sdk/credential-provider-node/package.json +12 -12
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +11 -13
- package/node_modules/@aws-sdk/credential-provider-process/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +26 -25
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BGYXHf8s.js +3 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +4 -1
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +12 -10
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +10 -14
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +2 -6
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +3 -27
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +8 -8
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +18 -23
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +6 -6
- package/node_modules/@aws-sdk/middleware-sdk-ec2/dist-cjs/index.js +11 -13
- package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +7 -7
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +1 -518
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.browser.js +31 -33
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.js +37 -39
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3-control/index.js +14 -16
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +17 -14
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3-control.d.ts +7 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3-control.js +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3.d.ts +7 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3.js +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-cjs/index.js +9 -11
- package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +7 -7
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/index.js +0 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +82 -84
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +158 -119
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +80 -82
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +80 -82
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +99 -101
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +4 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/bdd.js +70 -35
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/enums.js +3 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/EndpointParameters.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/enums.d.ts +12 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/EndpointParameters.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/enums.d.ts +3 -0
- package/node_modules/@aws-sdk/nested-clients/package.json +11 -10
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js +4 -6
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +9 -8
- package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +26 -28
- package/node_modules/@aws-sdk/token-providers/package.json +8 -8
- package/node_modules/@aws-sdk/types/dist-cjs/index.js +7 -8
- package/node_modules/@aws-sdk/types/package.json +5 -5
- package/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +0 -2
- package/node_modules/@aws-sdk/util-locate-window/package.json +5 -5
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +2 -4
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-external/nodable_entities.js +4 -7
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.browser.js +2 -5
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +7 -10
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/CHANGELOG.md +8 -0
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/README.md +9 -0
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/package.json +7 -3
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/strnum.js +9 -1
- package/node_modules/@aws-sdk/xml-builder/package.json +5 -5
- package/node_modules/@nodable/entities/package.json +4 -1
- package/node_modules/@nodable/entities/src/EntityDecoder.js +104 -3
- package/node_modules/@nodable/entities/src/index.d.ts +77 -0
- package/node_modules/@nodable/entities/src/index.js +1 -1
- package/node_modules/@smithy/core/dist-cjs/index.js +13 -15
- package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +543 -398
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.browser.js +2 -4
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.js +7 -9
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.native.js +3 -5
- package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +23 -24
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.browser.js +10 -11
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.js +38 -39
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.native.js +10 -11
- package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.browser.js +14 -17
- package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +20 -23
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.browser.js +9 -11
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +11 -13
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +68 -61
- package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.browser.js +26 -27
- package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.js +28 -29
- package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +5 -7
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.browser.js +4 -6
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +23 -25
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.native.js +4 -6
- package/node_modules/@smithy/core/dist-cjs/submodules/transport/index.js +2 -4
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +1 -1
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/httpSigningMiddleware.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +326 -269
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +192 -103
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor.js +4 -2
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/get-value-from-text-node.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/endpointMiddleware.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +10 -2
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/StandardRetryStrategy.js +2 -2
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRateLimiter.js +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-encode.d.ts +8 -4
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/TypeRegistry.d.ts +1 -1
- package/node_modules/@smithy/core/package.json +18 -17
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +23 -24
- package/node_modules/@smithy/credential-provider-imds/package.json +7 -7
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +6 -8
- package/node_modules/@smithy/fetch-http-handler/package.json +10 -10
- package/node_modules/@smithy/middleware-compression/dist-cjs/compressStream.browser.js +3 -7
- package/node_modules/@smithy/middleware-compression/dist-cjs/compressStream.js +2 -6
- package/node_modules/@smithy/middleware-compression/dist-cjs/compressString.browser.js +4 -8
- package/node_modules/@smithy/middleware-compression/dist-cjs/compressString.js +7 -11
- package/node_modules/@smithy/middleware-compression/dist-cjs/index.js +18 -20
- package/node_modules/@smithy/middleware-compression/package.json +6 -6
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +11 -13
- package/node_modules/@smithy/node-http-handler/package.json +8 -8
- package/node_modules/@smithy/signature-v4/dist-cjs/index.js +27 -29
- package/node_modules/@smithy/signature-v4/package.json +7 -7
- package/node_modules/@smithy/types/dist-cjs/index.js +23 -18
- package/node_modules/@smithy/types/package.json +10 -10
- package/node_modules/anynum/LICENSE +21 -0
- package/node_modules/anynum/README.md +142 -0
- package/node_modules/anynum/anynum.js +135 -0
- package/node_modules/anynum/digitTable.js +116 -0
- package/node_modules/anynum/package.json +42 -0
- package/node_modules/path-expression-matcher/README.md +82 -7
- package/node_modules/path-expression-matcher/lib/pem.cjs +1 -1
- package/node_modules/path-expression-matcher/lib/pem.d.cts +83 -2
- package/node_modules/path-expression-matcher/lib/pem.min.js +1 -1
- package/node_modules/path-expression-matcher/lib/pem.min.js.map +1 -1
- package/node_modules/path-expression-matcher/package.json +3 -2
- package/node_modules/path-expression-matcher/src/ExpressionSet.js +18 -2
- package/node_modules/path-expression-matcher/src/Matcher.js +93 -3
- package/node_modules/path-expression-matcher/src/index.d.ts +67 -1
- package/package.json +10 -10
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BKDNrsal.js +0 -8
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.browser.js +0 -34
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.browser.js +0 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.browser.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.browser.d.ts +0 -39
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/LICENSE +0 -0
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateTopicResponse$ = exports.CreateTopicInput$ = exports.CreateSMSSandboxPhoneNumberResult$ = exports.CreateSMSSandboxPhoneNumberInput$ = exports.CreatePlatformEndpointInput$ = exports.CreatePlatformApplicationResponse$ = exports.CreatePlatformApplicationInput$ = exports.CreateEndpointResponse$ = exports.ConfirmSubscriptionResponse$ = exports.ConfirmSubscriptionInput$ = exports.CheckIfPhoneNumberIsOptedOutResponse$ = exports.CheckIfPhoneNumberIsOptedOutInput$ = exports.BatchResultErrorEntry$ = exports.AddPermissionInput$ = exports.errorTypeRegistries = exports.VerificationException$ = exports.ValidationException$ = exports.UserErrorException$ = exports.TopicLimitExceededException$ = exports.TooManyEntriesInBatchRequestException$ = exports.ThrottledException$ = exports.TagPolicyException$ = exports.TagLimitExceededException$ = exports.SubscriptionLimitExceededException$ = exports.StaleTagException$ = exports.ResourceNotFoundException$ = exports.ReplayLimitExceededException$ = exports.PlatformApplicationDisabledException$ = exports.OptedOutException$ = exports.NotFoundException$ = exports.KMSThrottlingException$ = exports.KMSOptInRequired$ = exports.KMSNotFoundException$ = exports.KMSInvalidStateException$ = exports.KMSDisabledException$ = exports.KMSAccessDeniedException$ = exports.InvalidStateException$ = exports.InvalidSecurityException$ = exports.InvalidParameterValueException$ = exports.InvalidParameterException$ = exports.InvalidBatchEntryIdException$ = exports.InternalErrorException$ = exports.FilterPolicyLimitExceededException$ = exports.EndpointDisabledException$ = exports.EmptyBatchRequestException$ = exports.ConcurrentAccessException$ = exports.BatchRequestTooLongException$ = exports.BatchEntryIdsNotDistinctException$ = exports.AuthorizationErrorException$ = exports.SNSServiceException$ = void 0;
|
|
4
|
-
exports.PutDataProtectionPolicyInput$ = exports.PublishResponse$ = exports.PublishInput$ = exports.PublishBatchResultEntry$ = exports.PublishBatchResponse$ = exports.PublishBatchRequestEntry$ = exports.PublishBatchInput$ = exports.PlatformApplication$ = exports.PhoneNumberInformation$ = exports.OptInPhoneNumberResponse$ = exports.OptInPhoneNumberInput$ = exports.MessageAttributeValue$ = exports.ListTopicsResponse$ = exports.ListTopicsInput$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.ListSubscriptionsResponse$ = exports.ListSubscriptionsInput$ = exports.ListSubscriptionsByTopicResponse$ = exports.ListSubscriptionsByTopicInput$ = exports.ListSMSSandboxPhoneNumbersResult$ = exports.ListSMSSandboxPhoneNumbersInput$ = exports.ListPlatformApplicationsResponse$ = exports.ListPlatformApplicationsInput$ = exports.ListPhoneNumbersOptedOutResponse$ = exports.ListPhoneNumbersOptedOutInput$ = exports.ListOriginationNumbersResult$ = exports.ListOriginationNumbersRequest$ = exports.ListEndpointsByPlatformApplicationResponse$ = exports.ListEndpointsByPlatformApplicationInput$ = exports.GetTopicAttributesResponse$ = exports.GetTopicAttributesInput$ = exports.GetSubscriptionAttributesResponse$ = exports.GetSubscriptionAttributesInput$ = exports.GetSMSSandboxAccountStatusResult$ = exports.GetSMSSandboxAccountStatusInput$ = exports.GetSMSAttributesResponse$ = exports.GetSMSAttributesInput$ = exports.GetPlatformApplicationAttributesResponse$ = exports.GetPlatformApplicationAttributesInput$ = exports.GetEndpointAttributesResponse$ = exports.GetEndpointAttributesInput$ = exports.GetDataProtectionPolicyResponse$ = exports.GetDataProtectionPolicyInput$ = exports.Endpoint$ = exports.DeleteTopicInput$ = exports.DeleteSMSSandboxPhoneNumberResult$ = exports.DeleteSMSSandboxPhoneNumberInput$ = exports.DeletePlatformApplicationInput$ = exports.DeleteEndpointInput$ = void 0;
|
|
5
|
-
exports.PublishBatch$ = exports.Publish$ = exports.OptInPhoneNumber$ = exports.ListTopics$ = exports.ListTagsForResource$ = exports.ListSubscriptionsByTopic$ = exports.ListSubscriptions$ = exports.ListSMSSandboxPhoneNumbers$ = exports.ListPlatformApplications$ = exports.ListPhoneNumbersOptedOut$ = exports.ListOriginationNumbers$ = exports.ListEndpointsByPlatformApplication$ = exports.GetTopicAttributes$ = exports.GetSubscriptionAttributes$ = exports.GetSMSSandboxAccountStatus$ = exports.GetSMSAttributes$ = exports.GetPlatformApplicationAttributes$ = exports.GetEndpointAttributes$ = exports.GetDataProtectionPolicy$ = exports.DeleteTopic$ = exports.DeleteSMSSandboxPhoneNumber$ = exports.DeletePlatformApplication$ = exports.DeleteEndpoint$ = exports.CreateTopic$ = exports.CreateSMSSandboxPhoneNumber$ = exports.CreatePlatformEndpoint$ = exports.CreatePlatformApplication$ = exports.ConfirmSubscription$ = exports.CheckIfPhoneNumberIsOptedOut$ = exports.AddPermission$ = exports.VerifySMSSandboxPhoneNumberResult$ = exports.VerifySMSSandboxPhoneNumberInput$ = exports.UntagResourceResponse$ = exports.UntagResourceRequest$ = exports.UnsubscribeInput$ = exports.Topic$ = exports.TagResourceResponse$ = exports.TagResourceRequest$ = exports.Tag$ = exports.Subscription$ = exports.SubscribeResponse$ = exports.SubscribeInput$ = exports.SMSSandboxPhoneNumber$ = exports.SetTopicAttributesInput$ = exports.SetSubscriptionAttributesInput$ = exports.SetSMSAttributesResponse$ = exports.SetSMSAttributesInput$ = exports.SetPlatformApplicationAttributesInput$ = exports.SetEndpointAttributesInput$ = exports.RemovePermissionInput$ = void 0;
|
|
6
|
-
exports.VerifySMSSandboxPhoneNumber$ = exports.UntagResource$ = exports.Unsubscribe$ = exports.TagResource$ = exports.Subscribe$ = exports.SetTopicAttributes$ = exports.SetSubscriptionAttributes$ = exports.SetSMSAttributes$ = exports.SetPlatformApplicationAttributes$ = exports.SetEndpointAttributes$ = exports.RemovePermission$ = exports.PutDataProtectionPolicy$ = void 0;
|
|
7
1
|
const _A = "Attributes";
|
|
8
2
|
const _AEE = "AuthorizationErrorException";
|
|
9
3
|
const _AN = "ActionName";
|
|
@@ -249,659 +243,778 @@ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.sns";
|
|
|
249
243
|
const _se = "server";
|
|
250
244
|
const _xN = "xmlName";
|
|
251
245
|
const n0 = "com.amazonaws.sns";
|
|
252
|
-
const
|
|
253
|
-
const
|
|
254
|
-
const
|
|
255
|
-
const _s_registry =
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
246
|
+
const { TypeRegistry } = require("@smithy/core/schema");
|
|
247
|
+
const { AuthorizationErrorException, BatchEntryIdsNotDistinctException, BatchRequestTooLongException, ConcurrentAccessException, EmptyBatchRequestException, EndpointDisabledException, FilterPolicyLimitExceededException, InternalErrorException, InvalidBatchEntryIdException, InvalidParameterException, InvalidParameterValueException, InvalidSecurityException, InvalidStateException, KMSAccessDeniedException, KMSDisabledException, KMSInvalidStateException, KMSNotFoundException, KMSOptInRequired, KMSThrottlingException, NotFoundException, OptedOutException, PlatformApplicationDisabledException, ReplayLimitExceededException, ResourceNotFoundException, StaleTagException, SubscriptionLimitExceededException, TagLimitExceededException, TagPolicyException, ThrottledException, TooManyEntriesInBatchRequestException, TopicLimitExceededException, UserErrorException, ValidationException, VerificationException } = require("../models/errors");
|
|
248
|
+
const { SNSServiceException } = require("../models/SNSServiceException");
|
|
249
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
250
|
+
const SNSServiceException$ = [-3, _s, "SNSServiceException", 0, [], []];
|
|
251
|
+
exports.SNSServiceException$ = SNSServiceException$;
|
|
252
|
+
_s_registry.registerError(SNSServiceException$, SNSServiceException);
|
|
253
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
254
|
+
const AuthorizationErrorException$ = [-3, n0, _AEE,
|
|
260
255
|
{ [_aQE]: [`AuthorizationError`, 403], [_e]: _c, [_hE]: 403 },
|
|
261
256
|
[_m],
|
|
262
257
|
[0]
|
|
263
258
|
];
|
|
264
|
-
|
|
265
|
-
|
|
259
|
+
exports.AuthorizationErrorException$ = AuthorizationErrorException$;
|
|
260
|
+
n0_registry.registerError(AuthorizationErrorException$, AuthorizationErrorException);
|
|
261
|
+
const BatchEntryIdsNotDistinctException$ = [-3, n0, _BEINDE,
|
|
266
262
|
{ [_aQE]: [`BatchEntryIdsNotDistinct`, 400], [_e]: _c, [_hE]: 400 },
|
|
267
263
|
[_m],
|
|
268
264
|
[0]
|
|
269
265
|
];
|
|
270
|
-
|
|
271
|
-
|
|
266
|
+
exports.BatchEntryIdsNotDistinctException$ = BatchEntryIdsNotDistinctException$;
|
|
267
|
+
n0_registry.registerError(BatchEntryIdsNotDistinctException$, BatchEntryIdsNotDistinctException);
|
|
268
|
+
const BatchRequestTooLongException$ = [-3, n0, _BRTLE,
|
|
272
269
|
{ [_aQE]: [`BatchRequestTooLong`, 400], [_e]: _c, [_hE]: 400 },
|
|
273
270
|
[_m],
|
|
274
271
|
[0]
|
|
275
272
|
];
|
|
276
|
-
|
|
277
|
-
|
|
273
|
+
exports.BatchRequestTooLongException$ = BatchRequestTooLongException$;
|
|
274
|
+
n0_registry.registerError(BatchRequestTooLongException$, BatchRequestTooLongException);
|
|
275
|
+
const ConcurrentAccessException$ = [-3, n0, _CAE,
|
|
278
276
|
{ [_aQE]: [`ConcurrentAccess`, 400], [_e]: _c, [_hE]: 400 },
|
|
279
277
|
[_m],
|
|
280
278
|
[0]
|
|
281
279
|
];
|
|
282
|
-
|
|
283
|
-
|
|
280
|
+
exports.ConcurrentAccessException$ = ConcurrentAccessException$;
|
|
281
|
+
n0_registry.registerError(ConcurrentAccessException$, ConcurrentAccessException);
|
|
282
|
+
const EmptyBatchRequestException$ = [-3, n0, _EBRE,
|
|
284
283
|
{ [_aQE]: [`EmptyBatchRequest`, 400], [_e]: _c, [_hE]: 400 },
|
|
285
284
|
[_m],
|
|
286
285
|
[0]
|
|
287
286
|
];
|
|
288
|
-
|
|
289
|
-
|
|
287
|
+
exports.EmptyBatchRequestException$ = EmptyBatchRequestException$;
|
|
288
|
+
n0_registry.registerError(EmptyBatchRequestException$, EmptyBatchRequestException);
|
|
289
|
+
const EndpointDisabledException$ = [-3, n0, _EDE,
|
|
290
290
|
{ [_aQE]: [`EndpointDisabled`, 400], [_e]: _c, [_hE]: 400 },
|
|
291
291
|
[_m],
|
|
292
292
|
[0]
|
|
293
293
|
];
|
|
294
|
-
|
|
295
|
-
|
|
294
|
+
exports.EndpointDisabledException$ = EndpointDisabledException$;
|
|
295
|
+
n0_registry.registerError(EndpointDisabledException$, EndpointDisabledException);
|
|
296
|
+
const FilterPolicyLimitExceededException$ = [-3, n0, _FPLEE,
|
|
296
297
|
{ [_aQE]: [`FilterPolicyLimitExceeded`, 403], [_e]: _c, [_hE]: 403 },
|
|
297
298
|
[_m],
|
|
298
299
|
[0]
|
|
299
300
|
];
|
|
300
|
-
|
|
301
|
-
|
|
301
|
+
exports.FilterPolicyLimitExceededException$ = FilterPolicyLimitExceededException$;
|
|
302
|
+
n0_registry.registerError(FilterPolicyLimitExceededException$, FilterPolicyLimitExceededException);
|
|
303
|
+
const InternalErrorException$ = [-3, n0, _IEE,
|
|
302
304
|
{ [_aQE]: [`InternalError`, 500], [_e]: _se, [_hE]: 500 },
|
|
303
305
|
[_m],
|
|
304
306
|
[0]
|
|
305
307
|
];
|
|
306
|
-
|
|
307
|
-
|
|
308
|
+
exports.InternalErrorException$ = InternalErrorException$;
|
|
309
|
+
n0_registry.registerError(InternalErrorException$, InternalErrorException);
|
|
310
|
+
const InvalidBatchEntryIdException$ = [-3, n0, _IBEIE,
|
|
308
311
|
{ [_aQE]: [`InvalidBatchEntryId`, 400], [_e]: _c, [_hE]: 400 },
|
|
309
312
|
[_m],
|
|
310
313
|
[0]
|
|
311
314
|
];
|
|
312
|
-
|
|
313
|
-
|
|
315
|
+
exports.InvalidBatchEntryIdException$ = InvalidBatchEntryIdException$;
|
|
316
|
+
n0_registry.registerError(InvalidBatchEntryIdException$, InvalidBatchEntryIdException);
|
|
317
|
+
const InvalidParameterException$ = [-3, n0, _IPE,
|
|
314
318
|
{ [_aQE]: [`InvalidParameter`, 400], [_e]: _c, [_hE]: 400 },
|
|
315
319
|
[_m],
|
|
316
320
|
[0]
|
|
317
321
|
];
|
|
318
|
-
|
|
319
|
-
|
|
322
|
+
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
323
|
+
n0_registry.registerError(InvalidParameterException$, InvalidParameterException);
|
|
324
|
+
const InvalidParameterValueException$ = [-3, n0, _IPVE,
|
|
320
325
|
{ [_aQE]: [`ParameterValueInvalid`, 400], [_e]: _c, [_hE]: 400 },
|
|
321
326
|
[_m],
|
|
322
327
|
[0]
|
|
323
328
|
];
|
|
324
|
-
|
|
325
|
-
|
|
329
|
+
exports.InvalidParameterValueException$ = InvalidParameterValueException$;
|
|
330
|
+
n0_registry.registerError(InvalidParameterValueException$, InvalidParameterValueException);
|
|
331
|
+
const InvalidSecurityException$ = [-3, n0, _ISE,
|
|
326
332
|
{ [_aQE]: [`InvalidSecurity`, 403], [_e]: _c, [_hE]: 403 },
|
|
327
333
|
[_m],
|
|
328
334
|
[0]
|
|
329
335
|
];
|
|
330
|
-
|
|
331
|
-
|
|
336
|
+
exports.InvalidSecurityException$ = InvalidSecurityException$;
|
|
337
|
+
n0_registry.registerError(InvalidSecurityException$, InvalidSecurityException);
|
|
338
|
+
const InvalidStateException$ = [-3, n0, _ISEn,
|
|
332
339
|
{ [_aQE]: [`InvalidState`, 400], [_e]: _c, [_hE]: 400 },
|
|
333
340
|
[_m],
|
|
334
341
|
[0]
|
|
335
342
|
];
|
|
336
|
-
|
|
337
|
-
|
|
343
|
+
exports.InvalidStateException$ = InvalidStateException$;
|
|
344
|
+
n0_registry.registerError(InvalidStateException$, InvalidStateException);
|
|
345
|
+
const KMSAccessDeniedException$ = [-3, n0, _KMSADE,
|
|
338
346
|
{ [_aQE]: [`KMSAccessDenied`, 400], [_e]: _c, [_hE]: 400 },
|
|
339
347
|
[_m],
|
|
340
348
|
[0]
|
|
341
349
|
];
|
|
342
|
-
|
|
343
|
-
|
|
350
|
+
exports.KMSAccessDeniedException$ = KMSAccessDeniedException$;
|
|
351
|
+
n0_registry.registerError(KMSAccessDeniedException$, KMSAccessDeniedException);
|
|
352
|
+
const KMSDisabledException$ = [-3, n0, _KMSDE,
|
|
344
353
|
{ [_aQE]: [`KMSDisabled`, 400], [_e]: _c, [_hE]: 400 },
|
|
345
354
|
[_m],
|
|
346
355
|
[0]
|
|
347
356
|
];
|
|
348
|
-
|
|
349
|
-
|
|
357
|
+
exports.KMSDisabledException$ = KMSDisabledException$;
|
|
358
|
+
n0_registry.registerError(KMSDisabledException$, KMSDisabledException);
|
|
359
|
+
const KMSInvalidStateException$ = [-3, n0, _KMSISE,
|
|
350
360
|
{ [_aQE]: [`KMSInvalidState`, 400], [_e]: _c, [_hE]: 400 },
|
|
351
361
|
[_m],
|
|
352
362
|
[0]
|
|
353
363
|
];
|
|
354
|
-
|
|
355
|
-
|
|
364
|
+
exports.KMSInvalidStateException$ = KMSInvalidStateException$;
|
|
365
|
+
n0_registry.registerError(KMSInvalidStateException$, KMSInvalidStateException);
|
|
366
|
+
const KMSNotFoundException$ = [-3, n0, _KMSNFE,
|
|
356
367
|
{ [_aQE]: [`KMSNotFound`, 400], [_e]: _c, [_hE]: 400 },
|
|
357
368
|
[_m],
|
|
358
369
|
[0]
|
|
359
370
|
];
|
|
360
|
-
|
|
361
|
-
|
|
371
|
+
exports.KMSNotFoundException$ = KMSNotFoundException$;
|
|
372
|
+
n0_registry.registerError(KMSNotFoundException$, KMSNotFoundException);
|
|
373
|
+
const KMSOptInRequired$ = [-3, n0, _KMSOIR,
|
|
362
374
|
{ [_aQE]: [`KMSOptInRequired`, 403], [_e]: _c, [_hE]: 403 },
|
|
363
375
|
[_m],
|
|
364
376
|
[0]
|
|
365
377
|
];
|
|
366
|
-
|
|
367
|
-
|
|
378
|
+
exports.KMSOptInRequired$ = KMSOptInRequired$;
|
|
379
|
+
n0_registry.registerError(KMSOptInRequired$, KMSOptInRequired);
|
|
380
|
+
const KMSThrottlingException$ = [-3, n0, _KMSTE,
|
|
368
381
|
{ [_aQE]: [`KMSThrottling`, 400], [_e]: _c, [_hE]: 400 },
|
|
369
382
|
[_m],
|
|
370
383
|
[0]
|
|
371
384
|
];
|
|
372
|
-
|
|
373
|
-
|
|
385
|
+
exports.KMSThrottlingException$ = KMSThrottlingException$;
|
|
386
|
+
n0_registry.registerError(KMSThrottlingException$, KMSThrottlingException);
|
|
387
|
+
const NotFoundException$ = [-3, n0, _NFE,
|
|
374
388
|
{ [_aQE]: [`NotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
375
389
|
[_m],
|
|
376
390
|
[0]
|
|
377
391
|
];
|
|
378
|
-
|
|
379
|
-
|
|
392
|
+
exports.NotFoundException$ = NotFoundException$;
|
|
393
|
+
n0_registry.registerError(NotFoundException$, NotFoundException);
|
|
394
|
+
const OptedOutException$ = [-3, n0, _OOE,
|
|
380
395
|
{ [_aQE]: [`OptedOut`, 400], [_e]: _c, [_hE]: 400 },
|
|
381
396
|
[_m],
|
|
382
397
|
[0]
|
|
383
398
|
];
|
|
384
|
-
|
|
385
|
-
|
|
399
|
+
exports.OptedOutException$ = OptedOutException$;
|
|
400
|
+
n0_registry.registerError(OptedOutException$, OptedOutException);
|
|
401
|
+
const PlatformApplicationDisabledException$ = [-3, n0, _PADE,
|
|
386
402
|
{ [_aQE]: [`PlatformApplicationDisabled`, 400], [_e]: _c, [_hE]: 400 },
|
|
387
403
|
[_m],
|
|
388
404
|
[0]
|
|
389
405
|
];
|
|
390
|
-
|
|
391
|
-
|
|
406
|
+
exports.PlatformApplicationDisabledException$ = PlatformApplicationDisabledException$;
|
|
407
|
+
n0_registry.registerError(PlatformApplicationDisabledException$, PlatformApplicationDisabledException);
|
|
408
|
+
const ReplayLimitExceededException$ = [-3, n0, _RLEE,
|
|
392
409
|
{ [_aQE]: [`ReplayLimitExceeded`, 403], [_e]: _c, [_hE]: 403 },
|
|
393
410
|
[_m],
|
|
394
411
|
[0]
|
|
395
412
|
];
|
|
396
|
-
|
|
397
|
-
|
|
413
|
+
exports.ReplayLimitExceededException$ = ReplayLimitExceededException$;
|
|
414
|
+
n0_registry.registerError(ReplayLimitExceededException$, ReplayLimitExceededException);
|
|
415
|
+
const ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
398
416
|
{ [_aQE]: [`ResourceNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
399
417
|
[_m],
|
|
400
418
|
[0]
|
|
401
419
|
];
|
|
402
|
-
|
|
403
|
-
|
|
420
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
421
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
422
|
+
const StaleTagException$ = [-3, n0, _STE,
|
|
404
423
|
{ [_aQE]: [`StaleTag`, 400], [_e]: _c, [_hE]: 400 },
|
|
405
424
|
[_m],
|
|
406
425
|
[0]
|
|
407
426
|
];
|
|
408
|
-
|
|
409
|
-
|
|
427
|
+
exports.StaleTagException$ = StaleTagException$;
|
|
428
|
+
n0_registry.registerError(StaleTagException$, StaleTagException);
|
|
429
|
+
const SubscriptionLimitExceededException$ = [-3, n0, _SLEE,
|
|
410
430
|
{ [_aQE]: [`SubscriptionLimitExceeded`, 403], [_e]: _c, [_hE]: 403 },
|
|
411
431
|
[_m],
|
|
412
432
|
[0]
|
|
413
433
|
];
|
|
414
|
-
|
|
415
|
-
|
|
434
|
+
exports.SubscriptionLimitExceededException$ = SubscriptionLimitExceededException$;
|
|
435
|
+
n0_registry.registerError(SubscriptionLimitExceededException$, SubscriptionLimitExceededException);
|
|
436
|
+
const TagLimitExceededException$ = [-3, n0, _TLEE,
|
|
416
437
|
{ [_aQE]: [`TagLimitExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
417
438
|
[_m],
|
|
418
439
|
[0]
|
|
419
440
|
];
|
|
420
|
-
|
|
421
|
-
|
|
441
|
+
exports.TagLimitExceededException$ = TagLimitExceededException$;
|
|
442
|
+
n0_registry.registerError(TagLimitExceededException$, TagLimitExceededException);
|
|
443
|
+
const TagPolicyException$ = [-3, n0, _TPE,
|
|
422
444
|
{ [_aQE]: [`TagPolicy`, 400], [_e]: _c, [_hE]: 400 },
|
|
423
445
|
[_m],
|
|
424
446
|
[0]
|
|
425
447
|
];
|
|
426
|
-
|
|
427
|
-
|
|
448
|
+
exports.TagPolicyException$ = TagPolicyException$;
|
|
449
|
+
n0_registry.registerError(TagPolicyException$, TagPolicyException);
|
|
450
|
+
const ThrottledException$ = [-3, n0, _TE,
|
|
428
451
|
{ [_aQE]: [`Throttled`, 429], [_e]: _c, [_hE]: 429 },
|
|
429
452
|
[_m],
|
|
430
453
|
[0]
|
|
431
454
|
];
|
|
432
|
-
|
|
433
|
-
|
|
455
|
+
exports.ThrottledException$ = ThrottledException$;
|
|
456
|
+
n0_registry.registerError(ThrottledException$, ThrottledException);
|
|
457
|
+
const TooManyEntriesInBatchRequestException$ = [-3, n0, _TMEIBRE,
|
|
434
458
|
{ [_aQE]: [`TooManyEntriesInBatchRequest`, 400], [_e]: _c, [_hE]: 400 },
|
|
435
459
|
[_m],
|
|
436
460
|
[0]
|
|
437
461
|
];
|
|
438
|
-
|
|
439
|
-
|
|
462
|
+
exports.TooManyEntriesInBatchRequestException$ = TooManyEntriesInBatchRequestException$;
|
|
463
|
+
n0_registry.registerError(TooManyEntriesInBatchRequestException$, TooManyEntriesInBatchRequestException);
|
|
464
|
+
const TopicLimitExceededException$ = [-3, n0, _TLEEo,
|
|
440
465
|
{ [_aQE]: [`TopicLimitExceeded`, 403], [_e]: _c, [_hE]: 403 },
|
|
441
466
|
[_m],
|
|
442
467
|
[0]
|
|
443
468
|
];
|
|
444
|
-
|
|
445
|
-
|
|
469
|
+
exports.TopicLimitExceededException$ = TopicLimitExceededException$;
|
|
470
|
+
n0_registry.registerError(TopicLimitExceededException$, TopicLimitExceededException);
|
|
471
|
+
const UserErrorException$ = [-3, n0, _UEE,
|
|
446
472
|
{ [_aQE]: [`UserError`, 400], [_e]: _c, [_hE]: 400 },
|
|
447
473
|
[_m],
|
|
448
474
|
[0]
|
|
449
475
|
];
|
|
450
|
-
|
|
451
|
-
|
|
476
|
+
exports.UserErrorException$ = UserErrorException$;
|
|
477
|
+
n0_registry.registerError(UserErrorException$, UserErrorException);
|
|
478
|
+
const ValidationException$ = [-3, n0, _VE,
|
|
452
479
|
{ [_aQE]: [`ValidationException`, 400], [_e]: _c, [_hE]: 400 },
|
|
453
480
|
[_M],
|
|
454
481
|
[0], 1
|
|
455
482
|
];
|
|
456
|
-
|
|
457
|
-
|
|
483
|
+
exports.ValidationException$ = ValidationException$;
|
|
484
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
485
|
+
const VerificationException$ = [-3, n0, _VEe,
|
|
458
486
|
{ [_e]: _c },
|
|
459
487
|
[_M, _S],
|
|
460
488
|
[0, 0], 2
|
|
461
489
|
];
|
|
462
|
-
|
|
490
|
+
exports.VerificationException$ = VerificationException$;
|
|
491
|
+
n0_registry.registerError(VerificationException$, VerificationException);
|
|
463
492
|
exports.errorTypeRegistries = [
|
|
464
493
|
_s_registry,
|
|
465
494
|
n0_registry,
|
|
466
495
|
];
|
|
467
496
|
var PhoneNumber = [0, n0, _PN, 8, 0];
|
|
468
497
|
var PhoneNumberString = [0, n0, _PNS, 8, 0];
|
|
469
|
-
|
|
498
|
+
const AddPermissionInput$ = [3, n0, _API,
|
|
470
499
|
0,
|
|
471
500
|
[_TA, _L, _AWSAI, _AN],
|
|
472
501
|
[0, 0, 64 | 0, 64 | 0], 4
|
|
473
502
|
];
|
|
474
|
-
exports.
|
|
503
|
+
exports.AddPermissionInput$ = AddPermissionInput$;
|
|
504
|
+
const BatchResultErrorEntry$ = [3, n0, _BREE,
|
|
475
505
|
0,
|
|
476
506
|
[_I, _C, _SF, _M],
|
|
477
507
|
[0, 0, 2, 0], 3
|
|
478
508
|
];
|
|
479
|
-
exports.
|
|
509
|
+
exports.BatchResultErrorEntry$ = BatchResultErrorEntry$;
|
|
510
|
+
const CheckIfPhoneNumberIsOptedOutInput$ = [3, n0, _CIPNIOOI,
|
|
480
511
|
0,
|
|
481
512
|
[_pN],
|
|
482
513
|
[[() => PhoneNumber, 0]], 1
|
|
483
514
|
];
|
|
484
|
-
exports.
|
|
515
|
+
exports.CheckIfPhoneNumberIsOptedOutInput$ = CheckIfPhoneNumberIsOptedOutInput$;
|
|
516
|
+
const CheckIfPhoneNumberIsOptedOutResponse$ = [3, n0, _CIPNIOOR,
|
|
485
517
|
0,
|
|
486
518
|
[_iOO],
|
|
487
519
|
[2]
|
|
488
520
|
];
|
|
489
|
-
exports.
|
|
521
|
+
exports.CheckIfPhoneNumberIsOptedOutResponse$ = CheckIfPhoneNumberIsOptedOutResponse$;
|
|
522
|
+
const ConfirmSubscriptionInput$ = [3, n0, _CSI,
|
|
490
523
|
0,
|
|
491
524
|
[_TA, _T, _AOU],
|
|
492
525
|
[0, 0, 0], 2
|
|
493
526
|
];
|
|
494
|
-
exports.
|
|
527
|
+
exports.ConfirmSubscriptionInput$ = ConfirmSubscriptionInput$;
|
|
528
|
+
const ConfirmSubscriptionResponse$ = [3, n0, _CSR,
|
|
495
529
|
0,
|
|
496
530
|
[_SA],
|
|
497
531
|
[0]
|
|
498
532
|
];
|
|
499
|
-
exports.
|
|
533
|
+
exports.ConfirmSubscriptionResponse$ = ConfirmSubscriptionResponse$;
|
|
534
|
+
const CreateEndpointResponse$ = [3, n0, _CER,
|
|
500
535
|
0,
|
|
501
536
|
[_EA],
|
|
502
537
|
[0]
|
|
503
538
|
];
|
|
504
|
-
exports.
|
|
539
|
+
exports.CreateEndpointResponse$ = CreateEndpointResponse$;
|
|
540
|
+
const CreatePlatformApplicationInput$ = [3, n0, _CPAI,
|
|
505
541
|
0,
|
|
506
542
|
[_N, _P, _A],
|
|
507
543
|
[0, 0, 128 | 0], 3
|
|
508
544
|
];
|
|
509
|
-
exports.
|
|
545
|
+
exports.CreatePlatformApplicationInput$ = CreatePlatformApplicationInput$;
|
|
546
|
+
const CreatePlatformApplicationResponse$ = [3, n0, _CPAR,
|
|
510
547
|
0,
|
|
511
548
|
[_PAA],
|
|
512
549
|
[0]
|
|
513
550
|
];
|
|
514
|
-
exports.
|
|
551
|
+
exports.CreatePlatformApplicationResponse$ = CreatePlatformApplicationResponse$;
|
|
552
|
+
const CreatePlatformEndpointInput$ = [3, n0, _CPEI,
|
|
515
553
|
0,
|
|
516
554
|
[_PAA, _T, _CUD, _A],
|
|
517
555
|
[0, 0, 0, 128 | 0], 2
|
|
518
556
|
];
|
|
519
|
-
exports.
|
|
557
|
+
exports.CreatePlatformEndpointInput$ = CreatePlatformEndpointInput$;
|
|
558
|
+
const CreateSMSSandboxPhoneNumberInput$ = [3, n0, _CSMSSPNI,
|
|
520
559
|
0,
|
|
521
560
|
[_PN, _LC],
|
|
522
561
|
[[() => PhoneNumberString, 0], 0], 1
|
|
523
562
|
];
|
|
524
|
-
exports.
|
|
563
|
+
exports.CreateSMSSandboxPhoneNumberInput$ = CreateSMSSandboxPhoneNumberInput$;
|
|
564
|
+
const CreateSMSSandboxPhoneNumberResult$ = [3, n0, _CSMSSPNR,
|
|
525
565
|
0,
|
|
526
566
|
[],
|
|
527
567
|
[]
|
|
528
568
|
];
|
|
529
|
-
exports.
|
|
569
|
+
exports.CreateSMSSandboxPhoneNumberResult$ = CreateSMSSandboxPhoneNumberResult$;
|
|
570
|
+
const CreateTopicInput$ = [3, n0, _CTI,
|
|
530
571
|
0,
|
|
531
572
|
[_N, _A, _Ta, _DPP],
|
|
532
573
|
[0, 128 | 0, () => TagList, 0], 1
|
|
533
574
|
];
|
|
534
|
-
exports.
|
|
575
|
+
exports.CreateTopicInput$ = CreateTopicInput$;
|
|
576
|
+
const CreateTopicResponse$ = [3, n0, _CTR,
|
|
535
577
|
0,
|
|
536
578
|
[_TA],
|
|
537
579
|
[0]
|
|
538
580
|
];
|
|
539
|
-
exports.
|
|
581
|
+
exports.CreateTopicResponse$ = CreateTopicResponse$;
|
|
582
|
+
const DeleteEndpointInput$ = [3, n0, _DEI,
|
|
540
583
|
0,
|
|
541
584
|
[_EA],
|
|
542
585
|
[0], 1
|
|
543
586
|
];
|
|
544
|
-
exports.
|
|
587
|
+
exports.DeleteEndpointInput$ = DeleteEndpointInput$;
|
|
588
|
+
const DeletePlatformApplicationInput$ = [3, n0, _DPAI,
|
|
545
589
|
0,
|
|
546
590
|
[_PAA],
|
|
547
591
|
[0], 1
|
|
548
592
|
];
|
|
549
|
-
exports.
|
|
593
|
+
exports.DeletePlatformApplicationInput$ = DeletePlatformApplicationInput$;
|
|
594
|
+
const DeleteSMSSandboxPhoneNumberInput$ = [3, n0, _DSMSSPNI,
|
|
550
595
|
0,
|
|
551
596
|
[_PN],
|
|
552
597
|
[[() => PhoneNumberString, 0]], 1
|
|
553
598
|
];
|
|
554
|
-
exports.
|
|
599
|
+
exports.DeleteSMSSandboxPhoneNumberInput$ = DeleteSMSSandboxPhoneNumberInput$;
|
|
600
|
+
const DeleteSMSSandboxPhoneNumberResult$ = [3, n0, _DSMSSPNR,
|
|
555
601
|
0,
|
|
556
602
|
[],
|
|
557
603
|
[]
|
|
558
604
|
];
|
|
559
|
-
exports.
|
|
605
|
+
exports.DeleteSMSSandboxPhoneNumberResult$ = DeleteSMSSandboxPhoneNumberResult$;
|
|
606
|
+
const DeleteTopicInput$ = [3, n0, _DTI,
|
|
560
607
|
0,
|
|
561
608
|
[_TA],
|
|
562
609
|
[0], 1
|
|
563
610
|
];
|
|
564
|
-
exports.
|
|
611
|
+
exports.DeleteTopicInput$ = DeleteTopicInput$;
|
|
612
|
+
const Endpoint$ = [3, n0, _E,
|
|
565
613
|
0,
|
|
566
614
|
[_EA, _A],
|
|
567
615
|
[0, 128 | 0]
|
|
568
616
|
];
|
|
569
|
-
exports.
|
|
617
|
+
exports.Endpoint$ = Endpoint$;
|
|
618
|
+
const GetDataProtectionPolicyInput$ = [3, n0, _GDPPI,
|
|
570
619
|
0,
|
|
571
620
|
[_RA],
|
|
572
621
|
[0], 1
|
|
573
622
|
];
|
|
574
|
-
exports.
|
|
623
|
+
exports.GetDataProtectionPolicyInput$ = GetDataProtectionPolicyInput$;
|
|
624
|
+
const GetDataProtectionPolicyResponse$ = [3, n0, _GDPPR,
|
|
575
625
|
0,
|
|
576
626
|
[_DPP],
|
|
577
627
|
[0]
|
|
578
628
|
];
|
|
579
|
-
exports.
|
|
629
|
+
exports.GetDataProtectionPolicyResponse$ = GetDataProtectionPolicyResponse$;
|
|
630
|
+
const GetEndpointAttributesInput$ = [3, n0, _GEAI,
|
|
580
631
|
0,
|
|
581
632
|
[_EA],
|
|
582
633
|
[0], 1
|
|
583
634
|
];
|
|
584
|
-
exports.
|
|
635
|
+
exports.GetEndpointAttributesInput$ = GetEndpointAttributesInput$;
|
|
636
|
+
const GetEndpointAttributesResponse$ = [3, n0, _GEAR,
|
|
585
637
|
0,
|
|
586
638
|
[_A],
|
|
587
639
|
[128 | 0]
|
|
588
640
|
];
|
|
589
|
-
exports.
|
|
641
|
+
exports.GetEndpointAttributesResponse$ = GetEndpointAttributesResponse$;
|
|
642
|
+
const GetPlatformApplicationAttributesInput$ = [3, n0, _GPAAI,
|
|
590
643
|
0,
|
|
591
644
|
[_PAA],
|
|
592
645
|
[0], 1
|
|
593
646
|
];
|
|
594
|
-
exports.
|
|
647
|
+
exports.GetPlatformApplicationAttributesInput$ = GetPlatformApplicationAttributesInput$;
|
|
648
|
+
const GetPlatformApplicationAttributesResponse$ = [3, n0, _GPAAR,
|
|
595
649
|
0,
|
|
596
650
|
[_A],
|
|
597
651
|
[128 | 0]
|
|
598
652
|
];
|
|
599
|
-
exports.
|
|
653
|
+
exports.GetPlatformApplicationAttributesResponse$ = GetPlatformApplicationAttributesResponse$;
|
|
654
|
+
const GetSMSAttributesInput$ = [3, n0, _GSMSAI,
|
|
600
655
|
0,
|
|
601
656
|
[_a],
|
|
602
657
|
[64 | 0]
|
|
603
658
|
];
|
|
604
|
-
exports.
|
|
659
|
+
exports.GetSMSAttributesInput$ = GetSMSAttributesInput$;
|
|
660
|
+
const GetSMSAttributesResponse$ = [3, n0, _GSMSAR,
|
|
605
661
|
0,
|
|
606
662
|
[_a],
|
|
607
663
|
[128 | 0]
|
|
608
664
|
];
|
|
609
|
-
exports.
|
|
665
|
+
exports.GetSMSAttributesResponse$ = GetSMSAttributesResponse$;
|
|
666
|
+
const GetSMSSandboxAccountStatusInput$ = [3, n0, _GSMSSASI,
|
|
610
667
|
0,
|
|
611
668
|
[],
|
|
612
669
|
[]
|
|
613
670
|
];
|
|
614
|
-
exports.
|
|
671
|
+
exports.GetSMSSandboxAccountStatusInput$ = GetSMSSandboxAccountStatusInput$;
|
|
672
|
+
const GetSMSSandboxAccountStatusResult$ = [3, n0, _GSMSSASR,
|
|
615
673
|
0,
|
|
616
674
|
[_IIS],
|
|
617
675
|
[2], 1
|
|
618
676
|
];
|
|
619
|
-
exports.
|
|
677
|
+
exports.GetSMSSandboxAccountStatusResult$ = GetSMSSandboxAccountStatusResult$;
|
|
678
|
+
const GetSubscriptionAttributesInput$ = [3, n0, _GSAI,
|
|
620
679
|
0,
|
|
621
680
|
[_SA],
|
|
622
681
|
[0], 1
|
|
623
682
|
];
|
|
624
|
-
exports.
|
|
683
|
+
exports.GetSubscriptionAttributesInput$ = GetSubscriptionAttributesInput$;
|
|
684
|
+
const GetSubscriptionAttributesResponse$ = [3, n0, _GSAR,
|
|
625
685
|
0,
|
|
626
686
|
[_A],
|
|
627
687
|
[128 | 0]
|
|
628
688
|
];
|
|
629
|
-
exports.
|
|
689
|
+
exports.GetSubscriptionAttributesResponse$ = GetSubscriptionAttributesResponse$;
|
|
690
|
+
const GetTopicAttributesInput$ = [3, n0, _GTAI,
|
|
630
691
|
0,
|
|
631
692
|
[_TA],
|
|
632
693
|
[0], 1
|
|
633
694
|
];
|
|
634
|
-
exports.
|
|
695
|
+
exports.GetTopicAttributesInput$ = GetTopicAttributesInput$;
|
|
696
|
+
const GetTopicAttributesResponse$ = [3, n0, _GTAR,
|
|
635
697
|
0,
|
|
636
698
|
[_A],
|
|
637
699
|
[128 | 0]
|
|
638
700
|
];
|
|
639
|
-
exports.
|
|
701
|
+
exports.GetTopicAttributesResponse$ = GetTopicAttributesResponse$;
|
|
702
|
+
const ListEndpointsByPlatformApplicationInput$ = [3, n0, _LEBPAI,
|
|
640
703
|
0,
|
|
641
704
|
[_PAA, _NT],
|
|
642
705
|
[0, 0], 1
|
|
643
706
|
];
|
|
644
|
-
exports.
|
|
707
|
+
exports.ListEndpointsByPlatformApplicationInput$ = ListEndpointsByPlatformApplicationInput$;
|
|
708
|
+
const ListEndpointsByPlatformApplicationResponse$ = [3, n0, _LEBPAR,
|
|
645
709
|
0,
|
|
646
710
|
[_En, _NT],
|
|
647
711
|
[() => ListOfEndpoints, 0]
|
|
648
712
|
];
|
|
649
|
-
exports.
|
|
713
|
+
exports.ListEndpointsByPlatformApplicationResponse$ = ListEndpointsByPlatformApplicationResponse$;
|
|
714
|
+
const ListOriginationNumbersRequest$ = [3, n0, _LONR,
|
|
650
715
|
0,
|
|
651
716
|
[_NT, _MR],
|
|
652
717
|
[0, 1]
|
|
653
718
|
];
|
|
654
|
-
exports.
|
|
719
|
+
exports.ListOriginationNumbersRequest$ = ListOriginationNumbersRequest$;
|
|
720
|
+
const ListOriginationNumbersResult$ = [3, n0, _LONRi,
|
|
655
721
|
0,
|
|
656
722
|
[_NT, _PNh],
|
|
657
723
|
[0, [() => PhoneNumberInformationList, 0]]
|
|
658
724
|
];
|
|
659
|
-
exports.
|
|
725
|
+
exports.ListOriginationNumbersResult$ = ListOriginationNumbersResult$;
|
|
726
|
+
const ListPhoneNumbersOptedOutInput$ = [3, n0, _LPNOOI,
|
|
660
727
|
0,
|
|
661
728
|
[_nT],
|
|
662
729
|
[0]
|
|
663
730
|
];
|
|
664
|
-
exports.
|
|
731
|
+
exports.ListPhoneNumbersOptedOutInput$ = ListPhoneNumbersOptedOutInput$;
|
|
732
|
+
const ListPhoneNumbersOptedOutResponse$ = [3, n0, _LPNOOR,
|
|
665
733
|
0,
|
|
666
734
|
[_pNh, _nT],
|
|
667
735
|
[[() => PhoneNumberList, 0], 0]
|
|
668
736
|
];
|
|
669
|
-
exports.
|
|
737
|
+
exports.ListPhoneNumbersOptedOutResponse$ = ListPhoneNumbersOptedOutResponse$;
|
|
738
|
+
const ListPlatformApplicationsInput$ = [3, n0, _LPAI,
|
|
670
739
|
0,
|
|
671
740
|
[_NT],
|
|
672
741
|
[0]
|
|
673
742
|
];
|
|
674
|
-
exports.
|
|
743
|
+
exports.ListPlatformApplicationsInput$ = ListPlatformApplicationsInput$;
|
|
744
|
+
const ListPlatformApplicationsResponse$ = [3, n0, _LPAR,
|
|
675
745
|
0,
|
|
676
746
|
[_PA, _NT],
|
|
677
747
|
[() => ListOfPlatformApplications, 0]
|
|
678
748
|
];
|
|
679
|
-
exports.
|
|
749
|
+
exports.ListPlatformApplicationsResponse$ = ListPlatformApplicationsResponse$;
|
|
750
|
+
const ListSMSSandboxPhoneNumbersInput$ = [3, n0, _LSMSSPNI,
|
|
680
751
|
0,
|
|
681
752
|
[_NT, _MR],
|
|
682
753
|
[0, 1]
|
|
683
754
|
];
|
|
684
|
-
exports.
|
|
755
|
+
exports.ListSMSSandboxPhoneNumbersInput$ = ListSMSSandboxPhoneNumbersInput$;
|
|
756
|
+
const ListSMSSandboxPhoneNumbersResult$ = [3, n0, _LSMSSPNR,
|
|
685
757
|
0,
|
|
686
758
|
[_PNh, _NT],
|
|
687
759
|
[[() => SMSSandboxPhoneNumberList, 0], 0], 1
|
|
688
760
|
];
|
|
689
|
-
exports.
|
|
761
|
+
exports.ListSMSSandboxPhoneNumbersResult$ = ListSMSSandboxPhoneNumbersResult$;
|
|
762
|
+
const ListSubscriptionsByTopicInput$ = [3, n0, _LSBTI,
|
|
690
763
|
0,
|
|
691
764
|
[_TA, _NT],
|
|
692
765
|
[0, 0], 1
|
|
693
766
|
];
|
|
694
|
-
exports.
|
|
767
|
+
exports.ListSubscriptionsByTopicInput$ = ListSubscriptionsByTopicInput$;
|
|
768
|
+
const ListSubscriptionsByTopicResponse$ = [3, n0, _LSBTR,
|
|
695
769
|
0,
|
|
696
770
|
[_Su, _NT],
|
|
697
771
|
[() => SubscriptionsList, 0]
|
|
698
772
|
];
|
|
699
|
-
exports.
|
|
773
|
+
exports.ListSubscriptionsByTopicResponse$ = ListSubscriptionsByTopicResponse$;
|
|
774
|
+
const ListSubscriptionsInput$ = [3, n0, _LSI,
|
|
700
775
|
0,
|
|
701
776
|
[_NT],
|
|
702
777
|
[0]
|
|
703
778
|
];
|
|
704
|
-
exports.
|
|
779
|
+
exports.ListSubscriptionsInput$ = ListSubscriptionsInput$;
|
|
780
|
+
const ListSubscriptionsResponse$ = [3, n0, _LSR,
|
|
705
781
|
0,
|
|
706
782
|
[_Su, _NT],
|
|
707
783
|
[() => SubscriptionsList, 0]
|
|
708
784
|
];
|
|
709
|
-
exports.
|
|
785
|
+
exports.ListSubscriptionsResponse$ = ListSubscriptionsResponse$;
|
|
786
|
+
const ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
710
787
|
0,
|
|
711
788
|
[_RA],
|
|
712
789
|
[0], 1
|
|
713
790
|
];
|
|
714
|
-
exports.
|
|
791
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
792
|
+
const ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
715
793
|
0,
|
|
716
794
|
[_Ta],
|
|
717
795
|
[() => TagList]
|
|
718
796
|
];
|
|
719
|
-
exports.
|
|
797
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
798
|
+
const ListTopicsInput$ = [3, n0, _LTI,
|
|
720
799
|
0,
|
|
721
800
|
[_NT],
|
|
722
801
|
[0]
|
|
723
802
|
];
|
|
724
|
-
exports.
|
|
803
|
+
exports.ListTopicsInput$ = ListTopicsInput$;
|
|
804
|
+
const ListTopicsResponse$ = [3, n0, _LTR,
|
|
725
805
|
0,
|
|
726
806
|
[_To, _NT],
|
|
727
807
|
[() => TopicsList, 0]
|
|
728
808
|
];
|
|
729
|
-
exports.
|
|
809
|
+
exports.ListTopicsResponse$ = ListTopicsResponse$;
|
|
810
|
+
const MessageAttributeValue$ = [3, n0, _MAV,
|
|
730
811
|
0,
|
|
731
812
|
[_DT, _SV, _BV],
|
|
732
813
|
[0, 0, 21], 1
|
|
733
814
|
];
|
|
734
|
-
exports.
|
|
815
|
+
exports.MessageAttributeValue$ = MessageAttributeValue$;
|
|
816
|
+
const OptInPhoneNumberInput$ = [3, n0, _OIPNI,
|
|
735
817
|
0,
|
|
736
818
|
[_pN],
|
|
737
819
|
[[() => PhoneNumber, 0]], 1
|
|
738
820
|
];
|
|
739
|
-
exports.
|
|
821
|
+
exports.OptInPhoneNumberInput$ = OptInPhoneNumberInput$;
|
|
822
|
+
const OptInPhoneNumberResponse$ = [3, n0, _OIPNR,
|
|
740
823
|
0,
|
|
741
824
|
[],
|
|
742
825
|
[]
|
|
743
826
|
];
|
|
744
|
-
exports.
|
|
827
|
+
exports.OptInPhoneNumberResponse$ = OptInPhoneNumberResponse$;
|
|
828
|
+
const PhoneNumberInformation$ = [3, n0, _PNI,
|
|
745
829
|
0,
|
|
746
830
|
[_CA, _PN, _S, _ICC, _RT, _NC],
|
|
747
831
|
[4, [() => PhoneNumber, 0], 0, 0, 0, 64 | 0]
|
|
748
832
|
];
|
|
749
|
-
exports.
|
|
833
|
+
exports.PhoneNumberInformation$ = PhoneNumberInformation$;
|
|
834
|
+
const PlatformApplication$ = [3, n0, _PAl,
|
|
750
835
|
0,
|
|
751
836
|
[_PAA, _A],
|
|
752
837
|
[0, 128 | 0]
|
|
753
838
|
];
|
|
754
|
-
exports.
|
|
839
|
+
exports.PlatformApplication$ = PlatformApplication$;
|
|
840
|
+
const PublishBatchInput$ = [3, n0, _PBI,
|
|
755
841
|
0,
|
|
756
842
|
[_TA, _PBRE],
|
|
757
843
|
[0, [() => PublishBatchRequestEntryList, 0]], 2
|
|
758
844
|
];
|
|
759
|
-
exports.
|
|
845
|
+
exports.PublishBatchInput$ = PublishBatchInput$;
|
|
846
|
+
const PublishBatchRequestEntry$ = [3, n0, _PBREu,
|
|
760
847
|
0,
|
|
761
848
|
[_I, _M, _Sub, _MS, _MA, _MDI, _MGI],
|
|
762
849
|
[0, 0, 0, 0, [() => MessageAttributeMap, 0], 0, 0], 2
|
|
763
850
|
];
|
|
764
|
-
exports.
|
|
851
|
+
exports.PublishBatchRequestEntry$ = PublishBatchRequestEntry$;
|
|
852
|
+
const PublishBatchResponse$ = [3, n0, _PBR,
|
|
765
853
|
0,
|
|
766
854
|
[_Suc, _F],
|
|
767
855
|
[() => PublishBatchResultEntryList, () => BatchResultErrorEntryList]
|
|
768
856
|
];
|
|
769
|
-
exports.
|
|
857
|
+
exports.PublishBatchResponse$ = PublishBatchResponse$;
|
|
858
|
+
const PublishBatchResultEntry$ = [3, n0, _PBREub,
|
|
770
859
|
0,
|
|
771
860
|
[_I, _MI, _SN],
|
|
772
861
|
[0, 0, 0]
|
|
773
862
|
];
|
|
774
|
-
exports.
|
|
863
|
+
exports.PublishBatchResultEntry$ = PublishBatchResultEntry$;
|
|
864
|
+
const PublishInput$ = [3, n0, _PI,
|
|
775
865
|
0,
|
|
776
866
|
[_M, _TA, _TAa, _PN, _Sub, _MS, _MA, _MDI, _MGI],
|
|
777
867
|
[0, 0, 0, [() => PhoneNumber, 0], 0, 0, [() => MessageAttributeMap, 0], 0, 0], 1
|
|
778
868
|
];
|
|
779
|
-
exports.
|
|
869
|
+
exports.PublishInput$ = PublishInput$;
|
|
870
|
+
const PublishResponse$ = [3, n0, _PR,
|
|
780
871
|
0,
|
|
781
872
|
[_MI, _SN],
|
|
782
873
|
[0, 0]
|
|
783
874
|
];
|
|
784
|
-
exports.
|
|
875
|
+
exports.PublishResponse$ = PublishResponse$;
|
|
876
|
+
const PutDataProtectionPolicyInput$ = [3, n0, _PDPPI,
|
|
785
877
|
0,
|
|
786
878
|
[_RA, _DPP],
|
|
787
879
|
[0, 0], 2
|
|
788
880
|
];
|
|
789
|
-
exports.
|
|
881
|
+
exports.PutDataProtectionPolicyInput$ = PutDataProtectionPolicyInput$;
|
|
882
|
+
const RemovePermissionInput$ = [3, n0, _RPI,
|
|
790
883
|
0,
|
|
791
884
|
[_TA, _L],
|
|
792
885
|
[0, 0], 2
|
|
793
886
|
];
|
|
794
|
-
exports.
|
|
887
|
+
exports.RemovePermissionInput$ = RemovePermissionInput$;
|
|
888
|
+
const SetEndpointAttributesInput$ = [3, n0, _SEAI,
|
|
795
889
|
0,
|
|
796
890
|
[_EA, _A],
|
|
797
891
|
[0, 128 | 0], 2
|
|
798
892
|
];
|
|
799
|
-
exports.
|
|
893
|
+
exports.SetEndpointAttributesInput$ = SetEndpointAttributesInput$;
|
|
894
|
+
const SetPlatformApplicationAttributesInput$ = [3, n0, _SPAAI,
|
|
800
895
|
0,
|
|
801
896
|
[_PAA, _A],
|
|
802
897
|
[0, 128 | 0], 2
|
|
803
898
|
];
|
|
804
|
-
exports.
|
|
899
|
+
exports.SetPlatformApplicationAttributesInput$ = SetPlatformApplicationAttributesInput$;
|
|
900
|
+
const SetSMSAttributesInput$ = [3, n0, _SSMSAI,
|
|
805
901
|
0,
|
|
806
902
|
[_a],
|
|
807
903
|
[128 | 0], 1
|
|
808
904
|
];
|
|
809
|
-
exports.
|
|
905
|
+
exports.SetSMSAttributesInput$ = SetSMSAttributesInput$;
|
|
906
|
+
const SetSMSAttributesResponse$ = [3, n0, _SSMSAR,
|
|
810
907
|
0,
|
|
811
908
|
[],
|
|
812
909
|
[]
|
|
813
910
|
];
|
|
814
|
-
exports.
|
|
911
|
+
exports.SetSMSAttributesResponse$ = SetSMSAttributesResponse$;
|
|
912
|
+
const SetSubscriptionAttributesInput$ = [3, n0, _SSAI,
|
|
815
913
|
0,
|
|
816
914
|
[_SA, _ANt, _AV],
|
|
817
915
|
[0, 0, 0], 2
|
|
818
916
|
];
|
|
819
|
-
exports.
|
|
917
|
+
exports.SetSubscriptionAttributesInput$ = SetSubscriptionAttributesInput$;
|
|
918
|
+
const SetTopicAttributesInput$ = [3, n0, _STAI,
|
|
820
919
|
0,
|
|
821
920
|
[_TA, _ANt, _AV],
|
|
822
921
|
[0, 0, 0], 2
|
|
823
922
|
];
|
|
824
|
-
exports.
|
|
923
|
+
exports.SetTopicAttributesInput$ = SetTopicAttributesInput$;
|
|
924
|
+
const SMSSandboxPhoneNumber$ = [3, n0, _SMSSPN,
|
|
825
925
|
0,
|
|
826
926
|
[_PN, _S],
|
|
827
927
|
[[() => PhoneNumberString, 0], 0]
|
|
828
928
|
];
|
|
829
|
-
exports.
|
|
929
|
+
exports.SMSSandboxPhoneNumber$ = SMSSandboxPhoneNumber$;
|
|
930
|
+
const SubscribeInput$ = [3, n0, _SI,
|
|
830
931
|
0,
|
|
831
932
|
[_TA, _Pr, _E, _A, _RSA],
|
|
832
933
|
[0, 0, 0, 128 | 0, 2], 2
|
|
833
934
|
];
|
|
834
|
-
exports.
|
|
935
|
+
exports.SubscribeInput$ = SubscribeInput$;
|
|
936
|
+
const SubscribeResponse$ = [3, n0, _SR,
|
|
835
937
|
0,
|
|
836
938
|
[_SA],
|
|
837
939
|
[0]
|
|
838
940
|
];
|
|
839
|
-
exports.
|
|
941
|
+
exports.SubscribeResponse$ = SubscribeResponse$;
|
|
942
|
+
const Subscription$ = [3, n0, _Subs,
|
|
840
943
|
0,
|
|
841
944
|
[_SA, _O, _Pr, _E, _TA],
|
|
842
945
|
[0, 0, 0, 0, 0]
|
|
843
946
|
];
|
|
844
|
-
exports.
|
|
947
|
+
exports.Subscription$ = Subscription$;
|
|
948
|
+
const Tag$ = [3, n0, _Tag,
|
|
845
949
|
0,
|
|
846
950
|
[_K, _V],
|
|
847
951
|
[0, 0], 2
|
|
848
952
|
];
|
|
849
|
-
exports.
|
|
953
|
+
exports.Tag$ = Tag$;
|
|
954
|
+
const TagResourceRequest$ = [3, n0, _TRR,
|
|
850
955
|
0,
|
|
851
956
|
[_RA, _Ta],
|
|
852
957
|
[0, () => TagList], 2
|
|
853
958
|
];
|
|
854
|
-
exports.
|
|
959
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
960
|
+
const TagResourceResponse$ = [3, n0, _TRRa,
|
|
855
961
|
0,
|
|
856
962
|
[],
|
|
857
963
|
[]
|
|
858
964
|
];
|
|
859
|
-
exports.
|
|
965
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
966
|
+
const Topic$ = [3, n0, _Top,
|
|
860
967
|
0,
|
|
861
968
|
[_TA],
|
|
862
969
|
[0]
|
|
863
970
|
];
|
|
864
|
-
exports.
|
|
971
|
+
exports.Topic$ = Topic$;
|
|
972
|
+
const UnsubscribeInput$ = [3, n0, _UI,
|
|
865
973
|
0,
|
|
866
974
|
[_SA],
|
|
867
975
|
[0], 1
|
|
868
976
|
];
|
|
869
|
-
exports.
|
|
977
|
+
exports.UnsubscribeInput$ = UnsubscribeInput$;
|
|
978
|
+
const UntagResourceRequest$ = [3, n0, _URR,
|
|
870
979
|
0,
|
|
871
980
|
[_RA, _TK],
|
|
872
981
|
[0, 64 | 0], 2
|
|
873
982
|
];
|
|
874
|
-
exports.
|
|
983
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
984
|
+
const UntagResourceResponse$ = [3, n0, _URRn,
|
|
875
985
|
0,
|
|
876
986
|
[],
|
|
877
987
|
[]
|
|
878
988
|
];
|
|
879
|
-
exports.
|
|
989
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
990
|
+
const VerifySMSSandboxPhoneNumberInput$ = [3, n0, _VSMSSPNI,
|
|
880
991
|
0,
|
|
881
992
|
[_PN, _OTP],
|
|
882
993
|
[[() => PhoneNumberString, 0], 0], 2
|
|
883
994
|
];
|
|
884
|
-
exports.
|
|
995
|
+
exports.VerifySMSSandboxPhoneNumberInput$ = VerifySMSSandboxPhoneNumberInput$;
|
|
996
|
+
const VerifySMSSandboxPhoneNumberResult$ = [3, n0, _VSMSSPNR,
|
|
885
997
|
0,
|
|
886
998
|
[],
|
|
887
999
|
[]
|
|
888
1000
|
];
|
|
1001
|
+
exports.VerifySMSSandboxPhoneNumberResult$ = VerifySMSSandboxPhoneNumberResult$;
|
|
889
1002
|
var __Unit = "unit";
|
|
890
1003
|
var ActionsList = 64 | 0;
|
|
891
1004
|
var BatchResultErrorEntryList = [1, n0, _BREEL,
|
|
892
|
-
0, () =>
|
|
1005
|
+
0, () => BatchResultErrorEntry$
|
|
893
1006
|
];
|
|
894
1007
|
var DelegatesList = 64 | 0;
|
|
895
1008
|
var ListOfEndpoints = [1, n0, _LOE,
|
|
896
|
-
0, () =>
|
|
1009
|
+
0, () => Endpoint$
|
|
897
1010
|
];
|
|
898
1011
|
var ListOfPlatformApplications = [1, n0, _LOPA,
|
|
899
|
-
0, () =>
|
|
1012
|
+
0, () => PlatformApplication$
|
|
900
1013
|
];
|
|
901
1014
|
var ListString = 64 | 0;
|
|
902
1015
|
var NumberCapabilityList = 64 | 0;
|
|
903
1016
|
var PhoneNumberInformationList = [1, n0, _PNIL,
|
|
904
|
-
0, [() =>
|
|
1017
|
+
0, [() => PhoneNumberInformation$,
|
|
905
1018
|
0]
|
|
906
1019
|
];
|
|
907
1020
|
var PhoneNumberList = [1, n0, _PNL,
|
|
@@ -909,158 +1022,158 @@ var PhoneNumberList = [1, n0, _PNL,
|
|
|
909
1022
|
0]
|
|
910
1023
|
];
|
|
911
1024
|
var PublishBatchRequestEntryList = [1, n0, _PBREL,
|
|
912
|
-
0, [() =>
|
|
1025
|
+
0, [() => PublishBatchRequestEntry$,
|
|
913
1026
|
0]
|
|
914
1027
|
];
|
|
915
1028
|
var PublishBatchResultEntryList = [1, n0, _PBRELu,
|
|
916
|
-
0, () =>
|
|
1029
|
+
0, () => PublishBatchResultEntry$
|
|
917
1030
|
];
|
|
918
1031
|
var SMSSandboxPhoneNumberList = [1, n0, _SMSSPNL,
|
|
919
|
-
0, [() =>
|
|
1032
|
+
0, [() => SMSSandboxPhoneNumber$,
|
|
920
1033
|
0]
|
|
921
1034
|
];
|
|
922
1035
|
var SubscriptionsList = [1, n0, _SL,
|
|
923
|
-
0, () =>
|
|
1036
|
+
0, () => Subscription$
|
|
924
1037
|
];
|
|
925
1038
|
var TagKeyList = 64 | 0;
|
|
926
1039
|
var TagList = [1, n0, _TL,
|
|
927
|
-
0, () =>
|
|
1040
|
+
0, () => Tag$
|
|
928
1041
|
];
|
|
929
1042
|
var TopicsList = [1, n0, _TLo,
|
|
930
|
-
0, () =>
|
|
1043
|
+
0, () => Topic$
|
|
931
1044
|
];
|
|
932
1045
|
var MapStringToString = 128 | 0;
|
|
933
1046
|
var MessageAttributeMap = [2, n0, _MAM,
|
|
934
1047
|
0, [0,
|
|
935
1048
|
{ [_xN]: _N }],
|
|
936
|
-
[() =>
|
|
1049
|
+
[() => MessageAttributeValue$,
|
|
937
1050
|
{ [_xN]: _V }]
|
|
938
1051
|
];
|
|
939
1052
|
var SubscriptionAttributesMap = 128 | 0;
|
|
940
1053
|
var TopicAttributesMap = 128 | 0;
|
|
941
1054
|
exports.AddPermission$ = [9, n0, _AP,
|
|
942
|
-
0, () =>
|
|
1055
|
+
0, () => AddPermissionInput$, () => __Unit
|
|
943
1056
|
];
|
|
944
1057
|
exports.CheckIfPhoneNumberIsOptedOut$ = [9, n0, _CIPNIOO,
|
|
945
|
-
0, () =>
|
|
1058
|
+
0, () => CheckIfPhoneNumberIsOptedOutInput$, () => CheckIfPhoneNumberIsOptedOutResponse$
|
|
946
1059
|
];
|
|
947
1060
|
exports.ConfirmSubscription$ = [9, n0, _CS,
|
|
948
|
-
0, () =>
|
|
1061
|
+
0, () => ConfirmSubscriptionInput$, () => ConfirmSubscriptionResponse$
|
|
949
1062
|
];
|
|
950
1063
|
exports.CreatePlatformApplication$ = [9, n0, _CPA,
|
|
951
|
-
0, () =>
|
|
1064
|
+
0, () => CreatePlatformApplicationInput$, () => CreatePlatformApplicationResponse$
|
|
952
1065
|
];
|
|
953
1066
|
exports.CreatePlatformEndpoint$ = [9, n0, _CPE,
|
|
954
|
-
0, () =>
|
|
1067
|
+
0, () => CreatePlatformEndpointInput$, () => CreateEndpointResponse$
|
|
955
1068
|
];
|
|
956
1069
|
exports.CreateSMSSandboxPhoneNumber$ = [9, n0, _CSMSSPN,
|
|
957
|
-
0, () =>
|
|
1070
|
+
0, () => CreateSMSSandboxPhoneNumberInput$, () => CreateSMSSandboxPhoneNumberResult$
|
|
958
1071
|
];
|
|
959
1072
|
exports.CreateTopic$ = [9, n0, _CT,
|
|
960
|
-
0, () =>
|
|
1073
|
+
0, () => CreateTopicInput$, () => CreateTopicResponse$
|
|
961
1074
|
];
|
|
962
1075
|
exports.DeleteEndpoint$ = [9, n0, _DE,
|
|
963
|
-
0, () =>
|
|
1076
|
+
0, () => DeleteEndpointInput$, () => __Unit
|
|
964
1077
|
];
|
|
965
1078
|
exports.DeletePlatformApplication$ = [9, n0, _DPA,
|
|
966
|
-
0, () =>
|
|
1079
|
+
0, () => DeletePlatformApplicationInput$, () => __Unit
|
|
967
1080
|
];
|
|
968
1081
|
exports.DeleteSMSSandboxPhoneNumber$ = [9, n0, _DSMSSPN,
|
|
969
|
-
0, () =>
|
|
1082
|
+
0, () => DeleteSMSSandboxPhoneNumberInput$, () => DeleteSMSSandboxPhoneNumberResult$
|
|
970
1083
|
];
|
|
971
1084
|
exports.DeleteTopic$ = [9, n0, _DTe,
|
|
972
|
-
0, () =>
|
|
1085
|
+
0, () => DeleteTopicInput$, () => __Unit
|
|
973
1086
|
];
|
|
974
1087
|
exports.GetDataProtectionPolicy$ = [9, n0, _GDPP,
|
|
975
|
-
0, () =>
|
|
1088
|
+
0, () => GetDataProtectionPolicyInput$, () => GetDataProtectionPolicyResponse$
|
|
976
1089
|
];
|
|
977
1090
|
exports.GetEndpointAttributes$ = [9, n0, _GEA,
|
|
978
|
-
0, () =>
|
|
1091
|
+
0, () => GetEndpointAttributesInput$, () => GetEndpointAttributesResponse$
|
|
979
1092
|
];
|
|
980
1093
|
exports.GetPlatformApplicationAttributes$ = [9, n0, _GPAA,
|
|
981
|
-
0, () =>
|
|
1094
|
+
0, () => GetPlatformApplicationAttributesInput$, () => GetPlatformApplicationAttributesResponse$
|
|
982
1095
|
];
|
|
983
1096
|
exports.GetSMSAttributes$ = [9, n0, _GSMSA,
|
|
984
|
-
0, () =>
|
|
1097
|
+
0, () => GetSMSAttributesInput$, () => GetSMSAttributesResponse$
|
|
985
1098
|
];
|
|
986
1099
|
exports.GetSMSSandboxAccountStatus$ = [9, n0, _GSMSSAS,
|
|
987
|
-
0, () =>
|
|
1100
|
+
0, () => GetSMSSandboxAccountStatusInput$, () => GetSMSSandboxAccountStatusResult$
|
|
988
1101
|
];
|
|
989
1102
|
exports.GetSubscriptionAttributes$ = [9, n0, _GSA,
|
|
990
|
-
0, () =>
|
|
1103
|
+
0, () => GetSubscriptionAttributesInput$, () => GetSubscriptionAttributesResponse$
|
|
991
1104
|
];
|
|
992
1105
|
exports.GetTopicAttributes$ = [9, n0, _GTA,
|
|
993
|
-
0, () =>
|
|
1106
|
+
0, () => GetTopicAttributesInput$, () => GetTopicAttributesResponse$
|
|
994
1107
|
];
|
|
995
1108
|
exports.ListEndpointsByPlatformApplication$ = [9, n0, _LEBPA,
|
|
996
|
-
0, () =>
|
|
1109
|
+
0, () => ListEndpointsByPlatformApplicationInput$, () => ListEndpointsByPlatformApplicationResponse$
|
|
997
1110
|
];
|
|
998
1111
|
exports.ListOriginationNumbers$ = [9, n0, _LON,
|
|
999
|
-
0, () =>
|
|
1112
|
+
0, () => ListOriginationNumbersRequest$, () => ListOriginationNumbersResult$
|
|
1000
1113
|
];
|
|
1001
1114
|
exports.ListPhoneNumbersOptedOut$ = [9, n0, _LPNOO,
|
|
1002
|
-
0, () =>
|
|
1115
|
+
0, () => ListPhoneNumbersOptedOutInput$, () => ListPhoneNumbersOptedOutResponse$
|
|
1003
1116
|
];
|
|
1004
1117
|
exports.ListPlatformApplications$ = [9, n0, _LPA,
|
|
1005
|
-
0, () =>
|
|
1118
|
+
0, () => ListPlatformApplicationsInput$, () => ListPlatformApplicationsResponse$
|
|
1006
1119
|
];
|
|
1007
1120
|
exports.ListSMSSandboxPhoneNumbers$ = [9, n0, _LSMSSPN,
|
|
1008
|
-
0, () =>
|
|
1121
|
+
0, () => ListSMSSandboxPhoneNumbersInput$, () => ListSMSSandboxPhoneNumbersResult$
|
|
1009
1122
|
];
|
|
1010
1123
|
exports.ListSubscriptions$ = [9, n0, _LS,
|
|
1011
|
-
0, () =>
|
|
1124
|
+
0, () => ListSubscriptionsInput$, () => ListSubscriptionsResponse$
|
|
1012
1125
|
];
|
|
1013
1126
|
exports.ListSubscriptionsByTopic$ = [9, n0, _LSBT,
|
|
1014
|
-
0, () =>
|
|
1127
|
+
0, () => ListSubscriptionsByTopicInput$, () => ListSubscriptionsByTopicResponse$
|
|
1015
1128
|
];
|
|
1016
1129
|
exports.ListTagsForResource$ = [9, n0, _LTFR,
|
|
1017
|
-
0, () =>
|
|
1130
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1018
1131
|
];
|
|
1019
1132
|
exports.ListTopics$ = [9, n0, _LT,
|
|
1020
|
-
0, () =>
|
|
1133
|
+
0, () => ListTopicsInput$, () => ListTopicsResponse$
|
|
1021
1134
|
];
|
|
1022
1135
|
exports.OptInPhoneNumber$ = [9, n0, _OIPN,
|
|
1023
|
-
0, () =>
|
|
1136
|
+
0, () => OptInPhoneNumberInput$, () => OptInPhoneNumberResponse$
|
|
1024
1137
|
];
|
|
1025
1138
|
exports.Publish$ = [9, n0, _Pu,
|
|
1026
|
-
0, () =>
|
|
1139
|
+
0, () => PublishInput$, () => PublishResponse$
|
|
1027
1140
|
];
|
|
1028
1141
|
exports.PublishBatch$ = [9, n0, _PB,
|
|
1029
|
-
0, () =>
|
|
1142
|
+
0, () => PublishBatchInput$, () => PublishBatchResponse$
|
|
1030
1143
|
];
|
|
1031
1144
|
exports.PutDataProtectionPolicy$ = [9, n0, _PDPP,
|
|
1032
|
-
0, () =>
|
|
1145
|
+
0, () => PutDataProtectionPolicyInput$, () => __Unit
|
|
1033
1146
|
];
|
|
1034
1147
|
exports.RemovePermission$ = [9, n0, _RP,
|
|
1035
|
-
0, () =>
|
|
1148
|
+
0, () => RemovePermissionInput$, () => __Unit
|
|
1036
1149
|
];
|
|
1037
1150
|
exports.SetEndpointAttributes$ = [9, n0, _SEA,
|
|
1038
|
-
0, () =>
|
|
1151
|
+
0, () => SetEndpointAttributesInput$, () => __Unit
|
|
1039
1152
|
];
|
|
1040
1153
|
exports.SetPlatformApplicationAttributes$ = [9, n0, _SPAA,
|
|
1041
|
-
0, () =>
|
|
1154
|
+
0, () => SetPlatformApplicationAttributesInput$, () => __Unit
|
|
1042
1155
|
];
|
|
1043
1156
|
exports.SetSMSAttributes$ = [9, n0, _SSMSA,
|
|
1044
|
-
0, () =>
|
|
1157
|
+
0, () => SetSMSAttributesInput$, () => SetSMSAttributesResponse$
|
|
1045
1158
|
];
|
|
1046
1159
|
exports.SetSubscriptionAttributes$ = [9, n0, _SSA,
|
|
1047
|
-
0, () =>
|
|
1160
|
+
0, () => SetSubscriptionAttributesInput$, () => __Unit
|
|
1048
1161
|
];
|
|
1049
1162
|
exports.SetTopicAttributes$ = [9, n0, _STA,
|
|
1050
|
-
0, () =>
|
|
1163
|
+
0, () => SetTopicAttributesInput$, () => __Unit
|
|
1051
1164
|
];
|
|
1052
1165
|
exports.Subscribe$ = [9, n0, _Subsc,
|
|
1053
|
-
0, () =>
|
|
1166
|
+
0, () => SubscribeInput$, () => SubscribeResponse$
|
|
1054
1167
|
];
|
|
1055
1168
|
exports.TagResource$ = [9, n0, _TR,
|
|
1056
|
-
0, () =>
|
|
1169
|
+
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1057
1170
|
];
|
|
1058
1171
|
exports.Unsubscribe$ = [9, n0, _U,
|
|
1059
|
-
0, () =>
|
|
1172
|
+
0, () => UnsubscribeInput$, () => __Unit
|
|
1060
1173
|
];
|
|
1061
1174
|
exports.UntagResource$ = [9, n0, _UR,
|
|
1062
|
-
0, () =>
|
|
1175
|
+
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1063
1176
|
];
|
|
1064
1177
|
exports.VerifySMSSandboxPhoneNumber$ = [9, n0, _VSMSSPN,
|
|
1065
|
-
0, () =>
|
|
1178
|
+
0, () => VerifySMSSandboxPhoneNumberInput$, () => VerifySMSSandboxPhoneNumberResult$
|
|
1066
1179
|
];
|