@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,16 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AttachRolePolicyRequest$ = exports.AttachGroupPolicyRequest$ = exports.AttachedPolicy$ = exports.AttachedPermissionsBoundary$ = exports.AssociateDelegationRequestRequest$ = exports.AddUserToGroupRequest$ = exports.AddRoleToInstanceProfileRequest$ = exports.AddClientIDToOpenIDConnectProviderRequest$ = exports.AccessKeyMetadata$ = exports.AccessKeyLastUsed$ = exports.AccessKey$ = exports.AccessDetail$ = exports.AcceptDelegationRequestRequest$ = exports.errorTypeRegistries = exports.UnrecognizedPublicKeyEncodingException$ = exports.UnmodifiableEntityException$ = exports.ServiceNotSupportedException$ = exports.ServiceFailureException$ = exports.ServiceAccessNotEnabledException$ = exports.ReportGenerationLimitExceededException$ = exports.PolicyNotAttachableException$ = exports.PolicyEvaluationException$ = exports.PasswordPolicyViolationException$ = exports.OrganizationNotInAllFeaturesModeException$ = exports.OrganizationNotFoundException$ = exports.OpenIdIdpCommunicationErrorException$ = exports.NoSuchEntityException$ = exports.MalformedPolicyDocumentException$ = exports.MalformedCertificateException$ = exports.LimitExceededException$ = exports.KeyPairMismatchException$ = exports.InvalidUserTypeException$ = exports.InvalidPublicKeyException$ = exports.InvalidInputException$ = exports.InvalidCertificateException$ = exports.InvalidAuthenticationCodeException$ = exports.FeatureEnabledException$ = exports.FeatureDisabledException$ = exports.EntityTemporarilyUnmodifiableException$ = exports.EntityAlreadyExistsException$ = exports.DuplicateSSHPublicKeyException$ = exports.DuplicateCertificateException$ = exports.DeleteConflictException$ = exports.CredentialReportNotReadyException$ = exports.CredentialReportNotPresentException$ = exports.CredentialReportExpiredException$ = exports.ConcurrentModificationException$ = exports.CallerIsNotManagementAccountException$ = exports.AccountNotManagementOrDelegatedAdministratorException$ = exports.IAMServiceException$ = void 0;
|
|
4
|
-
exports.DeleteServiceLinkedRoleRequest$ = exports.DeleteServerCertificateRequest$ = exports.DeleteSAMLProviderRequest$ = exports.DeleteRoleRequest$ = exports.DeleteRolePolicyRequest$ = exports.DeleteRolePermissionsBoundaryRequest$ = exports.DeletePolicyVersionRequest$ = exports.DeletePolicyRequest$ = exports.DeleteOpenIDConnectProviderRequest$ = exports.DeleteLoginProfileRequest$ = exports.DeleteInstanceProfileRequest$ = exports.DeleteGroupRequest$ = exports.DeleteGroupPolicyRequest$ = exports.DeleteAccountAliasRequest$ = exports.DeleteAccessKeyRequest$ = exports.DelegationRequest$ = exports.DelegationPermission$ = exports.DeactivateMFADeviceRequest$ = exports.CreateVirtualMFADeviceResponse$ = exports.CreateVirtualMFADeviceRequest$ = exports.CreateUserResponse$ = exports.CreateUserRequest$ = exports.CreateServiceSpecificCredentialResponse$ = exports.CreateServiceSpecificCredentialRequest$ = exports.CreateServiceLinkedRoleResponse$ = exports.CreateServiceLinkedRoleRequest$ = exports.CreateSAMLProviderResponse$ = exports.CreateSAMLProviderRequest$ = exports.CreateRoleResponse$ = exports.CreateRoleRequest$ = exports.CreatePolicyVersionResponse$ = exports.CreatePolicyVersionRequest$ = exports.CreatePolicyResponse$ = exports.CreatePolicyRequest$ = exports.CreateOpenIDConnectProviderResponse$ = exports.CreateOpenIDConnectProviderRequest$ = exports.CreateLoginProfileResponse$ = exports.CreateLoginProfileRequest$ = exports.CreateInstanceProfileResponse$ = exports.CreateInstanceProfileRequest$ = exports.CreateGroupResponse$ = exports.CreateGroupRequest$ = exports.CreateDelegationRequestResponse$ = exports.CreateDelegationRequestRequest$ = exports.CreateAccountAliasRequest$ = exports.CreateAccessKeyResponse$ = exports.CreateAccessKeyRequest$ = exports.ContextEntry$ = exports.ChangePasswordRequest$ = exports.AttachUserPolicyRequest$ = void 0;
|
|
5
|
-
exports.GetInstanceProfileRequest$ = exports.GetHumanReadableSummaryResponse$ = exports.GetHumanReadableSummaryRequest$ = exports.GetGroupResponse$ = exports.GetGroupRequest$ = exports.GetGroupPolicyResponse$ = exports.GetGroupPolicyRequest$ = exports.GetDelegationRequestResponse$ = exports.GetDelegationRequestRequest$ = exports.GetCredentialReportResponse$ = exports.GetContextKeysForPrincipalPolicyRequest$ = exports.GetContextKeysForPolicyResponse$ = exports.GetContextKeysForCustomPolicyRequest$ = exports.GetAccountSummaryResponse$ = exports.GetAccountPasswordPolicyResponse$ = exports.GetAccountAuthorizationDetailsResponse$ = exports.GetAccountAuthorizationDetailsRequest$ = exports.GetAccessKeyLastUsedResponse$ = exports.GetAccessKeyLastUsedRequest$ = exports.GenerateServiceLastAccessedDetailsResponse$ = exports.GenerateServiceLastAccessedDetailsRequest$ = exports.GenerateOrganizationsAccessReportResponse$ = exports.GenerateOrganizationsAccessReportRequest$ = exports.GenerateCredentialReportResponse$ = exports.EvaluationResult$ = exports.ErrorDetails$ = exports.EntityInfo$ = exports.EntityDetails$ = exports.EnableOutboundWebIdentityFederationResponse$ = exports.EnableOrganizationsRootSessionsResponse$ = exports.EnableOrganizationsRootSessionsRequest$ = exports.EnableOrganizationsRootCredentialsManagementResponse$ = exports.EnableOrganizationsRootCredentialsManagementRequest$ = exports.EnableMFADeviceRequest$ = exports.DisableOrganizationsRootSessionsResponse$ = exports.DisableOrganizationsRootSessionsRequest$ = exports.DisableOrganizationsRootCredentialsManagementResponse$ = exports.DisableOrganizationsRootCredentialsManagementRequest$ = exports.DetachUserPolicyRequest$ = exports.DetachRolePolicyRequest$ = exports.DetachGroupPolicyRequest$ = exports.DeletionTaskFailureReasonType$ = exports.DeleteVirtualMFADeviceRequest$ = exports.DeleteUserRequest$ = exports.DeleteUserPolicyRequest$ = exports.DeleteUserPermissionsBoundaryRequest$ = exports.DeleteSSHPublicKeyRequest$ = exports.DeleteSigningCertificateRequest$ = exports.DeleteServiceSpecificCredentialRequest$ = exports.DeleteServiceLinkedRoleResponse$ = void 0;
|
|
6
|
-
exports.ListEntitiesForPolicyRequest$ = exports.ListDelegationRequestsResponse$ = exports.ListDelegationRequestsRequest$ = exports.ListAttachedUserPoliciesResponse$ = exports.ListAttachedUserPoliciesRequest$ = exports.ListAttachedRolePoliciesResponse$ = exports.ListAttachedRolePoliciesRequest$ = exports.ListAttachedGroupPoliciesResponse$ = exports.ListAttachedGroupPoliciesRequest$ = exports.ListAccountAliasesResponse$ = exports.ListAccountAliasesRequest$ = exports.ListAccessKeysResponse$ = exports.ListAccessKeysRequest$ = exports.InstanceProfile$ = exports.GroupDetail$ = exports.Group$ = exports.GetUserResponse$ = exports.GetUserRequest$ = exports.GetUserPolicyResponse$ = exports.GetUserPolicyRequest$ = exports.GetSSHPublicKeyResponse$ = exports.GetSSHPublicKeyRequest$ = exports.GetServiceLinkedRoleDeletionStatusResponse$ = exports.GetServiceLinkedRoleDeletionStatusRequest$ = exports.GetServiceLastAccessedDetailsWithEntitiesResponse$ = exports.GetServiceLastAccessedDetailsWithEntitiesRequest$ = exports.GetServiceLastAccessedDetailsResponse$ = exports.GetServiceLastAccessedDetailsRequest$ = exports.GetServerCertificateResponse$ = exports.GetServerCertificateRequest$ = exports.GetSAMLProviderResponse$ = exports.GetSAMLProviderRequest$ = exports.GetRoleResponse$ = exports.GetRoleRequest$ = exports.GetRolePolicyResponse$ = exports.GetRolePolicyRequest$ = exports.GetPolicyVersionResponse$ = exports.GetPolicyVersionRequest$ = exports.GetPolicyResponse$ = exports.GetPolicyRequest$ = exports.GetOutboundWebIdentityFederationInfoResponse$ = exports.GetOrganizationsAccessReportResponse$ = exports.GetOrganizationsAccessReportRequest$ = exports.GetOpenIDConnectProviderResponse$ = exports.GetOpenIDConnectProviderRequest$ = exports.GetMFADeviceResponse$ = exports.GetMFADeviceRequest$ = exports.GetLoginProfileResponse$ = exports.GetLoginProfileRequest$ = exports.GetInstanceProfileResponse$ = void 0;
|
|
7
|
-
exports.ListSigningCertificatesResponse$ = exports.ListSigningCertificatesRequest$ = exports.ListServiceSpecificCredentialsResponse$ = exports.ListServiceSpecificCredentialsRequest$ = exports.ListServerCertificateTagsResponse$ = exports.ListServerCertificateTagsRequest$ = exports.ListServerCertificatesResponse$ = exports.ListServerCertificatesRequest$ = exports.ListSAMLProviderTagsResponse$ = exports.ListSAMLProviderTagsRequest$ = exports.ListSAMLProvidersResponse$ = exports.ListSAMLProvidersRequest$ = exports.ListRoleTagsResponse$ = exports.ListRoleTagsRequest$ = exports.ListRolesResponse$ = exports.ListRolesRequest$ = exports.ListRolePoliciesResponse$ = exports.ListRolePoliciesRequest$ = exports.ListPolicyVersionsResponse$ = exports.ListPolicyVersionsRequest$ = exports.ListPolicyTagsResponse$ = exports.ListPolicyTagsRequest$ = exports.ListPoliciesResponse$ = exports.ListPoliciesRequest$ = exports.ListPoliciesGrantingServiceAccessResponse$ = exports.ListPoliciesGrantingServiceAccessRequest$ = exports.ListPoliciesGrantingServiceAccessEntry$ = exports.ListOrganizationsFeaturesResponse$ = exports.ListOrganizationsFeaturesRequest$ = exports.ListOpenIDConnectProviderTagsResponse$ = exports.ListOpenIDConnectProviderTagsRequest$ = exports.ListOpenIDConnectProvidersResponse$ = exports.ListOpenIDConnectProvidersRequest$ = exports.ListMFADeviceTagsResponse$ = exports.ListMFADeviceTagsRequest$ = exports.ListMFADevicesResponse$ = exports.ListMFADevicesRequest$ = exports.ListInstanceProfileTagsResponse$ = exports.ListInstanceProfileTagsRequest$ = exports.ListInstanceProfilesResponse$ = exports.ListInstanceProfilesRequest$ = exports.ListInstanceProfilesForRoleResponse$ = exports.ListInstanceProfilesForRoleRequest$ = exports.ListGroupsResponse$ = exports.ListGroupsRequest$ = exports.ListGroupsForUserResponse$ = exports.ListGroupsForUserRequest$ = exports.ListGroupPoliciesResponse$ = exports.ListGroupPoliciesRequest$ = exports.ListEntitiesForPolicyResponse$ = void 0;
|
|
8
|
-
exports.ServiceSpecificCredential$ = exports.ServiceLastAccessed$ = exports.ServerCertificateMetadata$ = exports.ServerCertificate$ = exports.SendDelegationTokenRequest$ = exports.SAMLProviderListEntry$ = exports.SAMLPrivateKey$ = exports.RoleUsageType$ = exports.RoleLastUsed$ = exports.RoleDetail$ = exports.Role$ = exports.ResyncMFADeviceRequest$ = exports.ResourceSpecificResult$ = exports.ResetServiceSpecificCredentialResponse$ = exports.ResetServiceSpecificCredentialRequest$ = exports.RemoveUserFromGroupRequest$ = exports.RemoveRoleFromInstanceProfileRequest$ = exports.RemoveClientIDFromOpenIDConnectProviderRequest$ = exports.RejectDelegationRequestRequest$ = exports.PutUserPolicyRequest$ = exports.PutUserPermissionsBoundaryRequest$ = exports.PutRolePolicyRequest$ = exports.PutRolePermissionsBoundaryRequest$ = exports.PutGroupPolicyRequest$ = exports.Position$ = exports.PolicyVersion$ = exports.PolicyUser$ = exports.PolicyRole$ = exports.PolicyParameter$ = exports.PolicyGroup$ = exports.PolicyGrantingServiceAccess$ = exports.PolicyDetail$ = exports.Policy$ = exports.PermissionsBoundaryDecisionDetail$ = exports.PasswordPolicy$ = exports.OrganizationsDecisionDetail$ = exports.OpenIDConnectProviderListEntry$ = exports.MFADevice$ = exports.ManagedPolicyDetail$ = exports.LoginProfile$ = exports.ListVirtualMFADevicesResponse$ = exports.ListVirtualMFADevicesRequest$ = exports.ListUserTagsResponse$ = exports.ListUserTagsRequest$ = exports.ListUsersResponse$ = exports.ListUsersRequest$ = exports.ListUserPoliciesResponse$ = exports.ListUserPoliciesRequest$ = exports.ListSSHPublicKeysResponse$ = exports.ListSSHPublicKeysRequest$ = void 0;
|
|
9
|
-
exports.UploadSigningCertificateResponse$ = exports.UploadSigningCertificateRequest$ = exports.UploadServerCertificateResponse$ = exports.UploadServerCertificateRequest$ = exports.UpdateUserRequest$ = exports.UpdateSSHPublicKeyRequest$ = exports.UpdateSigningCertificateRequest$ = exports.UpdateServiceSpecificCredentialRequest$ = exports.UpdateServerCertificateRequest$ = exports.UpdateSAMLProviderResponse$ = exports.UpdateSAMLProviderRequest$ = exports.UpdateRoleResponse$ = exports.UpdateRoleRequest$ = exports.UpdateRoleDescriptionResponse$ = exports.UpdateRoleDescriptionRequest$ = exports.UpdateOpenIDConnectProviderThumbprintRequest$ = exports.UpdateLoginProfileRequest$ = exports.UpdateGroupRequest$ = exports.UpdateDelegationRequestRequest$ = exports.UpdateAssumeRolePolicyRequest$ = exports.UpdateAccountPasswordPolicyRequest$ = exports.UpdateAccessKeyRequest$ = exports.UntagUserRequest$ = exports.UntagServerCertificateRequest$ = exports.UntagSAMLProviderRequest$ = exports.UntagRoleRequest$ = exports.UntagPolicyRequest$ = exports.UntagOpenIDConnectProviderRequest$ = exports.UntagMFADeviceRequest$ = exports.UntagInstanceProfileRequest$ = exports.TrackedActionLastAccessed$ = exports.TagUserRequest$ = exports.TagServerCertificateRequest$ = exports.TagSAMLProviderRequest$ = exports.TagRoleRequest$ = exports.TagPolicyRequest$ = exports.TagOpenIDConnectProviderRequest$ = exports.TagMFADeviceRequest$ = exports.TagInstanceProfileRequest$ = exports.Tag$ = exports.Statement$ = exports.SSHPublicKeyMetadata$ = exports.SSHPublicKey$ = exports.SimulatePrincipalPolicyRequest$ = exports.SimulatePolicyResponse$ = exports.SimulateCustomPolicyRequest$ = exports.SigningCertificate$ = exports.SetSecurityTokenServicePreferencesRequest$ = exports.SetDefaultPolicyVersionRequest$ = exports.ServiceSpecificCredentialMetadata$ = void 0;
|
|
10
|
-
exports.DeleteUser$ = exports.DeleteSSHPublicKey$ = exports.DeleteSigningCertificate$ = exports.DeleteServiceSpecificCredential$ = exports.DeleteServiceLinkedRole$ = exports.DeleteServerCertificate$ = exports.DeleteSAMLProvider$ = exports.DeleteRolePolicy$ = exports.DeleteRolePermissionsBoundary$ = exports.DeleteRole$ = exports.DeletePolicyVersion$ = exports.DeletePolicy$ = exports.DeleteOpenIDConnectProvider$ = exports.DeleteLoginProfile$ = exports.DeleteInstanceProfile$ = exports.DeleteGroupPolicy$ = exports.DeleteGroup$ = exports.DeleteAccountPasswordPolicy$ = exports.DeleteAccountAlias$ = exports.DeleteAccessKey$ = exports.DeactivateMFADevice$ = exports.CreateVirtualMFADevice$ = exports.CreateUser$ = exports.CreateServiceSpecificCredential$ = exports.CreateServiceLinkedRole$ = exports.CreateSAMLProvider$ = exports.CreateRole$ = exports.CreatePolicyVersion$ = exports.CreatePolicy$ = exports.CreateOpenIDConnectProvider$ = exports.CreateLoginProfile$ = exports.CreateInstanceProfile$ = exports.CreateGroup$ = exports.CreateDelegationRequest$ = exports.CreateAccountAlias$ = exports.CreateAccessKey$ = exports.ChangePassword$ = exports.AttachUserPolicy$ = exports.AttachRolePolicy$ = exports.AttachGroupPolicy$ = exports.AssociateDelegationRequest$ = exports.AddUserToGroup$ = exports.AddRoleToInstanceProfile$ = exports.AddClientIDToOpenIDConnectProvider$ = exports.AcceptDelegationRequest$ = exports.VirtualMFADevice$ = exports.UserDetail$ = exports.User$ = exports.UploadSSHPublicKeyResponse$ = exports.UploadSSHPublicKeyRequest$ = void 0;
|
|
11
|
-
exports.ListAttachedUserPolicies$ = exports.ListAttachedRolePolicies$ = exports.ListAttachedGroupPolicies$ = exports.ListAccountAliases$ = exports.ListAccessKeys$ = exports.GetUserPolicy$ = exports.GetUser$ = exports.GetSSHPublicKey$ = exports.GetServiceLinkedRoleDeletionStatus$ = exports.GetServiceLastAccessedDetailsWithEntities$ = exports.GetServiceLastAccessedDetails$ = exports.GetServerCertificate$ = exports.GetSAMLProvider$ = exports.GetRolePolicy$ = exports.GetRole$ = exports.GetPolicyVersion$ = exports.GetPolicy$ = exports.GetOutboundWebIdentityFederationInfo$ = exports.GetOrganizationsAccessReport$ = exports.GetOpenIDConnectProvider$ = exports.GetMFADevice$ = exports.GetLoginProfile$ = exports.GetInstanceProfile$ = exports.GetHumanReadableSummary$ = exports.GetGroupPolicy$ = exports.GetGroup$ = exports.GetDelegationRequest$ = exports.GetCredentialReport$ = exports.GetContextKeysForPrincipalPolicy$ = exports.GetContextKeysForCustomPolicy$ = exports.GetAccountSummary$ = exports.GetAccountPasswordPolicy$ = exports.GetAccountAuthorizationDetails$ = exports.GetAccessKeyLastUsed$ = exports.GenerateServiceLastAccessedDetails$ = exports.GenerateOrganizationsAccessReport$ = exports.GenerateCredentialReport$ = exports.EnableOutboundWebIdentityFederation$ = exports.EnableOrganizationsRootSessions$ = exports.EnableOrganizationsRootCredentialsManagement$ = exports.EnableMFADevice$ = exports.DisableOutboundWebIdentityFederation$ = exports.DisableOrganizationsRootSessions$ = exports.DisableOrganizationsRootCredentialsManagement$ = exports.DetachUserPolicy$ = exports.DetachRolePolicy$ = exports.DetachGroupPolicy$ = exports.DeleteVirtualMFADevice$ = exports.DeleteUserPolicy$ = exports.DeleteUserPermissionsBoundary$ = void 0;
|
|
12
|
-
exports.TagOpenIDConnectProvider$ = exports.TagMFADevice$ = exports.TagInstanceProfile$ = exports.SimulatePrincipalPolicy$ = exports.SimulateCustomPolicy$ = exports.SetSecurityTokenServicePreferences$ = exports.SetDefaultPolicyVersion$ = exports.SendDelegationToken$ = exports.ResyncMFADevice$ = exports.ResetServiceSpecificCredential$ = exports.RemoveUserFromGroup$ = exports.RemoveRoleFromInstanceProfile$ = exports.RemoveClientIDFromOpenIDConnectProvider$ = exports.RejectDelegationRequest$ = exports.PutUserPolicy$ = exports.PutUserPermissionsBoundary$ = exports.PutRolePolicy$ = exports.PutRolePermissionsBoundary$ = exports.PutGroupPolicy$ = exports.ListVirtualMFADevices$ = exports.ListUserTags$ = exports.ListUsers$ = exports.ListUserPolicies$ = exports.ListSSHPublicKeys$ = exports.ListSigningCertificates$ = exports.ListServiceSpecificCredentials$ = exports.ListServerCertificateTags$ = exports.ListServerCertificates$ = exports.ListSAMLProviderTags$ = exports.ListSAMLProviders$ = exports.ListRoleTags$ = exports.ListRoles$ = exports.ListRolePolicies$ = exports.ListPolicyVersions$ = exports.ListPolicyTags$ = exports.ListPoliciesGrantingServiceAccess$ = exports.ListPolicies$ = exports.ListOrganizationsFeatures$ = exports.ListOpenIDConnectProviderTags$ = exports.ListOpenIDConnectProviders$ = exports.ListMFADeviceTags$ = exports.ListMFADevices$ = exports.ListInstanceProfileTags$ = exports.ListInstanceProfilesForRole$ = exports.ListInstanceProfiles$ = exports.ListGroupsForUser$ = exports.ListGroups$ = exports.ListGroupPolicies$ = exports.ListEntitiesForPolicy$ = exports.ListDelegationRequests$ = void 0;
|
|
13
|
-
exports.UploadSSHPublicKey$ = exports.UploadSigningCertificate$ = exports.UploadServerCertificate$ = exports.UpdateUser$ = exports.UpdateSSHPublicKey$ = exports.UpdateSigningCertificate$ = exports.UpdateServiceSpecificCredential$ = exports.UpdateServerCertificate$ = exports.UpdateSAMLProvider$ = exports.UpdateRoleDescription$ = exports.UpdateRole$ = exports.UpdateOpenIDConnectProviderThumbprint$ = exports.UpdateLoginProfile$ = exports.UpdateGroup$ = exports.UpdateDelegationRequest$ = exports.UpdateAssumeRolePolicy$ = exports.UpdateAccountPasswordPolicy$ = exports.UpdateAccessKey$ = exports.UntagUser$ = exports.UntagServerCertificate$ = exports.UntagSAMLProvider$ = exports.UntagRole$ = exports.UntagPolicy$ = exports.UntagOpenIDConnectProvider$ = exports.UntagMFADevice$ = exports.UntagInstanceProfile$ = exports.TagUser$ = exports.TagServerCertificate$ = exports.TagSAMLProvider$ = exports.TagRole$ = exports.TagPolicy$ = void 0;
|
|
14
1
|
const _A = "Arn";
|
|
15
2
|
const _AA = "AccountAlias";
|
|
16
3
|
const _AAc = "AccountAliases";
|
|
@@ -849,223 +836,259 @@ const _uDLT = "userDetailListType";
|
|
|
849
836
|
const _uLT = "userListType";
|
|
850
837
|
const _vMFADLT = "virtualMFADeviceListType";
|
|
851
838
|
const n0 = "com.amazonaws.iam";
|
|
852
|
-
const
|
|
853
|
-
const
|
|
854
|
-
const
|
|
855
|
-
const _s_registry =
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
839
|
+
const { TypeRegistry } = require("@smithy/core/schema");
|
|
840
|
+
const { AccountNotManagementOrDelegatedAdministratorException, CallerIsNotManagementAccountException, ConcurrentModificationException, CredentialReportExpiredException, CredentialReportNotPresentException, CredentialReportNotReadyException, DeleteConflictException, DuplicateCertificateException, DuplicateSSHPublicKeyException, EntityAlreadyExistsException, EntityTemporarilyUnmodifiableException, FeatureDisabledException, FeatureEnabledException, InvalidAuthenticationCodeException, InvalidCertificateException, InvalidInputException, InvalidPublicKeyException, InvalidUserTypeException, KeyPairMismatchException, LimitExceededException, MalformedCertificateException, MalformedPolicyDocumentException, NoSuchEntityException, OpenIdIdpCommunicationErrorException, OrganizationNotFoundException, OrganizationNotInAllFeaturesModeException, PasswordPolicyViolationException, PolicyEvaluationException, PolicyNotAttachableException, ReportGenerationLimitExceededException, ServiceAccessNotEnabledException, ServiceFailureException, ServiceNotSupportedException, UnmodifiableEntityException, UnrecognizedPublicKeyEncodingException } = require("../models/errors");
|
|
841
|
+
const { IAMServiceException } = require("../models/IAMServiceException");
|
|
842
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
843
|
+
const IAMServiceException$ = [-3, _s, "IAMServiceException", 0, [], []];
|
|
844
|
+
exports.IAMServiceException$ = IAMServiceException$;
|
|
845
|
+
_s_registry.registerError(IAMServiceException$, IAMServiceException);
|
|
846
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
847
|
+
const AccountNotManagementOrDelegatedAdministratorException$ = [-3, n0, _ANMODAE,
|
|
860
848
|
{ [_e]: _c, [_hE]: 400 },
|
|
861
849
|
[_M],
|
|
862
850
|
[0]
|
|
863
851
|
];
|
|
864
|
-
|
|
865
|
-
|
|
852
|
+
exports.AccountNotManagementOrDelegatedAdministratorException$ = AccountNotManagementOrDelegatedAdministratorException$;
|
|
853
|
+
n0_registry.registerError(AccountNotManagementOrDelegatedAdministratorException$, AccountNotManagementOrDelegatedAdministratorException);
|
|
854
|
+
const CallerIsNotManagementAccountException$ = [-3, n0, _CINMAE,
|
|
866
855
|
{ [_e]: _c, [_hE]: 400 },
|
|
867
856
|
[_M],
|
|
868
857
|
[0]
|
|
869
858
|
];
|
|
870
|
-
|
|
871
|
-
|
|
859
|
+
exports.CallerIsNotManagementAccountException$ = CallerIsNotManagementAccountException$;
|
|
860
|
+
n0_registry.registerError(CallerIsNotManagementAccountException$, CallerIsNotManagementAccountException);
|
|
861
|
+
const ConcurrentModificationException$ = [-3, n0, _CME,
|
|
872
862
|
{ [_aQE]: [`ConcurrentModification`, 409], [_e]: _c, [_hE]: 409 },
|
|
873
863
|
[_m],
|
|
874
864
|
[0]
|
|
875
865
|
];
|
|
876
|
-
|
|
877
|
-
|
|
866
|
+
exports.ConcurrentModificationException$ = ConcurrentModificationException$;
|
|
867
|
+
n0_registry.registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
868
|
+
const CredentialReportExpiredException$ = [-3, n0, _CREE,
|
|
878
869
|
{ [_aQE]: [`ReportExpired`, 410], [_e]: _c, [_hE]: 410 },
|
|
879
870
|
[_m],
|
|
880
871
|
[0]
|
|
881
872
|
];
|
|
882
|
-
|
|
883
|
-
|
|
873
|
+
exports.CredentialReportExpiredException$ = CredentialReportExpiredException$;
|
|
874
|
+
n0_registry.registerError(CredentialReportExpiredException$, CredentialReportExpiredException);
|
|
875
|
+
const CredentialReportNotPresentException$ = [-3, n0, _CRNPE,
|
|
884
876
|
{ [_aQE]: [`ReportNotPresent`, 410], [_e]: _c, [_hE]: 410 },
|
|
885
877
|
[_m],
|
|
886
878
|
[0]
|
|
887
879
|
];
|
|
888
|
-
|
|
889
|
-
|
|
880
|
+
exports.CredentialReportNotPresentException$ = CredentialReportNotPresentException$;
|
|
881
|
+
n0_registry.registerError(CredentialReportNotPresentException$, CredentialReportNotPresentException);
|
|
882
|
+
const CredentialReportNotReadyException$ = [-3, n0, _CRNRE,
|
|
890
883
|
{ [_aQE]: [`ReportInProgress`, 404], [_e]: _c, [_hE]: 404 },
|
|
891
884
|
[_m],
|
|
892
885
|
[0]
|
|
893
886
|
];
|
|
894
|
-
|
|
895
|
-
|
|
887
|
+
exports.CredentialReportNotReadyException$ = CredentialReportNotReadyException$;
|
|
888
|
+
n0_registry.registerError(CredentialReportNotReadyException$, CredentialReportNotReadyException);
|
|
889
|
+
const DeleteConflictException$ = [-3, n0, _DCE,
|
|
896
890
|
{ [_aQE]: [`DeleteConflict`, 409], [_e]: _c, [_hE]: 409 },
|
|
897
891
|
[_m],
|
|
898
892
|
[0]
|
|
899
893
|
];
|
|
900
|
-
|
|
901
|
-
|
|
894
|
+
exports.DeleteConflictException$ = DeleteConflictException$;
|
|
895
|
+
n0_registry.registerError(DeleteConflictException$, DeleteConflictException);
|
|
896
|
+
const DuplicateCertificateException$ = [-3, n0, _DCEu,
|
|
902
897
|
{ [_aQE]: [`DuplicateCertificate`, 409], [_e]: _c, [_hE]: 409 },
|
|
903
898
|
[_m],
|
|
904
899
|
[0]
|
|
905
900
|
];
|
|
906
|
-
|
|
907
|
-
|
|
901
|
+
exports.DuplicateCertificateException$ = DuplicateCertificateException$;
|
|
902
|
+
n0_registry.registerError(DuplicateCertificateException$, DuplicateCertificateException);
|
|
903
|
+
const DuplicateSSHPublicKeyException$ = [-3, n0, _DSSHPKE,
|
|
908
904
|
{ [_aQE]: [`DuplicateSSHPublicKey`, 400], [_e]: _c, [_hE]: 400 },
|
|
909
905
|
[_m],
|
|
910
906
|
[0]
|
|
911
907
|
];
|
|
912
|
-
|
|
913
|
-
|
|
908
|
+
exports.DuplicateSSHPublicKeyException$ = DuplicateSSHPublicKeyException$;
|
|
909
|
+
n0_registry.registerError(DuplicateSSHPublicKeyException$, DuplicateSSHPublicKeyException);
|
|
910
|
+
const EntityAlreadyExistsException$ = [-3, n0, _EAEE,
|
|
914
911
|
{ [_aQE]: [`EntityAlreadyExists`, 409], [_e]: _c, [_hE]: 409 },
|
|
915
912
|
[_m],
|
|
916
913
|
[0]
|
|
917
914
|
];
|
|
918
|
-
|
|
919
|
-
|
|
915
|
+
exports.EntityAlreadyExistsException$ = EntityAlreadyExistsException$;
|
|
916
|
+
n0_registry.registerError(EntityAlreadyExistsException$, EntityAlreadyExistsException);
|
|
917
|
+
const EntityTemporarilyUnmodifiableException$ = [-3, n0, _ETUE,
|
|
920
918
|
{ [_aQE]: [`EntityTemporarilyUnmodifiable`, 409], [_e]: _c, [_hE]: 409 },
|
|
921
919
|
[_m],
|
|
922
920
|
[0]
|
|
923
921
|
];
|
|
924
|
-
|
|
925
|
-
|
|
922
|
+
exports.EntityTemporarilyUnmodifiableException$ = EntityTemporarilyUnmodifiableException$;
|
|
923
|
+
n0_registry.registerError(EntityTemporarilyUnmodifiableException$, EntityTemporarilyUnmodifiableException);
|
|
924
|
+
const FeatureDisabledException$ = [-3, n0, _FDE,
|
|
926
925
|
{ [_aQE]: [`FeatureDisabled`, 404], [_e]: _c, [_hE]: 404 },
|
|
927
926
|
[_m],
|
|
928
927
|
[0]
|
|
929
928
|
];
|
|
930
|
-
|
|
931
|
-
|
|
929
|
+
exports.FeatureDisabledException$ = FeatureDisabledException$;
|
|
930
|
+
n0_registry.registerError(FeatureDisabledException$, FeatureDisabledException);
|
|
931
|
+
const FeatureEnabledException$ = [-3, n0, _FEE,
|
|
932
932
|
{ [_aQE]: [`FeatureEnabled`, 409], [_e]: _c, [_hE]: 409 },
|
|
933
933
|
[_m],
|
|
934
934
|
[0]
|
|
935
935
|
];
|
|
936
|
-
|
|
937
|
-
|
|
936
|
+
exports.FeatureEnabledException$ = FeatureEnabledException$;
|
|
937
|
+
n0_registry.registerError(FeatureEnabledException$, FeatureEnabledException);
|
|
938
|
+
const InvalidAuthenticationCodeException$ = [-3, n0, _IACE,
|
|
938
939
|
{ [_aQE]: [`InvalidAuthenticationCode`, 403], [_e]: _c, [_hE]: 403 },
|
|
939
940
|
[_m],
|
|
940
941
|
[0]
|
|
941
942
|
];
|
|
942
|
-
|
|
943
|
-
|
|
943
|
+
exports.InvalidAuthenticationCodeException$ = InvalidAuthenticationCodeException$;
|
|
944
|
+
n0_registry.registerError(InvalidAuthenticationCodeException$, InvalidAuthenticationCodeException);
|
|
945
|
+
const InvalidCertificateException$ = [-3, n0, _ICE,
|
|
944
946
|
{ [_aQE]: [`InvalidCertificate`, 400], [_e]: _c, [_hE]: 400 },
|
|
945
947
|
[_m],
|
|
946
948
|
[0]
|
|
947
949
|
];
|
|
948
|
-
|
|
949
|
-
|
|
950
|
+
exports.InvalidCertificateException$ = InvalidCertificateException$;
|
|
951
|
+
n0_registry.registerError(InvalidCertificateException$, InvalidCertificateException);
|
|
952
|
+
const InvalidInputException$ = [-3, n0, _IIE,
|
|
950
953
|
{ [_aQE]: [`InvalidInput`, 400], [_e]: _c, [_hE]: 400 },
|
|
951
954
|
[_m],
|
|
952
955
|
[0]
|
|
953
956
|
];
|
|
954
|
-
|
|
955
|
-
|
|
957
|
+
exports.InvalidInputException$ = InvalidInputException$;
|
|
958
|
+
n0_registry.registerError(InvalidInputException$, InvalidInputException);
|
|
959
|
+
const InvalidPublicKeyException$ = [-3, n0, _IPKE,
|
|
956
960
|
{ [_aQE]: [`InvalidPublicKey`, 400], [_e]: _c, [_hE]: 400 },
|
|
957
961
|
[_m],
|
|
958
962
|
[0]
|
|
959
963
|
];
|
|
960
|
-
|
|
961
|
-
|
|
964
|
+
exports.InvalidPublicKeyException$ = InvalidPublicKeyException$;
|
|
965
|
+
n0_registry.registerError(InvalidPublicKeyException$, InvalidPublicKeyException);
|
|
966
|
+
const InvalidUserTypeException$ = [-3, n0, _IUTE,
|
|
962
967
|
{ [_aQE]: [`InvalidUserType`, 400], [_e]: _c, [_hE]: 400 },
|
|
963
968
|
[_m],
|
|
964
969
|
[0]
|
|
965
970
|
];
|
|
966
|
-
|
|
967
|
-
|
|
971
|
+
exports.InvalidUserTypeException$ = InvalidUserTypeException$;
|
|
972
|
+
n0_registry.registerError(InvalidUserTypeException$, InvalidUserTypeException);
|
|
973
|
+
const KeyPairMismatchException$ = [-3, n0, _KPME,
|
|
968
974
|
{ [_aQE]: [`KeyPairMismatch`, 400], [_e]: _c, [_hE]: 400 },
|
|
969
975
|
[_m],
|
|
970
976
|
[0]
|
|
971
977
|
];
|
|
972
|
-
|
|
973
|
-
|
|
978
|
+
exports.KeyPairMismatchException$ = KeyPairMismatchException$;
|
|
979
|
+
n0_registry.registerError(KeyPairMismatchException$, KeyPairMismatchException);
|
|
980
|
+
const LimitExceededException$ = [-3, n0, _LEE,
|
|
974
981
|
{ [_aQE]: [`LimitExceeded`, 409], [_e]: _c, [_hE]: 409 },
|
|
975
982
|
[_m],
|
|
976
983
|
[0]
|
|
977
984
|
];
|
|
978
|
-
|
|
979
|
-
|
|
985
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
986
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
987
|
+
const MalformedCertificateException$ = [-3, n0, _MCE,
|
|
980
988
|
{ [_aQE]: [`MalformedCertificate`, 400], [_e]: _c, [_hE]: 400 },
|
|
981
989
|
[_m],
|
|
982
990
|
[0]
|
|
983
991
|
];
|
|
984
|
-
|
|
985
|
-
|
|
992
|
+
exports.MalformedCertificateException$ = MalformedCertificateException$;
|
|
993
|
+
n0_registry.registerError(MalformedCertificateException$, MalformedCertificateException);
|
|
994
|
+
const MalformedPolicyDocumentException$ = [-3, n0, _MPDE,
|
|
986
995
|
{ [_aQE]: [`MalformedPolicyDocument`, 400], [_e]: _c, [_hE]: 400 },
|
|
987
996
|
[_m],
|
|
988
997
|
[0]
|
|
989
998
|
];
|
|
990
|
-
|
|
991
|
-
|
|
999
|
+
exports.MalformedPolicyDocumentException$ = MalformedPolicyDocumentException$;
|
|
1000
|
+
n0_registry.registerError(MalformedPolicyDocumentException$, MalformedPolicyDocumentException);
|
|
1001
|
+
const NoSuchEntityException$ = [-3, n0, _NSEE,
|
|
992
1002
|
{ [_aQE]: [`NoSuchEntity`, 404], [_e]: _c, [_hE]: 404 },
|
|
993
1003
|
[_m],
|
|
994
1004
|
[0]
|
|
995
1005
|
];
|
|
996
|
-
|
|
997
|
-
|
|
1006
|
+
exports.NoSuchEntityException$ = NoSuchEntityException$;
|
|
1007
|
+
n0_registry.registerError(NoSuchEntityException$, NoSuchEntityException);
|
|
1008
|
+
const OpenIdIdpCommunicationErrorException$ = [-3, n0, _OIICEE,
|
|
998
1009
|
{ [_aQE]: [`OpenIdIdpCommunicationError`, 400], [_e]: _c, [_hE]: 400 },
|
|
999
1010
|
[_m],
|
|
1000
1011
|
[0]
|
|
1001
1012
|
];
|
|
1002
|
-
|
|
1003
|
-
|
|
1013
|
+
exports.OpenIdIdpCommunicationErrorException$ = OpenIdIdpCommunicationErrorException$;
|
|
1014
|
+
n0_registry.registerError(OpenIdIdpCommunicationErrorException$, OpenIdIdpCommunicationErrorException);
|
|
1015
|
+
const OrganizationNotFoundException$ = [-3, n0, _ONFE,
|
|
1004
1016
|
{ [_e]: _c, [_hE]: 400 },
|
|
1005
1017
|
[_M],
|
|
1006
1018
|
[0]
|
|
1007
1019
|
];
|
|
1008
|
-
|
|
1009
|
-
|
|
1020
|
+
exports.OrganizationNotFoundException$ = OrganizationNotFoundException$;
|
|
1021
|
+
n0_registry.registerError(OrganizationNotFoundException$, OrganizationNotFoundException);
|
|
1022
|
+
const OrganizationNotInAllFeaturesModeException$ = [-3, n0, _ONIAFME,
|
|
1010
1023
|
{ [_e]: _c, [_hE]: 400 },
|
|
1011
1024
|
[_M],
|
|
1012
1025
|
[0]
|
|
1013
1026
|
];
|
|
1014
|
-
|
|
1015
|
-
|
|
1027
|
+
exports.OrganizationNotInAllFeaturesModeException$ = OrganizationNotInAllFeaturesModeException$;
|
|
1028
|
+
n0_registry.registerError(OrganizationNotInAllFeaturesModeException$, OrganizationNotInAllFeaturesModeException);
|
|
1029
|
+
const PasswordPolicyViolationException$ = [-3, n0, _PPVE,
|
|
1016
1030
|
{ [_aQE]: [`PasswordPolicyViolation`, 400], [_e]: _c, [_hE]: 400 },
|
|
1017
1031
|
[_m],
|
|
1018
1032
|
[0]
|
|
1019
1033
|
];
|
|
1020
|
-
|
|
1021
|
-
|
|
1034
|
+
exports.PasswordPolicyViolationException$ = PasswordPolicyViolationException$;
|
|
1035
|
+
n0_registry.registerError(PasswordPolicyViolationException$, PasswordPolicyViolationException);
|
|
1036
|
+
const PolicyEvaluationException$ = [-3, n0, _PEE,
|
|
1022
1037
|
{ [_aQE]: [`PolicyEvaluation`, 500], [_e]: _se, [_hE]: 500 },
|
|
1023
1038
|
[_m],
|
|
1024
1039
|
[0]
|
|
1025
1040
|
];
|
|
1026
|
-
|
|
1027
|
-
|
|
1041
|
+
exports.PolicyEvaluationException$ = PolicyEvaluationException$;
|
|
1042
|
+
n0_registry.registerError(PolicyEvaluationException$, PolicyEvaluationException);
|
|
1043
|
+
const PolicyNotAttachableException$ = [-3, n0, _PNAE,
|
|
1028
1044
|
{ [_aQE]: [`PolicyNotAttachable`, 400], [_e]: _c, [_hE]: 400 },
|
|
1029
1045
|
[_m],
|
|
1030
1046
|
[0]
|
|
1031
1047
|
];
|
|
1032
|
-
|
|
1033
|
-
|
|
1048
|
+
exports.PolicyNotAttachableException$ = PolicyNotAttachableException$;
|
|
1049
|
+
n0_registry.registerError(PolicyNotAttachableException$, PolicyNotAttachableException);
|
|
1050
|
+
const ReportGenerationLimitExceededException$ = [-3, n0, _RGLEE,
|
|
1034
1051
|
{ [_aQE]: [`ReportGenerationLimitExceeded`, 409], [_e]: _c, [_hE]: 409 },
|
|
1035
1052
|
[_m],
|
|
1036
1053
|
[0]
|
|
1037
1054
|
];
|
|
1038
|
-
|
|
1039
|
-
|
|
1055
|
+
exports.ReportGenerationLimitExceededException$ = ReportGenerationLimitExceededException$;
|
|
1056
|
+
n0_registry.registerError(ReportGenerationLimitExceededException$, ReportGenerationLimitExceededException);
|
|
1057
|
+
const ServiceAccessNotEnabledException$ = [-3, n0, _SANEE,
|
|
1040
1058
|
{ [_e]: _c, [_hE]: 400 },
|
|
1041
1059
|
[_M],
|
|
1042
1060
|
[0]
|
|
1043
1061
|
];
|
|
1044
|
-
|
|
1045
|
-
|
|
1062
|
+
exports.ServiceAccessNotEnabledException$ = ServiceAccessNotEnabledException$;
|
|
1063
|
+
n0_registry.registerError(ServiceAccessNotEnabledException$, ServiceAccessNotEnabledException);
|
|
1064
|
+
const ServiceFailureException$ = [-3, n0, _SFE,
|
|
1046
1065
|
{ [_aQE]: [`ServiceFailure`, 500], [_e]: _se, [_hE]: 500 },
|
|
1047
1066
|
[_m],
|
|
1048
1067
|
[0]
|
|
1049
1068
|
];
|
|
1050
|
-
|
|
1051
|
-
|
|
1069
|
+
exports.ServiceFailureException$ = ServiceFailureException$;
|
|
1070
|
+
n0_registry.registerError(ServiceFailureException$, ServiceFailureException);
|
|
1071
|
+
const ServiceNotSupportedException$ = [-3, n0, _SNSE,
|
|
1052
1072
|
{ [_aQE]: [`NotSupportedService`, 404], [_e]: _c, [_hE]: 404 },
|
|
1053
1073
|
[_m],
|
|
1054
1074
|
[0]
|
|
1055
1075
|
];
|
|
1056
|
-
|
|
1057
|
-
|
|
1076
|
+
exports.ServiceNotSupportedException$ = ServiceNotSupportedException$;
|
|
1077
|
+
n0_registry.registerError(ServiceNotSupportedException$, ServiceNotSupportedException);
|
|
1078
|
+
const UnmodifiableEntityException$ = [-3, n0, _UEE,
|
|
1058
1079
|
{ [_aQE]: [`UnmodifiableEntity`, 400], [_e]: _c, [_hE]: 400 },
|
|
1059
1080
|
[_m],
|
|
1060
1081
|
[0]
|
|
1061
1082
|
];
|
|
1062
|
-
|
|
1063
|
-
|
|
1083
|
+
exports.UnmodifiableEntityException$ = UnmodifiableEntityException$;
|
|
1084
|
+
n0_registry.registerError(UnmodifiableEntityException$, UnmodifiableEntityException);
|
|
1085
|
+
const UnrecognizedPublicKeyEncodingException$ = [-3, n0, _UPKEE,
|
|
1064
1086
|
{ [_aQE]: [`UnrecognizedPublicKeyEncoding`, 400], [_e]: _c, [_hE]: 400 },
|
|
1065
1087
|
[_m],
|
|
1066
1088
|
[0]
|
|
1067
1089
|
];
|
|
1068
|
-
|
|
1090
|
+
exports.UnrecognizedPublicKeyEncodingException$ = UnrecognizedPublicKeyEncodingException$;
|
|
1091
|
+
n0_registry.registerError(UnrecognizedPublicKeyEncodingException$, UnrecognizedPublicKeyEncodingException);
|
|
1069
1092
|
exports.errorTypeRegistries = [
|
|
1070
1093
|
_s_registry,
|
|
1071
1094
|
n0_registry,
|
|
@@ -1076,2260 +1099,2578 @@ var passwordType = [0, n0, _pT, 8, 0];
|
|
|
1076
1099
|
var privateKeyType = [0, n0, _pKT, 8, 0];
|
|
1077
1100
|
var serviceCredentialSecret = [0, n0, _sCS, 8, 0];
|
|
1078
1101
|
var servicePassword = [0, n0, _sP, 8, 0];
|
|
1079
|
-
|
|
1102
|
+
const AcceptDelegationRequestRequest$ = [3, n0, _ADRR,
|
|
1080
1103
|
0,
|
|
1081
1104
|
[_DRI],
|
|
1082
1105
|
[0], 1
|
|
1083
1106
|
];
|
|
1084
|
-
exports.
|
|
1107
|
+
exports.AcceptDelegationRequestRequest$ = AcceptDelegationRequestRequest$;
|
|
1108
|
+
const AccessDetail$ = [3, n0, _AD,
|
|
1085
1109
|
0,
|
|
1086
1110
|
[_SN, _SNe, _R, _EP, _LAT, _TAE],
|
|
1087
1111
|
[0, 0, 0, 0, 4, 1], 2
|
|
1088
1112
|
];
|
|
1089
|
-
exports.
|
|
1113
|
+
exports.AccessDetail$ = AccessDetail$;
|
|
1114
|
+
const AccessKey$ = [3, n0, _AK,
|
|
1090
1115
|
0,
|
|
1091
1116
|
[_UN, _AKI, _S, _SAK, _CD],
|
|
1092
1117
|
[0, 0, 0, [() => accessKeySecretType, 0], 4], 4
|
|
1093
1118
|
];
|
|
1094
|
-
exports.
|
|
1119
|
+
exports.AccessKey$ = AccessKey$;
|
|
1120
|
+
const AccessKeyLastUsed$ = [3, n0, _AKLU,
|
|
1095
1121
|
0,
|
|
1096
1122
|
[_SN, _R, _LUD],
|
|
1097
1123
|
[0, 0, 4], 2
|
|
1098
1124
|
];
|
|
1099
|
-
exports.
|
|
1125
|
+
exports.AccessKeyLastUsed$ = AccessKeyLastUsed$;
|
|
1126
|
+
const AccessKeyMetadata$ = [3, n0, _AKM,
|
|
1100
1127
|
0,
|
|
1101
1128
|
[_UN, _AKI, _S, _CD],
|
|
1102
1129
|
[0, 0, 0, 4]
|
|
1103
1130
|
];
|
|
1104
|
-
exports.
|
|
1131
|
+
exports.AccessKeyMetadata$ = AccessKeyMetadata$;
|
|
1132
|
+
const AddClientIDToOpenIDConnectProviderRequest$ = [3, n0, _ACIDTOIDCPR,
|
|
1105
1133
|
0,
|
|
1106
1134
|
[_OIDCPA, _CID],
|
|
1107
1135
|
[0, 0], 2
|
|
1108
1136
|
];
|
|
1109
|
-
exports.
|
|
1137
|
+
exports.AddClientIDToOpenIDConnectProviderRequest$ = AddClientIDToOpenIDConnectProviderRequest$;
|
|
1138
|
+
const AddRoleToInstanceProfileRequest$ = [3, n0, _ARTIPR,
|
|
1110
1139
|
0,
|
|
1111
1140
|
[_IPN, _RN],
|
|
1112
1141
|
[0, 0], 2
|
|
1113
1142
|
];
|
|
1114
|
-
exports.
|
|
1143
|
+
exports.AddRoleToInstanceProfileRequest$ = AddRoleToInstanceProfileRequest$;
|
|
1144
|
+
const AddUserToGroupRequest$ = [3, n0, _AUTGR,
|
|
1115
1145
|
0,
|
|
1116
1146
|
[_GN, _UN],
|
|
1117
1147
|
[0, 0], 2
|
|
1118
1148
|
];
|
|
1119
|
-
exports.
|
|
1149
|
+
exports.AddUserToGroupRequest$ = AddUserToGroupRequest$;
|
|
1150
|
+
const AssociateDelegationRequestRequest$ = [3, n0, _ADRRs,
|
|
1120
1151
|
0,
|
|
1121
1152
|
[_DRI],
|
|
1122
1153
|
[0], 1
|
|
1123
1154
|
];
|
|
1124
|
-
exports.
|
|
1155
|
+
exports.AssociateDelegationRequestRequest$ = AssociateDelegationRequestRequest$;
|
|
1156
|
+
const AttachedPermissionsBoundary$ = [3, n0, _APB,
|
|
1125
1157
|
0,
|
|
1126
1158
|
[_PBT, _PBA],
|
|
1127
1159
|
[0, 0]
|
|
1128
1160
|
];
|
|
1129
|
-
exports.
|
|
1161
|
+
exports.AttachedPermissionsBoundary$ = AttachedPermissionsBoundary$;
|
|
1162
|
+
const AttachedPolicy$ = [3, n0, _AP,
|
|
1130
1163
|
0,
|
|
1131
1164
|
[_PN, _PA],
|
|
1132
1165
|
[0, 0]
|
|
1133
1166
|
];
|
|
1134
|
-
exports.
|
|
1167
|
+
exports.AttachedPolicy$ = AttachedPolicy$;
|
|
1168
|
+
const AttachGroupPolicyRequest$ = [3, n0, _AGPR,
|
|
1135
1169
|
0,
|
|
1136
1170
|
[_GN, _PA],
|
|
1137
1171
|
[0, 0], 2
|
|
1138
1172
|
];
|
|
1139
|
-
exports.
|
|
1173
|
+
exports.AttachGroupPolicyRequest$ = AttachGroupPolicyRequest$;
|
|
1174
|
+
const AttachRolePolicyRequest$ = [3, n0, _ARPR,
|
|
1140
1175
|
0,
|
|
1141
1176
|
[_RN, _PA],
|
|
1142
1177
|
[0, 0], 2
|
|
1143
1178
|
];
|
|
1144
|
-
exports.
|
|
1179
|
+
exports.AttachRolePolicyRequest$ = AttachRolePolicyRequest$;
|
|
1180
|
+
const AttachUserPolicyRequest$ = [3, n0, _AUPR,
|
|
1145
1181
|
0,
|
|
1146
1182
|
[_UN, _PA],
|
|
1147
1183
|
[0, 0], 2
|
|
1148
1184
|
];
|
|
1149
|
-
exports.
|
|
1185
|
+
exports.AttachUserPolicyRequest$ = AttachUserPolicyRequest$;
|
|
1186
|
+
const ChangePasswordRequest$ = [3, n0, _CPR,
|
|
1150
1187
|
0,
|
|
1151
1188
|
[_OP, _NP],
|
|
1152
1189
|
[[() => passwordType, 0], [() => passwordType, 0]], 2
|
|
1153
1190
|
];
|
|
1154
|
-
exports.
|
|
1191
|
+
exports.ChangePasswordRequest$ = ChangePasswordRequest$;
|
|
1192
|
+
const ContextEntry$ = [3, n0, _CE,
|
|
1155
1193
|
0,
|
|
1156
1194
|
[_CKN, _CKV, _CKT],
|
|
1157
1195
|
[0, 64 | 0, 0]
|
|
1158
1196
|
];
|
|
1159
|
-
exports.
|
|
1197
|
+
exports.ContextEntry$ = ContextEntry$;
|
|
1198
|
+
const CreateAccessKeyRequest$ = [3, n0, _CAKR,
|
|
1160
1199
|
0,
|
|
1161
1200
|
[_UN],
|
|
1162
1201
|
[0]
|
|
1163
1202
|
];
|
|
1164
|
-
exports.
|
|
1203
|
+
exports.CreateAccessKeyRequest$ = CreateAccessKeyRequest$;
|
|
1204
|
+
const CreateAccessKeyResponse$ = [3, n0, _CAKRr,
|
|
1165
1205
|
0,
|
|
1166
1206
|
[_AK],
|
|
1167
|
-
[[() =>
|
|
1207
|
+
[[() => AccessKey$, 0]], 1
|
|
1168
1208
|
];
|
|
1169
|
-
exports.
|
|
1209
|
+
exports.CreateAccessKeyResponse$ = CreateAccessKeyResponse$;
|
|
1210
|
+
const CreateAccountAliasRequest$ = [3, n0, _CAAR,
|
|
1170
1211
|
0,
|
|
1171
1212
|
[_AA],
|
|
1172
1213
|
[0], 1
|
|
1173
1214
|
];
|
|
1174
|
-
exports.
|
|
1215
|
+
exports.CreateAccountAliasRequest$ = CreateAccountAliasRequest$;
|
|
1216
|
+
const CreateDelegationRequestRequest$ = [3, n0, _CDRR,
|
|
1175
1217
|
0,
|
|
1176
1218
|
[_D, _P, _RWI, _NC, _SD, _OAI, _RM, _RU, _OSBO],
|
|
1177
|
-
[0, () =>
|
|
1219
|
+
[0, () => DelegationPermission$, 0, 0, 1, 0, 0, 0, 2], 5
|
|
1178
1220
|
];
|
|
1179
|
-
exports.
|
|
1221
|
+
exports.CreateDelegationRequestRequest$ = CreateDelegationRequestRequest$;
|
|
1222
|
+
const CreateDelegationRequestResponse$ = [3, n0, _CDRRr,
|
|
1180
1223
|
0,
|
|
1181
1224
|
[_CDL, _DRI],
|
|
1182
1225
|
[0, 0]
|
|
1183
1226
|
];
|
|
1184
|
-
exports.
|
|
1227
|
+
exports.CreateDelegationRequestResponse$ = CreateDelegationRequestResponse$;
|
|
1228
|
+
const CreateGroupRequest$ = [3, n0, _CGR,
|
|
1185
1229
|
0,
|
|
1186
1230
|
[_GN, _Pa],
|
|
1187
1231
|
[0, 0], 1
|
|
1188
1232
|
];
|
|
1189
|
-
exports.
|
|
1233
|
+
exports.CreateGroupRequest$ = CreateGroupRequest$;
|
|
1234
|
+
const CreateGroupResponse$ = [3, n0, _CGRr,
|
|
1190
1235
|
0,
|
|
1191
1236
|
[_G],
|
|
1192
|
-
[() =>
|
|
1237
|
+
[() => Group$], 1
|
|
1193
1238
|
];
|
|
1194
|
-
exports.
|
|
1239
|
+
exports.CreateGroupResponse$ = CreateGroupResponse$;
|
|
1240
|
+
const CreateInstanceProfileRequest$ = [3, n0, _CIPR,
|
|
1195
1241
|
0,
|
|
1196
1242
|
[_IPN, _Pa, _T],
|
|
1197
1243
|
[0, 0, () => tagListType], 1
|
|
1198
1244
|
];
|
|
1199
|
-
exports.
|
|
1245
|
+
exports.CreateInstanceProfileRequest$ = CreateInstanceProfileRequest$;
|
|
1246
|
+
const CreateInstanceProfileResponse$ = [3, n0, _CIPRr,
|
|
1200
1247
|
0,
|
|
1201
1248
|
[_IP],
|
|
1202
|
-
[() =>
|
|
1249
|
+
[() => InstanceProfile$], 1
|
|
1203
1250
|
];
|
|
1204
|
-
exports.
|
|
1251
|
+
exports.CreateInstanceProfileResponse$ = CreateInstanceProfileResponse$;
|
|
1252
|
+
const CreateLoginProfileRequest$ = [3, n0, _CLPR,
|
|
1205
1253
|
0,
|
|
1206
1254
|
[_UN, _Pas, _PRR],
|
|
1207
1255
|
[0, [() => passwordType, 0], 2]
|
|
1208
1256
|
];
|
|
1209
|
-
exports.
|
|
1257
|
+
exports.CreateLoginProfileRequest$ = CreateLoginProfileRequest$;
|
|
1258
|
+
const CreateLoginProfileResponse$ = [3, n0, _CLPRr,
|
|
1210
1259
|
0,
|
|
1211
1260
|
[_LP],
|
|
1212
|
-
[() =>
|
|
1261
|
+
[() => LoginProfile$], 1
|
|
1213
1262
|
];
|
|
1214
|
-
exports.
|
|
1263
|
+
exports.CreateLoginProfileResponse$ = CreateLoginProfileResponse$;
|
|
1264
|
+
const CreateOpenIDConnectProviderRequest$ = [3, n0, _COIDCPR,
|
|
1215
1265
|
0,
|
|
1216
1266
|
[_U, _CIDL, _TL, _T],
|
|
1217
1267
|
[0, 64 | 0, 64 | 0, () => tagListType], 1
|
|
1218
1268
|
];
|
|
1219
|
-
exports.
|
|
1269
|
+
exports.CreateOpenIDConnectProviderRequest$ = CreateOpenIDConnectProviderRequest$;
|
|
1270
|
+
const CreateOpenIDConnectProviderResponse$ = [3, n0, _COIDCPRr,
|
|
1220
1271
|
0,
|
|
1221
1272
|
[_OIDCPA, _T],
|
|
1222
1273
|
[0, () => tagListType]
|
|
1223
1274
|
];
|
|
1224
|
-
exports.
|
|
1275
|
+
exports.CreateOpenIDConnectProviderResponse$ = CreateOpenIDConnectProviderResponse$;
|
|
1276
|
+
const CreatePolicyRequest$ = [3, n0, _CPRr,
|
|
1225
1277
|
0,
|
|
1226
1278
|
[_PN, _PD, _Pa, _D, _T],
|
|
1227
1279
|
[0, 0, 0, 0, () => tagListType], 2
|
|
1228
1280
|
];
|
|
1229
|
-
exports.
|
|
1281
|
+
exports.CreatePolicyRequest$ = CreatePolicyRequest$;
|
|
1282
|
+
const CreatePolicyResponse$ = [3, n0, _CPRre,
|
|
1230
1283
|
0,
|
|
1231
1284
|
[_Po],
|
|
1232
|
-
[() =>
|
|
1285
|
+
[() => Policy$]
|
|
1233
1286
|
];
|
|
1234
|
-
exports.
|
|
1287
|
+
exports.CreatePolicyResponse$ = CreatePolicyResponse$;
|
|
1288
|
+
const CreatePolicyVersionRequest$ = [3, n0, _CPVR,
|
|
1235
1289
|
0,
|
|
1236
1290
|
[_PA, _PD, _SAD],
|
|
1237
1291
|
[0, 0, 2], 2
|
|
1238
1292
|
];
|
|
1239
|
-
exports.
|
|
1293
|
+
exports.CreatePolicyVersionRequest$ = CreatePolicyVersionRequest$;
|
|
1294
|
+
const CreatePolicyVersionResponse$ = [3, n0, _CPVRr,
|
|
1240
1295
|
0,
|
|
1241
1296
|
[_PV],
|
|
1242
|
-
[() =>
|
|
1297
|
+
[() => PolicyVersion$]
|
|
1243
1298
|
];
|
|
1244
|
-
exports.
|
|
1299
|
+
exports.CreatePolicyVersionResponse$ = CreatePolicyVersionResponse$;
|
|
1300
|
+
const CreateRoleRequest$ = [3, n0, _CRR,
|
|
1245
1301
|
0,
|
|
1246
1302
|
[_RN, _ARPD, _Pa, _D, _MSD, _PB, _T],
|
|
1247
1303
|
[0, 0, 0, 0, 1, 0, () => tagListType], 2
|
|
1248
1304
|
];
|
|
1249
|
-
exports.
|
|
1305
|
+
exports.CreateRoleRequest$ = CreateRoleRequest$;
|
|
1306
|
+
const CreateRoleResponse$ = [3, n0, _CRRr,
|
|
1250
1307
|
0,
|
|
1251
1308
|
[_Ro],
|
|
1252
|
-
[() =>
|
|
1309
|
+
[() => Role$], 1
|
|
1253
1310
|
];
|
|
1254
|
-
exports.
|
|
1311
|
+
exports.CreateRoleResponse$ = CreateRoleResponse$;
|
|
1312
|
+
const CreateSAMLProviderRequest$ = [3, n0, _CSAMLPR,
|
|
1255
1313
|
0,
|
|
1256
1314
|
[_SAMLMD, _N, _T, _AEM, _APK],
|
|
1257
1315
|
[0, 0, () => tagListType, 0, [() => privateKeyType, 0]], 2
|
|
1258
1316
|
];
|
|
1259
|
-
exports.
|
|
1317
|
+
exports.CreateSAMLProviderRequest$ = CreateSAMLProviderRequest$;
|
|
1318
|
+
const CreateSAMLProviderResponse$ = [3, n0, _CSAMLPRr,
|
|
1260
1319
|
0,
|
|
1261
1320
|
[_SAMLPA, _T],
|
|
1262
1321
|
[0, () => tagListType]
|
|
1263
1322
|
];
|
|
1264
|
-
exports.
|
|
1323
|
+
exports.CreateSAMLProviderResponse$ = CreateSAMLProviderResponse$;
|
|
1324
|
+
const CreateServiceLinkedRoleRequest$ = [3, n0, _CSLRR,
|
|
1265
1325
|
0,
|
|
1266
1326
|
[_AWSSN, _D, _CS],
|
|
1267
1327
|
[0, 0, 0], 1
|
|
1268
1328
|
];
|
|
1269
|
-
exports.
|
|
1329
|
+
exports.CreateServiceLinkedRoleRequest$ = CreateServiceLinkedRoleRequest$;
|
|
1330
|
+
const CreateServiceLinkedRoleResponse$ = [3, n0, _CSLRRr,
|
|
1270
1331
|
0,
|
|
1271
1332
|
[_Ro],
|
|
1272
|
-
[() =>
|
|
1333
|
+
[() => Role$]
|
|
1273
1334
|
];
|
|
1274
|
-
exports.
|
|
1335
|
+
exports.CreateServiceLinkedRoleResponse$ = CreateServiceLinkedRoleResponse$;
|
|
1336
|
+
const CreateServiceSpecificCredentialRequest$ = [3, n0, _CSSCR,
|
|
1275
1337
|
0,
|
|
1276
1338
|
[_UN, _SN, _CAD],
|
|
1277
1339
|
[0, 0, 1], 2
|
|
1278
1340
|
];
|
|
1279
|
-
exports.
|
|
1341
|
+
exports.CreateServiceSpecificCredentialRequest$ = CreateServiceSpecificCredentialRequest$;
|
|
1342
|
+
const CreateServiceSpecificCredentialResponse$ = [3, n0, _CSSCRr,
|
|
1280
1343
|
0,
|
|
1281
1344
|
[_SSC],
|
|
1282
|
-
[[() =>
|
|
1345
|
+
[[() => ServiceSpecificCredential$, 0]]
|
|
1283
1346
|
];
|
|
1284
|
-
exports.
|
|
1347
|
+
exports.CreateServiceSpecificCredentialResponse$ = CreateServiceSpecificCredentialResponse$;
|
|
1348
|
+
const CreateUserRequest$ = [3, n0, _CUR,
|
|
1285
1349
|
0,
|
|
1286
1350
|
[_UN, _Pa, _PB, _T],
|
|
1287
1351
|
[0, 0, 0, () => tagListType], 1
|
|
1288
1352
|
];
|
|
1289
|
-
exports.
|
|
1353
|
+
exports.CreateUserRequest$ = CreateUserRequest$;
|
|
1354
|
+
const CreateUserResponse$ = [3, n0, _CURr,
|
|
1290
1355
|
0,
|
|
1291
1356
|
[_Us],
|
|
1292
|
-
[() =>
|
|
1357
|
+
[() => User$]
|
|
1293
1358
|
];
|
|
1294
|
-
exports.
|
|
1359
|
+
exports.CreateUserResponse$ = CreateUserResponse$;
|
|
1360
|
+
const CreateVirtualMFADeviceRequest$ = [3, n0, _CVMFADR,
|
|
1295
1361
|
0,
|
|
1296
1362
|
[_VMFADN, _Pa, _T],
|
|
1297
1363
|
[0, 0, () => tagListType], 1
|
|
1298
1364
|
];
|
|
1299
|
-
exports.
|
|
1365
|
+
exports.CreateVirtualMFADeviceRequest$ = CreateVirtualMFADeviceRequest$;
|
|
1366
|
+
const CreateVirtualMFADeviceResponse$ = [3, n0, _CVMFADRr,
|
|
1300
1367
|
0,
|
|
1301
1368
|
[_VMFAD],
|
|
1302
|
-
[[() =>
|
|
1369
|
+
[[() => VirtualMFADevice$, 0]], 1
|
|
1303
1370
|
];
|
|
1304
|
-
exports.
|
|
1371
|
+
exports.CreateVirtualMFADeviceResponse$ = CreateVirtualMFADeviceResponse$;
|
|
1372
|
+
const DeactivateMFADeviceRequest$ = [3, n0, _DMFADR,
|
|
1305
1373
|
0,
|
|
1306
1374
|
[_SNer, _UN],
|
|
1307
1375
|
[0, 0], 1
|
|
1308
1376
|
];
|
|
1309
|
-
exports.
|
|
1377
|
+
exports.DeactivateMFADeviceRequest$ = DeactivateMFADeviceRequest$;
|
|
1378
|
+
const DelegationPermission$ = [3, n0, _DP,
|
|
1310
1379
|
0,
|
|
1311
1380
|
[_PTA, _Par],
|
|
1312
1381
|
[0, () => policyParameterListType]
|
|
1313
1382
|
];
|
|
1314
|
-
exports.
|
|
1383
|
+
exports.DelegationPermission$ = DelegationPermission$;
|
|
1384
|
+
const DelegationRequest$ = [3, n0, _DR,
|
|
1315
1385
|
0,
|
|
1316
1386
|
[_DRI, _OAI, _D, _RM, _P, _PP, _RPRA, _OI, _AI, _St, _ET, _RI, _RNe, _CD, _SD, _RU, _No, _RR, _OSBO, _UT],
|
|
1317
|
-
[0, 0, 0, 0, () =>
|
|
1387
|
+
[0, 0, 0, 0, () => DelegationPermission$, 0, 64 | 0, 0, 0, 0, 4, 0, 0, 4, 1, 0, 0, 0, 2, 4]
|
|
1318
1388
|
];
|
|
1319
|
-
exports.
|
|
1389
|
+
exports.DelegationRequest$ = DelegationRequest$;
|
|
1390
|
+
const DeleteAccessKeyRequest$ = [3, n0, _DAKR,
|
|
1320
1391
|
0,
|
|
1321
1392
|
[_AKI, _UN],
|
|
1322
1393
|
[0, 0], 1
|
|
1323
1394
|
];
|
|
1324
|
-
exports.
|
|
1395
|
+
exports.DeleteAccessKeyRequest$ = DeleteAccessKeyRequest$;
|
|
1396
|
+
const DeleteAccountAliasRequest$ = [3, n0, _DAAR,
|
|
1325
1397
|
0,
|
|
1326
1398
|
[_AA],
|
|
1327
1399
|
[0], 1
|
|
1328
1400
|
];
|
|
1329
|
-
exports.
|
|
1401
|
+
exports.DeleteAccountAliasRequest$ = DeleteAccountAliasRequest$;
|
|
1402
|
+
const DeleteGroupPolicyRequest$ = [3, n0, _DGPR,
|
|
1330
1403
|
0,
|
|
1331
1404
|
[_GN, _PN],
|
|
1332
1405
|
[0, 0], 2
|
|
1333
1406
|
];
|
|
1334
|
-
exports.
|
|
1407
|
+
exports.DeleteGroupPolicyRequest$ = DeleteGroupPolicyRequest$;
|
|
1408
|
+
const DeleteGroupRequest$ = [3, n0, _DGR,
|
|
1335
1409
|
0,
|
|
1336
1410
|
[_GN],
|
|
1337
1411
|
[0], 1
|
|
1338
1412
|
];
|
|
1339
|
-
exports.
|
|
1413
|
+
exports.DeleteGroupRequest$ = DeleteGroupRequest$;
|
|
1414
|
+
const DeleteInstanceProfileRequest$ = [3, n0, _DIPR,
|
|
1340
1415
|
0,
|
|
1341
1416
|
[_IPN],
|
|
1342
1417
|
[0], 1
|
|
1343
1418
|
];
|
|
1344
|
-
exports.
|
|
1419
|
+
exports.DeleteInstanceProfileRequest$ = DeleteInstanceProfileRequest$;
|
|
1420
|
+
const DeleteLoginProfileRequest$ = [3, n0, _DLPR,
|
|
1345
1421
|
0,
|
|
1346
1422
|
[_UN],
|
|
1347
1423
|
[0]
|
|
1348
1424
|
];
|
|
1349
|
-
exports.
|
|
1425
|
+
exports.DeleteLoginProfileRequest$ = DeleteLoginProfileRequest$;
|
|
1426
|
+
const DeleteOpenIDConnectProviderRequest$ = [3, n0, _DOIDCPR,
|
|
1350
1427
|
0,
|
|
1351
1428
|
[_OIDCPA],
|
|
1352
1429
|
[0], 1
|
|
1353
1430
|
];
|
|
1354
|
-
exports.
|
|
1431
|
+
exports.DeleteOpenIDConnectProviderRequest$ = DeleteOpenIDConnectProviderRequest$;
|
|
1432
|
+
const DeletePolicyRequest$ = [3, n0, _DPR,
|
|
1355
1433
|
0,
|
|
1356
1434
|
[_PA],
|
|
1357
1435
|
[0], 1
|
|
1358
1436
|
];
|
|
1359
|
-
exports.
|
|
1437
|
+
exports.DeletePolicyRequest$ = DeletePolicyRequest$;
|
|
1438
|
+
const DeletePolicyVersionRequest$ = [3, n0, _DPVR,
|
|
1360
1439
|
0,
|
|
1361
1440
|
[_PA, _VI],
|
|
1362
1441
|
[0, 0], 2
|
|
1363
1442
|
];
|
|
1364
|
-
exports.
|
|
1443
|
+
exports.DeletePolicyVersionRequest$ = DeletePolicyVersionRequest$;
|
|
1444
|
+
const DeleteRolePermissionsBoundaryRequest$ = [3, n0, _DRPBR,
|
|
1365
1445
|
0,
|
|
1366
1446
|
[_RN],
|
|
1367
1447
|
[0], 1
|
|
1368
1448
|
];
|
|
1369
|
-
exports.
|
|
1449
|
+
exports.DeleteRolePermissionsBoundaryRequest$ = DeleteRolePermissionsBoundaryRequest$;
|
|
1450
|
+
const DeleteRolePolicyRequest$ = [3, n0, _DRPR,
|
|
1370
1451
|
0,
|
|
1371
1452
|
[_RN, _PN],
|
|
1372
1453
|
[0, 0], 2
|
|
1373
1454
|
];
|
|
1374
|
-
exports.
|
|
1455
|
+
exports.DeleteRolePolicyRequest$ = DeleteRolePolicyRequest$;
|
|
1456
|
+
const DeleteRoleRequest$ = [3, n0, _DRR,
|
|
1375
1457
|
0,
|
|
1376
1458
|
[_RN],
|
|
1377
1459
|
[0], 1
|
|
1378
1460
|
];
|
|
1379
|
-
exports.
|
|
1461
|
+
exports.DeleteRoleRequest$ = DeleteRoleRequest$;
|
|
1462
|
+
const DeleteSAMLProviderRequest$ = [3, n0, _DSAMLPR,
|
|
1380
1463
|
0,
|
|
1381
1464
|
[_SAMLPA],
|
|
1382
1465
|
[0], 1
|
|
1383
1466
|
];
|
|
1384
|
-
exports.
|
|
1467
|
+
exports.DeleteSAMLProviderRequest$ = DeleteSAMLProviderRequest$;
|
|
1468
|
+
const DeleteServerCertificateRequest$ = [3, n0, _DSCR,
|
|
1385
1469
|
0,
|
|
1386
1470
|
[_SCN],
|
|
1387
1471
|
[0], 1
|
|
1388
1472
|
];
|
|
1389
|
-
exports.
|
|
1473
|
+
exports.DeleteServerCertificateRequest$ = DeleteServerCertificateRequest$;
|
|
1474
|
+
const DeleteServiceLinkedRoleRequest$ = [3, n0, _DSLRR,
|
|
1390
1475
|
0,
|
|
1391
1476
|
[_RN],
|
|
1392
1477
|
[0], 1
|
|
1393
1478
|
];
|
|
1394
|
-
exports.
|
|
1479
|
+
exports.DeleteServiceLinkedRoleRequest$ = DeleteServiceLinkedRoleRequest$;
|
|
1480
|
+
const DeleteServiceLinkedRoleResponse$ = [3, n0, _DSLRRe,
|
|
1395
1481
|
0,
|
|
1396
1482
|
[_DTI],
|
|
1397
1483
|
[0], 1
|
|
1398
1484
|
];
|
|
1399
|
-
exports.
|
|
1485
|
+
exports.DeleteServiceLinkedRoleResponse$ = DeleteServiceLinkedRoleResponse$;
|
|
1486
|
+
const DeleteServiceSpecificCredentialRequest$ = [3, n0, _DSSCR,
|
|
1400
1487
|
0,
|
|
1401
1488
|
[_SSCI, _UN],
|
|
1402
1489
|
[0, 0], 1
|
|
1403
1490
|
];
|
|
1404
|
-
exports.
|
|
1491
|
+
exports.DeleteServiceSpecificCredentialRequest$ = DeleteServiceSpecificCredentialRequest$;
|
|
1492
|
+
const DeleteSigningCertificateRequest$ = [3, n0, _DSCRe,
|
|
1405
1493
|
0,
|
|
1406
1494
|
[_CI, _UN],
|
|
1407
1495
|
[0, 0], 1
|
|
1408
1496
|
];
|
|
1409
|
-
exports.
|
|
1497
|
+
exports.DeleteSigningCertificateRequest$ = DeleteSigningCertificateRequest$;
|
|
1498
|
+
const DeleteSSHPublicKeyRequest$ = [3, n0, _DSSHPKR,
|
|
1410
1499
|
0,
|
|
1411
1500
|
[_UN, _SSHPKI],
|
|
1412
1501
|
[0, 0], 2
|
|
1413
1502
|
];
|
|
1414
|
-
exports.
|
|
1503
|
+
exports.DeleteSSHPublicKeyRequest$ = DeleteSSHPublicKeyRequest$;
|
|
1504
|
+
const DeleteUserPermissionsBoundaryRequest$ = [3, n0, _DUPBR,
|
|
1415
1505
|
0,
|
|
1416
1506
|
[_UN],
|
|
1417
1507
|
[0], 1
|
|
1418
1508
|
];
|
|
1419
|
-
exports.
|
|
1509
|
+
exports.DeleteUserPermissionsBoundaryRequest$ = DeleteUserPermissionsBoundaryRequest$;
|
|
1510
|
+
const DeleteUserPolicyRequest$ = [3, n0, _DUPR,
|
|
1420
1511
|
0,
|
|
1421
1512
|
[_UN, _PN],
|
|
1422
1513
|
[0, 0], 2
|
|
1423
1514
|
];
|
|
1424
|
-
exports.
|
|
1515
|
+
exports.DeleteUserPolicyRequest$ = DeleteUserPolicyRequest$;
|
|
1516
|
+
const DeleteUserRequest$ = [3, n0, _DUR,
|
|
1425
1517
|
0,
|
|
1426
1518
|
[_UN],
|
|
1427
1519
|
[0], 1
|
|
1428
1520
|
];
|
|
1429
|
-
exports.
|
|
1521
|
+
exports.DeleteUserRequest$ = DeleteUserRequest$;
|
|
1522
|
+
const DeleteVirtualMFADeviceRequest$ = [3, n0, _DVMFADR,
|
|
1430
1523
|
0,
|
|
1431
1524
|
[_SNer],
|
|
1432
1525
|
[0], 1
|
|
1433
1526
|
];
|
|
1434
|
-
exports.
|
|
1527
|
+
exports.DeleteVirtualMFADeviceRequest$ = DeleteVirtualMFADeviceRequest$;
|
|
1528
|
+
const DeletionTaskFailureReasonType$ = [3, n0, _DTFRT,
|
|
1435
1529
|
0,
|
|
1436
1530
|
[_Re, _RUL],
|
|
1437
1531
|
[0, () => RoleUsageListType]
|
|
1438
1532
|
];
|
|
1439
|
-
exports.
|
|
1533
|
+
exports.DeletionTaskFailureReasonType$ = DeletionTaskFailureReasonType$;
|
|
1534
|
+
const DetachGroupPolicyRequest$ = [3, n0, _DGPRe,
|
|
1440
1535
|
0,
|
|
1441
1536
|
[_GN, _PA],
|
|
1442
1537
|
[0, 0], 2
|
|
1443
1538
|
];
|
|
1444
|
-
exports.
|
|
1539
|
+
exports.DetachGroupPolicyRequest$ = DetachGroupPolicyRequest$;
|
|
1540
|
+
const DetachRolePolicyRequest$ = [3, n0, _DRPRe,
|
|
1445
1541
|
0,
|
|
1446
1542
|
[_RN, _PA],
|
|
1447
1543
|
[0, 0], 2
|
|
1448
1544
|
];
|
|
1449
|
-
exports.
|
|
1545
|
+
exports.DetachRolePolicyRequest$ = DetachRolePolicyRequest$;
|
|
1546
|
+
const DetachUserPolicyRequest$ = [3, n0, _DUPRe,
|
|
1450
1547
|
0,
|
|
1451
1548
|
[_UN, _PA],
|
|
1452
1549
|
[0, 0], 2
|
|
1453
1550
|
];
|
|
1454
|
-
exports.
|
|
1551
|
+
exports.DetachUserPolicyRequest$ = DetachUserPolicyRequest$;
|
|
1552
|
+
const DisableOrganizationsRootCredentialsManagementRequest$ = [3, n0, _DORCMR,
|
|
1455
1553
|
0,
|
|
1456
1554
|
[],
|
|
1457
1555
|
[]
|
|
1458
1556
|
];
|
|
1459
|
-
exports.
|
|
1557
|
+
exports.DisableOrganizationsRootCredentialsManagementRequest$ = DisableOrganizationsRootCredentialsManagementRequest$;
|
|
1558
|
+
const DisableOrganizationsRootCredentialsManagementResponse$ = [3, n0, _DORCMRi,
|
|
1460
1559
|
0,
|
|
1461
1560
|
[_OIr, _EF],
|
|
1462
1561
|
[0, 64 | 0]
|
|
1463
1562
|
];
|
|
1464
|
-
exports.
|
|
1563
|
+
exports.DisableOrganizationsRootCredentialsManagementResponse$ = DisableOrganizationsRootCredentialsManagementResponse$;
|
|
1564
|
+
const DisableOrganizationsRootSessionsRequest$ = [3, n0, _DORSR,
|
|
1465
1565
|
0,
|
|
1466
1566
|
[],
|
|
1467
1567
|
[]
|
|
1468
1568
|
];
|
|
1469
|
-
exports.
|
|
1569
|
+
exports.DisableOrganizationsRootSessionsRequest$ = DisableOrganizationsRootSessionsRequest$;
|
|
1570
|
+
const DisableOrganizationsRootSessionsResponse$ = [3, n0, _DORSRi,
|
|
1470
1571
|
0,
|
|
1471
1572
|
[_OIr, _EF],
|
|
1472
1573
|
[0, 64 | 0]
|
|
1473
1574
|
];
|
|
1474
|
-
exports.
|
|
1575
|
+
exports.DisableOrganizationsRootSessionsResponse$ = DisableOrganizationsRootSessionsResponse$;
|
|
1576
|
+
const EnableMFADeviceRequest$ = [3, n0, _EMFADR,
|
|
1475
1577
|
0,
|
|
1476
1578
|
[_UN, _SNer, _AC, _ACu],
|
|
1477
1579
|
[0, 0, 0, 0], 4
|
|
1478
1580
|
];
|
|
1479
|
-
exports.
|
|
1581
|
+
exports.EnableMFADeviceRequest$ = EnableMFADeviceRequest$;
|
|
1582
|
+
const EnableOrganizationsRootCredentialsManagementRequest$ = [3, n0, _EORCMR,
|
|
1480
1583
|
0,
|
|
1481
1584
|
[],
|
|
1482
1585
|
[]
|
|
1483
1586
|
];
|
|
1484
|
-
exports.
|
|
1587
|
+
exports.EnableOrganizationsRootCredentialsManagementRequest$ = EnableOrganizationsRootCredentialsManagementRequest$;
|
|
1588
|
+
const EnableOrganizationsRootCredentialsManagementResponse$ = [3, n0, _EORCMRn,
|
|
1485
1589
|
0,
|
|
1486
1590
|
[_OIr, _EF],
|
|
1487
1591
|
[0, 64 | 0]
|
|
1488
1592
|
];
|
|
1489
|
-
exports.
|
|
1593
|
+
exports.EnableOrganizationsRootCredentialsManagementResponse$ = EnableOrganizationsRootCredentialsManagementResponse$;
|
|
1594
|
+
const EnableOrganizationsRootSessionsRequest$ = [3, n0, _EORSR,
|
|
1490
1595
|
0,
|
|
1491
1596
|
[],
|
|
1492
1597
|
[]
|
|
1493
1598
|
];
|
|
1494
|
-
exports.
|
|
1599
|
+
exports.EnableOrganizationsRootSessionsRequest$ = EnableOrganizationsRootSessionsRequest$;
|
|
1600
|
+
const EnableOrganizationsRootSessionsResponse$ = [3, n0, _EORSRn,
|
|
1495
1601
|
0,
|
|
1496
1602
|
[_OIr, _EF],
|
|
1497
1603
|
[0, 64 | 0]
|
|
1498
1604
|
];
|
|
1499
|
-
exports.
|
|
1605
|
+
exports.EnableOrganizationsRootSessionsResponse$ = EnableOrganizationsRootSessionsResponse$;
|
|
1606
|
+
const EnableOutboundWebIdentityFederationResponse$ = [3, n0, _EOWIFR,
|
|
1500
1607
|
0,
|
|
1501
1608
|
[_II],
|
|
1502
1609
|
[0]
|
|
1503
1610
|
];
|
|
1504
|
-
exports.
|
|
1611
|
+
exports.EnableOutboundWebIdentityFederationResponse$ = EnableOutboundWebIdentityFederationResponse$;
|
|
1612
|
+
const EntityDetails$ = [3, n0, _ED,
|
|
1505
1613
|
0,
|
|
1506
1614
|
[_EI, _LA],
|
|
1507
|
-
[() =>
|
|
1615
|
+
[() => EntityInfo$, 4], 1
|
|
1508
1616
|
];
|
|
1509
|
-
exports.
|
|
1617
|
+
exports.EntityDetails$ = EntityDetails$;
|
|
1618
|
+
const EntityInfo$ = [3, n0, _EI,
|
|
1510
1619
|
0,
|
|
1511
1620
|
[_A, _N, _Ty, _I, _Pa],
|
|
1512
1621
|
[0, 0, 0, 0, 0], 4
|
|
1513
1622
|
];
|
|
1514
|
-
exports.
|
|
1623
|
+
exports.EntityInfo$ = EntityInfo$;
|
|
1624
|
+
const ErrorDetails$ = [3, n0, _EDr,
|
|
1515
1625
|
0,
|
|
1516
1626
|
[_M, _C],
|
|
1517
1627
|
[0, 0], 2
|
|
1518
1628
|
];
|
|
1519
|
-
exports.
|
|
1629
|
+
exports.ErrorDetails$ = ErrorDetails$;
|
|
1630
|
+
const EvaluationResult$ = [3, n0, _ER,
|
|
1520
1631
|
0,
|
|
1521
1632
|
[_EAN, _EDv, _ERN, _MS, _MCV, _ODD, _PBDD, _EDD, _RSR],
|
|
1522
|
-
[0, 0, 0, () => StatementListType, 64 | 0, () =>
|
|
1633
|
+
[0, 0, 0, () => StatementListType, 64 | 0, () => OrganizationsDecisionDetail$, () => PermissionsBoundaryDecisionDetail$, 128 | 0, () => ResourceSpecificResultListType], 2
|
|
1523
1634
|
];
|
|
1524
|
-
exports.
|
|
1635
|
+
exports.EvaluationResult$ = EvaluationResult$;
|
|
1636
|
+
const GenerateCredentialReportResponse$ = [3, n0, _GCRR,
|
|
1525
1637
|
0,
|
|
1526
1638
|
[_St, _D],
|
|
1527
1639
|
[0, 0]
|
|
1528
1640
|
];
|
|
1529
|
-
exports.
|
|
1641
|
+
exports.GenerateCredentialReportResponse$ = GenerateCredentialReportResponse$;
|
|
1642
|
+
const GenerateOrganizationsAccessReportRequest$ = [3, n0, _GOARR,
|
|
1530
1643
|
0,
|
|
1531
1644
|
[_EP, _OPI],
|
|
1532
1645
|
[0, 0], 1
|
|
1533
1646
|
];
|
|
1534
|
-
exports.
|
|
1647
|
+
exports.GenerateOrganizationsAccessReportRequest$ = GenerateOrganizationsAccessReportRequest$;
|
|
1648
|
+
const GenerateOrganizationsAccessReportResponse$ = [3, n0, _GOARRe,
|
|
1535
1649
|
0,
|
|
1536
1650
|
[_JI],
|
|
1537
1651
|
[0]
|
|
1538
1652
|
];
|
|
1539
|
-
exports.
|
|
1653
|
+
exports.GenerateOrganizationsAccessReportResponse$ = GenerateOrganizationsAccessReportResponse$;
|
|
1654
|
+
const GenerateServiceLastAccessedDetailsRequest$ = [3, n0, _GSLADR,
|
|
1540
1655
|
0,
|
|
1541
1656
|
[_A, _Gr],
|
|
1542
1657
|
[0, 0], 1
|
|
1543
1658
|
];
|
|
1544
|
-
exports.
|
|
1659
|
+
exports.GenerateServiceLastAccessedDetailsRequest$ = GenerateServiceLastAccessedDetailsRequest$;
|
|
1660
|
+
const GenerateServiceLastAccessedDetailsResponse$ = [3, n0, _GSLADRe,
|
|
1545
1661
|
0,
|
|
1546
1662
|
[_JI],
|
|
1547
1663
|
[0]
|
|
1548
1664
|
];
|
|
1549
|
-
exports.
|
|
1665
|
+
exports.GenerateServiceLastAccessedDetailsResponse$ = GenerateServiceLastAccessedDetailsResponse$;
|
|
1666
|
+
const GetAccessKeyLastUsedRequest$ = [3, n0, _GAKLUR,
|
|
1550
1667
|
0,
|
|
1551
1668
|
[_AKI],
|
|
1552
1669
|
[0], 1
|
|
1553
1670
|
];
|
|
1554
|
-
exports.
|
|
1671
|
+
exports.GetAccessKeyLastUsedRequest$ = GetAccessKeyLastUsedRequest$;
|
|
1672
|
+
const GetAccessKeyLastUsedResponse$ = [3, n0, _GAKLURe,
|
|
1555
1673
|
0,
|
|
1556
1674
|
[_UN, _AKLU],
|
|
1557
|
-
[0, () =>
|
|
1675
|
+
[0, () => AccessKeyLastUsed$]
|
|
1558
1676
|
];
|
|
1559
|
-
exports.
|
|
1677
|
+
exports.GetAccessKeyLastUsedResponse$ = GetAccessKeyLastUsedResponse$;
|
|
1678
|
+
const GetAccountAuthorizationDetailsRequest$ = [3, n0, _GAADR,
|
|
1560
1679
|
0,
|
|
1561
1680
|
[_F, _MI, _Ma],
|
|
1562
1681
|
[64 | 0, 1, 0]
|
|
1563
1682
|
];
|
|
1564
|
-
exports.
|
|
1683
|
+
exports.GetAccountAuthorizationDetailsRequest$ = GetAccountAuthorizationDetailsRequest$;
|
|
1684
|
+
const GetAccountAuthorizationDetailsResponse$ = [3, n0, _GAADRe,
|
|
1565
1685
|
0,
|
|
1566
1686
|
[_UDL, _GDL, _RDL, _Pol, _IT, _Ma],
|
|
1567
1687
|
[() => userDetailListType, () => groupDetailListType, () => roleDetailListType, () => ManagedPolicyDetailListType, 2, 0]
|
|
1568
1688
|
];
|
|
1569
|
-
exports.
|
|
1689
|
+
exports.GetAccountAuthorizationDetailsResponse$ = GetAccountAuthorizationDetailsResponse$;
|
|
1690
|
+
const GetAccountPasswordPolicyResponse$ = [3, n0, _GAPPR,
|
|
1570
1691
|
0,
|
|
1571
1692
|
[_PPa],
|
|
1572
|
-
[() =>
|
|
1693
|
+
[() => PasswordPolicy$], 1
|
|
1573
1694
|
];
|
|
1574
|
-
exports.
|
|
1695
|
+
exports.GetAccountPasswordPolicyResponse$ = GetAccountPasswordPolicyResponse$;
|
|
1696
|
+
const GetAccountSummaryResponse$ = [3, n0, _GASR,
|
|
1575
1697
|
0,
|
|
1576
1698
|
[_SM],
|
|
1577
1699
|
[128 | 1]
|
|
1578
1700
|
];
|
|
1579
|
-
exports.
|
|
1701
|
+
exports.GetAccountSummaryResponse$ = GetAccountSummaryResponse$;
|
|
1702
|
+
const GetContextKeysForCustomPolicyRequest$ = [3, n0, _GCKFCPR,
|
|
1580
1703
|
0,
|
|
1581
1704
|
[_PIL],
|
|
1582
1705
|
[64 | 0], 1
|
|
1583
1706
|
];
|
|
1584
|
-
exports.
|
|
1707
|
+
exports.GetContextKeysForCustomPolicyRequest$ = GetContextKeysForCustomPolicyRequest$;
|
|
1708
|
+
const GetContextKeysForPolicyResponse$ = [3, n0, _GCKFPR,
|
|
1585
1709
|
0,
|
|
1586
1710
|
[_CKNo],
|
|
1587
1711
|
[64 | 0]
|
|
1588
1712
|
];
|
|
1589
|
-
exports.
|
|
1713
|
+
exports.GetContextKeysForPolicyResponse$ = GetContextKeysForPolicyResponse$;
|
|
1714
|
+
const GetContextKeysForPrincipalPolicyRequest$ = [3, n0, _GCKFPPR,
|
|
1590
1715
|
0,
|
|
1591
1716
|
[_PSA, _PIL],
|
|
1592
1717
|
[0, 64 | 0], 1
|
|
1593
1718
|
];
|
|
1594
|
-
exports.
|
|
1719
|
+
exports.GetContextKeysForPrincipalPolicyRequest$ = GetContextKeysForPrincipalPolicyRequest$;
|
|
1720
|
+
const GetCredentialReportResponse$ = [3, n0, _GCRRe,
|
|
1595
1721
|
0,
|
|
1596
1722
|
[_Co, _RF, _GT],
|
|
1597
1723
|
[21, 0, 4]
|
|
1598
1724
|
];
|
|
1599
|
-
exports.
|
|
1725
|
+
exports.GetCredentialReportResponse$ = GetCredentialReportResponse$;
|
|
1726
|
+
const GetDelegationRequestRequest$ = [3, n0, _GDRR,
|
|
1600
1727
|
0,
|
|
1601
1728
|
[_DRI, _DPC],
|
|
1602
1729
|
[0, 2], 1
|
|
1603
1730
|
];
|
|
1604
|
-
exports.
|
|
1731
|
+
exports.GetDelegationRequestRequest$ = GetDelegationRequestRequest$;
|
|
1732
|
+
const GetDelegationRequestResponse$ = [3, n0, _GDRRe,
|
|
1605
1733
|
0,
|
|
1606
1734
|
[_DR, _PCS, _PCR],
|
|
1607
|
-
[() =>
|
|
1735
|
+
[() => DelegationRequest$, 0, 0]
|
|
1608
1736
|
];
|
|
1609
|
-
exports.
|
|
1737
|
+
exports.GetDelegationRequestResponse$ = GetDelegationRequestResponse$;
|
|
1738
|
+
const GetGroupPolicyRequest$ = [3, n0, _GGPR,
|
|
1610
1739
|
0,
|
|
1611
1740
|
[_GN, _PN],
|
|
1612
1741
|
[0, 0], 2
|
|
1613
1742
|
];
|
|
1614
|
-
exports.
|
|
1743
|
+
exports.GetGroupPolicyRequest$ = GetGroupPolicyRequest$;
|
|
1744
|
+
const GetGroupPolicyResponse$ = [3, n0, _GGPRe,
|
|
1615
1745
|
0,
|
|
1616
1746
|
[_GN, _PN, _PD],
|
|
1617
1747
|
[0, 0, 0], 3
|
|
1618
1748
|
];
|
|
1619
|
-
exports.
|
|
1749
|
+
exports.GetGroupPolicyResponse$ = GetGroupPolicyResponse$;
|
|
1750
|
+
const GetGroupRequest$ = [3, n0, _GGR,
|
|
1620
1751
|
0,
|
|
1621
1752
|
[_GN, _Ma, _MI],
|
|
1622
1753
|
[0, 0, 1], 1
|
|
1623
1754
|
];
|
|
1624
|
-
exports.
|
|
1755
|
+
exports.GetGroupRequest$ = GetGroupRequest$;
|
|
1756
|
+
const GetGroupResponse$ = [3, n0, _GGRe,
|
|
1625
1757
|
0,
|
|
1626
1758
|
[_G, _Use, _IT, _Ma],
|
|
1627
|
-
[() =>
|
|
1759
|
+
[() => Group$, () => userListType, 2, 0], 2
|
|
1628
1760
|
];
|
|
1629
|
-
exports.
|
|
1761
|
+
exports.GetGroupResponse$ = GetGroupResponse$;
|
|
1762
|
+
const GetHumanReadableSummaryRequest$ = [3, n0, _GHRSR,
|
|
1630
1763
|
0,
|
|
1631
1764
|
[_EA, _L],
|
|
1632
1765
|
[0, 0], 1
|
|
1633
1766
|
];
|
|
1634
|
-
exports.
|
|
1767
|
+
exports.GetHumanReadableSummaryRequest$ = GetHumanReadableSummaryRequest$;
|
|
1768
|
+
const GetHumanReadableSummaryResponse$ = [3, n0, _GHRSRe,
|
|
1635
1769
|
0,
|
|
1636
1770
|
[_SC, _L, _SS],
|
|
1637
1771
|
[0, 0, 0]
|
|
1638
1772
|
];
|
|
1639
|
-
exports.
|
|
1773
|
+
exports.GetHumanReadableSummaryResponse$ = GetHumanReadableSummaryResponse$;
|
|
1774
|
+
const GetInstanceProfileRequest$ = [3, n0, _GIPR,
|
|
1640
1775
|
0,
|
|
1641
1776
|
[_IPN],
|
|
1642
1777
|
[0], 1
|
|
1643
1778
|
];
|
|
1644
|
-
exports.
|
|
1779
|
+
exports.GetInstanceProfileRequest$ = GetInstanceProfileRequest$;
|
|
1780
|
+
const GetInstanceProfileResponse$ = [3, n0, _GIPRe,
|
|
1645
1781
|
0,
|
|
1646
1782
|
[_IP],
|
|
1647
|
-
[() =>
|
|
1783
|
+
[() => InstanceProfile$], 1
|
|
1648
1784
|
];
|
|
1649
|
-
exports.
|
|
1785
|
+
exports.GetInstanceProfileResponse$ = GetInstanceProfileResponse$;
|
|
1786
|
+
const GetLoginProfileRequest$ = [3, n0, _GLPR,
|
|
1650
1787
|
0,
|
|
1651
1788
|
[_UN],
|
|
1652
1789
|
[0]
|
|
1653
1790
|
];
|
|
1654
|
-
exports.
|
|
1791
|
+
exports.GetLoginProfileRequest$ = GetLoginProfileRequest$;
|
|
1792
|
+
const GetLoginProfileResponse$ = [3, n0, _GLPRe,
|
|
1655
1793
|
0,
|
|
1656
1794
|
[_LP],
|
|
1657
|
-
[() =>
|
|
1795
|
+
[() => LoginProfile$], 1
|
|
1658
1796
|
];
|
|
1659
|
-
exports.
|
|
1797
|
+
exports.GetLoginProfileResponse$ = GetLoginProfileResponse$;
|
|
1798
|
+
const GetMFADeviceRequest$ = [3, n0, _GMFADR,
|
|
1660
1799
|
0,
|
|
1661
1800
|
[_SNer, _UN],
|
|
1662
1801
|
[0, 0], 1
|
|
1663
1802
|
];
|
|
1664
|
-
exports.
|
|
1803
|
+
exports.GetMFADeviceRequest$ = GetMFADeviceRequest$;
|
|
1804
|
+
const GetMFADeviceResponse$ = [3, n0, _GMFADRe,
|
|
1665
1805
|
0,
|
|
1666
1806
|
[_SNer, _UN, _EDn, _Ce],
|
|
1667
1807
|
[0, 0, 4, 128 | 0], 1
|
|
1668
1808
|
];
|
|
1669
|
-
exports.
|
|
1809
|
+
exports.GetMFADeviceResponse$ = GetMFADeviceResponse$;
|
|
1810
|
+
const GetOpenIDConnectProviderRequest$ = [3, n0, _GOIDCPR,
|
|
1670
1811
|
0,
|
|
1671
1812
|
[_OIDCPA],
|
|
1672
1813
|
[0], 1
|
|
1673
1814
|
];
|
|
1674
|
-
exports.
|
|
1815
|
+
exports.GetOpenIDConnectProviderRequest$ = GetOpenIDConnectProviderRequest$;
|
|
1816
|
+
const GetOpenIDConnectProviderResponse$ = [3, n0, _GOIDCPRe,
|
|
1675
1817
|
0,
|
|
1676
1818
|
[_U, _CIDL, _TL, _CD, _T],
|
|
1677
1819
|
[0, 64 | 0, 64 | 0, 4, () => tagListType]
|
|
1678
1820
|
];
|
|
1679
|
-
exports.
|
|
1821
|
+
exports.GetOpenIDConnectProviderResponse$ = GetOpenIDConnectProviderResponse$;
|
|
1822
|
+
const GetOrganizationsAccessReportRequest$ = [3, n0, _GOARRet,
|
|
1680
1823
|
0,
|
|
1681
1824
|
[_JI, _MI, _Ma, _SK],
|
|
1682
1825
|
[0, 1, 0, 0], 1
|
|
1683
1826
|
];
|
|
1684
|
-
exports.
|
|
1827
|
+
exports.GetOrganizationsAccessReportRequest$ = GetOrganizationsAccessReportRequest$;
|
|
1828
|
+
const GetOrganizationsAccessReportResponse$ = [3, n0, _GOARRetr,
|
|
1685
1829
|
0,
|
|
1686
1830
|
[_JS, _JCD, _JCDo, _NOSA, _NOSNA, _ADc, _IT, _Ma, _EDr],
|
|
1687
|
-
[0, 4, 4, 1, 1, () => AccessDetails, 2, 0, () =>
|
|
1831
|
+
[0, 4, 4, 1, 1, () => AccessDetails, 2, 0, () => ErrorDetails$], 2
|
|
1688
1832
|
];
|
|
1689
|
-
exports.
|
|
1833
|
+
exports.GetOrganizationsAccessReportResponse$ = GetOrganizationsAccessReportResponse$;
|
|
1834
|
+
const GetOutboundWebIdentityFederationInfoResponse$ = [3, n0, _GOWIFIR,
|
|
1690
1835
|
0,
|
|
1691
1836
|
[_II, _JVE],
|
|
1692
1837
|
[0, 2]
|
|
1693
1838
|
];
|
|
1694
|
-
exports.
|
|
1839
|
+
exports.GetOutboundWebIdentityFederationInfoResponse$ = GetOutboundWebIdentityFederationInfoResponse$;
|
|
1840
|
+
const GetPolicyRequest$ = [3, n0, _GPR,
|
|
1695
1841
|
0,
|
|
1696
1842
|
[_PA],
|
|
1697
1843
|
[0], 1
|
|
1698
1844
|
];
|
|
1699
|
-
exports.
|
|
1845
|
+
exports.GetPolicyRequest$ = GetPolicyRequest$;
|
|
1846
|
+
const GetPolicyResponse$ = [3, n0, _GPRe,
|
|
1700
1847
|
0,
|
|
1701
1848
|
[_Po],
|
|
1702
|
-
[() =>
|
|
1849
|
+
[() => Policy$]
|
|
1703
1850
|
];
|
|
1704
|
-
exports.
|
|
1851
|
+
exports.GetPolicyResponse$ = GetPolicyResponse$;
|
|
1852
|
+
const GetPolicyVersionRequest$ = [3, n0, _GPVR,
|
|
1705
1853
|
0,
|
|
1706
1854
|
[_PA, _VI],
|
|
1707
1855
|
[0, 0], 2
|
|
1708
1856
|
];
|
|
1709
|
-
exports.
|
|
1857
|
+
exports.GetPolicyVersionRequest$ = GetPolicyVersionRequest$;
|
|
1858
|
+
const GetPolicyVersionResponse$ = [3, n0, _GPVRe,
|
|
1710
1859
|
0,
|
|
1711
1860
|
[_PV],
|
|
1712
|
-
[() =>
|
|
1861
|
+
[() => PolicyVersion$]
|
|
1713
1862
|
];
|
|
1714
|
-
exports.
|
|
1863
|
+
exports.GetPolicyVersionResponse$ = GetPolicyVersionResponse$;
|
|
1864
|
+
const GetRolePolicyRequest$ = [3, n0, _GRPR,
|
|
1715
1865
|
0,
|
|
1716
1866
|
[_RN, _PN],
|
|
1717
1867
|
[0, 0], 2
|
|
1718
1868
|
];
|
|
1719
|
-
exports.
|
|
1869
|
+
exports.GetRolePolicyRequest$ = GetRolePolicyRequest$;
|
|
1870
|
+
const GetRolePolicyResponse$ = [3, n0, _GRPRe,
|
|
1720
1871
|
0,
|
|
1721
1872
|
[_RN, _PN, _PD],
|
|
1722
1873
|
[0, 0, 0], 3
|
|
1723
1874
|
];
|
|
1724
|
-
exports.
|
|
1875
|
+
exports.GetRolePolicyResponse$ = GetRolePolicyResponse$;
|
|
1876
|
+
const GetRoleRequest$ = [3, n0, _GRR,
|
|
1725
1877
|
0,
|
|
1726
1878
|
[_RN],
|
|
1727
1879
|
[0], 1
|
|
1728
1880
|
];
|
|
1729
|
-
exports.
|
|
1881
|
+
exports.GetRoleRequest$ = GetRoleRequest$;
|
|
1882
|
+
const GetRoleResponse$ = [3, n0, _GRRe,
|
|
1730
1883
|
0,
|
|
1731
1884
|
[_Ro],
|
|
1732
|
-
[() =>
|
|
1885
|
+
[() => Role$], 1
|
|
1733
1886
|
];
|
|
1734
|
-
exports.
|
|
1887
|
+
exports.GetRoleResponse$ = GetRoleResponse$;
|
|
1888
|
+
const GetSAMLProviderRequest$ = [3, n0, _GSAMLPR,
|
|
1735
1889
|
0,
|
|
1736
1890
|
[_SAMLPA],
|
|
1737
1891
|
[0], 1
|
|
1738
1892
|
];
|
|
1739
|
-
exports.
|
|
1893
|
+
exports.GetSAMLProviderRequest$ = GetSAMLProviderRequest$;
|
|
1894
|
+
const GetSAMLProviderResponse$ = [3, n0, _GSAMLPRe,
|
|
1740
1895
|
0,
|
|
1741
1896
|
[_SAMLPUUID, _SAMLMD, _CD, _VU, _T, _AEM, _PKL],
|
|
1742
1897
|
[0, 0, 4, 4, () => tagListType, 0, () => privateKeyList]
|
|
1743
1898
|
];
|
|
1744
|
-
exports.
|
|
1899
|
+
exports.GetSAMLProviderResponse$ = GetSAMLProviderResponse$;
|
|
1900
|
+
const GetServerCertificateRequest$ = [3, n0, _GSCR,
|
|
1745
1901
|
0,
|
|
1746
1902
|
[_SCN],
|
|
1747
1903
|
[0], 1
|
|
1748
1904
|
];
|
|
1749
|
-
exports.
|
|
1905
|
+
exports.GetServerCertificateRequest$ = GetServerCertificateRequest$;
|
|
1906
|
+
const GetServerCertificateResponse$ = [3, n0, _GSCRe,
|
|
1750
1907
|
0,
|
|
1751
1908
|
[_SCe],
|
|
1752
|
-
[() =>
|
|
1909
|
+
[() => ServerCertificate$], 1
|
|
1753
1910
|
];
|
|
1754
|
-
exports.
|
|
1911
|
+
exports.GetServerCertificateResponse$ = GetServerCertificateResponse$;
|
|
1912
|
+
const GetServiceLastAccessedDetailsRequest$ = [3, n0, _GSLADRet,
|
|
1755
1913
|
0,
|
|
1756
1914
|
[_JI, _MI, _Ma],
|
|
1757
1915
|
[0, 1, 0], 1
|
|
1758
1916
|
];
|
|
1759
|
-
exports.
|
|
1917
|
+
exports.GetServiceLastAccessedDetailsRequest$ = GetServiceLastAccessedDetailsRequest$;
|
|
1918
|
+
const GetServiceLastAccessedDetailsResponse$ = [3, n0, _GSLADRete,
|
|
1760
1919
|
0,
|
|
1761
1920
|
[_JS, _JCD, _SLA, _JCDo, _JT, _IT, _Ma, _E],
|
|
1762
|
-
[0, 4, () => ServicesLastAccessed, 4, 0, 2, 0, () =>
|
|
1921
|
+
[0, 4, () => ServicesLastAccessed, 4, 0, 2, 0, () => ErrorDetails$], 4
|
|
1763
1922
|
];
|
|
1764
|
-
exports.
|
|
1923
|
+
exports.GetServiceLastAccessedDetailsResponse$ = GetServiceLastAccessedDetailsResponse$;
|
|
1924
|
+
const GetServiceLastAccessedDetailsWithEntitiesRequest$ = [3, n0, _GSLADWER,
|
|
1765
1925
|
0,
|
|
1766
1926
|
[_JI, _SNe, _MI, _Ma],
|
|
1767
1927
|
[0, 0, 1, 0], 2
|
|
1768
1928
|
];
|
|
1769
|
-
exports.
|
|
1929
|
+
exports.GetServiceLastAccessedDetailsWithEntitiesRequest$ = GetServiceLastAccessedDetailsWithEntitiesRequest$;
|
|
1930
|
+
const GetServiceLastAccessedDetailsWithEntitiesResponse$ = [3, n0, _GSLADWERe,
|
|
1770
1931
|
0,
|
|
1771
1932
|
[_JS, _JCD, _JCDo, _EDL, _IT, _Ma, _E],
|
|
1772
|
-
[0, 4, 4, () => entityDetailsListType, 2, 0, () =>
|
|
1933
|
+
[0, 4, 4, () => entityDetailsListType, 2, 0, () => ErrorDetails$], 4
|
|
1773
1934
|
];
|
|
1774
|
-
exports.
|
|
1935
|
+
exports.GetServiceLastAccessedDetailsWithEntitiesResponse$ = GetServiceLastAccessedDetailsWithEntitiesResponse$;
|
|
1936
|
+
const GetServiceLinkedRoleDeletionStatusRequest$ = [3, n0, _GSLRDSR,
|
|
1775
1937
|
0,
|
|
1776
1938
|
[_DTI],
|
|
1777
1939
|
[0], 1
|
|
1778
1940
|
];
|
|
1779
|
-
exports.
|
|
1941
|
+
exports.GetServiceLinkedRoleDeletionStatusRequest$ = GetServiceLinkedRoleDeletionStatusRequest$;
|
|
1942
|
+
const GetServiceLinkedRoleDeletionStatusResponse$ = [3, n0, _GSLRDSRe,
|
|
1780
1943
|
0,
|
|
1781
1944
|
[_S, _Re],
|
|
1782
|
-
[0, () =>
|
|
1945
|
+
[0, () => DeletionTaskFailureReasonType$], 1
|
|
1783
1946
|
];
|
|
1784
|
-
exports.
|
|
1947
|
+
exports.GetServiceLinkedRoleDeletionStatusResponse$ = GetServiceLinkedRoleDeletionStatusResponse$;
|
|
1948
|
+
const GetSSHPublicKeyRequest$ = [3, n0, _GSSHPKR,
|
|
1785
1949
|
0,
|
|
1786
1950
|
[_UN, _SSHPKI, _En],
|
|
1787
1951
|
[0, 0, 0], 3
|
|
1788
1952
|
];
|
|
1789
|
-
exports.
|
|
1953
|
+
exports.GetSSHPublicKeyRequest$ = GetSSHPublicKeyRequest$;
|
|
1954
|
+
const GetSSHPublicKeyResponse$ = [3, n0, _GSSHPKRe,
|
|
1790
1955
|
0,
|
|
1791
1956
|
[_SSHPK],
|
|
1792
|
-
[() =>
|
|
1957
|
+
[() => SSHPublicKey$]
|
|
1793
1958
|
];
|
|
1794
|
-
exports.
|
|
1959
|
+
exports.GetSSHPublicKeyResponse$ = GetSSHPublicKeyResponse$;
|
|
1960
|
+
const GetUserPolicyRequest$ = [3, n0, _GUPR,
|
|
1795
1961
|
0,
|
|
1796
1962
|
[_UN, _PN],
|
|
1797
1963
|
[0, 0], 2
|
|
1798
1964
|
];
|
|
1799
|
-
exports.
|
|
1965
|
+
exports.GetUserPolicyRequest$ = GetUserPolicyRequest$;
|
|
1966
|
+
const GetUserPolicyResponse$ = [3, n0, _GUPRe,
|
|
1800
1967
|
0,
|
|
1801
1968
|
[_UN, _PN, _PD],
|
|
1802
1969
|
[0, 0, 0], 3
|
|
1803
1970
|
];
|
|
1804
|
-
exports.
|
|
1971
|
+
exports.GetUserPolicyResponse$ = GetUserPolicyResponse$;
|
|
1972
|
+
const GetUserRequest$ = [3, n0, _GUR,
|
|
1805
1973
|
0,
|
|
1806
1974
|
[_UN],
|
|
1807
1975
|
[0]
|
|
1808
1976
|
];
|
|
1809
|
-
exports.
|
|
1977
|
+
exports.GetUserRequest$ = GetUserRequest$;
|
|
1978
|
+
const GetUserResponse$ = [3, n0, _GURe,
|
|
1810
1979
|
0,
|
|
1811
1980
|
[_Us],
|
|
1812
|
-
[() =>
|
|
1981
|
+
[() => User$], 1
|
|
1813
1982
|
];
|
|
1814
|
-
exports.
|
|
1983
|
+
exports.GetUserResponse$ = GetUserResponse$;
|
|
1984
|
+
const Group$ = [3, n0, _G,
|
|
1815
1985
|
0,
|
|
1816
1986
|
[_Pa, _GN, _GI, _A, _CD],
|
|
1817
1987
|
[0, 0, 0, 0, 4], 5
|
|
1818
1988
|
];
|
|
1819
|
-
exports.
|
|
1989
|
+
exports.Group$ = Group$;
|
|
1990
|
+
const GroupDetail$ = [3, n0, _GD,
|
|
1820
1991
|
0,
|
|
1821
1992
|
[_Pa, _GN, _GI, _A, _CD, _GPL, _AMP],
|
|
1822
1993
|
[0, 0, 0, 0, 4, () => policyDetailListType, () => attachedPoliciesListType]
|
|
1823
1994
|
];
|
|
1824
|
-
exports.
|
|
1995
|
+
exports.GroupDetail$ = GroupDetail$;
|
|
1996
|
+
const InstanceProfile$ = [3, n0, _IP,
|
|
1825
1997
|
0,
|
|
1826
1998
|
[_Pa, _IPN, _IPI, _A, _CD, _Rol, _T],
|
|
1827
1999
|
[0, 0, 0, 0, 4, () => roleListType, () => tagListType], 6
|
|
1828
2000
|
];
|
|
1829
|
-
exports.
|
|
2001
|
+
exports.InstanceProfile$ = InstanceProfile$;
|
|
2002
|
+
const ListAccessKeysRequest$ = [3, n0, _LAKR,
|
|
1830
2003
|
0,
|
|
1831
2004
|
[_UN, _Ma, _MI],
|
|
1832
2005
|
[0, 0, 1]
|
|
1833
2006
|
];
|
|
1834
|
-
exports.
|
|
2007
|
+
exports.ListAccessKeysRequest$ = ListAccessKeysRequest$;
|
|
2008
|
+
const ListAccessKeysResponse$ = [3, n0, _LAKRi,
|
|
1835
2009
|
0,
|
|
1836
2010
|
[_AKM, _IT, _Ma],
|
|
1837
2011
|
[() => accessKeyMetadataListType, 2, 0], 1
|
|
1838
2012
|
];
|
|
1839
|
-
exports.
|
|
2013
|
+
exports.ListAccessKeysResponse$ = ListAccessKeysResponse$;
|
|
2014
|
+
const ListAccountAliasesRequest$ = [3, n0, _LAAR,
|
|
1840
2015
|
0,
|
|
1841
2016
|
[_Ma, _MI],
|
|
1842
2017
|
[0, 1]
|
|
1843
2018
|
];
|
|
1844
|
-
exports.
|
|
2019
|
+
exports.ListAccountAliasesRequest$ = ListAccountAliasesRequest$;
|
|
2020
|
+
const ListAccountAliasesResponse$ = [3, n0, _LAARi,
|
|
1845
2021
|
0,
|
|
1846
2022
|
[_AAc, _IT, _Ma],
|
|
1847
2023
|
[64 | 0, 2, 0], 1
|
|
1848
2024
|
];
|
|
1849
|
-
exports.
|
|
2025
|
+
exports.ListAccountAliasesResponse$ = ListAccountAliasesResponse$;
|
|
2026
|
+
const ListAttachedGroupPoliciesRequest$ = [3, n0, _LAGPR,
|
|
1850
2027
|
0,
|
|
1851
2028
|
[_GN, _PPat, _Ma, _MI],
|
|
1852
2029
|
[0, 0, 0, 1], 1
|
|
1853
2030
|
];
|
|
1854
|
-
exports.
|
|
2031
|
+
exports.ListAttachedGroupPoliciesRequest$ = ListAttachedGroupPoliciesRequest$;
|
|
2032
|
+
const ListAttachedGroupPoliciesResponse$ = [3, n0, _LAGPRi,
|
|
1855
2033
|
0,
|
|
1856
2034
|
[_APt, _IT, _Ma],
|
|
1857
2035
|
[() => attachedPoliciesListType, 2, 0]
|
|
1858
2036
|
];
|
|
1859
|
-
exports.
|
|
2037
|
+
exports.ListAttachedGroupPoliciesResponse$ = ListAttachedGroupPoliciesResponse$;
|
|
2038
|
+
const ListAttachedRolePoliciesRequest$ = [3, n0, _LARPR,
|
|
1860
2039
|
0,
|
|
1861
2040
|
[_RN, _PPat, _Ma, _MI],
|
|
1862
2041
|
[0, 0, 0, 1], 1
|
|
1863
2042
|
];
|
|
1864
|
-
exports.
|
|
2043
|
+
exports.ListAttachedRolePoliciesRequest$ = ListAttachedRolePoliciesRequest$;
|
|
2044
|
+
const ListAttachedRolePoliciesResponse$ = [3, n0, _LARPRi,
|
|
1865
2045
|
0,
|
|
1866
2046
|
[_APt, _IT, _Ma],
|
|
1867
2047
|
[() => attachedPoliciesListType, 2, 0]
|
|
1868
2048
|
];
|
|
1869
|
-
exports.
|
|
2049
|
+
exports.ListAttachedRolePoliciesResponse$ = ListAttachedRolePoliciesResponse$;
|
|
2050
|
+
const ListAttachedUserPoliciesRequest$ = [3, n0, _LAUPR,
|
|
1870
2051
|
0,
|
|
1871
2052
|
[_UN, _PPat, _Ma, _MI],
|
|
1872
2053
|
[0, 0, 0, 1], 1
|
|
1873
2054
|
];
|
|
1874
|
-
exports.
|
|
2055
|
+
exports.ListAttachedUserPoliciesRequest$ = ListAttachedUserPoliciesRequest$;
|
|
2056
|
+
const ListAttachedUserPoliciesResponse$ = [3, n0, _LAUPRi,
|
|
1875
2057
|
0,
|
|
1876
2058
|
[_APt, _IT, _Ma],
|
|
1877
2059
|
[() => attachedPoliciesListType, 2, 0]
|
|
1878
2060
|
];
|
|
1879
|
-
exports.
|
|
2061
|
+
exports.ListAttachedUserPoliciesResponse$ = ListAttachedUserPoliciesResponse$;
|
|
2062
|
+
const ListDelegationRequestsRequest$ = [3, n0, _LDRR,
|
|
1880
2063
|
0,
|
|
1881
2064
|
[_OI, _Ma, _MI],
|
|
1882
2065
|
[0, 0, 1]
|
|
1883
2066
|
];
|
|
1884
|
-
exports.
|
|
2067
|
+
exports.ListDelegationRequestsRequest$ = ListDelegationRequestsRequest$;
|
|
2068
|
+
const ListDelegationRequestsResponse$ = [3, n0, _LDRRi,
|
|
1885
2069
|
0,
|
|
1886
2070
|
[_DRe, _Ma, _iT],
|
|
1887
2071
|
[() => delegationRequestsListType, 0, 2]
|
|
1888
2072
|
];
|
|
1889
|
-
exports.
|
|
2073
|
+
exports.ListDelegationRequestsResponse$ = ListDelegationRequestsResponse$;
|
|
2074
|
+
const ListEntitiesForPolicyRequest$ = [3, n0, _LEFPR,
|
|
1890
2075
|
0,
|
|
1891
2076
|
[_PA, _EFn, _PPat, _PUF, _Ma, _MI],
|
|
1892
2077
|
[0, 0, 0, 0, 0, 1], 1
|
|
1893
2078
|
];
|
|
1894
|
-
exports.
|
|
2079
|
+
exports.ListEntitiesForPolicyRequest$ = ListEntitiesForPolicyRequest$;
|
|
2080
|
+
const ListEntitiesForPolicyResponse$ = [3, n0, _LEFPRi,
|
|
1895
2081
|
0,
|
|
1896
2082
|
[_PG, _PU, _PR, _IT, _Ma],
|
|
1897
2083
|
[() => PolicyGroupListType, () => PolicyUserListType, () => PolicyRoleListType, 2, 0]
|
|
1898
2084
|
];
|
|
1899
|
-
exports.
|
|
2085
|
+
exports.ListEntitiesForPolicyResponse$ = ListEntitiesForPolicyResponse$;
|
|
2086
|
+
const ListGroupPoliciesRequest$ = [3, n0, _LGPR,
|
|
1900
2087
|
0,
|
|
1901
2088
|
[_GN, _Ma, _MI],
|
|
1902
2089
|
[0, 0, 1], 1
|
|
1903
2090
|
];
|
|
1904
|
-
exports.
|
|
2091
|
+
exports.ListGroupPoliciesRequest$ = ListGroupPoliciesRequest$;
|
|
2092
|
+
const ListGroupPoliciesResponse$ = [3, n0, _LGPRi,
|
|
1905
2093
|
0,
|
|
1906
2094
|
[_PNo, _IT, _Ma],
|
|
1907
2095
|
[64 | 0, 2, 0], 1
|
|
1908
2096
|
];
|
|
1909
|
-
exports.
|
|
2097
|
+
exports.ListGroupPoliciesResponse$ = ListGroupPoliciesResponse$;
|
|
2098
|
+
const ListGroupsForUserRequest$ = [3, n0, _LGFUR,
|
|
1910
2099
|
0,
|
|
1911
2100
|
[_UN, _Ma, _MI],
|
|
1912
2101
|
[0, 0, 1], 1
|
|
1913
2102
|
];
|
|
1914
|
-
exports.
|
|
2103
|
+
exports.ListGroupsForUserRequest$ = ListGroupsForUserRequest$;
|
|
2104
|
+
const ListGroupsForUserResponse$ = [3, n0, _LGFURi,
|
|
1915
2105
|
0,
|
|
1916
2106
|
[_Gro, _IT, _Ma],
|
|
1917
2107
|
[() => groupListType, 2, 0], 1
|
|
1918
2108
|
];
|
|
1919
|
-
exports.
|
|
2109
|
+
exports.ListGroupsForUserResponse$ = ListGroupsForUserResponse$;
|
|
2110
|
+
const ListGroupsRequest$ = [3, n0, _LGR,
|
|
1920
2111
|
0,
|
|
1921
2112
|
[_PPat, _Ma, _MI],
|
|
1922
2113
|
[0, 0, 1]
|
|
1923
2114
|
];
|
|
1924
|
-
exports.
|
|
2115
|
+
exports.ListGroupsRequest$ = ListGroupsRequest$;
|
|
2116
|
+
const ListGroupsResponse$ = [3, n0, _LGRi,
|
|
1925
2117
|
0,
|
|
1926
2118
|
[_Gro, _IT, _Ma],
|
|
1927
2119
|
[() => groupListType, 2, 0], 1
|
|
1928
2120
|
];
|
|
1929
|
-
exports.
|
|
2121
|
+
exports.ListGroupsResponse$ = ListGroupsResponse$;
|
|
2122
|
+
const ListInstanceProfilesForRoleRequest$ = [3, n0, _LIPFRR,
|
|
1930
2123
|
0,
|
|
1931
2124
|
[_RN, _Ma, _MI],
|
|
1932
2125
|
[0, 0, 1], 1
|
|
1933
2126
|
];
|
|
1934
|
-
exports.
|
|
2127
|
+
exports.ListInstanceProfilesForRoleRequest$ = ListInstanceProfilesForRoleRequest$;
|
|
2128
|
+
const ListInstanceProfilesForRoleResponse$ = [3, n0, _LIPFRRi,
|
|
1935
2129
|
0,
|
|
1936
2130
|
[_IPn, _IT, _Ma],
|
|
1937
2131
|
[() => instanceProfileListType, 2, 0], 1
|
|
1938
2132
|
];
|
|
1939
|
-
exports.
|
|
2133
|
+
exports.ListInstanceProfilesForRoleResponse$ = ListInstanceProfilesForRoleResponse$;
|
|
2134
|
+
const ListInstanceProfilesRequest$ = [3, n0, _LIPR,
|
|
1940
2135
|
0,
|
|
1941
2136
|
[_PPat, _Ma, _MI],
|
|
1942
2137
|
[0, 0, 1]
|
|
1943
2138
|
];
|
|
1944
|
-
exports.
|
|
2139
|
+
exports.ListInstanceProfilesRequest$ = ListInstanceProfilesRequest$;
|
|
2140
|
+
const ListInstanceProfilesResponse$ = [3, n0, _LIPRi,
|
|
1945
2141
|
0,
|
|
1946
2142
|
[_IPn, _IT, _Ma],
|
|
1947
2143
|
[() => instanceProfileListType, 2, 0], 1
|
|
1948
2144
|
];
|
|
1949
|
-
exports.
|
|
2145
|
+
exports.ListInstanceProfilesResponse$ = ListInstanceProfilesResponse$;
|
|
2146
|
+
const ListInstanceProfileTagsRequest$ = [3, n0, _LIPTR,
|
|
1950
2147
|
0,
|
|
1951
2148
|
[_IPN, _Ma, _MI],
|
|
1952
2149
|
[0, 0, 1], 1
|
|
1953
2150
|
];
|
|
1954
|
-
exports.
|
|
2151
|
+
exports.ListInstanceProfileTagsRequest$ = ListInstanceProfileTagsRequest$;
|
|
2152
|
+
const ListInstanceProfileTagsResponse$ = [3, n0, _LIPTRi,
|
|
1955
2153
|
0,
|
|
1956
2154
|
[_T, _IT, _Ma],
|
|
1957
2155
|
[() => tagListType, 2, 0], 1
|
|
1958
2156
|
];
|
|
1959
|
-
exports.
|
|
2157
|
+
exports.ListInstanceProfileTagsResponse$ = ListInstanceProfileTagsResponse$;
|
|
2158
|
+
const ListMFADevicesRequest$ = [3, n0, _LMFADR,
|
|
1960
2159
|
0,
|
|
1961
2160
|
[_UN, _Ma, _MI],
|
|
1962
2161
|
[0, 0, 1]
|
|
1963
2162
|
];
|
|
1964
|
-
exports.
|
|
2163
|
+
exports.ListMFADevicesRequest$ = ListMFADevicesRequest$;
|
|
2164
|
+
const ListMFADevicesResponse$ = [3, n0, _LMFADRi,
|
|
1965
2165
|
0,
|
|
1966
2166
|
[_MFAD, _IT, _Ma],
|
|
1967
2167
|
[() => mfaDeviceListType, 2, 0], 1
|
|
1968
2168
|
];
|
|
1969
|
-
exports.
|
|
2169
|
+
exports.ListMFADevicesResponse$ = ListMFADevicesResponse$;
|
|
2170
|
+
const ListMFADeviceTagsRequest$ = [3, n0, _LMFADTR,
|
|
1970
2171
|
0,
|
|
1971
2172
|
[_SNer, _Ma, _MI],
|
|
1972
2173
|
[0, 0, 1], 1
|
|
1973
2174
|
];
|
|
1974
|
-
exports.
|
|
2175
|
+
exports.ListMFADeviceTagsRequest$ = ListMFADeviceTagsRequest$;
|
|
2176
|
+
const ListMFADeviceTagsResponse$ = [3, n0, _LMFADTRi,
|
|
1975
2177
|
0,
|
|
1976
2178
|
[_T, _IT, _Ma],
|
|
1977
2179
|
[() => tagListType, 2, 0], 1
|
|
1978
2180
|
];
|
|
1979
|
-
exports.
|
|
2181
|
+
exports.ListMFADeviceTagsResponse$ = ListMFADeviceTagsResponse$;
|
|
2182
|
+
const ListOpenIDConnectProvidersRequest$ = [3, n0, _LOIDCPR,
|
|
1980
2183
|
0,
|
|
1981
2184
|
[],
|
|
1982
2185
|
[]
|
|
1983
2186
|
];
|
|
1984
|
-
exports.
|
|
2187
|
+
exports.ListOpenIDConnectProvidersRequest$ = ListOpenIDConnectProvidersRequest$;
|
|
2188
|
+
const ListOpenIDConnectProvidersResponse$ = [3, n0, _LOIDCPRi,
|
|
1985
2189
|
0,
|
|
1986
2190
|
[_OIDCPL],
|
|
1987
2191
|
[() => OpenIDConnectProviderListType]
|
|
1988
2192
|
];
|
|
1989
|
-
exports.
|
|
2193
|
+
exports.ListOpenIDConnectProvidersResponse$ = ListOpenIDConnectProvidersResponse$;
|
|
2194
|
+
const ListOpenIDConnectProviderTagsRequest$ = [3, n0, _LOIDCPTR,
|
|
1990
2195
|
0,
|
|
1991
2196
|
[_OIDCPA, _Ma, _MI],
|
|
1992
2197
|
[0, 0, 1], 1
|
|
1993
2198
|
];
|
|
1994
|
-
exports.
|
|
2199
|
+
exports.ListOpenIDConnectProviderTagsRequest$ = ListOpenIDConnectProviderTagsRequest$;
|
|
2200
|
+
const ListOpenIDConnectProviderTagsResponse$ = [3, n0, _LOIDCPTRi,
|
|
1995
2201
|
0,
|
|
1996
2202
|
[_T, _IT, _Ma],
|
|
1997
2203
|
[() => tagListType, 2, 0], 1
|
|
1998
2204
|
];
|
|
1999
|
-
exports.
|
|
2205
|
+
exports.ListOpenIDConnectProviderTagsResponse$ = ListOpenIDConnectProviderTagsResponse$;
|
|
2206
|
+
const ListOrganizationsFeaturesRequest$ = [3, n0, _LOFR,
|
|
2000
2207
|
0,
|
|
2001
2208
|
[],
|
|
2002
2209
|
[]
|
|
2003
2210
|
];
|
|
2004
|
-
exports.
|
|
2211
|
+
exports.ListOrganizationsFeaturesRequest$ = ListOrganizationsFeaturesRequest$;
|
|
2212
|
+
const ListOrganizationsFeaturesResponse$ = [3, n0, _LOFRi,
|
|
2005
2213
|
0,
|
|
2006
2214
|
[_OIr, _EF],
|
|
2007
2215
|
[0, 64 | 0]
|
|
2008
2216
|
];
|
|
2009
|
-
exports.
|
|
2217
|
+
exports.ListOrganizationsFeaturesResponse$ = ListOrganizationsFeaturesResponse$;
|
|
2218
|
+
const ListPoliciesGrantingServiceAccessEntry$ = [3, n0, _LPGSAE,
|
|
2010
2219
|
0,
|
|
2011
2220
|
[_SNe, _Pol],
|
|
2012
2221
|
[0, () => policyGrantingServiceAccessListType]
|
|
2013
2222
|
];
|
|
2014
|
-
exports.
|
|
2223
|
+
exports.ListPoliciesGrantingServiceAccessEntry$ = ListPoliciesGrantingServiceAccessEntry$;
|
|
2224
|
+
const ListPoliciesGrantingServiceAccessRequest$ = [3, n0, _LPGSAR,
|
|
2015
2225
|
0,
|
|
2016
2226
|
[_A, _SNerv, _Ma],
|
|
2017
2227
|
[0, 64 | 0, 0], 2
|
|
2018
2228
|
];
|
|
2019
|
-
exports.
|
|
2229
|
+
exports.ListPoliciesGrantingServiceAccessRequest$ = ListPoliciesGrantingServiceAccessRequest$;
|
|
2230
|
+
const ListPoliciesGrantingServiceAccessResponse$ = [3, n0, _LPGSARi,
|
|
2020
2231
|
0,
|
|
2021
2232
|
[_PGSA, _IT, _Ma],
|
|
2022
2233
|
[() => listPolicyGrantingServiceAccessResponseListType, 2, 0], 1
|
|
2023
2234
|
];
|
|
2024
|
-
exports.
|
|
2235
|
+
exports.ListPoliciesGrantingServiceAccessResponse$ = ListPoliciesGrantingServiceAccessResponse$;
|
|
2236
|
+
const ListPoliciesRequest$ = [3, n0, _LPR,
|
|
2025
2237
|
0,
|
|
2026
2238
|
[_Sc, _OA, _PPat, _PUF, _Ma, _MI],
|
|
2027
2239
|
[0, 2, 0, 0, 0, 1]
|
|
2028
2240
|
];
|
|
2029
|
-
exports.
|
|
2241
|
+
exports.ListPoliciesRequest$ = ListPoliciesRequest$;
|
|
2242
|
+
const ListPoliciesResponse$ = [3, n0, _LPRi,
|
|
2030
2243
|
0,
|
|
2031
2244
|
[_Pol, _IT, _Ma],
|
|
2032
2245
|
[() => policyListType, 2, 0]
|
|
2033
2246
|
];
|
|
2034
|
-
exports.
|
|
2247
|
+
exports.ListPoliciesResponse$ = ListPoliciesResponse$;
|
|
2248
|
+
const ListPolicyTagsRequest$ = [3, n0, _LPTR,
|
|
2035
2249
|
0,
|
|
2036
2250
|
[_PA, _Ma, _MI],
|
|
2037
2251
|
[0, 0, 1], 1
|
|
2038
2252
|
];
|
|
2039
|
-
exports.
|
|
2253
|
+
exports.ListPolicyTagsRequest$ = ListPolicyTagsRequest$;
|
|
2254
|
+
const ListPolicyTagsResponse$ = [3, n0, _LPTRi,
|
|
2040
2255
|
0,
|
|
2041
2256
|
[_T, _IT, _Ma],
|
|
2042
2257
|
[() => tagListType, 2, 0], 1
|
|
2043
2258
|
];
|
|
2044
|
-
exports.
|
|
2259
|
+
exports.ListPolicyTagsResponse$ = ListPolicyTagsResponse$;
|
|
2260
|
+
const ListPolicyVersionsRequest$ = [3, n0, _LPVR,
|
|
2045
2261
|
0,
|
|
2046
2262
|
[_PA, _Ma, _MI],
|
|
2047
2263
|
[0, 0, 1], 1
|
|
2048
2264
|
];
|
|
2049
|
-
exports.
|
|
2265
|
+
exports.ListPolicyVersionsRequest$ = ListPolicyVersionsRequest$;
|
|
2266
|
+
const ListPolicyVersionsResponse$ = [3, n0, _LPVRi,
|
|
2050
2267
|
0,
|
|
2051
2268
|
[_V, _IT, _Ma],
|
|
2052
2269
|
[() => policyDocumentVersionListType, 2, 0]
|
|
2053
2270
|
];
|
|
2054
|
-
exports.
|
|
2271
|
+
exports.ListPolicyVersionsResponse$ = ListPolicyVersionsResponse$;
|
|
2272
|
+
const ListRolePoliciesRequest$ = [3, n0, _LRPR,
|
|
2055
2273
|
0,
|
|
2056
2274
|
[_RN, _Ma, _MI],
|
|
2057
2275
|
[0, 0, 1], 1
|
|
2058
2276
|
];
|
|
2059
|
-
exports.
|
|
2277
|
+
exports.ListRolePoliciesRequest$ = ListRolePoliciesRequest$;
|
|
2278
|
+
const ListRolePoliciesResponse$ = [3, n0, _LRPRi,
|
|
2060
2279
|
0,
|
|
2061
2280
|
[_PNo, _IT, _Ma],
|
|
2062
2281
|
[64 | 0, 2, 0], 1
|
|
2063
2282
|
];
|
|
2064
|
-
exports.
|
|
2283
|
+
exports.ListRolePoliciesResponse$ = ListRolePoliciesResponse$;
|
|
2284
|
+
const ListRolesRequest$ = [3, n0, _LRR,
|
|
2065
2285
|
0,
|
|
2066
2286
|
[_PPat, _Ma, _MI],
|
|
2067
2287
|
[0, 0, 1]
|
|
2068
2288
|
];
|
|
2069
|
-
exports.
|
|
2289
|
+
exports.ListRolesRequest$ = ListRolesRequest$;
|
|
2290
|
+
const ListRolesResponse$ = [3, n0, _LRRi,
|
|
2070
2291
|
0,
|
|
2071
2292
|
[_Rol, _IT, _Ma],
|
|
2072
2293
|
[() => roleListType, 2, 0], 1
|
|
2073
2294
|
];
|
|
2074
|
-
exports.
|
|
2295
|
+
exports.ListRolesResponse$ = ListRolesResponse$;
|
|
2296
|
+
const ListRoleTagsRequest$ = [3, n0, _LRTR,
|
|
2075
2297
|
0,
|
|
2076
2298
|
[_RN, _Ma, _MI],
|
|
2077
2299
|
[0, 0, 1], 1
|
|
2078
2300
|
];
|
|
2079
|
-
exports.
|
|
2301
|
+
exports.ListRoleTagsRequest$ = ListRoleTagsRequest$;
|
|
2302
|
+
const ListRoleTagsResponse$ = [3, n0, _LRTRi,
|
|
2080
2303
|
0,
|
|
2081
2304
|
[_T, _IT, _Ma],
|
|
2082
2305
|
[() => tagListType, 2, 0], 1
|
|
2083
2306
|
];
|
|
2084
|
-
exports.
|
|
2307
|
+
exports.ListRoleTagsResponse$ = ListRoleTagsResponse$;
|
|
2308
|
+
const ListSAMLProvidersRequest$ = [3, n0, _LSAMLPR,
|
|
2085
2309
|
0,
|
|
2086
2310
|
[],
|
|
2087
2311
|
[]
|
|
2088
2312
|
];
|
|
2089
|
-
exports.
|
|
2313
|
+
exports.ListSAMLProvidersRequest$ = ListSAMLProvidersRequest$;
|
|
2314
|
+
const ListSAMLProvidersResponse$ = [3, n0, _LSAMLPRi,
|
|
2090
2315
|
0,
|
|
2091
2316
|
[_SAMLPL],
|
|
2092
2317
|
[() => SAMLProviderListType]
|
|
2093
2318
|
];
|
|
2094
|
-
exports.
|
|
2319
|
+
exports.ListSAMLProvidersResponse$ = ListSAMLProvidersResponse$;
|
|
2320
|
+
const ListSAMLProviderTagsRequest$ = [3, n0, _LSAMLPTR,
|
|
2095
2321
|
0,
|
|
2096
2322
|
[_SAMLPA, _Ma, _MI],
|
|
2097
2323
|
[0, 0, 1], 1
|
|
2098
2324
|
];
|
|
2099
|
-
exports.
|
|
2325
|
+
exports.ListSAMLProviderTagsRequest$ = ListSAMLProviderTagsRequest$;
|
|
2326
|
+
const ListSAMLProviderTagsResponse$ = [3, n0, _LSAMLPTRi,
|
|
2100
2327
|
0,
|
|
2101
2328
|
[_T, _IT, _Ma],
|
|
2102
2329
|
[() => tagListType, 2, 0], 1
|
|
2103
2330
|
];
|
|
2104
|
-
exports.
|
|
2331
|
+
exports.ListSAMLProviderTagsResponse$ = ListSAMLProviderTagsResponse$;
|
|
2332
|
+
const ListServerCertificatesRequest$ = [3, n0, _LSCR,
|
|
2105
2333
|
0,
|
|
2106
2334
|
[_PPat, _Ma, _MI],
|
|
2107
2335
|
[0, 0, 1]
|
|
2108
2336
|
];
|
|
2109
|
-
exports.
|
|
2337
|
+
exports.ListServerCertificatesRequest$ = ListServerCertificatesRequest$;
|
|
2338
|
+
const ListServerCertificatesResponse$ = [3, n0, _LSCRi,
|
|
2110
2339
|
0,
|
|
2111
2340
|
[_SCML, _IT, _Ma],
|
|
2112
2341
|
[() => serverCertificateMetadataListType, 2, 0], 1
|
|
2113
2342
|
];
|
|
2114
|
-
exports.
|
|
2343
|
+
exports.ListServerCertificatesResponse$ = ListServerCertificatesResponse$;
|
|
2344
|
+
const ListServerCertificateTagsRequest$ = [3, n0, _LSCTR,
|
|
2115
2345
|
0,
|
|
2116
2346
|
[_SCN, _Ma, _MI],
|
|
2117
2347
|
[0, 0, 1], 1
|
|
2118
2348
|
];
|
|
2119
|
-
exports.
|
|
2349
|
+
exports.ListServerCertificateTagsRequest$ = ListServerCertificateTagsRequest$;
|
|
2350
|
+
const ListServerCertificateTagsResponse$ = [3, n0, _LSCTRi,
|
|
2120
2351
|
0,
|
|
2121
2352
|
[_T, _IT, _Ma],
|
|
2122
2353
|
[() => tagListType, 2, 0], 1
|
|
2123
2354
|
];
|
|
2124
|
-
exports.
|
|
2355
|
+
exports.ListServerCertificateTagsResponse$ = ListServerCertificateTagsResponse$;
|
|
2356
|
+
const ListServiceSpecificCredentialsRequest$ = [3, n0, _LSSCR,
|
|
2125
2357
|
0,
|
|
2126
2358
|
[_UN, _SN, _AU, _Ma, _MI],
|
|
2127
2359
|
[0, 0, 2, 0, 1]
|
|
2128
2360
|
];
|
|
2129
|
-
exports.
|
|
2361
|
+
exports.ListServiceSpecificCredentialsRequest$ = ListServiceSpecificCredentialsRequest$;
|
|
2362
|
+
const ListServiceSpecificCredentialsResponse$ = [3, n0, _LSSCRi,
|
|
2130
2363
|
0,
|
|
2131
2364
|
[_SSCe, _Ma, _IT],
|
|
2132
2365
|
[() => ServiceSpecificCredentialsListType, 0, 2]
|
|
2133
2366
|
];
|
|
2134
|
-
exports.
|
|
2367
|
+
exports.ListServiceSpecificCredentialsResponse$ = ListServiceSpecificCredentialsResponse$;
|
|
2368
|
+
const ListSigningCertificatesRequest$ = [3, n0, _LSCRis,
|
|
2135
2369
|
0,
|
|
2136
2370
|
[_UN, _Ma, _MI],
|
|
2137
2371
|
[0, 0, 1]
|
|
2138
2372
|
];
|
|
2139
|
-
exports.
|
|
2373
|
+
exports.ListSigningCertificatesRequest$ = ListSigningCertificatesRequest$;
|
|
2374
|
+
const ListSigningCertificatesResponse$ = [3, n0, _LSCRist,
|
|
2140
2375
|
0,
|
|
2141
2376
|
[_Cer, _IT, _Ma],
|
|
2142
2377
|
[() => certificateListType, 2, 0], 1
|
|
2143
2378
|
];
|
|
2144
|
-
exports.
|
|
2379
|
+
exports.ListSigningCertificatesResponse$ = ListSigningCertificatesResponse$;
|
|
2380
|
+
const ListSSHPublicKeysRequest$ = [3, n0, _LSSHPKR,
|
|
2145
2381
|
0,
|
|
2146
2382
|
[_UN, _Ma, _MI],
|
|
2147
2383
|
[0, 0, 1]
|
|
2148
2384
|
];
|
|
2149
|
-
exports.
|
|
2385
|
+
exports.ListSSHPublicKeysRequest$ = ListSSHPublicKeysRequest$;
|
|
2386
|
+
const ListSSHPublicKeysResponse$ = [3, n0, _LSSHPKRi,
|
|
2150
2387
|
0,
|
|
2151
2388
|
[_SSHPKu, _IT, _Ma],
|
|
2152
2389
|
[() => SSHPublicKeyListType, 2, 0]
|
|
2153
2390
|
];
|
|
2154
|
-
exports.
|
|
2391
|
+
exports.ListSSHPublicKeysResponse$ = ListSSHPublicKeysResponse$;
|
|
2392
|
+
const ListUserPoliciesRequest$ = [3, n0, _LUPR,
|
|
2155
2393
|
0,
|
|
2156
2394
|
[_UN, _Ma, _MI],
|
|
2157
2395
|
[0, 0, 1], 1
|
|
2158
2396
|
];
|
|
2159
|
-
exports.
|
|
2397
|
+
exports.ListUserPoliciesRequest$ = ListUserPoliciesRequest$;
|
|
2398
|
+
const ListUserPoliciesResponse$ = [3, n0, _LUPRi,
|
|
2160
2399
|
0,
|
|
2161
2400
|
[_PNo, _IT, _Ma],
|
|
2162
2401
|
[64 | 0, 2, 0], 1
|
|
2163
2402
|
];
|
|
2164
|
-
exports.
|
|
2403
|
+
exports.ListUserPoliciesResponse$ = ListUserPoliciesResponse$;
|
|
2404
|
+
const ListUsersRequest$ = [3, n0, _LUR,
|
|
2165
2405
|
0,
|
|
2166
2406
|
[_PPat, _Ma, _MI],
|
|
2167
2407
|
[0, 0, 1]
|
|
2168
2408
|
];
|
|
2169
|
-
exports.
|
|
2409
|
+
exports.ListUsersRequest$ = ListUsersRequest$;
|
|
2410
|
+
const ListUsersResponse$ = [3, n0, _LURi,
|
|
2170
2411
|
0,
|
|
2171
2412
|
[_Use, _IT, _Ma],
|
|
2172
2413
|
[() => userListType, 2, 0], 1
|
|
2173
2414
|
];
|
|
2174
|
-
exports.
|
|
2415
|
+
exports.ListUsersResponse$ = ListUsersResponse$;
|
|
2416
|
+
const ListUserTagsRequest$ = [3, n0, _LUTR,
|
|
2175
2417
|
0,
|
|
2176
2418
|
[_UN, _Ma, _MI],
|
|
2177
2419
|
[0, 0, 1], 1
|
|
2178
2420
|
];
|
|
2179
|
-
exports.
|
|
2421
|
+
exports.ListUserTagsRequest$ = ListUserTagsRequest$;
|
|
2422
|
+
const ListUserTagsResponse$ = [3, n0, _LUTRi,
|
|
2180
2423
|
0,
|
|
2181
2424
|
[_T, _IT, _Ma],
|
|
2182
2425
|
[() => tagListType, 2, 0], 1
|
|
2183
2426
|
];
|
|
2184
|
-
exports.
|
|
2427
|
+
exports.ListUserTagsResponse$ = ListUserTagsResponse$;
|
|
2428
|
+
const ListVirtualMFADevicesRequest$ = [3, n0, _LVMFADR,
|
|
2185
2429
|
0,
|
|
2186
2430
|
[_AS, _Ma, _MI],
|
|
2187
2431
|
[0, 0, 1]
|
|
2188
2432
|
];
|
|
2189
|
-
exports.
|
|
2433
|
+
exports.ListVirtualMFADevicesRequest$ = ListVirtualMFADevicesRequest$;
|
|
2434
|
+
const ListVirtualMFADevicesResponse$ = [3, n0, _LVMFADRi,
|
|
2190
2435
|
0,
|
|
2191
2436
|
[_VMFADi, _IT, _Ma],
|
|
2192
2437
|
[[() => virtualMFADeviceListType, 0], 2, 0], 1
|
|
2193
2438
|
];
|
|
2194
|
-
exports.
|
|
2439
|
+
exports.ListVirtualMFADevicesResponse$ = ListVirtualMFADevicesResponse$;
|
|
2440
|
+
const LoginProfile$ = [3, n0, _LP,
|
|
2195
2441
|
0,
|
|
2196
2442
|
[_UN, _CD, _PRR],
|
|
2197
2443
|
[0, 4, 2], 2
|
|
2198
2444
|
];
|
|
2199
|
-
exports.
|
|
2445
|
+
exports.LoginProfile$ = LoginProfile$;
|
|
2446
|
+
const ManagedPolicyDetail$ = [3, n0, _MPD,
|
|
2200
2447
|
0,
|
|
2201
2448
|
[_PN, _PI, _A, _Pa, _DVI, _ACt, _PBUC, _IA, _D, _CD, _UD, _PVL],
|
|
2202
2449
|
[0, 0, 0, 0, 0, 1, 1, 2, 0, 4, 4, () => policyDocumentVersionListType]
|
|
2203
2450
|
];
|
|
2204
|
-
exports.
|
|
2451
|
+
exports.ManagedPolicyDetail$ = ManagedPolicyDetail$;
|
|
2452
|
+
const MFADevice$ = [3, n0, _MFADe,
|
|
2205
2453
|
0,
|
|
2206
2454
|
[_UN, _SNer, _EDn],
|
|
2207
2455
|
[0, 0, 4], 3
|
|
2208
2456
|
];
|
|
2209
|
-
exports.
|
|
2457
|
+
exports.MFADevice$ = MFADevice$;
|
|
2458
|
+
const OpenIDConnectProviderListEntry$ = [3, n0, _OIDCPLE,
|
|
2210
2459
|
0,
|
|
2211
2460
|
[_A],
|
|
2212
2461
|
[0]
|
|
2213
2462
|
];
|
|
2214
|
-
exports.
|
|
2463
|
+
exports.OpenIDConnectProviderListEntry$ = OpenIDConnectProviderListEntry$;
|
|
2464
|
+
const OrganizationsDecisionDetail$ = [3, n0, _ODD,
|
|
2215
2465
|
0,
|
|
2216
2466
|
[_ABO],
|
|
2217
2467
|
[2]
|
|
2218
2468
|
];
|
|
2219
|
-
exports.
|
|
2469
|
+
exports.OrganizationsDecisionDetail$ = OrganizationsDecisionDetail$;
|
|
2470
|
+
const PasswordPolicy$ = [3, n0, _PPa,
|
|
2220
2471
|
0,
|
|
2221
2472
|
[_MPL, _RS, _RNeq, _RUC, _RLC, _AUTCP, _EPx, _MPA, _PRP, _HE],
|
|
2222
2473
|
[1, 2, 2, 2, 2, 2, 2, 1, 1, 2]
|
|
2223
2474
|
];
|
|
2224
|
-
exports.
|
|
2475
|
+
exports.PasswordPolicy$ = PasswordPolicy$;
|
|
2476
|
+
const PermissionsBoundaryDecisionDetail$ = [3, n0, _PBDD,
|
|
2225
2477
|
0,
|
|
2226
2478
|
[_ABPB],
|
|
2227
2479
|
[2]
|
|
2228
2480
|
];
|
|
2229
|
-
exports.
|
|
2481
|
+
exports.PermissionsBoundaryDecisionDetail$ = PermissionsBoundaryDecisionDetail$;
|
|
2482
|
+
const Policy$ = [3, n0, _Po,
|
|
2230
2483
|
0,
|
|
2231
2484
|
[_PN, _PI, _A, _Pa, _DVI, _ACt, _PBUC, _IA, _D, _CD, _UD, _T],
|
|
2232
2485
|
[0, 0, 0, 0, 0, 1, 1, 2, 0, 4, 4, () => tagListType]
|
|
2233
2486
|
];
|
|
2234
|
-
exports.
|
|
2487
|
+
exports.Policy$ = Policy$;
|
|
2488
|
+
const PolicyDetail$ = [3, n0, _PDo,
|
|
2235
2489
|
0,
|
|
2236
2490
|
[_PN, _PD],
|
|
2237
2491
|
[0, 0]
|
|
2238
2492
|
];
|
|
2239
|
-
exports.
|
|
2493
|
+
exports.PolicyDetail$ = PolicyDetail$;
|
|
2494
|
+
const PolicyGrantingServiceAccess$ = [3, n0, _PGSAo,
|
|
2240
2495
|
0,
|
|
2241
2496
|
[_PN, _PT, _PA, _ETn, _EN],
|
|
2242
2497
|
[0, 0, 0, 0, 0], 2
|
|
2243
2498
|
];
|
|
2244
|
-
exports.
|
|
2499
|
+
exports.PolicyGrantingServiceAccess$ = PolicyGrantingServiceAccess$;
|
|
2500
|
+
const PolicyGroup$ = [3, n0, _PGo,
|
|
2245
2501
|
0,
|
|
2246
2502
|
[_GN, _GI],
|
|
2247
2503
|
[0, 0]
|
|
2248
2504
|
];
|
|
2249
|
-
exports.
|
|
2505
|
+
exports.PolicyGroup$ = PolicyGroup$;
|
|
2506
|
+
const PolicyParameter$ = [3, n0, _PPo,
|
|
2250
2507
|
0,
|
|
2251
2508
|
[_N, _Va, _Ty],
|
|
2252
2509
|
[0, 64 | 0, 0]
|
|
2253
2510
|
];
|
|
2254
|
-
exports.
|
|
2511
|
+
exports.PolicyParameter$ = PolicyParameter$;
|
|
2512
|
+
const PolicyRole$ = [3, n0, _PRo,
|
|
2255
2513
|
0,
|
|
2256
2514
|
[_RN, _RIo],
|
|
2257
2515
|
[0, 0]
|
|
2258
2516
|
];
|
|
2259
|
-
exports.
|
|
2517
|
+
exports.PolicyRole$ = PolicyRole$;
|
|
2518
|
+
const PolicyUser$ = [3, n0, _PUo,
|
|
2260
2519
|
0,
|
|
2261
2520
|
[_UN, _UI],
|
|
2262
2521
|
[0, 0]
|
|
2263
2522
|
];
|
|
2264
|
-
exports.
|
|
2523
|
+
exports.PolicyUser$ = PolicyUser$;
|
|
2524
|
+
const PolicyVersion$ = [3, n0, _PV,
|
|
2265
2525
|
0,
|
|
2266
2526
|
[_Do, _VI, _IDV, _CD],
|
|
2267
2527
|
[0, 0, 2, 4]
|
|
2268
2528
|
];
|
|
2269
|
-
exports.
|
|
2529
|
+
exports.PolicyVersion$ = PolicyVersion$;
|
|
2530
|
+
const Position$ = [3, n0, _Pos,
|
|
2270
2531
|
0,
|
|
2271
2532
|
[_Li, _Col],
|
|
2272
2533
|
[1, 1]
|
|
2273
2534
|
];
|
|
2274
|
-
exports.
|
|
2535
|
+
exports.Position$ = Position$;
|
|
2536
|
+
const PutGroupPolicyRequest$ = [3, n0, _PGPR,
|
|
2275
2537
|
0,
|
|
2276
2538
|
[_GN, _PN, _PD],
|
|
2277
2539
|
[0, 0, 0], 3
|
|
2278
2540
|
];
|
|
2279
|
-
exports.
|
|
2541
|
+
exports.PutGroupPolicyRequest$ = PutGroupPolicyRequest$;
|
|
2542
|
+
const PutRolePermissionsBoundaryRequest$ = [3, n0, _PRPBR,
|
|
2280
2543
|
0,
|
|
2281
2544
|
[_RN, _PB],
|
|
2282
2545
|
[0, 0], 2
|
|
2283
2546
|
];
|
|
2284
|
-
exports.
|
|
2547
|
+
exports.PutRolePermissionsBoundaryRequest$ = PutRolePermissionsBoundaryRequest$;
|
|
2548
|
+
const PutRolePolicyRequest$ = [3, n0, _PRPR,
|
|
2285
2549
|
0,
|
|
2286
2550
|
[_RN, _PN, _PD],
|
|
2287
2551
|
[0, 0, 0], 3
|
|
2288
2552
|
];
|
|
2289
|
-
exports.
|
|
2553
|
+
exports.PutRolePolicyRequest$ = PutRolePolicyRequest$;
|
|
2554
|
+
const PutUserPermissionsBoundaryRequest$ = [3, n0, _PUPBR,
|
|
2290
2555
|
0,
|
|
2291
2556
|
[_UN, _PB],
|
|
2292
2557
|
[0, 0], 2
|
|
2293
2558
|
];
|
|
2294
|
-
exports.
|
|
2559
|
+
exports.PutUserPermissionsBoundaryRequest$ = PutUserPermissionsBoundaryRequest$;
|
|
2560
|
+
const PutUserPolicyRequest$ = [3, n0, _PUPR,
|
|
2295
2561
|
0,
|
|
2296
2562
|
[_UN, _PN, _PD],
|
|
2297
2563
|
[0, 0, 0], 3
|
|
2298
2564
|
];
|
|
2299
|
-
exports.
|
|
2565
|
+
exports.PutUserPolicyRequest$ = PutUserPolicyRequest$;
|
|
2566
|
+
const RejectDelegationRequestRequest$ = [3, n0, _RDRR,
|
|
2300
2567
|
0,
|
|
2301
2568
|
[_DRI, _No],
|
|
2302
2569
|
[0, 0], 1
|
|
2303
2570
|
];
|
|
2304
|
-
exports.
|
|
2571
|
+
exports.RejectDelegationRequestRequest$ = RejectDelegationRequestRequest$;
|
|
2572
|
+
const RemoveClientIDFromOpenIDConnectProviderRequest$ = [3, n0, _RCIDFOIDCPR,
|
|
2305
2573
|
0,
|
|
2306
2574
|
[_OIDCPA, _CID],
|
|
2307
2575
|
[0, 0], 2
|
|
2308
2576
|
];
|
|
2309
|
-
exports.
|
|
2577
|
+
exports.RemoveClientIDFromOpenIDConnectProviderRequest$ = RemoveClientIDFromOpenIDConnectProviderRequest$;
|
|
2578
|
+
const RemoveRoleFromInstanceProfileRequest$ = [3, n0, _RRFIPR,
|
|
2310
2579
|
0,
|
|
2311
2580
|
[_IPN, _RN],
|
|
2312
2581
|
[0, 0], 2
|
|
2313
2582
|
];
|
|
2314
|
-
exports.
|
|
2583
|
+
exports.RemoveRoleFromInstanceProfileRequest$ = RemoveRoleFromInstanceProfileRequest$;
|
|
2584
|
+
const RemoveUserFromGroupRequest$ = [3, n0, _RUFGR,
|
|
2315
2585
|
0,
|
|
2316
2586
|
[_GN, _UN],
|
|
2317
2587
|
[0, 0], 2
|
|
2318
2588
|
];
|
|
2319
|
-
exports.
|
|
2589
|
+
exports.RemoveUserFromGroupRequest$ = RemoveUserFromGroupRequest$;
|
|
2590
|
+
const ResetServiceSpecificCredentialRequest$ = [3, n0, _RSSCR,
|
|
2320
2591
|
0,
|
|
2321
2592
|
[_SSCI, _UN],
|
|
2322
2593
|
[0, 0], 1
|
|
2323
2594
|
];
|
|
2324
|
-
exports.
|
|
2595
|
+
exports.ResetServiceSpecificCredentialRequest$ = ResetServiceSpecificCredentialRequest$;
|
|
2596
|
+
const ResetServiceSpecificCredentialResponse$ = [3, n0, _RSSCRe,
|
|
2325
2597
|
0,
|
|
2326
2598
|
[_SSC],
|
|
2327
|
-
[[() =>
|
|
2599
|
+
[[() => ServiceSpecificCredential$, 0]]
|
|
2328
2600
|
];
|
|
2329
|
-
exports.
|
|
2601
|
+
exports.ResetServiceSpecificCredentialResponse$ = ResetServiceSpecificCredentialResponse$;
|
|
2602
|
+
const ResourceSpecificResult$ = [3, n0, _RSRe,
|
|
2330
2603
|
0,
|
|
2331
2604
|
[_ERN, _ERD, _MS, _MCV, _EDD, _PBDD],
|
|
2332
|
-
[0, 0, () => StatementListType, 64 | 0, 128 | 0, () =>
|
|
2605
|
+
[0, 0, () => StatementListType, 64 | 0, 128 | 0, () => PermissionsBoundaryDecisionDetail$], 2
|
|
2333
2606
|
];
|
|
2334
|
-
exports.
|
|
2607
|
+
exports.ResourceSpecificResult$ = ResourceSpecificResult$;
|
|
2608
|
+
const ResyncMFADeviceRequest$ = [3, n0, _RMFADR,
|
|
2335
2609
|
0,
|
|
2336
2610
|
[_UN, _SNer, _AC, _ACu],
|
|
2337
2611
|
[0, 0, 0, 0], 4
|
|
2338
2612
|
];
|
|
2339
|
-
exports.
|
|
2613
|
+
exports.ResyncMFADeviceRequest$ = ResyncMFADeviceRequest$;
|
|
2614
|
+
const Role$ = [3, n0, _Ro,
|
|
2340
2615
|
0,
|
|
2341
2616
|
[_Pa, _RN, _RIo, _A, _CD, _ARPD, _D, _MSD, _PB, _T, _RLU],
|
|
2342
|
-
[0, 0, 0, 0, 4, 0, 0, 1, () =>
|
|
2617
|
+
[0, 0, 0, 0, 4, 0, 0, 1, () => AttachedPermissionsBoundary$, () => tagListType, () => RoleLastUsed$], 5
|
|
2343
2618
|
];
|
|
2344
|
-
exports.
|
|
2619
|
+
exports.Role$ = Role$;
|
|
2620
|
+
const RoleDetail$ = [3, n0, _RD,
|
|
2345
2621
|
0,
|
|
2346
2622
|
[_Pa, _RN, _RIo, _A, _CD, _ARPD, _IPL, _RPL, _AMP, _PB, _T, _RLU],
|
|
2347
|
-
[0, 0, 0, 0, 4, 0, () => instanceProfileListType, () => policyDetailListType, () => attachedPoliciesListType, () =>
|
|
2623
|
+
[0, 0, 0, 0, 4, 0, () => instanceProfileListType, () => policyDetailListType, () => attachedPoliciesListType, () => AttachedPermissionsBoundary$, () => tagListType, () => RoleLastUsed$]
|
|
2348
2624
|
];
|
|
2349
|
-
exports.
|
|
2625
|
+
exports.RoleDetail$ = RoleDetail$;
|
|
2626
|
+
const RoleLastUsed$ = [3, n0, _RLU,
|
|
2350
2627
|
0,
|
|
2351
2628
|
[_LUD, _R],
|
|
2352
2629
|
[4, 0]
|
|
2353
2630
|
];
|
|
2354
|
-
exports.
|
|
2631
|
+
exports.RoleLastUsed$ = RoleLastUsed$;
|
|
2632
|
+
const RoleUsageType$ = [3, n0, _RUT,
|
|
2355
2633
|
0,
|
|
2356
2634
|
[_R, _Res],
|
|
2357
2635
|
[0, 64 | 0]
|
|
2358
2636
|
];
|
|
2359
|
-
exports.
|
|
2637
|
+
exports.RoleUsageType$ = RoleUsageType$;
|
|
2638
|
+
const SAMLPrivateKey$ = [3, n0, _SAMLPK,
|
|
2360
2639
|
0,
|
|
2361
2640
|
[_KI, _Ti],
|
|
2362
2641
|
[0, 4]
|
|
2363
2642
|
];
|
|
2364
|
-
exports.
|
|
2643
|
+
exports.SAMLPrivateKey$ = SAMLPrivateKey$;
|
|
2644
|
+
const SAMLProviderListEntry$ = [3, n0, _SAMLPLE,
|
|
2365
2645
|
0,
|
|
2366
2646
|
[_A, _VU, _CD],
|
|
2367
2647
|
[0, 4, 4]
|
|
2368
2648
|
];
|
|
2369
|
-
exports.
|
|
2649
|
+
exports.SAMLProviderListEntry$ = SAMLProviderListEntry$;
|
|
2650
|
+
const SendDelegationTokenRequest$ = [3, n0, _SDTR,
|
|
2370
2651
|
0,
|
|
2371
2652
|
[_DRI],
|
|
2372
2653
|
[0], 1
|
|
2373
2654
|
];
|
|
2374
|
-
exports.
|
|
2655
|
+
exports.SendDelegationTokenRequest$ = SendDelegationTokenRequest$;
|
|
2656
|
+
const ServerCertificate$ = [3, n0, _SCe,
|
|
2375
2657
|
0,
|
|
2376
2658
|
[_SCM, _CB, _CC, _T],
|
|
2377
|
-
[() =>
|
|
2659
|
+
[() => ServerCertificateMetadata$, 0, 0, () => tagListType], 2
|
|
2378
2660
|
];
|
|
2379
|
-
exports.
|
|
2661
|
+
exports.ServerCertificate$ = ServerCertificate$;
|
|
2662
|
+
const ServerCertificateMetadata$ = [3, n0, _SCM,
|
|
2380
2663
|
0,
|
|
2381
2664
|
[_Pa, _SCN, _SCI, _A, _UDp, _Ex],
|
|
2382
2665
|
[0, 0, 0, 0, 4, 4], 4
|
|
2383
2666
|
];
|
|
2384
|
-
exports.
|
|
2667
|
+
exports.ServerCertificateMetadata$ = ServerCertificateMetadata$;
|
|
2668
|
+
const ServiceLastAccessed$ = [3, n0, _SLAe,
|
|
2385
2669
|
0,
|
|
2386
2670
|
[_SN, _SNe, _LA, _LAE, _LAR, _TAE, _TALA],
|
|
2387
2671
|
[0, 0, 4, 0, 0, 1, () => TrackedActionsLastAccessed], 2
|
|
2388
2672
|
];
|
|
2389
|
-
exports.
|
|
2673
|
+
exports.ServiceLastAccessed$ = ServiceLastAccessed$;
|
|
2674
|
+
const ServiceSpecificCredential$ = [3, n0, _SSC,
|
|
2390
2675
|
0,
|
|
2391
2676
|
[_CD, _SN, _SSCI, _UN, _S, _EDx, _SUN, _SP, _SCA, _SCS],
|
|
2392
2677
|
[4, 0, 0, 0, 0, 4, 0, [() => servicePassword, 0], 0, [() => serviceCredentialSecret, 0]], 5
|
|
2393
2678
|
];
|
|
2394
|
-
exports.
|
|
2679
|
+
exports.ServiceSpecificCredential$ = ServiceSpecificCredential$;
|
|
2680
|
+
const ServiceSpecificCredentialMetadata$ = [3, n0, _SSCM,
|
|
2395
2681
|
0,
|
|
2396
2682
|
[_UN, _S, _CD, _SSCI, _SN, _SUN, _SCA, _EDx],
|
|
2397
2683
|
[0, 0, 4, 0, 0, 0, 0, 4], 5
|
|
2398
2684
|
];
|
|
2399
|
-
exports.
|
|
2685
|
+
exports.ServiceSpecificCredentialMetadata$ = ServiceSpecificCredentialMetadata$;
|
|
2686
|
+
const SetDefaultPolicyVersionRequest$ = [3, n0, _SDPVR,
|
|
2400
2687
|
0,
|
|
2401
2688
|
[_PA, _VI],
|
|
2402
2689
|
[0, 0], 2
|
|
2403
2690
|
];
|
|
2404
|
-
exports.
|
|
2691
|
+
exports.SetDefaultPolicyVersionRequest$ = SetDefaultPolicyVersionRequest$;
|
|
2692
|
+
const SetSecurityTokenServicePreferencesRequest$ = [3, n0, _SSTSPR,
|
|
2405
2693
|
0,
|
|
2406
2694
|
[_GETV],
|
|
2407
2695
|
[0], 1
|
|
2408
2696
|
];
|
|
2409
|
-
exports.
|
|
2697
|
+
exports.SetSecurityTokenServicePreferencesRequest$ = SetSecurityTokenServicePreferencesRequest$;
|
|
2698
|
+
const SigningCertificate$ = [3, n0, _SCi,
|
|
2410
2699
|
0,
|
|
2411
2700
|
[_UN, _CI, _CB, _S, _UDp],
|
|
2412
2701
|
[0, 0, 0, 0, 4], 4
|
|
2413
2702
|
];
|
|
2414
|
-
exports.
|
|
2703
|
+
exports.SigningCertificate$ = SigningCertificate$;
|
|
2704
|
+
const SimulateCustomPolicyRequest$ = [3, n0, _SCPR,
|
|
2415
2705
|
0,
|
|
2416
2706
|
[_PIL, _AN, _PBPIL, _RA, _RP, _RO, _CA, _CEo, _RHO, _MI, _Ma],
|
|
2417
2707
|
[64 | 0, 64 | 0, 64 | 0, 64 | 0, 0, 0, 0, () => ContextEntryListType, 0, 1, 0], 2
|
|
2418
2708
|
];
|
|
2419
|
-
exports.
|
|
2709
|
+
exports.SimulateCustomPolicyRequest$ = SimulateCustomPolicyRequest$;
|
|
2710
|
+
const SimulatePolicyResponse$ = [3, n0, _SPR,
|
|
2420
2711
|
0,
|
|
2421
2712
|
[_ERv, _IT, _Ma],
|
|
2422
2713
|
[() => EvaluationResultsListType, 2, 0]
|
|
2423
2714
|
];
|
|
2424
|
-
exports.
|
|
2715
|
+
exports.SimulatePolicyResponse$ = SimulatePolicyResponse$;
|
|
2716
|
+
const SimulatePrincipalPolicyRequest$ = [3, n0, _SPPR,
|
|
2425
2717
|
0,
|
|
2426
2718
|
[_PSA, _AN, _PIL, _PBPIL, _RA, _RP, _RO, _CA, _CEo, _RHO, _MI, _Ma],
|
|
2427
2719
|
[0, 64 | 0, 64 | 0, 64 | 0, 64 | 0, 0, 0, 0, () => ContextEntryListType, 0, 1, 0], 2
|
|
2428
2720
|
];
|
|
2429
|
-
exports.
|
|
2721
|
+
exports.SimulatePrincipalPolicyRequest$ = SimulatePrincipalPolicyRequest$;
|
|
2722
|
+
const SSHPublicKey$ = [3, n0, _SSHPK,
|
|
2430
2723
|
0,
|
|
2431
2724
|
[_UN, _SSHPKI, _Fi, _SSHPKB, _S, _UDp],
|
|
2432
2725
|
[0, 0, 0, 0, 0, 4], 5
|
|
2433
2726
|
];
|
|
2434
|
-
exports.
|
|
2727
|
+
exports.SSHPublicKey$ = SSHPublicKey$;
|
|
2728
|
+
const SSHPublicKeyMetadata$ = [3, n0, _SSHPKM,
|
|
2435
2729
|
0,
|
|
2436
2730
|
[_UN, _SSHPKI, _S, _UDp],
|
|
2437
2731
|
[0, 0, 0, 4], 4
|
|
2438
2732
|
];
|
|
2439
|
-
exports.
|
|
2733
|
+
exports.SSHPublicKeyMetadata$ = SSHPublicKeyMetadata$;
|
|
2734
|
+
const Statement$ = [3, n0, _Sta,
|
|
2440
2735
|
0,
|
|
2441
2736
|
[_SPI, _SPT, _SPt, _EPn],
|
|
2442
|
-
[0, 0, () =>
|
|
2737
|
+
[0, 0, () => Position$, () => Position$]
|
|
2443
2738
|
];
|
|
2444
|
-
exports.
|
|
2739
|
+
exports.Statement$ = Statement$;
|
|
2740
|
+
const Tag$ = [3, n0, _Ta,
|
|
2445
2741
|
0,
|
|
2446
2742
|
[_K, _Val],
|
|
2447
2743
|
[0, 0], 2
|
|
2448
2744
|
];
|
|
2449
|
-
exports.
|
|
2745
|
+
exports.Tag$ = Tag$;
|
|
2746
|
+
const TagInstanceProfileRequest$ = [3, n0, _TIPR,
|
|
2450
2747
|
0,
|
|
2451
2748
|
[_IPN, _T],
|
|
2452
2749
|
[0, () => tagListType], 2
|
|
2453
2750
|
];
|
|
2454
|
-
exports.
|
|
2751
|
+
exports.TagInstanceProfileRequest$ = TagInstanceProfileRequest$;
|
|
2752
|
+
const TagMFADeviceRequest$ = [3, n0, _TMFADR,
|
|
2455
2753
|
0,
|
|
2456
2754
|
[_SNer, _T],
|
|
2457
2755
|
[0, () => tagListType], 2
|
|
2458
2756
|
];
|
|
2459
|
-
exports.
|
|
2757
|
+
exports.TagMFADeviceRequest$ = TagMFADeviceRequest$;
|
|
2758
|
+
const TagOpenIDConnectProviderRequest$ = [3, n0, _TOIDCPR,
|
|
2460
2759
|
0,
|
|
2461
2760
|
[_OIDCPA, _T],
|
|
2462
2761
|
[0, () => tagListType], 2
|
|
2463
2762
|
];
|
|
2464
|
-
exports.
|
|
2763
|
+
exports.TagOpenIDConnectProviderRequest$ = TagOpenIDConnectProviderRequest$;
|
|
2764
|
+
const TagPolicyRequest$ = [3, n0, _TPR,
|
|
2465
2765
|
0,
|
|
2466
2766
|
[_PA, _T],
|
|
2467
2767
|
[0, () => tagListType], 2
|
|
2468
2768
|
];
|
|
2469
|
-
exports.
|
|
2769
|
+
exports.TagPolicyRequest$ = TagPolicyRequest$;
|
|
2770
|
+
const TagRoleRequest$ = [3, n0, _TRR,
|
|
2470
2771
|
0,
|
|
2471
2772
|
[_RN, _T],
|
|
2472
2773
|
[0, () => tagListType], 2
|
|
2473
2774
|
];
|
|
2474
|
-
exports.
|
|
2775
|
+
exports.TagRoleRequest$ = TagRoleRequest$;
|
|
2776
|
+
const TagSAMLProviderRequest$ = [3, n0, _TSAMLPR,
|
|
2475
2777
|
0,
|
|
2476
2778
|
[_SAMLPA, _T],
|
|
2477
2779
|
[0, () => tagListType], 2
|
|
2478
2780
|
];
|
|
2479
|
-
exports.
|
|
2781
|
+
exports.TagSAMLProviderRequest$ = TagSAMLProviderRequest$;
|
|
2782
|
+
const TagServerCertificateRequest$ = [3, n0, _TSCR,
|
|
2480
2783
|
0,
|
|
2481
2784
|
[_SCN, _T],
|
|
2482
2785
|
[0, () => tagListType], 2
|
|
2483
2786
|
];
|
|
2484
|
-
exports.
|
|
2787
|
+
exports.TagServerCertificateRequest$ = TagServerCertificateRequest$;
|
|
2788
|
+
const TagUserRequest$ = [3, n0, _TUR,
|
|
2485
2789
|
0,
|
|
2486
2790
|
[_UN, _T],
|
|
2487
2791
|
[0, () => tagListType], 2
|
|
2488
2792
|
];
|
|
2489
|
-
exports.
|
|
2793
|
+
exports.TagUserRequest$ = TagUserRequest$;
|
|
2794
|
+
const TrackedActionLastAccessed$ = [3, n0, _TALAr,
|
|
2490
2795
|
0,
|
|
2491
2796
|
[_ANc, _LAEa, _LATa, _LARa],
|
|
2492
2797
|
[0, 0, 4, 0]
|
|
2493
2798
|
];
|
|
2494
|
-
exports.
|
|
2799
|
+
exports.TrackedActionLastAccessed$ = TrackedActionLastAccessed$;
|
|
2800
|
+
const UntagInstanceProfileRequest$ = [3, n0, _UIPR,
|
|
2495
2801
|
0,
|
|
2496
2802
|
[_IPN, _TK],
|
|
2497
2803
|
[0, 64 | 0], 2
|
|
2498
2804
|
];
|
|
2499
|
-
exports.
|
|
2805
|
+
exports.UntagInstanceProfileRequest$ = UntagInstanceProfileRequest$;
|
|
2806
|
+
const UntagMFADeviceRequest$ = [3, n0, _UMFADR,
|
|
2500
2807
|
0,
|
|
2501
2808
|
[_SNer, _TK],
|
|
2502
2809
|
[0, 64 | 0], 2
|
|
2503
2810
|
];
|
|
2504
|
-
exports.
|
|
2811
|
+
exports.UntagMFADeviceRequest$ = UntagMFADeviceRequest$;
|
|
2812
|
+
const UntagOpenIDConnectProviderRequest$ = [3, n0, _UOIDCPR,
|
|
2505
2813
|
0,
|
|
2506
2814
|
[_OIDCPA, _TK],
|
|
2507
2815
|
[0, 64 | 0], 2
|
|
2508
2816
|
];
|
|
2509
|
-
exports.
|
|
2817
|
+
exports.UntagOpenIDConnectProviderRequest$ = UntagOpenIDConnectProviderRequest$;
|
|
2818
|
+
const UntagPolicyRequest$ = [3, n0, _UPR,
|
|
2510
2819
|
0,
|
|
2511
2820
|
[_PA, _TK],
|
|
2512
2821
|
[0, 64 | 0], 2
|
|
2513
2822
|
];
|
|
2514
|
-
exports.
|
|
2823
|
+
exports.UntagPolicyRequest$ = UntagPolicyRequest$;
|
|
2824
|
+
const UntagRoleRequest$ = [3, n0, _URR,
|
|
2515
2825
|
0,
|
|
2516
2826
|
[_RN, _TK],
|
|
2517
2827
|
[0, 64 | 0], 2
|
|
2518
2828
|
];
|
|
2519
|
-
exports.
|
|
2829
|
+
exports.UntagRoleRequest$ = UntagRoleRequest$;
|
|
2830
|
+
const UntagSAMLProviderRequest$ = [3, n0, _USAMLPR,
|
|
2520
2831
|
0,
|
|
2521
2832
|
[_SAMLPA, _TK],
|
|
2522
2833
|
[0, 64 | 0], 2
|
|
2523
2834
|
];
|
|
2524
|
-
exports.
|
|
2835
|
+
exports.UntagSAMLProviderRequest$ = UntagSAMLProviderRequest$;
|
|
2836
|
+
const UntagServerCertificateRequest$ = [3, n0, _USCR,
|
|
2525
2837
|
0,
|
|
2526
2838
|
[_SCN, _TK],
|
|
2527
2839
|
[0, 64 | 0], 2
|
|
2528
2840
|
];
|
|
2529
|
-
exports.
|
|
2841
|
+
exports.UntagServerCertificateRequest$ = UntagServerCertificateRequest$;
|
|
2842
|
+
const UntagUserRequest$ = [3, n0, _UUR,
|
|
2530
2843
|
0,
|
|
2531
2844
|
[_UN, _TK],
|
|
2532
2845
|
[0, 64 | 0], 2
|
|
2533
2846
|
];
|
|
2534
|
-
exports.
|
|
2847
|
+
exports.UntagUserRequest$ = UntagUserRequest$;
|
|
2848
|
+
const UpdateAccessKeyRequest$ = [3, n0, _UAKR,
|
|
2535
2849
|
0,
|
|
2536
2850
|
[_AKI, _S, _UN],
|
|
2537
2851
|
[0, 0, 0], 2
|
|
2538
2852
|
];
|
|
2539
|
-
exports.
|
|
2853
|
+
exports.UpdateAccessKeyRequest$ = UpdateAccessKeyRequest$;
|
|
2854
|
+
const UpdateAccountPasswordPolicyRequest$ = [3, n0, _UAPPR,
|
|
2540
2855
|
0,
|
|
2541
2856
|
[_MPL, _RS, _RNeq, _RUC, _RLC, _AUTCP, _MPA, _PRP, _HE],
|
|
2542
2857
|
[1, 2, 2, 2, 2, 2, 1, 1, 2]
|
|
2543
2858
|
];
|
|
2544
|
-
exports.
|
|
2859
|
+
exports.UpdateAccountPasswordPolicyRequest$ = UpdateAccountPasswordPolicyRequest$;
|
|
2860
|
+
const UpdateAssumeRolePolicyRequest$ = [3, n0, _UARPR,
|
|
2545
2861
|
0,
|
|
2546
2862
|
[_RN, _PD],
|
|
2547
2863
|
[0, 0], 2
|
|
2548
2864
|
];
|
|
2549
|
-
exports.
|
|
2865
|
+
exports.UpdateAssumeRolePolicyRequest$ = UpdateAssumeRolePolicyRequest$;
|
|
2866
|
+
const UpdateDelegationRequestRequest$ = [3, n0, _UDRR,
|
|
2550
2867
|
0,
|
|
2551
2868
|
[_DRI, _No],
|
|
2552
2869
|
[0, 0], 1
|
|
2553
2870
|
];
|
|
2554
|
-
exports.
|
|
2871
|
+
exports.UpdateDelegationRequestRequest$ = UpdateDelegationRequestRequest$;
|
|
2872
|
+
const UpdateGroupRequest$ = [3, n0, _UGR,
|
|
2555
2873
|
0,
|
|
2556
2874
|
[_GN, _NPe, _NGN],
|
|
2557
2875
|
[0, 0, 0], 1
|
|
2558
2876
|
];
|
|
2559
|
-
exports.
|
|
2877
|
+
exports.UpdateGroupRequest$ = UpdateGroupRequest$;
|
|
2878
|
+
const UpdateLoginProfileRequest$ = [3, n0, _ULPR,
|
|
2560
2879
|
0,
|
|
2561
2880
|
[_UN, _Pas, _PRR],
|
|
2562
2881
|
[0, [() => passwordType, 0], 2], 1
|
|
2563
2882
|
];
|
|
2564
|
-
exports.
|
|
2883
|
+
exports.UpdateLoginProfileRequest$ = UpdateLoginProfileRequest$;
|
|
2884
|
+
const UpdateOpenIDConnectProviderThumbprintRequest$ = [3, n0, _UOIDCPTR,
|
|
2565
2885
|
0,
|
|
2566
2886
|
[_OIDCPA, _TL],
|
|
2567
2887
|
[0, 64 | 0], 2
|
|
2568
2888
|
];
|
|
2569
|
-
exports.
|
|
2889
|
+
exports.UpdateOpenIDConnectProviderThumbprintRequest$ = UpdateOpenIDConnectProviderThumbprintRequest$;
|
|
2890
|
+
const UpdateRoleDescriptionRequest$ = [3, n0, _URDR,
|
|
2570
2891
|
0,
|
|
2571
2892
|
[_RN, _D],
|
|
2572
2893
|
[0, 0], 2
|
|
2573
2894
|
];
|
|
2574
|
-
exports.
|
|
2895
|
+
exports.UpdateRoleDescriptionRequest$ = UpdateRoleDescriptionRequest$;
|
|
2896
|
+
const UpdateRoleDescriptionResponse$ = [3, n0, _URDRp,
|
|
2575
2897
|
0,
|
|
2576
2898
|
[_Ro],
|
|
2577
|
-
[() =>
|
|
2899
|
+
[() => Role$]
|
|
2578
2900
|
];
|
|
2579
|
-
exports.
|
|
2901
|
+
exports.UpdateRoleDescriptionResponse$ = UpdateRoleDescriptionResponse$;
|
|
2902
|
+
const UpdateRoleRequest$ = [3, n0, _URRp,
|
|
2580
2903
|
0,
|
|
2581
2904
|
[_RN, _D, _MSD],
|
|
2582
2905
|
[0, 0, 1], 1
|
|
2583
2906
|
];
|
|
2584
|
-
exports.
|
|
2907
|
+
exports.UpdateRoleRequest$ = UpdateRoleRequest$;
|
|
2908
|
+
const UpdateRoleResponse$ = [3, n0, _URRpd,
|
|
2585
2909
|
0,
|
|
2586
2910
|
[],
|
|
2587
2911
|
[]
|
|
2588
2912
|
];
|
|
2589
|
-
exports.
|
|
2913
|
+
exports.UpdateRoleResponse$ = UpdateRoleResponse$;
|
|
2914
|
+
const UpdateSAMLProviderRequest$ = [3, n0, _USAMLPRp,
|
|
2590
2915
|
0,
|
|
2591
2916
|
[_SAMLPA, _SAMLMD, _AEM, _APK, _RPK],
|
|
2592
2917
|
[0, 0, 0, [() => privateKeyType, 0], 0], 1
|
|
2593
2918
|
];
|
|
2594
|
-
exports.
|
|
2919
|
+
exports.UpdateSAMLProviderRequest$ = UpdateSAMLProviderRequest$;
|
|
2920
|
+
const UpdateSAMLProviderResponse$ = [3, n0, _USAMLPRpd,
|
|
2595
2921
|
0,
|
|
2596
2922
|
[_SAMLPA],
|
|
2597
2923
|
[0]
|
|
2598
2924
|
];
|
|
2599
|
-
exports.
|
|
2925
|
+
exports.UpdateSAMLProviderResponse$ = UpdateSAMLProviderResponse$;
|
|
2926
|
+
const UpdateServerCertificateRequest$ = [3, n0, _USCRp,
|
|
2600
2927
|
0,
|
|
2601
2928
|
[_SCN, _NPe, _NSCN],
|
|
2602
2929
|
[0, 0, 0], 1
|
|
2603
2930
|
];
|
|
2604
|
-
exports.
|
|
2931
|
+
exports.UpdateServerCertificateRequest$ = UpdateServerCertificateRequest$;
|
|
2932
|
+
const UpdateServiceSpecificCredentialRequest$ = [3, n0, _USSCR,
|
|
2605
2933
|
0,
|
|
2606
2934
|
[_SSCI, _S, _UN],
|
|
2607
2935
|
[0, 0, 0], 2
|
|
2608
2936
|
];
|
|
2609
|
-
exports.
|
|
2937
|
+
exports.UpdateServiceSpecificCredentialRequest$ = UpdateServiceSpecificCredentialRequest$;
|
|
2938
|
+
const UpdateSigningCertificateRequest$ = [3, n0, _USCRpd,
|
|
2610
2939
|
0,
|
|
2611
2940
|
[_CI, _S, _UN],
|
|
2612
2941
|
[0, 0, 0], 2
|
|
2613
2942
|
];
|
|
2614
|
-
exports.
|
|
2943
|
+
exports.UpdateSigningCertificateRequest$ = UpdateSigningCertificateRequest$;
|
|
2944
|
+
const UpdateSSHPublicKeyRequest$ = [3, n0, _USSHPKR,
|
|
2615
2945
|
0,
|
|
2616
2946
|
[_UN, _SSHPKI, _S],
|
|
2617
2947
|
[0, 0, 0], 3
|
|
2618
2948
|
];
|
|
2619
|
-
exports.
|
|
2949
|
+
exports.UpdateSSHPublicKeyRequest$ = UpdateSSHPublicKeyRequest$;
|
|
2950
|
+
const UpdateUserRequest$ = [3, n0, _UURp,
|
|
2620
2951
|
0,
|
|
2621
2952
|
[_UN, _NPe, _NUN],
|
|
2622
2953
|
[0, 0, 0], 1
|
|
2623
2954
|
];
|
|
2624
|
-
exports.
|
|
2955
|
+
exports.UpdateUserRequest$ = UpdateUserRequest$;
|
|
2956
|
+
const UploadServerCertificateRequest$ = [3, n0, _USCRpl,
|
|
2625
2957
|
0,
|
|
2626
2958
|
[_SCN, _CB, _PK, _Pa, _CC, _T],
|
|
2627
2959
|
[0, 0, [() => privateKeyType, 0], 0, 0, () => tagListType], 3
|
|
2628
2960
|
];
|
|
2629
|
-
exports.
|
|
2961
|
+
exports.UploadServerCertificateRequest$ = UploadServerCertificateRequest$;
|
|
2962
|
+
const UploadServerCertificateResponse$ = [3, n0, _USCRplo,
|
|
2630
2963
|
0,
|
|
2631
2964
|
[_SCM, _T],
|
|
2632
|
-
[() =>
|
|
2965
|
+
[() => ServerCertificateMetadata$, () => tagListType]
|
|
2633
2966
|
];
|
|
2634
|
-
exports.
|
|
2967
|
+
exports.UploadServerCertificateResponse$ = UploadServerCertificateResponse$;
|
|
2968
|
+
const UploadSigningCertificateRequest$ = [3, n0, _USCRploa,
|
|
2635
2969
|
0,
|
|
2636
2970
|
[_CB, _UN],
|
|
2637
2971
|
[0, 0], 1
|
|
2638
2972
|
];
|
|
2639
|
-
exports.
|
|
2973
|
+
exports.UploadSigningCertificateRequest$ = UploadSigningCertificateRequest$;
|
|
2974
|
+
const UploadSigningCertificateResponse$ = [3, n0, _USCRpload,
|
|
2640
2975
|
0,
|
|
2641
2976
|
[_Cert],
|
|
2642
|
-
[() =>
|
|
2977
|
+
[() => SigningCertificate$], 1
|
|
2643
2978
|
];
|
|
2644
|
-
exports.
|
|
2979
|
+
exports.UploadSigningCertificateResponse$ = UploadSigningCertificateResponse$;
|
|
2980
|
+
const UploadSSHPublicKeyRequest$ = [3, n0, _USSHPKRp,
|
|
2645
2981
|
0,
|
|
2646
2982
|
[_UN, _SSHPKB],
|
|
2647
2983
|
[0, 0], 2
|
|
2648
2984
|
];
|
|
2649
|
-
exports.
|
|
2985
|
+
exports.UploadSSHPublicKeyRequest$ = UploadSSHPublicKeyRequest$;
|
|
2986
|
+
const UploadSSHPublicKeyResponse$ = [3, n0, _USSHPKRpl,
|
|
2650
2987
|
0,
|
|
2651
2988
|
[_SSHPK],
|
|
2652
|
-
[() =>
|
|
2989
|
+
[() => SSHPublicKey$]
|
|
2653
2990
|
];
|
|
2654
|
-
exports.
|
|
2991
|
+
exports.UploadSSHPublicKeyResponse$ = UploadSSHPublicKeyResponse$;
|
|
2992
|
+
const User$ = [3, n0, _Us,
|
|
2655
2993
|
0,
|
|
2656
2994
|
[_Pa, _UN, _UI, _A, _CD, _PLU, _PB, _T],
|
|
2657
|
-
[0, 0, 0, 0, 4, 4, () =>
|
|
2995
|
+
[0, 0, 0, 0, 4, 4, () => AttachedPermissionsBoundary$, () => tagListType], 5
|
|
2658
2996
|
];
|
|
2659
|
-
exports.
|
|
2997
|
+
exports.User$ = User$;
|
|
2998
|
+
const UserDetail$ = [3, n0, _UDs,
|
|
2660
2999
|
0,
|
|
2661
3000
|
[_Pa, _UN, _UI, _A, _CD, _UPL, _GL, _AMP, _PB, _T],
|
|
2662
|
-
[0, 0, 0, 0, 4, () => policyDetailListType, 64 | 0, () => attachedPoliciesListType, () =>
|
|
3001
|
+
[0, 0, 0, 0, 4, () => policyDetailListType, 64 | 0, () => attachedPoliciesListType, () => AttachedPermissionsBoundary$, () => tagListType]
|
|
2663
3002
|
];
|
|
2664
|
-
exports.
|
|
3003
|
+
exports.UserDetail$ = UserDetail$;
|
|
3004
|
+
const VirtualMFADevice$ = [3, n0, _VMFAD,
|
|
2665
3005
|
0,
|
|
2666
3006
|
[_SNer, _BSS, _QRCPNG, _Us, _EDn, _T],
|
|
2667
|
-
[0, [() => BootstrapDatum, 0], [() => BootstrapDatum, 0], () =>
|
|
3007
|
+
[0, [() => BootstrapDatum, 0], [() => BootstrapDatum, 0], () => User$, 4, () => tagListType], 1
|
|
2668
3008
|
];
|
|
3009
|
+
exports.VirtualMFADevice$ = VirtualMFADevice$;
|
|
2669
3010
|
var __Unit = "unit";
|
|
2670
3011
|
var AccessDetails = [1, n0, _ADc,
|
|
2671
|
-
0, () =>
|
|
3012
|
+
0, () => AccessDetail$
|
|
2672
3013
|
];
|
|
2673
3014
|
var accessKeyMetadataListType = [1, n0, _aKMLT,
|
|
2674
|
-
0, () =>
|
|
3015
|
+
0, () => AccessKeyMetadata$
|
|
2675
3016
|
];
|
|
2676
3017
|
var accountAliasListType = 64 | 0;
|
|
2677
3018
|
var ActionNameListType = 64 | 0;
|
|
2678
3019
|
var ArnListType = 64 | 0;
|
|
2679
3020
|
var attachedPoliciesListType = [1, n0, _aPLT,
|
|
2680
|
-
0, () =>
|
|
3021
|
+
0, () => AttachedPolicy$
|
|
2681
3022
|
];
|
|
2682
3023
|
var certificateListType = [1, n0, _cLT,
|
|
2683
|
-
0, () =>
|
|
3024
|
+
0, () => SigningCertificate$
|
|
2684
3025
|
];
|
|
2685
3026
|
var clientIDListType = 64 | 0;
|
|
2686
3027
|
var ContextEntryListType = [1, n0, _CELT,
|
|
2687
|
-
0, () =>
|
|
3028
|
+
0, () => ContextEntry$
|
|
2688
3029
|
];
|
|
2689
3030
|
var ContextKeyNamesResultListType = 64 | 0;
|
|
2690
3031
|
var ContextKeyValueListType = 64 | 0;
|
|
2691
3032
|
var delegationRequestsListType = [1, n0, _dRLT,
|
|
2692
|
-
0, () =>
|
|
3033
|
+
0, () => DelegationRequest$
|
|
2693
3034
|
];
|
|
2694
3035
|
var entityDetailsListType = [1, n0, _eDLT,
|
|
2695
|
-
0, () =>
|
|
3036
|
+
0, () => EntityDetails$
|
|
2696
3037
|
];
|
|
2697
3038
|
var entityListType = 64 | 0;
|
|
2698
3039
|
var EvaluationResultsListType = [1, n0, _ERLT,
|
|
2699
|
-
0, () =>
|
|
3040
|
+
0, () => EvaluationResult$
|
|
2700
3041
|
];
|
|
2701
3042
|
var FeaturesListType = 64 | 0;
|
|
2702
3043
|
var groupDetailListType = [1, n0, _gDLT,
|
|
2703
|
-
0, () =>
|
|
3044
|
+
0, () => GroupDetail$
|
|
2704
3045
|
];
|
|
2705
3046
|
var groupListType = [1, n0, _gLT,
|
|
2706
|
-
0, () =>
|
|
3047
|
+
0, () => Group$
|
|
2707
3048
|
];
|
|
2708
3049
|
var groupNameListType = 64 | 0;
|
|
2709
3050
|
var instanceProfileListType = [1, n0, _iPLT,
|
|
2710
|
-
0, () =>
|
|
3051
|
+
0, () => InstanceProfile$
|
|
2711
3052
|
];
|
|
2712
3053
|
var listPolicyGrantingServiceAccessResponseListType = [1, n0, _lPGSARLT,
|
|
2713
|
-
0, () =>
|
|
3054
|
+
0, () => ListPoliciesGrantingServiceAccessEntry$
|
|
2714
3055
|
];
|
|
2715
3056
|
var ManagedPolicyDetailListType = [1, n0, _MPDLT,
|
|
2716
|
-
0, () =>
|
|
3057
|
+
0, () => ManagedPolicyDetail$
|
|
2717
3058
|
];
|
|
2718
3059
|
var mfaDeviceListType = [1, n0, _mDLT,
|
|
2719
|
-
0, () =>
|
|
3060
|
+
0, () => MFADevice$
|
|
2720
3061
|
];
|
|
2721
3062
|
var OpenIDConnectProviderListType = [1, n0, _OIDCPLT,
|
|
2722
|
-
0, () =>
|
|
3063
|
+
0, () => OpenIDConnectProviderListEntry$
|
|
2723
3064
|
];
|
|
2724
3065
|
var policyDetailListType = [1, n0, _pDLT,
|
|
2725
|
-
0, () =>
|
|
3066
|
+
0, () => PolicyDetail$
|
|
2726
3067
|
];
|
|
2727
3068
|
var policyDocumentVersionListType = [1, n0, _pDVLT,
|
|
2728
|
-
0, () =>
|
|
3069
|
+
0, () => PolicyVersion$
|
|
2729
3070
|
];
|
|
2730
3071
|
var policyGrantingServiceAccessListType = [1, n0, _pGSALT,
|
|
2731
|
-
0, () =>
|
|
3072
|
+
0, () => PolicyGrantingServiceAccess$
|
|
2732
3073
|
];
|
|
2733
3074
|
var PolicyGroupListType = [1, n0, _PGLT,
|
|
2734
|
-
0, () =>
|
|
3075
|
+
0, () => PolicyGroup$
|
|
2735
3076
|
];
|
|
2736
3077
|
var policyListType = [1, n0, _pLT,
|
|
2737
|
-
0, () =>
|
|
3078
|
+
0, () => Policy$
|
|
2738
3079
|
];
|
|
2739
3080
|
var policyNameListType = 64 | 0;
|
|
2740
3081
|
var policyParameterListType = [1, n0, _pPLT,
|
|
2741
|
-
0, () =>
|
|
3082
|
+
0, () => PolicyParameter$
|
|
2742
3083
|
];
|
|
2743
3084
|
var policyParameterValuesListType = 64 | 0;
|
|
2744
3085
|
var PolicyRoleListType = [1, n0, _PRLT,
|
|
2745
|
-
0, () =>
|
|
3086
|
+
0, () => PolicyRole$
|
|
2746
3087
|
];
|
|
2747
3088
|
var PolicyUserListType = [1, n0, _PULT,
|
|
2748
|
-
0, () =>
|
|
3089
|
+
0, () => PolicyUser$
|
|
2749
3090
|
];
|
|
2750
3091
|
var privateKeyList = [1, n0, _pKL,
|
|
2751
|
-
0, () =>
|
|
3092
|
+
0, () => SAMLPrivateKey$
|
|
2752
3093
|
];
|
|
2753
3094
|
var ResourceNameListType = 64 | 0;
|
|
2754
3095
|
var ResourceSpecificResultListType = [1, n0, _RSRLT,
|
|
2755
|
-
0, () =>
|
|
3096
|
+
0, () => ResourceSpecificResult$
|
|
2756
3097
|
];
|
|
2757
3098
|
var roleDetailListType = [1, n0, _rDLT,
|
|
2758
|
-
0, () =>
|
|
3099
|
+
0, () => RoleDetail$
|
|
2759
3100
|
];
|
|
2760
3101
|
var roleListType = [1, n0, _rLT,
|
|
2761
|
-
0, () =>
|
|
3102
|
+
0, () => Role$
|
|
2762
3103
|
];
|
|
2763
3104
|
var rolePermissionRestrictionArnListType = 64 | 0;
|
|
2764
3105
|
var RoleUsageListType = [1, n0, _RULT,
|
|
2765
|
-
0, () =>
|
|
3106
|
+
0, () => RoleUsageType$
|
|
2766
3107
|
];
|
|
2767
3108
|
var SAMLProviderListType = [1, n0, _SAMLPLT,
|
|
2768
|
-
0, () =>
|
|
3109
|
+
0, () => SAMLProviderListEntry$
|
|
2769
3110
|
];
|
|
2770
3111
|
var serverCertificateMetadataListType = [1, n0, _sCMLT,
|
|
2771
|
-
0, () =>
|
|
3112
|
+
0, () => ServerCertificateMetadata$
|
|
2772
3113
|
];
|
|
2773
3114
|
var serviceNamespaceListType = 64 | 0;
|
|
2774
3115
|
var ServicesLastAccessed = [1, n0, _SLA,
|
|
2775
|
-
0, () =>
|
|
3116
|
+
0, () => ServiceLastAccessed$
|
|
2776
3117
|
];
|
|
2777
3118
|
var ServiceSpecificCredentialsListType = [1, n0, _SSCLT,
|
|
2778
|
-
0, () =>
|
|
3119
|
+
0, () => ServiceSpecificCredentialMetadata$
|
|
2779
3120
|
];
|
|
2780
3121
|
var SimulationPolicyListType = 64 | 0;
|
|
2781
3122
|
var SSHPublicKeyListType = [1, n0, _SSHPKLT,
|
|
2782
|
-
0, () =>
|
|
3123
|
+
0, () => SSHPublicKeyMetadata$
|
|
2783
3124
|
];
|
|
2784
3125
|
var StatementListType = [1, n0, _SLT,
|
|
2785
|
-
0, () =>
|
|
3126
|
+
0, () => Statement$
|
|
2786
3127
|
];
|
|
2787
3128
|
var tagKeyListType = 64 | 0;
|
|
2788
3129
|
var tagListType = [1, n0, _tLT,
|
|
2789
|
-
0, () =>
|
|
3130
|
+
0, () => Tag$
|
|
2790
3131
|
];
|
|
2791
3132
|
var thumbprintListType = 64 | 0;
|
|
2792
3133
|
var TrackedActionsLastAccessed = [1, n0, _TALA,
|
|
2793
|
-
0, () =>
|
|
3134
|
+
0, () => TrackedActionLastAccessed$
|
|
2794
3135
|
];
|
|
2795
3136
|
var userDetailListType = [1, n0, _uDLT,
|
|
2796
|
-
0, () =>
|
|
3137
|
+
0, () => UserDetail$
|
|
2797
3138
|
];
|
|
2798
3139
|
var userListType = [1, n0, _uLT,
|
|
2799
|
-
0, () =>
|
|
3140
|
+
0, () => User$
|
|
2800
3141
|
];
|
|
2801
3142
|
var virtualMFADeviceListType = [1, n0, _vMFADLT,
|
|
2802
|
-
0, [() =>
|
|
3143
|
+
0, [() => VirtualMFADevice$,
|
|
2803
3144
|
0]
|
|
2804
3145
|
];
|
|
2805
3146
|
var CertificationMapType = 128 | 0;
|
|
2806
3147
|
var EvalDecisionDetailsType = 128 | 0;
|
|
2807
3148
|
var summaryMapType = 128 | 1;
|
|
2808
3149
|
exports.AcceptDelegationRequest$ = [9, n0, _ADR,
|
|
2809
|
-
0, () =>
|
|
3150
|
+
0, () => AcceptDelegationRequestRequest$, () => __Unit
|
|
2810
3151
|
];
|
|
2811
3152
|
exports.AddClientIDToOpenIDConnectProvider$ = [9, n0, _ACIDTOIDCP,
|
|
2812
|
-
0, () =>
|
|
3153
|
+
0, () => AddClientIDToOpenIDConnectProviderRequest$, () => __Unit
|
|
2813
3154
|
];
|
|
2814
3155
|
exports.AddRoleToInstanceProfile$ = [9, n0, _ARTIP,
|
|
2815
|
-
0, () =>
|
|
3156
|
+
0, () => AddRoleToInstanceProfileRequest$, () => __Unit
|
|
2816
3157
|
];
|
|
2817
3158
|
exports.AddUserToGroup$ = [9, n0, _AUTG,
|
|
2818
|
-
0, () =>
|
|
3159
|
+
0, () => AddUserToGroupRequest$, () => __Unit
|
|
2819
3160
|
];
|
|
2820
3161
|
exports.AssociateDelegationRequest$ = [9, n0, _ADRs,
|
|
2821
|
-
0, () =>
|
|
3162
|
+
0, () => AssociateDelegationRequestRequest$, () => __Unit
|
|
2822
3163
|
];
|
|
2823
3164
|
exports.AttachGroupPolicy$ = [9, n0, _AGP,
|
|
2824
|
-
0, () =>
|
|
3165
|
+
0, () => AttachGroupPolicyRequest$, () => __Unit
|
|
2825
3166
|
];
|
|
2826
3167
|
exports.AttachRolePolicy$ = [9, n0, _ARP,
|
|
2827
|
-
0, () =>
|
|
3168
|
+
0, () => AttachRolePolicyRequest$, () => __Unit
|
|
2828
3169
|
];
|
|
2829
3170
|
exports.AttachUserPolicy$ = [9, n0, _AUP,
|
|
2830
|
-
0, () =>
|
|
3171
|
+
0, () => AttachUserPolicyRequest$, () => __Unit
|
|
2831
3172
|
];
|
|
2832
3173
|
exports.ChangePassword$ = [9, n0, _CP,
|
|
2833
|
-
0, () =>
|
|
3174
|
+
0, () => ChangePasswordRequest$, () => __Unit
|
|
2834
3175
|
];
|
|
2835
3176
|
exports.CreateAccessKey$ = [9, n0, _CAK,
|
|
2836
|
-
0, () =>
|
|
3177
|
+
0, () => CreateAccessKeyRequest$, () => CreateAccessKeyResponse$
|
|
2837
3178
|
];
|
|
2838
3179
|
exports.CreateAccountAlias$ = [9, n0, _CAA,
|
|
2839
|
-
0, () =>
|
|
3180
|
+
0, () => CreateAccountAliasRequest$, () => __Unit
|
|
2840
3181
|
];
|
|
2841
3182
|
exports.CreateDelegationRequest$ = [9, n0, _CDR,
|
|
2842
|
-
0, () =>
|
|
3183
|
+
0, () => CreateDelegationRequestRequest$, () => CreateDelegationRequestResponse$
|
|
2843
3184
|
];
|
|
2844
3185
|
exports.CreateGroup$ = [9, n0, _CG,
|
|
2845
|
-
0, () =>
|
|
3186
|
+
0, () => CreateGroupRequest$, () => CreateGroupResponse$
|
|
2846
3187
|
];
|
|
2847
3188
|
exports.CreateInstanceProfile$ = [9, n0, _CIP,
|
|
2848
|
-
0, () =>
|
|
3189
|
+
0, () => CreateInstanceProfileRequest$, () => CreateInstanceProfileResponse$
|
|
2849
3190
|
];
|
|
2850
3191
|
exports.CreateLoginProfile$ = [9, n0, _CLP,
|
|
2851
|
-
0, () =>
|
|
3192
|
+
0, () => CreateLoginProfileRequest$, () => CreateLoginProfileResponse$
|
|
2852
3193
|
];
|
|
2853
3194
|
exports.CreateOpenIDConnectProvider$ = [9, n0, _COIDCP,
|
|
2854
|
-
0, () =>
|
|
3195
|
+
0, () => CreateOpenIDConnectProviderRequest$, () => CreateOpenIDConnectProviderResponse$
|
|
2855
3196
|
];
|
|
2856
3197
|
exports.CreatePolicy$ = [9, n0, _CPr,
|
|
2857
|
-
0, () =>
|
|
3198
|
+
0, () => CreatePolicyRequest$, () => CreatePolicyResponse$
|
|
2858
3199
|
];
|
|
2859
3200
|
exports.CreatePolicyVersion$ = [9, n0, _CPV,
|
|
2860
|
-
0, () =>
|
|
3201
|
+
0, () => CreatePolicyVersionRequest$, () => CreatePolicyVersionResponse$
|
|
2861
3202
|
];
|
|
2862
3203
|
exports.CreateRole$ = [9, n0, _CR,
|
|
2863
|
-
0, () =>
|
|
3204
|
+
0, () => CreateRoleRequest$, () => CreateRoleResponse$
|
|
2864
3205
|
];
|
|
2865
3206
|
exports.CreateSAMLProvider$ = [9, n0, _CSAMLP,
|
|
2866
|
-
0, () =>
|
|
3207
|
+
0, () => CreateSAMLProviderRequest$, () => CreateSAMLProviderResponse$
|
|
2867
3208
|
];
|
|
2868
3209
|
exports.CreateServiceLinkedRole$ = [9, n0, _CSLR,
|
|
2869
|
-
0, () =>
|
|
3210
|
+
0, () => CreateServiceLinkedRoleRequest$, () => CreateServiceLinkedRoleResponse$
|
|
2870
3211
|
];
|
|
2871
3212
|
exports.CreateServiceSpecificCredential$ = [9, n0, _CSSC,
|
|
2872
|
-
0, () =>
|
|
3213
|
+
0, () => CreateServiceSpecificCredentialRequest$, () => CreateServiceSpecificCredentialResponse$
|
|
2873
3214
|
];
|
|
2874
3215
|
exports.CreateUser$ = [9, n0, _CU,
|
|
2875
|
-
0, () =>
|
|
3216
|
+
0, () => CreateUserRequest$, () => CreateUserResponse$
|
|
2876
3217
|
];
|
|
2877
3218
|
exports.CreateVirtualMFADevice$ = [9, n0, _CVMFAD,
|
|
2878
|
-
0, () =>
|
|
3219
|
+
0, () => CreateVirtualMFADeviceRequest$, () => CreateVirtualMFADeviceResponse$
|
|
2879
3220
|
];
|
|
2880
3221
|
exports.DeactivateMFADevice$ = [9, n0, _DMFAD,
|
|
2881
|
-
0, () =>
|
|
3222
|
+
0, () => DeactivateMFADeviceRequest$, () => __Unit
|
|
2882
3223
|
];
|
|
2883
3224
|
exports.DeleteAccessKey$ = [9, n0, _DAK,
|
|
2884
|
-
0, () =>
|
|
3225
|
+
0, () => DeleteAccessKeyRequest$, () => __Unit
|
|
2885
3226
|
];
|
|
2886
3227
|
exports.DeleteAccountAlias$ = [9, n0, _DAA,
|
|
2887
|
-
0, () =>
|
|
3228
|
+
0, () => DeleteAccountAliasRequest$, () => __Unit
|
|
2888
3229
|
];
|
|
2889
3230
|
exports.DeleteAccountPasswordPolicy$ = [9, n0, _DAPP,
|
|
2890
3231
|
0, () => __Unit, () => __Unit
|
|
2891
3232
|
];
|
|
2892
3233
|
exports.DeleteGroup$ = [9, n0, _DG,
|
|
2893
|
-
0, () =>
|
|
3234
|
+
0, () => DeleteGroupRequest$, () => __Unit
|
|
2894
3235
|
];
|
|
2895
3236
|
exports.DeleteGroupPolicy$ = [9, n0, _DGP,
|
|
2896
|
-
0, () =>
|
|
3237
|
+
0, () => DeleteGroupPolicyRequest$, () => __Unit
|
|
2897
3238
|
];
|
|
2898
3239
|
exports.DeleteInstanceProfile$ = [9, n0, _DIP,
|
|
2899
|
-
0, () =>
|
|
3240
|
+
0, () => DeleteInstanceProfileRequest$, () => __Unit
|
|
2900
3241
|
];
|
|
2901
3242
|
exports.DeleteLoginProfile$ = [9, n0, _DLP,
|
|
2902
|
-
0, () =>
|
|
3243
|
+
0, () => DeleteLoginProfileRequest$, () => __Unit
|
|
2903
3244
|
];
|
|
2904
3245
|
exports.DeleteOpenIDConnectProvider$ = [9, n0, _DOIDCP,
|
|
2905
|
-
0, () =>
|
|
3246
|
+
0, () => DeleteOpenIDConnectProviderRequest$, () => __Unit
|
|
2906
3247
|
];
|
|
2907
3248
|
exports.DeletePolicy$ = [9, n0, _DPe,
|
|
2908
|
-
0, () =>
|
|
3249
|
+
0, () => DeletePolicyRequest$, () => __Unit
|
|
2909
3250
|
];
|
|
2910
3251
|
exports.DeletePolicyVersion$ = [9, n0, _DPV,
|
|
2911
|
-
0, () =>
|
|
3252
|
+
0, () => DeletePolicyVersionRequest$, () => __Unit
|
|
2912
3253
|
];
|
|
2913
3254
|
exports.DeleteRole$ = [9, n0, _DRel,
|
|
2914
|
-
0, () =>
|
|
3255
|
+
0, () => DeleteRoleRequest$, () => __Unit
|
|
2915
3256
|
];
|
|
2916
3257
|
exports.DeleteRolePermissionsBoundary$ = [9, n0, _DRPB,
|
|
2917
|
-
0, () =>
|
|
3258
|
+
0, () => DeleteRolePermissionsBoundaryRequest$, () => __Unit
|
|
2918
3259
|
];
|
|
2919
3260
|
exports.DeleteRolePolicy$ = [9, n0, _DRP,
|
|
2920
|
-
0, () =>
|
|
3261
|
+
0, () => DeleteRolePolicyRequest$, () => __Unit
|
|
2921
3262
|
];
|
|
2922
3263
|
exports.DeleteSAMLProvider$ = [9, n0, _DSAMLP,
|
|
2923
|
-
0, () =>
|
|
3264
|
+
0, () => DeleteSAMLProviderRequest$, () => __Unit
|
|
2924
3265
|
];
|
|
2925
3266
|
exports.DeleteServerCertificate$ = [9, n0, _DSC,
|
|
2926
|
-
0, () =>
|
|
3267
|
+
0, () => DeleteServerCertificateRequest$, () => __Unit
|
|
2927
3268
|
];
|
|
2928
3269
|
exports.DeleteServiceLinkedRole$ = [9, n0, _DSLR,
|
|
2929
|
-
0, () =>
|
|
3270
|
+
0, () => DeleteServiceLinkedRoleRequest$, () => DeleteServiceLinkedRoleResponse$
|
|
2930
3271
|
];
|
|
2931
3272
|
exports.DeleteServiceSpecificCredential$ = [9, n0, _DSSC,
|
|
2932
|
-
0, () =>
|
|
3273
|
+
0, () => DeleteServiceSpecificCredentialRequest$, () => __Unit
|
|
2933
3274
|
];
|
|
2934
3275
|
exports.DeleteSigningCertificate$ = [9, n0, _DSCe,
|
|
2935
|
-
0, () =>
|
|
3276
|
+
0, () => DeleteSigningCertificateRequest$, () => __Unit
|
|
2936
3277
|
];
|
|
2937
3278
|
exports.DeleteSSHPublicKey$ = [9, n0, _DSSHPK,
|
|
2938
|
-
0, () =>
|
|
3279
|
+
0, () => DeleteSSHPublicKeyRequest$, () => __Unit
|
|
2939
3280
|
];
|
|
2940
3281
|
exports.DeleteUser$ = [9, n0, _DU,
|
|
2941
|
-
0, () =>
|
|
3282
|
+
0, () => DeleteUserRequest$, () => __Unit
|
|
2942
3283
|
];
|
|
2943
3284
|
exports.DeleteUserPermissionsBoundary$ = [9, n0, _DUPB,
|
|
2944
|
-
0, () =>
|
|
3285
|
+
0, () => DeleteUserPermissionsBoundaryRequest$, () => __Unit
|
|
2945
3286
|
];
|
|
2946
3287
|
exports.DeleteUserPolicy$ = [9, n0, _DUP,
|
|
2947
|
-
0, () =>
|
|
3288
|
+
0, () => DeleteUserPolicyRequest$, () => __Unit
|
|
2948
3289
|
];
|
|
2949
3290
|
exports.DeleteVirtualMFADevice$ = [9, n0, _DVMFAD,
|
|
2950
|
-
0, () =>
|
|
3291
|
+
0, () => DeleteVirtualMFADeviceRequest$, () => __Unit
|
|
2951
3292
|
];
|
|
2952
3293
|
exports.DetachGroupPolicy$ = [9, n0, _DGPe,
|
|
2953
|
-
0, () =>
|
|
3294
|
+
0, () => DetachGroupPolicyRequest$, () => __Unit
|
|
2954
3295
|
];
|
|
2955
3296
|
exports.DetachRolePolicy$ = [9, n0, _DRPe,
|
|
2956
|
-
0, () =>
|
|
3297
|
+
0, () => DetachRolePolicyRequest$, () => __Unit
|
|
2957
3298
|
];
|
|
2958
3299
|
exports.DetachUserPolicy$ = [9, n0, _DUPe,
|
|
2959
|
-
0, () =>
|
|
3300
|
+
0, () => DetachUserPolicyRequest$, () => __Unit
|
|
2960
3301
|
];
|
|
2961
3302
|
exports.DisableOrganizationsRootCredentialsManagement$ = [9, n0, _DORCM,
|
|
2962
|
-
0, () =>
|
|
3303
|
+
0, () => DisableOrganizationsRootCredentialsManagementRequest$, () => DisableOrganizationsRootCredentialsManagementResponse$
|
|
2963
3304
|
];
|
|
2964
3305
|
exports.DisableOrganizationsRootSessions$ = [9, n0, _DORS,
|
|
2965
|
-
0, () =>
|
|
3306
|
+
0, () => DisableOrganizationsRootSessionsRequest$, () => DisableOrganizationsRootSessionsResponse$
|
|
2966
3307
|
];
|
|
2967
3308
|
exports.DisableOutboundWebIdentityFederation$ = [9, n0, _DOWIF,
|
|
2968
3309
|
0, () => __Unit, () => __Unit
|
|
2969
3310
|
];
|
|
2970
3311
|
exports.EnableMFADevice$ = [9, n0, _EMFAD,
|
|
2971
|
-
0, () =>
|
|
3312
|
+
0, () => EnableMFADeviceRequest$, () => __Unit
|
|
2972
3313
|
];
|
|
2973
3314
|
exports.EnableOrganizationsRootCredentialsManagement$ = [9, n0, _EORCM,
|
|
2974
|
-
0, () =>
|
|
3315
|
+
0, () => EnableOrganizationsRootCredentialsManagementRequest$, () => EnableOrganizationsRootCredentialsManagementResponse$
|
|
2975
3316
|
];
|
|
2976
3317
|
exports.EnableOrganizationsRootSessions$ = [9, n0, _EORS,
|
|
2977
|
-
0, () =>
|
|
3318
|
+
0, () => EnableOrganizationsRootSessionsRequest$, () => EnableOrganizationsRootSessionsResponse$
|
|
2978
3319
|
];
|
|
2979
3320
|
exports.EnableOutboundWebIdentityFederation$ = [9, n0, _EOWIF,
|
|
2980
|
-
0, () => __Unit, () =>
|
|
3321
|
+
0, () => __Unit, () => EnableOutboundWebIdentityFederationResponse$
|
|
2981
3322
|
];
|
|
2982
3323
|
exports.GenerateCredentialReport$ = [9, n0, _GCR,
|
|
2983
|
-
0, () => __Unit, () =>
|
|
3324
|
+
0, () => __Unit, () => GenerateCredentialReportResponse$
|
|
2984
3325
|
];
|
|
2985
3326
|
exports.GenerateOrganizationsAccessReport$ = [9, n0, _GOAR,
|
|
2986
|
-
0, () =>
|
|
3327
|
+
0, () => GenerateOrganizationsAccessReportRequest$, () => GenerateOrganizationsAccessReportResponse$
|
|
2987
3328
|
];
|
|
2988
3329
|
exports.GenerateServiceLastAccessedDetails$ = [9, n0, _GSLAD,
|
|
2989
|
-
0, () =>
|
|
3330
|
+
0, () => GenerateServiceLastAccessedDetailsRequest$, () => GenerateServiceLastAccessedDetailsResponse$
|
|
2990
3331
|
];
|
|
2991
3332
|
exports.GetAccessKeyLastUsed$ = [9, n0, _GAKLU,
|
|
2992
|
-
0, () =>
|
|
3333
|
+
0, () => GetAccessKeyLastUsedRequest$, () => GetAccessKeyLastUsedResponse$
|
|
2993
3334
|
];
|
|
2994
3335
|
exports.GetAccountAuthorizationDetails$ = [9, n0, _GAAD,
|
|
2995
|
-
0, () =>
|
|
3336
|
+
0, () => GetAccountAuthorizationDetailsRequest$, () => GetAccountAuthorizationDetailsResponse$
|
|
2996
3337
|
];
|
|
2997
3338
|
exports.GetAccountPasswordPolicy$ = [9, n0, _GAPP,
|
|
2998
|
-
0, () => __Unit, () =>
|
|
3339
|
+
0, () => __Unit, () => GetAccountPasswordPolicyResponse$
|
|
2999
3340
|
];
|
|
3000
3341
|
exports.GetAccountSummary$ = [9, n0, _GAS,
|
|
3001
|
-
0, () => __Unit, () =>
|
|
3342
|
+
0, () => __Unit, () => GetAccountSummaryResponse$
|
|
3002
3343
|
];
|
|
3003
3344
|
exports.GetContextKeysForCustomPolicy$ = [9, n0, _GCKFCP,
|
|
3004
|
-
0, () =>
|
|
3345
|
+
0, () => GetContextKeysForCustomPolicyRequest$, () => GetContextKeysForPolicyResponse$
|
|
3005
3346
|
];
|
|
3006
3347
|
exports.GetContextKeysForPrincipalPolicy$ = [9, n0, _GCKFPP,
|
|
3007
|
-
0, () =>
|
|
3348
|
+
0, () => GetContextKeysForPrincipalPolicyRequest$, () => GetContextKeysForPolicyResponse$
|
|
3008
3349
|
];
|
|
3009
3350
|
exports.GetCredentialReport$ = [9, n0, _GCRe,
|
|
3010
|
-
0, () => __Unit, () =>
|
|
3351
|
+
0, () => __Unit, () => GetCredentialReportResponse$
|
|
3011
3352
|
];
|
|
3012
3353
|
exports.GetDelegationRequest$ = [9, n0, _GDR,
|
|
3013
|
-
0, () =>
|
|
3354
|
+
0, () => GetDelegationRequestRequest$, () => GetDelegationRequestResponse$
|
|
3014
3355
|
];
|
|
3015
3356
|
exports.GetGroup$ = [9, n0, _GG,
|
|
3016
|
-
0, () =>
|
|
3357
|
+
0, () => GetGroupRequest$, () => GetGroupResponse$
|
|
3017
3358
|
];
|
|
3018
3359
|
exports.GetGroupPolicy$ = [9, n0, _GGP,
|
|
3019
|
-
0, () =>
|
|
3360
|
+
0, () => GetGroupPolicyRequest$, () => GetGroupPolicyResponse$
|
|
3020
3361
|
];
|
|
3021
3362
|
exports.GetHumanReadableSummary$ = [9, n0, _GHRS,
|
|
3022
|
-
0, () =>
|
|
3363
|
+
0, () => GetHumanReadableSummaryRequest$, () => GetHumanReadableSummaryResponse$
|
|
3023
3364
|
];
|
|
3024
3365
|
exports.GetInstanceProfile$ = [9, n0, _GIP,
|
|
3025
|
-
0, () =>
|
|
3366
|
+
0, () => GetInstanceProfileRequest$, () => GetInstanceProfileResponse$
|
|
3026
3367
|
];
|
|
3027
3368
|
exports.GetLoginProfile$ = [9, n0, _GLP,
|
|
3028
|
-
0, () =>
|
|
3369
|
+
0, () => GetLoginProfileRequest$, () => GetLoginProfileResponse$
|
|
3029
3370
|
];
|
|
3030
3371
|
exports.GetMFADevice$ = [9, n0, _GMFAD,
|
|
3031
|
-
0, () =>
|
|
3372
|
+
0, () => GetMFADeviceRequest$, () => GetMFADeviceResponse$
|
|
3032
3373
|
];
|
|
3033
3374
|
exports.GetOpenIDConnectProvider$ = [9, n0, _GOIDCP,
|
|
3034
|
-
0, () =>
|
|
3375
|
+
0, () => GetOpenIDConnectProviderRequest$, () => GetOpenIDConnectProviderResponse$
|
|
3035
3376
|
];
|
|
3036
3377
|
exports.GetOrganizationsAccessReport$ = [9, n0, _GOARe,
|
|
3037
|
-
0, () =>
|
|
3378
|
+
0, () => GetOrganizationsAccessReportRequest$, () => GetOrganizationsAccessReportResponse$
|
|
3038
3379
|
];
|
|
3039
3380
|
exports.GetOutboundWebIdentityFederationInfo$ = [9, n0, _GOWIFI,
|
|
3040
|
-
0, () => __Unit, () =>
|
|
3381
|
+
0, () => __Unit, () => GetOutboundWebIdentityFederationInfoResponse$
|
|
3041
3382
|
];
|
|
3042
3383
|
exports.GetPolicy$ = [9, n0, _GP,
|
|
3043
|
-
0, () =>
|
|
3384
|
+
0, () => GetPolicyRequest$, () => GetPolicyResponse$
|
|
3044
3385
|
];
|
|
3045
3386
|
exports.GetPolicyVersion$ = [9, n0, _GPV,
|
|
3046
|
-
0, () =>
|
|
3387
|
+
0, () => GetPolicyVersionRequest$, () => GetPolicyVersionResponse$
|
|
3047
3388
|
];
|
|
3048
3389
|
exports.GetRole$ = [9, n0, _GR,
|
|
3049
|
-
0, () =>
|
|
3390
|
+
0, () => GetRoleRequest$, () => GetRoleResponse$
|
|
3050
3391
|
];
|
|
3051
3392
|
exports.GetRolePolicy$ = [9, n0, _GRP,
|
|
3052
|
-
0, () =>
|
|
3393
|
+
0, () => GetRolePolicyRequest$, () => GetRolePolicyResponse$
|
|
3053
3394
|
];
|
|
3054
3395
|
exports.GetSAMLProvider$ = [9, n0, _GSAMLP,
|
|
3055
|
-
0, () =>
|
|
3396
|
+
0, () => GetSAMLProviderRequest$, () => GetSAMLProviderResponse$
|
|
3056
3397
|
];
|
|
3057
3398
|
exports.GetServerCertificate$ = [9, n0, _GSC,
|
|
3058
|
-
0, () =>
|
|
3399
|
+
0, () => GetServerCertificateRequest$, () => GetServerCertificateResponse$
|
|
3059
3400
|
];
|
|
3060
3401
|
exports.GetServiceLastAccessedDetails$ = [9, n0, _GSLADe,
|
|
3061
|
-
0, () =>
|
|
3402
|
+
0, () => GetServiceLastAccessedDetailsRequest$, () => GetServiceLastAccessedDetailsResponse$
|
|
3062
3403
|
];
|
|
3063
3404
|
exports.GetServiceLastAccessedDetailsWithEntities$ = [9, n0, _GSLADWE,
|
|
3064
|
-
0, () =>
|
|
3405
|
+
0, () => GetServiceLastAccessedDetailsWithEntitiesRequest$, () => GetServiceLastAccessedDetailsWithEntitiesResponse$
|
|
3065
3406
|
];
|
|
3066
3407
|
exports.GetServiceLinkedRoleDeletionStatus$ = [9, n0, _GSLRDS,
|
|
3067
|
-
0, () =>
|
|
3408
|
+
0, () => GetServiceLinkedRoleDeletionStatusRequest$, () => GetServiceLinkedRoleDeletionStatusResponse$
|
|
3068
3409
|
];
|
|
3069
3410
|
exports.GetSSHPublicKey$ = [9, n0, _GSSHPK,
|
|
3070
|
-
0, () =>
|
|
3411
|
+
0, () => GetSSHPublicKeyRequest$, () => GetSSHPublicKeyResponse$
|
|
3071
3412
|
];
|
|
3072
3413
|
exports.GetUser$ = [9, n0, _GU,
|
|
3073
|
-
0, () =>
|
|
3414
|
+
0, () => GetUserRequest$, () => GetUserResponse$
|
|
3074
3415
|
];
|
|
3075
3416
|
exports.GetUserPolicy$ = [9, n0, _GUP,
|
|
3076
|
-
0, () =>
|
|
3417
|
+
0, () => GetUserPolicyRequest$, () => GetUserPolicyResponse$
|
|
3077
3418
|
];
|
|
3078
3419
|
exports.ListAccessKeys$ = [9, n0, _LAK,
|
|
3079
|
-
0, () =>
|
|
3420
|
+
0, () => ListAccessKeysRequest$, () => ListAccessKeysResponse$
|
|
3080
3421
|
];
|
|
3081
3422
|
exports.ListAccountAliases$ = [9, n0, _LAA,
|
|
3082
|
-
0, () =>
|
|
3423
|
+
0, () => ListAccountAliasesRequest$, () => ListAccountAliasesResponse$
|
|
3083
3424
|
];
|
|
3084
3425
|
exports.ListAttachedGroupPolicies$ = [9, n0, _LAGP,
|
|
3085
|
-
0, () =>
|
|
3426
|
+
0, () => ListAttachedGroupPoliciesRequest$, () => ListAttachedGroupPoliciesResponse$
|
|
3086
3427
|
];
|
|
3087
3428
|
exports.ListAttachedRolePolicies$ = [9, n0, _LARP,
|
|
3088
|
-
0, () =>
|
|
3429
|
+
0, () => ListAttachedRolePoliciesRequest$, () => ListAttachedRolePoliciesResponse$
|
|
3089
3430
|
];
|
|
3090
3431
|
exports.ListAttachedUserPolicies$ = [9, n0, _LAUP,
|
|
3091
|
-
0, () =>
|
|
3432
|
+
0, () => ListAttachedUserPoliciesRequest$, () => ListAttachedUserPoliciesResponse$
|
|
3092
3433
|
];
|
|
3093
3434
|
exports.ListDelegationRequests$ = [9, n0, _LDR,
|
|
3094
|
-
0, () =>
|
|
3435
|
+
0, () => ListDelegationRequestsRequest$, () => ListDelegationRequestsResponse$
|
|
3095
3436
|
];
|
|
3096
3437
|
exports.ListEntitiesForPolicy$ = [9, n0, _LEFP,
|
|
3097
|
-
0, () =>
|
|
3438
|
+
0, () => ListEntitiesForPolicyRequest$, () => ListEntitiesForPolicyResponse$
|
|
3098
3439
|
];
|
|
3099
3440
|
exports.ListGroupPolicies$ = [9, n0, _LGP,
|
|
3100
|
-
0, () =>
|
|
3441
|
+
0, () => ListGroupPoliciesRequest$, () => ListGroupPoliciesResponse$
|
|
3101
3442
|
];
|
|
3102
3443
|
exports.ListGroups$ = [9, n0, _LG,
|
|
3103
|
-
0, () =>
|
|
3444
|
+
0, () => ListGroupsRequest$, () => ListGroupsResponse$
|
|
3104
3445
|
];
|
|
3105
3446
|
exports.ListGroupsForUser$ = [9, n0, _LGFU,
|
|
3106
|
-
0, () =>
|
|
3447
|
+
0, () => ListGroupsForUserRequest$, () => ListGroupsForUserResponse$
|
|
3107
3448
|
];
|
|
3108
3449
|
exports.ListInstanceProfiles$ = [9, n0, _LIP,
|
|
3109
|
-
0, () =>
|
|
3450
|
+
0, () => ListInstanceProfilesRequest$, () => ListInstanceProfilesResponse$
|
|
3110
3451
|
];
|
|
3111
3452
|
exports.ListInstanceProfilesForRole$ = [9, n0, _LIPFR,
|
|
3112
|
-
0, () =>
|
|
3453
|
+
0, () => ListInstanceProfilesForRoleRequest$, () => ListInstanceProfilesForRoleResponse$
|
|
3113
3454
|
];
|
|
3114
3455
|
exports.ListInstanceProfileTags$ = [9, n0, _LIPT,
|
|
3115
|
-
0, () =>
|
|
3456
|
+
0, () => ListInstanceProfileTagsRequest$, () => ListInstanceProfileTagsResponse$
|
|
3116
3457
|
];
|
|
3117
3458
|
exports.ListMFADevices$ = [9, n0, _LMFAD,
|
|
3118
|
-
0, () =>
|
|
3459
|
+
0, () => ListMFADevicesRequest$, () => ListMFADevicesResponse$
|
|
3119
3460
|
];
|
|
3120
3461
|
exports.ListMFADeviceTags$ = [9, n0, _LMFADT,
|
|
3121
|
-
0, () =>
|
|
3462
|
+
0, () => ListMFADeviceTagsRequest$, () => ListMFADeviceTagsResponse$
|
|
3122
3463
|
];
|
|
3123
3464
|
exports.ListOpenIDConnectProviders$ = [9, n0, _LOIDCP,
|
|
3124
|
-
0, () =>
|
|
3465
|
+
0, () => ListOpenIDConnectProvidersRequest$, () => ListOpenIDConnectProvidersResponse$
|
|
3125
3466
|
];
|
|
3126
3467
|
exports.ListOpenIDConnectProviderTags$ = [9, n0, _LOIDCPT,
|
|
3127
|
-
0, () =>
|
|
3468
|
+
0, () => ListOpenIDConnectProviderTagsRequest$, () => ListOpenIDConnectProviderTagsResponse$
|
|
3128
3469
|
];
|
|
3129
3470
|
exports.ListOrganizationsFeatures$ = [9, n0, _LOF,
|
|
3130
|
-
0, () =>
|
|
3471
|
+
0, () => ListOrganizationsFeaturesRequest$, () => ListOrganizationsFeaturesResponse$
|
|
3131
3472
|
];
|
|
3132
3473
|
exports.ListPolicies$ = [9, n0, _LPi,
|
|
3133
|
-
0, () =>
|
|
3474
|
+
0, () => ListPoliciesRequest$, () => ListPoliciesResponse$
|
|
3134
3475
|
];
|
|
3135
3476
|
exports.ListPoliciesGrantingServiceAccess$ = [9, n0, _LPGSA,
|
|
3136
|
-
0, () =>
|
|
3477
|
+
0, () => ListPoliciesGrantingServiceAccessRequest$, () => ListPoliciesGrantingServiceAccessResponse$
|
|
3137
3478
|
];
|
|
3138
3479
|
exports.ListPolicyTags$ = [9, n0, _LPT,
|
|
3139
|
-
0, () =>
|
|
3480
|
+
0, () => ListPolicyTagsRequest$, () => ListPolicyTagsResponse$
|
|
3140
3481
|
];
|
|
3141
3482
|
exports.ListPolicyVersions$ = [9, n0, _LPV,
|
|
3142
|
-
0, () =>
|
|
3483
|
+
0, () => ListPolicyVersionsRequest$, () => ListPolicyVersionsResponse$
|
|
3143
3484
|
];
|
|
3144
3485
|
exports.ListRolePolicies$ = [9, n0, _LRP,
|
|
3145
|
-
0, () =>
|
|
3486
|
+
0, () => ListRolePoliciesRequest$, () => ListRolePoliciesResponse$
|
|
3146
3487
|
];
|
|
3147
3488
|
exports.ListRoles$ = [9, n0, _LR,
|
|
3148
|
-
0, () =>
|
|
3489
|
+
0, () => ListRolesRequest$, () => ListRolesResponse$
|
|
3149
3490
|
];
|
|
3150
3491
|
exports.ListRoleTags$ = [9, n0, _LRT,
|
|
3151
|
-
0, () =>
|
|
3492
|
+
0, () => ListRoleTagsRequest$, () => ListRoleTagsResponse$
|
|
3152
3493
|
];
|
|
3153
3494
|
exports.ListSAMLProviders$ = [9, n0, _LSAMLP,
|
|
3154
|
-
0, () =>
|
|
3495
|
+
0, () => ListSAMLProvidersRequest$, () => ListSAMLProvidersResponse$
|
|
3155
3496
|
];
|
|
3156
3497
|
exports.ListSAMLProviderTags$ = [9, n0, _LSAMLPT,
|
|
3157
|
-
0, () =>
|
|
3498
|
+
0, () => ListSAMLProviderTagsRequest$, () => ListSAMLProviderTagsResponse$
|
|
3158
3499
|
];
|
|
3159
3500
|
exports.ListServerCertificates$ = [9, n0, _LSC,
|
|
3160
|
-
0, () =>
|
|
3501
|
+
0, () => ListServerCertificatesRequest$, () => ListServerCertificatesResponse$
|
|
3161
3502
|
];
|
|
3162
3503
|
exports.ListServerCertificateTags$ = [9, n0, _LSCT,
|
|
3163
|
-
0, () =>
|
|
3504
|
+
0, () => ListServerCertificateTagsRequest$, () => ListServerCertificateTagsResponse$
|
|
3164
3505
|
];
|
|
3165
3506
|
exports.ListServiceSpecificCredentials$ = [9, n0, _LSSC,
|
|
3166
|
-
0, () =>
|
|
3507
|
+
0, () => ListServiceSpecificCredentialsRequest$, () => ListServiceSpecificCredentialsResponse$
|
|
3167
3508
|
];
|
|
3168
3509
|
exports.ListSigningCertificates$ = [9, n0, _LSCi,
|
|
3169
|
-
0, () =>
|
|
3510
|
+
0, () => ListSigningCertificatesRequest$, () => ListSigningCertificatesResponse$
|
|
3170
3511
|
];
|
|
3171
3512
|
exports.ListSSHPublicKeys$ = [9, n0, _LSSHPK,
|
|
3172
|
-
0, () =>
|
|
3513
|
+
0, () => ListSSHPublicKeysRequest$, () => ListSSHPublicKeysResponse$
|
|
3173
3514
|
];
|
|
3174
3515
|
exports.ListUserPolicies$ = [9, n0, _LUP,
|
|
3175
|
-
0, () =>
|
|
3516
|
+
0, () => ListUserPoliciesRequest$, () => ListUserPoliciesResponse$
|
|
3176
3517
|
];
|
|
3177
3518
|
exports.ListUsers$ = [9, n0, _LU,
|
|
3178
|
-
0, () =>
|
|
3519
|
+
0, () => ListUsersRequest$, () => ListUsersResponse$
|
|
3179
3520
|
];
|
|
3180
3521
|
exports.ListUserTags$ = [9, n0, _LUT,
|
|
3181
|
-
0, () =>
|
|
3522
|
+
0, () => ListUserTagsRequest$, () => ListUserTagsResponse$
|
|
3182
3523
|
];
|
|
3183
3524
|
exports.ListVirtualMFADevices$ = [9, n0, _LVMFAD,
|
|
3184
|
-
0, () =>
|
|
3525
|
+
0, () => ListVirtualMFADevicesRequest$, () => ListVirtualMFADevicesResponse$
|
|
3185
3526
|
];
|
|
3186
3527
|
exports.PutGroupPolicy$ = [9, n0, _PGP,
|
|
3187
|
-
0, () =>
|
|
3528
|
+
0, () => PutGroupPolicyRequest$, () => __Unit
|
|
3188
3529
|
];
|
|
3189
3530
|
exports.PutRolePermissionsBoundary$ = [9, n0, _PRPB,
|
|
3190
|
-
0, () =>
|
|
3531
|
+
0, () => PutRolePermissionsBoundaryRequest$, () => __Unit
|
|
3191
3532
|
];
|
|
3192
3533
|
exports.PutRolePolicy$ = [9, n0, _PRPu,
|
|
3193
|
-
0, () =>
|
|
3534
|
+
0, () => PutRolePolicyRequest$, () => __Unit
|
|
3194
3535
|
];
|
|
3195
3536
|
exports.PutUserPermissionsBoundary$ = [9, n0, _PUPB,
|
|
3196
|
-
0, () =>
|
|
3537
|
+
0, () => PutUserPermissionsBoundaryRequest$, () => __Unit
|
|
3197
3538
|
];
|
|
3198
3539
|
exports.PutUserPolicy$ = [9, n0, _PUP,
|
|
3199
|
-
0, () =>
|
|
3540
|
+
0, () => PutUserPolicyRequest$, () => __Unit
|
|
3200
3541
|
];
|
|
3201
3542
|
exports.RejectDelegationRequest$ = [9, n0, _RDR,
|
|
3202
|
-
0, () =>
|
|
3543
|
+
0, () => RejectDelegationRequestRequest$, () => __Unit
|
|
3203
3544
|
];
|
|
3204
3545
|
exports.RemoveClientIDFromOpenIDConnectProvider$ = [9, n0, _RCIDFOIDCP,
|
|
3205
|
-
0, () =>
|
|
3546
|
+
0, () => RemoveClientIDFromOpenIDConnectProviderRequest$, () => __Unit
|
|
3206
3547
|
];
|
|
3207
3548
|
exports.RemoveRoleFromInstanceProfile$ = [9, n0, _RRFIP,
|
|
3208
|
-
0, () =>
|
|
3549
|
+
0, () => RemoveRoleFromInstanceProfileRequest$, () => __Unit
|
|
3209
3550
|
];
|
|
3210
3551
|
exports.RemoveUserFromGroup$ = [9, n0, _RUFG,
|
|
3211
|
-
0, () =>
|
|
3552
|
+
0, () => RemoveUserFromGroupRequest$, () => __Unit
|
|
3212
3553
|
];
|
|
3213
3554
|
exports.ResetServiceSpecificCredential$ = [9, n0, _RSSC,
|
|
3214
|
-
0, () =>
|
|
3555
|
+
0, () => ResetServiceSpecificCredentialRequest$, () => ResetServiceSpecificCredentialResponse$
|
|
3215
3556
|
];
|
|
3216
3557
|
exports.ResyncMFADevice$ = [9, n0, _RMFAD,
|
|
3217
|
-
0, () =>
|
|
3558
|
+
0, () => ResyncMFADeviceRequest$, () => __Unit
|
|
3218
3559
|
];
|
|
3219
3560
|
exports.SendDelegationToken$ = [9, n0, _SDT,
|
|
3220
|
-
0, () =>
|
|
3561
|
+
0, () => SendDelegationTokenRequest$, () => __Unit
|
|
3221
3562
|
];
|
|
3222
3563
|
exports.SetDefaultPolicyVersion$ = [9, n0, _SDPV,
|
|
3223
|
-
0, () =>
|
|
3564
|
+
0, () => SetDefaultPolicyVersionRequest$, () => __Unit
|
|
3224
3565
|
];
|
|
3225
3566
|
exports.SetSecurityTokenServicePreferences$ = [9, n0, _SSTSP,
|
|
3226
|
-
0, () =>
|
|
3567
|
+
0, () => SetSecurityTokenServicePreferencesRequest$, () => __Unit
|
|
3227
3568
|
];
|
|
3228
3569
|
exports.SimulateCustomPolicy$ = [9, n0, _SCP,
|
|
3229
|
-
0, () =>
|
|
3570
|
+
0, () => SimulateCustomPolicyRequest$, () => SimulatePolicyResponse$
|
|
3230
3571
|
];
|
|
3231
3572
|
exports.SimulatePrincipalPolicy$ = [9, n0, _SPP,
|
|
3232
|
-
0, () =>
|
|
3573
|
+
0, () => SimulatePrincipalPolicyRequest$, () => SimulatePolicyResponse$
|
|
3233
3574
|
];
|
|
3234
3575
|
exports.TagInstanceProfile$ = [9, n0, _TIP,
|
|
3235
|
-
0, () =>
|
|
3576
|
+
0, () => TagInstanceProfileRequest$, () => __Unit
|
|
3236
3577
|
];
|
|
3237
3578
|
exports.TagMFADevice$ = [9, n0, _TMFAD,
|
|
3238
|
-
0, () =>
|
|
3579
|
+
0, () => TagMFADeviceRequest$, () => __Unit
|
|
3239
3580
|
];
|
|
3240
3581
|
exports.TagOpenIDConnectProvider$ = [9, n0, _TOIDCP,
|
|
3241
|
-
0, () =>
|
|
3582
|
+
0, () => TagOpenIDConnectProviderRequest$, () => __Unit
|
|
3242
3583
|
];
|
|
3243
3584
|
exports.TagPolicy$ = [9, n0, _TP,
|
|
3244
|
-
0, () =>
|
|
3585
|
+
0, () => TagPolicyRequest$, () => __Unit
|
|
3245
3586
|
];
|
|
3246
3587
|
exports.TagRole$ = [9, n0, _TR,
|
|
3247
|
-
0, () =>
|
|
3588
|
+
0, () => TagRoleRequest$, () => __Unit
|
|
3248
3589
|
];
|
|
3249
3590
|
exports.TagSAMLProvider$ = [9, n0, _TSAMLP,
|
|
3250
|
-
0, () =>
|
|
3591
|
+
0, () => TagSAMLProviderRequest$, () => __Unit
|
|
3251
3592
|
];
|
|
3252
3593
|
exports.TagServerCertificate$ = [9, n0, _TSC,
|
|
3253
|
-
0, () =>
|
|
3594
|
+
0, () => TagServerCertificateRequest$, () => __Unit
|
|
3254
3595
|
];
|
|
3255
3596
|
exports.TagUser$ = [9, n0, _TU,
|
|
3256
|
-
0, () =>
|
|
3597
|
+
0, () => TagUserRequest$, () => __Unit
|
|
3257
3598
|
];
|
|
3258
3599
|
exports.UntagInstanceProfile$ = [9, n0, _UIP,
|
|
3259
|
-
0, () =>
|
|
3600
|
+
0, () => UntagInstanceProfileRequest$, () => __Unit
|
|
3260
3601
|
];
|
|
3261
3602
|
exports.UntagMFADevice$ = [9, n0, _UMFAD,
|
|
3262
|
-
0, () =>
|
|
3603
|
+
0, () => UntagMFADeviceRequest$, () => __Unit
|
|
3263
3604
|
];
|
|
3264
3605
|
exports.UntagOpenIDConnectProvider$ = [9, n0, _UOIDCP,
|
|
3265
|
-
0, () =>
|
|
3606
|
+
0, () => UntagOpenIDConnectProviderRequest$, () => __Unit
|
|
3266
3607
|
];
|
|
3267
3608
|
exports.UntagPolicy$ = [9, n0, _UP,
|
|
3268
|
-
0, () =>
|
|
3609
|
+
0, () => UntagPolicyRequest$, () => __Unit
|
|
3269
3610
|
];
|
|
3270
3611
|
exports.UntagRole$ = [9, n0, _UR,
|
|
3271
|
-
0, () =>
|
|
3612
|
+
0, () => UntagRoleRequest$, () => __Unit
|
|
3272
3613
|
];
|
|
3273
3614
|
exports.UntagSAMLProvider$ = [9, n0, _USAMLP,
|
|
3274
|
-
0, () =>
|
|
3615
|
+
0, () => UntagSAMLProviderRequest$, () => __Unit
|
|
3275
3616
|
];
|
|
3276
3617
|
exports.UntagServerCertificate$ = [9, n0, _USC,
|
|
3277
|
-
0, () =>
|
|
3618
|
+
0, () => UntagServerCertificateRequest$, () => __Unit
|
|
3278
3619
|
];
|
|
3279
3620
|
exports.UntagUser$ = [9, n0, _UU,
|
|
3280
|
-
0, () =>
|
|
3621
|
+
0, () => UntagUserRequest$, () => __Unit
|
|
3281
3622
|
];
|
|
3282
3623
|
exports.UpdateAccessKey$ = [9, n0, _UAK,
|
|
3283
|
-
0, () =>
|
|
3624
|
+
0, () => UpdateAccessKeyRequest$, () => __Unit
|
|
3284
3625
|
];
|
|
3285
3626
|
exports.UpdateAccountPasswordPolicy$ = [9, n0, _UAPP,
|
|
3286
|
-
0, () =>
|
|
3627
|
+
0, () => UpdateAccountPasswordPolicyRequest$, () => __Unit
|
|
3287
3628
|
];
|
|
3288
3629
|
exports.UpdateAssumeRolePolicy$ = [9, n0, _UARP,
|
|
3289
|
-
0, () =>
|
|
3630
|
+
0, () => UpdateAssumeRolePolicyRequest$, () => __Unit
|
|
3290
3631
|
];
|
|
3291
3632
|
exports.UpdateDelegationRequest$ = [9, n0, _UDR,
|
|
3292
|
-
0, () =>
|
|
3633
|
+
0, () => UpdateDelegationRequestRequest$, () => __Unit
|
|
3293
3634
|
];
|
|
3294
3635
|
exports.UpdateGroup$ = [9, n0, _UG,
|
|
3295
|
-
0, () =>
|
|
3636
|
+
0, () => UpdateGroupRequest$, () => __Unit
|
|
3296
3637
|
];
|
|
3297
3638
|
exports.UpdateLoginProfile$ = [9, n0, _ULP,
|
|
3298
|
-
0, () =>
|
|
3639
|
+
0, () => UpdateLoginProfileRequest$, () => __Unit
|
|
3299
3640
|
];
|
|
3300
3641
|
exports.UpdateOpenIDConnectProviderThumbprint$ = [9, n0, _UOIDCPT,
|
|
3301
|
-
0, () =>
|
|
3642
|
+
0, () => UpdateOpenIDConnectProviderThumbprintRequest$, () => __Unit
|
|
3302
3643
|
];
|
|
3303
3644
|
exports.UpdateRole$ = [9, n0, _URp,
|
|
3304
|
-
0, () =>
|
|
3645
|
+
0, () => UpdateRoleRequest$, () => UpdateRoleResponse$
|
|
3305
3646
|
];
|
|
3306
3647
|
exports.UpdateRoleDescription$ = [9, n0, _URD,
|
|
3307
|
-
0, () =>
|
|
3648
|
+
0, () => UpdateRoleDescriptionRequest$, () => UpdateRoleDescriptionResponse$
|
|
3308
3649
|
];
|
|
3309
3650
|
exports.UpdateSAMLProvider$ = [9, n0, _USAMLPp,
|
|
3310
|
-
0, () =>
|
|
3651
|
+
0, () => UpdateSAMLProviderRequest$, () => UpdateSAMLProviderResponse$
|
|
3311
3652
|
];
|
|
3312
3653
|
exports.UpdateServerCertificate$ = [9, n0, _USCp,
|
|
3313
|
-
0, () =>
|
|
3654
|
+
0, () => UpdateServerCertificateRequest$, () => __Unit
|
|
3314
3655
|
];
|
|
3315
3656
|
exports.UpdateServiceSpecificCredential$ = [9, n0, _USSC,
|
|
3316
|
-
0, () =>
|
|
3657
|
+
0, () => UpdateServiceSpecificCredentialRequest$, () => __Unit
|
|
3317
3658
|
];
|
|
3318
3659
|
exports.UpdateSigningCertificate$ = [9, n0, _USCpd,
|
|
3319
|
-
0, () =>
|
|
3660
|
+
0, () => UpdateSigningCertificateRequest$, () => __Unit
|
|
3320
3661
|
];
|
|
3321
3662
|
exports.UpdateSSHPublicKey$ = [9, n0, _USSHPK,
|
|
3322
|
-
0, () =>
|
|
3663
|
+
0, () => UpdateSSHPublicKeyRequest$, () => __Unit
|
|
3323
3664
|
];
|
|
3324
3665
|
exports.UpdateUser$ = [9, n0, _UUp,
|
|
3325
|
-
0, () =>
|
|
3666
|
+
0, () => UpdateUserRequest$, () => __Unit
|
|
3326
3667
|
];
|
|
3327
3668
|
exports.UploadServerCertificate$ = [9, n0, _USCpl,
|
|
3328
|
-
0, () =>
|
|
3669
|
+
0, () => UploadServerCertificateRequest$, () => UploadServerCertificateResponse$
|
|
3329
3670
|
];
|
|
3330
3671
|
exports.UploadSigningCertificate$ = [9, n0, _USCplo,
|
|
3331
|
-
0, () =>
|
|
3672
|
+
0, () => UploadSigningCertificateRequest$, () => UploadSigningCertificateResponse$
|
|
3332
3673
|
];
|
|
3333
3674
|
exports.UploadSSHPublicKey$ = [9, n0, _USSHPKp,
|
|
3334
|
-
0, () =>
|
|
3675
|
+
0, () => UploadSSHPublicKeyRequest$, () => UploadSSHPublicKeyResponse$
|
|
3335
3676
|
];
|