@cdklabs/cdk-ssm-documents 0.0.65 → 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 +6 -6
- 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 +8 -8
- 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 +222 -242
- 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 +35 -55
- 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 +419 -275
- package/node_modules/@aws-sdk/client-cloudwatch/package.json +9 -9
- 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 +2875 -2885
- 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 +6885 -4554
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelCapacityReservationCommand.d.ts +16 -10
- package/node_modules/@aws-sdk/client-ec2/package.json +11 -11
- 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/package.json +10 -10
- 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 +12 -12
- 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 +20 -20
- 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 +9 -9
- 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 +15 -15
- 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 +9 -9
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +45 -50
- 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/submodules/client/util-endpoints/lib/aws/partitions.js +276 -1
- package/node_modules/@aws-sdk/core/package.json +8 -8
- package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +4 -6
- package/node_modules/@aws-sdk/credential-provider-env/package.json +6 -6
- 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 +6 -6
- 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 +13 -13
- package/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +31 -33
- package/node_modules/@aws-sdk/credential-provider-login/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +16 -18
- package/node_modules/@aws-sdk/credential-provider-node/package.json +11 -11
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +11 -13
- package/node_modules/@aws-sdk/credential-provider-process/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +22 -24
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BGYXHf8s.js +3 -0
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +8 -8
- 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 +7 -7
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +18 -23
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +5 -5
- package/node_modules/@aws-sdk/middleware-sdk-ec2/dist-cjs/index.js +11 -13
- package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +6 -6
- 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 +9 -11
- package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-cjs/index.js +9 -11
- package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +5 -5
- 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 +9 -8
- 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 +5 -5
- package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +26 -28
- package/node_modules/@aws-sdk/token-providers/package.json +7 -7
- package/node_modules/@aws-sdk/types/dist-cjs/index.js +7 -8
- package/node_modules/@aws-sdk/types/package.json +4 -4
- package/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +0 -2
- package/node_modules/@aws-sdk/util-locate-window/package.json +4 -4
- 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/@aws-sdk/xml-builder/node_modules/strnum/package.json +5 -4
- package/node_modules/@aws-sdk/xml-builder/package.json +4 -4
- package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +518 -371
- package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +1 -1
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +10 -2
- 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/protocols/HttpProtocol.js +10 -2
- 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/package.json +1 -1
- package/node_modules/@smithy/credential-provider-imds/package.json +2 -2
- package/node_modules/@smithy/fetch-http-handler/package.json +2 -2
- package/node_modules/@smithy/middleware-compression/package.json +2 -2
- package/node_modules/@smithy/node-http-handler/package.json +2 -2
- package/node_modules/@smithy/signature-v4/package.json +2 -2
- package/node_modules/anynum/package.json +2 -2
- 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
|
@@ -1,18 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
var __exportStar = (m, e) => { Object.assign(e, m); };
|
|
2
|
+
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
|
+
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
+
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = Command;
|
|
6
|
+
exports.__Client = Client;
|
|
7
|
+
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
+
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
+
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
+
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
+
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
+
const { resolveHttpAuthSchemeConfig, defaultIAMHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
|
|
13
|
+
const { getRuntimeConfig } = require("./runtimeConfig");
|
|
14
|
+
const { AcceptDelegationRequest$, AddClientIDToOpenIDConnectProvider$, AddRoleToInstanceProfile$, AddUserToGroup$, AssociateDelegationRequest$, AttachGroupPolicy$, AttachRolePolicy$, AttachUserPolicy$, ChangePassword$, CreateAccessKey$, CreateAccountAlias$, CreateDelegationRequest$, CreateGroup$, CreateInstanceProfile$, CreateLoginProfile$, CreateOpenIDConnectProvider$, CreatePolicy$, CreatePolicyVersion$, CreateRole$, CreateSAMLProvider$, CreateServiceLinkedRole$, CreateServiceSpecificCredential$, CreateUser$, CreateVirtualMFADevice$, DeactivateMFADevice$, DeleteAccessKey$, DeleteAccountAlias$, DeleteAccountPasswordPolicy$, DeleteGroup$, DeleteGroupPolicy$, DeleteInstanceProfile$, DeleteLoginProfile$, DeleteOpenIDConnectProvider$, DeletePolicy$, DeletePolicyVersion$, DeleteRole$, DeleteRolePermissionsBoundary$, DeleteRolePolicy$, DeleteSAMLProvider$, DeleteServerCertificate$, DeleteServiceLinkedRole$, DeleteServiceSpecificCredential$, DeleteSigningCertificate$, DeleteSSHPublicKey$, DeleteUser$, DeleteUserPermissionsBoundary$, DeleteUserPolicy$, DeleteVirtualMFADevice$, DetachGroupPolicy$, DetachRolePolicy$, DetachUserPolicy$, DisableOrganizationsRootCredentialsManagement$, DisableOrganizationsRootSessions$, DisableOutboundWebIdentityFederation$, EnableMFADevice$, EnableOrganizationsRootCredentialsManagement$, EnableOrganizationsRootSessions$, EnableOutboundWebIdentityFederation$, GenerateCredentialReport$, GenerateOrganizationsAccessReport$, GenerateServiceLastAccessedDetails$, GetAccessKeyLastUsed$, GetAccountAuthorizationDetails$, GetAccountPasswordPolicy$, GetAccountSummary$, GetContextKeysForCustomPolicy$, GetContextKeysForPrincipalPolicy$, GetCredentialReport$, GetDelegationRequest$, GetGroup$, GetGroupPolicy$, GetHumanReadableSummary$, GetInstanceProfile$, GetLoginProfile$, GetMFADevice$, GetOpenIDConnectProvider$, GetOrganizationsAccessReport$, GetOutboundWebIdentityFederationInfo$, GetPolicy$, GetPolicyVersion$, GetRole$, GetRolePolicy$, GetSAMLProvider$, GetServerCertificate$, GetServiceLastAccessedDetails$, GetServiceLastAccessedDetailsWithEntities$, GetServiceLinkedRoleDeletionStatus$, GetSSHPublicKey$, GetUser$, GetUserPolicy$, ListAccessKeys$, ListAccountAliases$, ListAttachedGroupPolicies$, ListAttachedRolePolicies$, ListAttachedUserPolicies$, ListDelegationRequests$, ListEntitiesForPolicy$, ListGroupPolicies$, ListGroups$, ListGroupsForUser$, ListInstanceProfiles$, ListInstanceProfilesForRole$, ListInstanceProfileTags$, ListMFADevices$, ListMFADeviceTags$, ListOpenIDConnectProviders$, ListOpenIDConnectProviderTags$, ListOrganizationsFeatures$, ListPolicies$, ListPoliciesGrantingServiceAccess$, ListPolicyTags$, ListPolicyVersions$, ListRolePolicies$, ListRoles$, ListRoleTags$, ListSAMLProviders$, ListSAMLProviderTags$, ListServerCertificates$, ListServerCertificateTags$, ListServiceSpecificCredentials$, ListSigningCertificates$, ListSSHPublicKeys$, ListUserPolicies$, ListUsers$, ListUserTags$, ListVirtualMFADevices$, PutGroupPolicy$, PutRolePermissionsBoundary$, PutRolePolicy$, PutUserPermissionsBoundary$, PutUserPolicy$, RejectDelegationRequest$, RemoveClientIDFromOpenIDConnectProvider$, RemoveRoleFromInstanceProfile$, RemoveUserFromGroup$, ResetServiceSpecificCredential$, ResyncMFADevice$, SendDelegationToken$, SetDefaultPolicyVersion$, SetSecurityTokenServicePreferences$, SimulateCustomPolicy$, SimulatePrincipalPolicy$, TagInstanceProfile$, TagMFADevice$, TagOpenIDConnectProvider$, TagPolicy$, TagRole$, TagSAMLProvider$, TagServerCertificate$, TagUser$, UntagInstanceProfile$, UntagMFADevice$, UntagOpenIDConnectProvider$, UntagPolicy$, UntagRole$, UntagSAMLProvider$, UntagServerCertificate$, UntagUser$, UpdateAccessKey$, UpdateAccountPasswordPolicy$, UpdateAssumeRolePolicy$, UpdateDelegationRequest$, UpdateGroup$, UpdateLoginProfile$, UpdateOpenIDConnectProviderThumbprint$, UpdateRole$, UpdateRoleDescription$, UpdateSAMLProvider$, UpdateServerCertificate$, UpdateServiceSpecificCredential$, UpdateSigningCertificate$, UpdateSSHPublicKey$, UpdateUser$, UploadServerCertificate$, UploadSigningCertificate$, UploadSSHPublicKey$ } = require("./schemas/schemas_0");
|
|
15
|
+
__exportStar(require("./schemas/schemas_0"), exports);
|
|
16
|
+
__exportStar(require("./models/errors"), exports);
|
|
17
|
+
const { IAMServiceException } = require("./models/IAMServiceException");
|
|
18
|
+
exports.IAMServiceException = IAMServiceException;
|
|
16
19
|
|
|
17
20
|
const resolveClientEndpointParameters = (options) => {
|
|
18
21
|
return Object.assign(options, {
|
|
@@ -68,2324 +71,2324 @@ const resolveHttpAuthRuntimeConfig = (config) => {
|
|
|
68
71
|
};
|
|
69
72
|
|
|
70
73
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
71
|
-
const extensionConfiguration = Object.assign(
|
|
74
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
72
75
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
73
|
-
return Object.assign(runtimeConfig,
|
|
76
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
74
77
|
};
|
|
75
78
|
|
|
76
|
-
class IAMClient extends
|
|
79
|
+
class IAMClient extends Client {
|
|
77
80
|
config;
|
|
78
81
|
constructor(...[configuration]) {
|
|
79
|
-
const _config_0 =
|
|
82
|
+
const _config_0 = getRuntimeConfig(configuration || {});
|
|
80
83
|
super(_config_0);
|
|
81
84
|
this.initConfig = _config_0;
|
|
82
85
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
83
|
-
const _config_2 =
|
|
84
|
-
const _config_3 =
|
|
85
|
-
const _config_4 =
|
|
86
|
-
const _config_5 =
|
|
87
|
-
const _config_6 =
|
|
88
|
-
const _config_7 =
|
|
86
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
87
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
88
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
89
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
90
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
91
|
+
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
89
92
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
90
93
|
this.config = _config_8;
|
|
91
|
-
this.middlewareStack.use(
|
|
92
|
-
this.middlewareStack.use(
|
|
93
|
-
this.middlewareStack.use(
|
|
94
|
-
this.middlewareStack.use(
|
|
95
|
-
this.middlewareStack.use(
|
|
96
|
-
this.middlewareStack.use(
|
|
97
|
-
this.middlewareStack.use(
|
|
98
|
-
this.middlewareStack.use(
|
|
99
|
-
httpAuthSchemeParametersProvider:
|
|
100
|
-
identityProviderConfigProvider: async (config) => new
|
|
94
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
95
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
96
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
97
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
98
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
99
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
100
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
101
|
+
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
102
|
+
httpAuthSchemeParametersProvider: defaultIAMHttpAuthSchemeParametersProvider,
|
|
103
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
101
104
|
"aws.auth#sigv4": config.credentials,
|
|
102
105
|
}),
|
|
103
106
|
}));
|
|
104
|
-
this.middlewareStack.use(
|
|
107
|
+
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
105
108
|
}
|
|
106
109
|
destroy() {
|
|
107
110
|
super.destroy();
|
|
108
111
|
}
|
|
109
112
|
}
|
|
110
113
|
|
|
111
|
-
class AcceptDelegationRequestCommand extends
|
|
114
|
+
class AcceptDelegationRequestCommand extends Command
|
|
112
115
|
.classBuilder()
|
|
113
116
|
.ep(commonParams)
|
|
114
117
|
.m(function (Command, cs, config, o) {
|
|
115
|
-
return [
|
|
118
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
116
119
|
})
|
|
117
120
|
.s("AWSIdentityManagementV20100508", "AcceptDelegationRequest", {})
|
|
118
121
|
.n("IAMClient", "AcceptDelegationRequestCommand")
|
|
119
|
-
.sc(
|
|
122
|
+
.sc(AcceptDelegationRequest$)
|
|
120
123
|
.build() {
|
|
121
124
|
}
|
|
122
125
|
|
|
123
|
-
class AddClientIDToOpenIDConnectProviderCommand extends
|
|
126
|
+
class AddClientIDToOpenIDConnectProviderCommand extends Command
|
|
124
127
|
.classBuilder()
|
|
125
128
|
.ep(commonParams)
|
|
126
129
|
.m(function (Command, cs, config, o) {
|
|
127
|
-
return [
|
|
130
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
128
131
|
})
|
|
129
132
|
.s("AWSIdentityManagementV20100508", "AddClientIDToOpenIDConnectProvider", {})
|
|
130
133
|
.n("IAMClient", "AddClientIDToOpenIDConnectProviderCommand")
|
|
131
|
-
.sc(
|
|
134
|
+
.sc(AddClientIDToOpenIDConnectProvider$)
|
|
132
135
|
.build() {
|
|
133
136
|
}
|
|
134
137
|
|
|
135
|
-
class AddRoleToInstanceProfileCommand extends
|
|
138
|
+
class AddRoleToInstanceProfileCommand extends Command
|
|
136
139
|
.classBuilder()
|
|
137
140
|
.ep(commonParams)
|
|
138
141
|
.m(function (Command, cs, config, o) {
|
|
139
|
-
return [
|
|
142
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
140
143
|
})
|
|
141
144
|
.s("AWSIdentityManagementV20100508", "AddRoleToInstanceProfile", {})
|
|
142
145
|
.n("IAMClient", "AddRoleToInstanceProfileCommand")
|
|
143
|
-
.sc(
|
|
146
|
+
.sc(AddRoleToInstanceProfile$)
|
|
144
147
|
.build() {
|
|
145
148
|
}
|
|
146
149
|
|
|
147
|
-
class AddUserToGroupCommand extends
|
|
150
|
+
class AddUserToGroupCommand extends Command
|
|
148
151
|
.classBuilder()
|
|
149
152
|
.ep(commonParams)
|
|
150
153
|
.m(function (Command, cs, config, o) {
|
|
151
|
-
return [
|
|
154
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
152
155
|
})
|
|
153
156
|
.s("AWSIdentityManagementV20100508", "AddUserToGroup", {})
|
|
154
157
|
.n("IAMClient", "AddUserToGroupCommand")
|
|
155
|
-
.sc(
|
|
158
|
+
.sc(AddUserToGroup$)
|
|
156
159
|
.build() {
|
|
157
160
|
}
|
|
158
161
|
|
|
159
|
-
class AssociateDelegationRequestCommand extends
|
|
162
|
+
class AssociateDelegationRequestCommand extends Command
|
|
160
163
|
.classBuilder()
|
|
161
164
|
.ep(commonParams)
|
|
162
165
|
.m(function (Command, cs, config, o) {
|
|
163
|
-
return [
|
|
166
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
164
167
|
})
|
|
165
168
|
.s("AWSIdentityManagementV20100508", "AssociateDelegationRequest", {})
|
|
166
169
|
.n("IAMClient", "AssociateDelegationRequestCommand")
|
|
167
|
-
.sc(
|
|
170
|
+
.sc(AssociateDelegationRequest$)
|
|
168
171
|
.build() {
|
|
169
172
|
}
|
|
170
173
|
|
|
171
|
-
class AttachGroupPolicyCommand extends
|
|
174
|
+
class AttachGroupPolicyCommand extends Command
|
|
172
175
|
.classBuilder()
|
|
173
176
|
.ep(commonParams)
|
|
174
177
|
.m(function (Command, cs, config, o) {
|
|
175
|
-
return [
|
|
178
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
176
179
|
})
|
|
177
180
|
.s("AWSIdentityManagementV20100508", "AttachGroupPolicy", {})
|
|
178
181
|
.n("IAMClient", "AttachGroupPolicyCommand")
|
|
179
|
-
.sc(
|
|
182
|
+
.sc(AttachGroupPolicy$)
|
|
180
183
|
.build() {
|
|
181
184
|
}
|
|
182
185
|
|
|
183
|
-
class AttachRolePolicyCommand extends
|
|
186
|
+
class AttachRolePolicyCommand extends Command
|
|
184
187
|
.classBuilder()
|
|
185
188
|
.ep(commonParams)
|
|
186
189
|
.m(function (Command, cs, config, o) {
|
|
187
|
-
return [
|
|
190
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
188
191
|
})
|
|
189
192
|
.s("AWSIdentityManagementV20100508", "AttachRolePolicy", {})
|
|
190
193
|
.n("IAMClient", "AttachRolePolicyCommand")
|
|
191
|
-
.sc(
|
|
194
|
+
.sc(AttachRolePolicy$)
|
|
192
195
|
.build() {
|
|
193
196
|
}
|
|
194
197
|
|
|
195
|
-
class AttachUserPolicyCommand extends
|
|
198
|
+
class AttachUserPolicyCommand extends Command
|
|
196
199
|
.classBuilder()
|
|
197
200
|
.ep(commonParams)
|
|
198
201
|
.m(function (Command, cs, config, o) {
|
|
199
|
-
return [
|
|
202
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
200
203
|
})
|
|
201
204
|
.s("AWSIdentityManagementV20100508", "AttachUserPolicy", {})
|
|
202
205
|
.n("IAMClient", "AttachUserPolicyCommand")
|
|
203
|
-
.sc(
|
|
206
|
+
.sc(AttachUserPolicy$)
|
|
204
207
|
.build() {
|
|
205
208
|
}
|
|
206
209
|
|
|
207
|
-
class ChangePasswordCommand extends
|
|
210
|
+
class ChangePasswordCommand extends Command
|
|
208
211
|
.classBuilder()
|
|
209
212
|
.ep(commonParams)
|
|
210
213
|
.m(function (Command, cs, config, o) {
|
|
211
|
-
return [
|
|
214
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
212
215
|
})
|
|
213
216
|
.s("AWSIdentityManagementV20100508", "ChangePassword", {})
|
|
214
217
|
.n("IAMClient", "ChangePasswordCommand")
|
|
215
|
-
.sc(
|
|
218
|
+
.sc(ChangePassword$)
|
|
216
219
|
.build() {
|
|
217
220
|
}
|
|
218
221
|
|
|
219
|
-
class CreateAccessKeyCommand extends
|
|
222
|
+
class CreateAccessKeyCommand extends Command
|
|
220
223
|
.classBuilder()
|
|
221
224
|
.ep(commonParams)
|
|
222
225
|
.m(function (Command, cs, config, o) {
|
|
223
|
-
return [
|
|
226
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
224
227
|
})
|
|
225
228
|
.s("AWSIdentityManagementV20100508", "CreateAccessKey", {})
|
|
226
229
|
.n("IAMClient", "CreateAccessKeyCommand")
|
|
227
|
-
.sc(
|
|
230
|
+
.sc(CreateAccessKey$)
|
|
228
231
|
.build() {
|
|
229
232
|
}
|
|
230
233
|
|
|
231
|
-
class CreateAccountAliasCommand extends
|
|
234
|
+
class CreateAccountAliasCommand extends Command
|
|
232
235
|
.classBuilder()
|
|
233
236
|
.ep(commonParams)
|
|
234
237
|
.m(function (Command, cs, config, o) {
|
|
235
|
-
return [
|
|
238
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
236
239
|
})
|
|
237
240
|
.s("AWSIdentityManagementV20100508", "CreateAccountAlias", {})
|
|
238
241
|
.n("IAMClient", "CreateAccountAliasCommand")
|
|
239
|
-
.sc(
|
|
242
|
+
.sc(CreateAccountAlias$)
|
|
240
243
|
.build() {
|
|
241
244
|
}
|
|
242
245
|
|
|
243
|
-
class CreateDelegationRequestCommand extends
|
|
246
|
+
class CreateDelegationRequestCommand extends Command
|
|
244
247
|
.classBuilder()
|
|
245
248
|
.ep(commonParams)
|
|
246
249
|
.m(function (Command, cs, config, o) {
|
|
247
|
-
return [
|
|
250
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
248
251
|
})
|
|
249
252
|
.s("AWSIdentityManagementV20100508", "CreateDelegationRequest", {})
|
|
250
253
|
.n("IAMClient", "CreateDelegationRequestCommand")
|
|
251
|
-
.sc(
|
|
254
|
+
.sc(CreateDelegationRequest$)
|
|
252
255
|
.build() {
|
|
253
256
|
}
|
|
254
257
|
|
|
255
|
-
class CreateGroupCommand extends
|
|
258
|
+
class CreateGroupCommand extends Command
|
|
256
259
|
.classBuilder()
|
|
257
260
|
.ep(commonParams)
|
|
258
261
|
.m(function (Command, cs, config, o) {
|
|
259
|
-
return [
|
|
262
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
260
263
|
})
|
|
261
264
|
.s("AWSIdentityManagementV20100508", "CreateGroup", {})
|
|
262
265
|
.n("IAMClient", "CreateGroupCommand")
|
|
263
|
-
.sc(
|
|
266
|
+
.sc(CreateGroup$)
|
|
264
267
|
.build() {
|
|
265
268
|
}
|
|
266
269
|
|
|
267
|
-
class CreateInstanceProfileCommand extends
|
|
270
|
+
class CreateInstanceProfileCommand extends Command
|
|
268
271
|
.classBuilder()
|
|
269
272
|
.ep(commonParams)
|
|
270
273
|
.m(function (Command, cs, config, o) {
|
|
271
|
-
return [
|
|
274
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
272
275
|
})
|
|
273
276
|
.s("AWSIdentityManagementV20100508", "CreateInstanceProfile", {})
|
|
274
277
|
.n("IAMClient", "CreateInstanceProfileCommand")
|
|
275
|
-
.sc(
|
|
278
|
+
.sc(CreateInstanceProfile$)
|
|
276
279
|
.build() {
|
|
277
280
|
}
|
|
278
281
|
|
|
279
|
-
class CreateLoginProfileCommand extends
|
|
282
|
+
class CreateLoginProfileCommand extends Command
|
|
280
283
|
.classBuilder()
|
|
281
284
|
.ep(commonParams)
|
|
282
285
|
.m(function (Command, cs, config, o) {
|
|
283
|
-
return [
|
|
286
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
284
287
|
})
|
|
285
288
|
.s("AWSIdentityManagementV20100508", "CreateLoginProfile", {})
|
|
286
289
|
.n("IAMClient", "CreateLoginProfileCommand")
|
|
287
|
-
.sc(
|
|
290
|
+
.sc(CreateLoginProfile$)
|
|
288
291
|
.build() {
|
|
289
292
|
}
|
|
290
293
|
|
|
291
|
-
class CreateOpenIDConnectProviderCommand extends
|
|
294
|
+
class CreateOpenIDConnectProviderCommand extends Command
|
|
292
295
|
.classBuilder()
|
|
293
296
|
.ep(commonParams)
|
|
294
297
|
.m(function (Command, cs, config, o) {
|
|
295
|
-
return [
|
|
298
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
296
299
|
})
|
|
297
300
|
.s("AWSIdentityManagementV20100508", "CreateOpenIDConnectProvider", {})
|
|
298
301
|
.n("IAMClient", "CreateOpenIDConnectProviderCommand")
|
|
299
|
-
.sc(
|
|
302
|
+
.sc(CreateOpenIDConnectProvider$)
|
|
300
303
|
.build() {
|
|
301
304
|
}
|
|
302
305
|
|
|
303
|
-
class CreatePolicyCommand extends
|
|
306
|
+
class CreatePolicyCommand extends Command
|
|
304
307
|
.classBuilder()
|
|
305
308
|
.ep(commonParams)
|
|
306
309
|
.m(function (Command, cs, config, o) {
|
|
307
|
-
return [
|
|
310
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
308
311
|
})
|
|
309
312
|
.s("AWSIdentityManagementV20100508", "CreatePolicy", {})
|
|
310
313
|
.n("IAMClient", "CreatePolicyCommand")
|
|
311
|
-
.sc(
|
|
314
|
+
.sc(CreatePolicy$)
|
|
312
315
|
.build() {
|
|
313
316
|
}
|
|
314
317
|
|
|
315
|
-
class CreatePolicyVersionCommand extends
|
|
318
|
+
class CreatePolicyVersionCommand extends Command
|
|
316
319
|
.classBuilder()
|
|
317
320
|
.ep(commonParams)
|
|
318
321
|
.m(function (Command, cs, config, o) {
|
|
319
|
-
return [
|
|
322
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
320
323
|
})
|
|
321
324
|
.s("AWSIdentityManagementV20100508", "CreatePolicyVersion", {})
|
|
322
325
|
.n("IAMClient", "CreatePolicyVersionCommand")
|
|
323
|
-
.sc(
|
|
326
|
+
.sc(CreatePolicyVersion$)
|
|
324
327
|
.build() {
|
|
325
328
|
}
|
|
326
329
|
|
|
327
|
-
class CreateRoleCommand extends
|
|
330
|
+
class CreateRoleCommand extends Command
|
|
328
331
|
.classBuilder()
|
|
329
332
|
.ep(commonParams)
|
|
330
333
|
.m(function (Command, cs, config, o) {
|
|
331
|
-
return [
|
|
334
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
332
335
|
})
|
|
333
336
|
.s("AWSIdentityManagementV20100508", "CreateRole", {})
|
|
334
337
|
.n("IAMClient", "CreateRoleCommand")
|
|
335
|
-
.sc(
|
|
338
|
+
.sc(CreateRole$)
|
|
336
339
|
.build() {
|
|
337
340
|
}
|
|
338
341
|
|
|
339
|
-
class CreateSAMLProviderCommand extends
|
|
342
|
+
class CreateSAMLProviderCommand extends Command
|
|
340
343
|
.classBuilder()
|
|
341
344
|
.ep(commonParams)
|
|
342
345
|
.m(function (Command, cs, config, o) {
|
|
343
|
-
return [
|
|
346
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
344
347
|
})
|
|
345
348
|
.s("AWSIdentityManagementV20100508", "CreateSAMLProvider", {})
|
|
346
349
|
.n("IAMClient", "CreateSAMLProviderCommand")
|
|
347
|
-
.sc(
|
|
350
|
+
.sc(CreateSAMLProvider$)
|
|
348
351
|
.build() {
|
|
349
352
|
}
|
|
350
353
|
|
|
351
|
-
class CreateServiceLinkedRoleCommand extends
|
|
354
|
+
class CreateServiceLinkedRoleCommand extends Command
|
|
352
355
|
.classBuilder()
|
|
353
356
|
.ep(commonParams)
|
|
354
357
|
.m(function (Command, cs, config, o) {
|
|
355
|
-
return [
|
|
358
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
356
359
|
})
|
|
357
360
|
.s("AWSIdentityManagementV20100508", "CreateServiceLinkedRole", {})
|
|
358
361
|
.n("IAMClient", "CreateServiceLinkedRoleCommand")
|
|
359
|
-
.sc(
|
|
362
|
+
.sc(CreateServiceLinkedRole$)
|
|
360
363
|
.build() {
|
|
361
364
|
}
|
|
362
365
|
|
|
363
|
-
class CreateServiceSpecificCredentialCommand extends
|
|
366
|
+
class CreateServiceSpecificCredentialCommand extends Command
|
|
364
367
|
.classBuilder()
|
|
365
368
|
.ep(commonParams)
|
|
366
369
|
.m(function (Command, cs, config, o) {
|
|
367
|
-
return [
|
|
370
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
368
371
|
})
|
|
369
372
|
.s("AWSIdentityManagementV20100508", "CreateServiceSpecificCredential", {})
|
|
370
373
|
.n("IAMClient", "CreateServiceSpecificCredentialCommand")
|
|
371
|
-
.sc(
|
|
374
|
+
.sc(CreateServiceSpecificCredential$)
|
|
372
375
|
.build() {
|
|
373
376
|
}
|
|
374
377
|
|
|
375
|
-
class CreateUserCommand extends
|
|
378
|
+
class CreateUserCommand extends Command
|
|
376
379
|
.classBuilder()
|
|
377
380
|
.ep(commonParams)
|
|
378
381
|
.m(function (Command, cs, config, o) {
|
|
379
|
-
return [
|
|
382
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
380
383
|
})
|
|
381
384
|
.s("AWSIdentityManagementV20100508", "CreateUser", {})
|
|
382
385
|
.n("IAMClient", "CreateUserCommand")
|
|
383
|
-
.sc(
|
|
386
|
+
.sc(CreateUser$)
|
|
384
387
|
.build() {
|
|
385
388
|
}
|
|
386
389
|
|
|
387
|
-
class CreateVirtualMFADeviceCommand extends
|
|
390
|
+
class CreateVirtualMFADeviceCommand extends Command
|
|
388
391
|
.classBuilder()
|
|
389
392
|
.ep(commonParams)
|
|
390
393
|
.m(function (Command, cs, config, o) {
|
|
391
|
-
return [
|
|
394
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
392
395
|
})
|
|
393
396
|
.s("AWSIdentityManagementV20100508", "CreateVirtualMFADevice", {})
|
|
394
397
|
.n("IAMClient", "CreateVirtualMFADeviceCommand")
|
|
395
|
-
.sc(
|
|
398
|
+
.sc(CreateVirtualMFADevice$)
|
|
396
399
|
.build() {
|
|
397
400
|
}
|
|
398
401
|
|
|
399
|
-
class DeactivateMFADeviceCommand extends
|
|
402
|
+
class DeactivateMFADeviceCommand extends Command
|
|
400
403
|
.classBuilder()
|
|
401
404
|
.ep(commonParams)
|
|
402
405
|
.m(function (Command, cs, config, o) {
|
|
403
|
-
return [
|
|
406
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
404
407
|
})
|
|
405
408
|
.s("AWSIdentityManagementV20100508", "DeactivateMFADevice", {})
|
|
406
409
|
.n("IAMClient", "DeactivateMFADeviceCommand")
|
|
407
|
-
.sc(
|
|
410
|
+
.sc(DeactivateMFADevice$)
|
|
408
411
|
.build() {
|
|
409
412
|
}
|
|
410
413
|
|
|
411
|
-
class DeleteAccessKeyCommand extends
|
|
414
|
+
class DeleteAccessKeyCommand extends Command
|
|
412
415
|
.classBuilder()
|
|
413
416
|
.ep(commonParams)
|
|
414
417
|
.m(function (Command, cs, config, o) {
|
|
415
|
-
return [
|
|
418
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
416
419
|
})
|
|
417
420
|
.s("AWSIdentityManagementV20100508", "DeleteAccessKey", {})
|
|
418
421
|
.n("IAMClient", "DeleteAccessKeyCommand")
|
|
419
|
-
.sc(
|
|
422
|
+
.sc(DeleteAccessKey$)
|
|
420
423
|
.build() {
|
|
421
424
|
}
|
|
422
425
|
|
|
423
|
-
class DeleteAccountAliasCommand extends
|
|
426
|
+
class DeleteAccountAliasCommand extends Command
|
|
424
427
|
.classBuilder()
|
|
425
428
|
.ep(commonParams)
|
|
426
429
|
.m(function (Command, cs, config, o) {
|
|
427
|
-
return [
|
|
430
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
428
431
|
})
|
|
429
432
|
.s("AWSIdentityManagementV20100508", "DeleteAccountAlias", {})
|
|
430
433
|
.n("IAMClient", "DeleteAccountAliasCommand")
|
|
431
|
-
.sc(
|
|
434
|
+
.sc(DeleteAccountAlias$)
|
|
432
435
|
.build() {
|
|
433
436
|
}
|
|
434
437
|
|
|
435
|
-
class DeleteAccountPasswordPolicyCommand extends
|
|
438
|
+
class DeleteAccountPasswordPolicyCommand extends Command
|
|
436
439
|
.classBuilder()
|
|
437
440
|
.ep(commonParams)
|
|
438
441
|
.m(function (Command, cs, config, o) {
|
|
439
|
-
return [
|
|
442
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
440
443
|
})
|
|
441
444
|
.s("AWSIdentityManagementV20100508", "DeleteAccountPasswordPolicy", {})
|
|
442
445
|
.n("IAMClient", "DeleteAccountPasswordPolicyCommand")
|
|
443
|
-
.sc(
|
|
446
|
+
.sc(DeleteAccountPasswordPolicy$)
|
|
444
447
|
.build() {
|
|
445
448
|
}
|
|
446
449
|
|
|
447
|
-
class DeleteGroupCommand extends
|
|
450
|
+
class DeleteGroupCommand extends Command
|
|
448
451
|
.classBuilder()
|
|
449
452
|
.ep(commonParams)
|
|
450
453
|
.m(function (Command, cs, config, o) {
|
|
451
|
-
return [
|
|
454
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
452
455
|
})
|
|
453
456
|
.s("AWSIdentityManagementV20100508", "DeleteGroup", {})
|
|
454
457
|
.n("IAMClient", "DeleteGroupCommand")
|
|
455
|
-
.sc(
|
|
458
|
+
.sc(DeleteGroup$)
|
|
456
459
|
.build() {
|
|
457
460
|
}
|
|
458
461
|
|
|
459
|
-
class DeleteGroupPolicyCommand extends
|
|
462
|
+
class DeleteGroupPolicyCommand extends Command
|
|
460
463
|
.classBuilder()
|
|
461
464
|
.ep(commonParams)
|
|
462
465
|
.m(function (Command, cs, config, o) {
|
|
463
|
-
return [
|
|
466
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
464
467
|
})
|
|
465
468
|
.s("AWSIdentityManagementV20100508", "DeleteGroupPolicy", {})
|
|
466
469
|
.n("IAMClient", "DeleteGroupPolicyCommand")
|
|
467
|
-
.sc(
|
|
470
|
+
.sc(DeleteGroupPolicy$)
|
|
468
471
|
.build() {
|
|
469
472
|
}
|
|
470
473
|
|
|
471
|
-
class DeleteInstanceProfileCommand extends
|
|
474
|
+
class DeleteInstanceProfileCommand extends Command
|
|
472
475
|
.classBuilder()
|
|
473
476
|
.ep(commonParams)
|
|
474
477
|
.m(function (Command, cs, config, o) {
|
|
475
|
-
return [
|
|
478
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
476
479
|
})
|
|
477
480
|
.s("AWSIdentityManagementV20100508", "DeleteInstanceProfile", {})
|
|
478
481
|
.n("IAMClient", "DeleteInstanceProfileCommand")
|
|
479
|
-
.sc(
|
|
482
|
+
.sc(DeleteInstanceProfile$)
|
|
480
483
|
.build() {
|
|
481
484
|
}
|
|
482
485
|
|
|
483
|
-
class DeleteLoginProfileCommand extends
|
|
486
|
+
class DeleteLoginProfileCommand extends Command
|
|
484
487
|
.classBuilder()
|
|
485
488
|
.ep(commonParams)
|
|
486
489
|
.m(function (Command, cs, config, o) {
|
|
487
|
-
return [
|
|
490
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
488
491
|
})
|
|
489
492
|
.s("AWSIdentityManagementV20100508", "DeleteLoginProfile", {})
|
|
490
493
|
.n("IAMClient", "DeleteLoginProfileCommand")
|
|
491
|
-
.sc(
|
|
494
|
+
.sc(DeleteLoginProfile$)
|
|
492
495
|
.build() {
|
|
493
496
|
}
|
|
494
497
|
|
|
495
|
-
class DeleteOpenIDConnectProviderCommand extends
|
|
498
|
+
class DeleteOpenIDConnectProviderCommand extends Command
|
|
496
499
|
.classBuilder()
|
|
497
500
|
.ep(commonParams)
|
|
498
501
|
.m(function (Command, cs, config, o) {
|
|
499
|
-
return [
|
|
502
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
500
503
|
})
|
|
501
504
|
.s("AWSIdentityManagementV20100508", "DeleteOpenIDConnectProvider", {})
|
|
502
505
|
.n("IAMClient", "DeleteOpenIDConnectProviderCommand")
|
|
503
|
-
.sc(
|
|
506
|
+
.sc(DeleteOpenIDConnectProvider$)
|
|
504
507
|
.build() {
|
|
505
508
|
}
|
|
506
509
|
|
|
507
|
-
class DeletePolicyCommand extends
|
|
510
|
+
class DeletePolicyCommand extends Command
|
|
508
511
|
.classBuilder()
|
|
509
512
|
.ep(commonParams)
|
|
510
513
|
.m(function (Command, cs, config, o) {
|
|
511
|
-
return [
|
|
514
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
512
515
|
})
|
|
513
516
|
.s("AWSIdentityManagementV20100508", "DeletePolicy", {})
|
|
514
517
|
.n("IAMClient", "DeletePolicyCommand")
|
|
515
|
-
.sc(
|
|
518
|
+
.sc(DeletePolicy$)
|
|
516
519
|
.build() {
|
|
517
520
|
}
|
|
518
521
|
|
|
519
|
-
class DeletePolicyVersionCommand extends
|
|
522
|
+
class DeletePolicyVersionCommand extends Command
|
|
520
523
|
.classBuilder()
|
|
521
524
|
.ep(commonParams)
|
|
522
525
|
.m(function (Command, cs, config, o) {
|
|
523
|
-
return [
|
|
526
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
524
527
|
})
|
|
525
528
|
.s("AWSIdentityManagementV20100508", "DeletePolicyVersion", {})
|
|
526
529
|
.n("IAMClient", "DeletePolicyVersionCommand")
|
|
527
|
-
.sc(
|
|
530
|
+
.sc(DeletePolicyVersion$)
|
|
528
531
|
.build() {
|
|
529
532
|
}
|
|
530
533
|
|
|
531
|
-
class DeleteRoleCommand extends
|
|
534
|
+
class DeleteRoleCommand extends Command
|
|
532
535
|
.classBuilder()
|
|
533
536
|
.ep(commonParams)
|
|
534
537
|
.m(function (Command, cs, config, o) {
|
|
535
|
-
return [
|
|
538
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
536
539
|
})
|
|
537
540
|
.s("AWSIdentityManagementV20100508", "DeleteRole", {})
|
|
538
541
|
.n("IAMClient", "DeleteRoleCommand")
|
|
539
|
-
.sc(
|
|
542
|
+
.sc(DeleteRole$)
|
|
540
543
|
.build() {
|
|
541
544
|
}
|
|
542
545
|
|
|
543
|
-
class DeleteRolePermissionsBoundaryCommand extends
|
|
546
|
+
class DeleteRolePermissionsBoundaryCommand extends Command
|
|
544
547
|
.classBuilder()
|
|
545
548
|
.ep(commonParams)
|
|
546
549
|
.m(function (Command, cs, config, o) {
|
|
547
|
-
return [
|
|
550
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
548
551
|
})
|
|
549
552
|
.s("AWSIdentityManagementV20100508", "DeleteRolePermissionsBoundary", {})
|
|
550
553
|
.n("IAMClient", "DeleteRolePermissionsBoundaryCommand")
|
|
551
|
-
.sc(
|
|
554
|
+
.sc(DeleteRolePermissionsBoundary$)
|
|
552
555
|
.build() {
|
|
553
556
|
}
|
|
554
557
|
|
|
555
|
-
class DeleteRolePolicyCommand extends
|
|
558
|
+
class DeleteRolePolicyCommand extends Command
|
|
556
559
|
.classBuilder()
|
|
557
560
|
.ep(commonParams)
|
|
558
561
|
.m(function (Command, cs, config, o) {
|
|
559
|
-
return [
|
|
562
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
560
563
|
})
|
|
561
564
|
.s("AWSIdentityManagementV20100508", "DeleteRolePolicy", {})
|
|
562
565
|
.n("IAMClient", "DeleteRolePolicyCommand")
|
|
563
|
-
.sc(
|
|
566
|
+
.sc(DeleteRolePolicy$)
|
|
564
567
|
.build() {
|
|
565
568
|
}
|
|
566
569
|
|
|
567
|
-
class DeleteSAMLProviderCommand extends
|
|
570
|
+
class DeleteSAMLProviderCommand extends Command
|
|
568
571
|
.classBuilder()
|
|
569
572
|
.ep(commonParams)
|
|
570
573
|
.m(function (Command, cs, config, o) {
|
|
571
|
-
return [
|
|
574
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
572
575
|
})
|
|
573
576
|
.s("AWSIdentityManagementV20100508", "DeleteSAMLProvider", {})
|
|
574
577
|
.n("IAMClient", "DeleteSAMLProviderCommand")
|
|
575
|
-
.sc(
|
|
578
|
+
.sc(DeleteSAMLProvider$)
|
|
576
579
|
.build() {
|
|
577
580
|
}
|
|
578
581
|
|
|
579
|
-
class DeleteServerCertificateCommand extends
|
|
582
|
+
class DeleteServerCertificateCommand extends Command
|
|
580
583
|
.classBuilder()
|
|
581
584
|
.ep(commonParams)
|
|
582
585
|
.m(function (Command, cs, config, o) {
|
|
583
|
-
return [
|
|
586
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
584
587
|
})
|
|
585
588
|
.s("AWSIdentityManagementV20100508", "DeleteServerCertificate", {})
|
|
586
589
|
.n("IAMClient", "DeleteServerCertificateCommand")
|
|
587
|
-
.sc(
|
|
590
|
+
.sc(DeleteServerCertificate$)
|
|
588
591
|
.build() {
|
|
589
592
|
}
|
|
590
593
|
|
|
591
|
-
class DeleteServiceLinkedRoleCommand extends
|
|
594
|
+
class DeleteServiceLinkedRoleCommand extends Command
|
|
592
595
|
.classBuilder()
|
|
593
596
|
.ep(commonParams)
|
|
594
597
|
.m(function (Command, cs, config, o) {
|
|
595
|
-
return [
|
|
598
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
596
599
|
})
|
|
597
600
|
.s("AWSIdentityManagementV20100508", "DeleteServiceLinkedRole", {})
|
|
598
601
|
.n("IAMClient", "DeleteServiceLinkedRoleCommand")
|
|
599
|
-
.sc(
|
|
602
|
+
.sc(DeleteServiceLinkedRole$)
|
|
600
603
|
.build() {
|
|
601
604
|
}
|
|
602
605
|
|
|
603
|
-
class DeleteServiceSpecificCredentialCommand extends
|
|
606
|
+
class DeleteServiceSpecificCredentialCommand extends Command
|
|
604
607
|
.classBuilder()
|
|
605
608
|
.ep(commonParams)
|
|
606
609
|
.m(function (Command, cs, config, o) {
|
|
607
|
-
return [
|
|
610
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
608
611
|
})
|
|
609
612
|
.s("AWSIdentityManagementV20100508", "DeleteServiceSpecificCredential", {})
|
|
610
613
|
.n("IAMClient", "DeleteServiceSpecificCredentialCommand")
|
|
611
|
-
.sc(
|
|
614
|
+
.sc(DeleteServiceSpecificCredential$)
|
|
612
615
|
.build() {
|
|
613
616
|
}
|
|
614
617
|
|
|
615
|
-
class DeleteSigningCertificateCommand extends
|
|
618
|
+
class DeleteSigningCertificateCommand extends Command
|
|
616
619
|
.classBuilder()
|
|
617
620
|
.ep(commonParams)
|
|
618
621
|
.m(function (Command, cs, config, o) {
|
|
619
|
-
return [
|
|
622
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
620
623
|
})
|
|
621
624
|
.s("AWSIdentityManagementV20100508", "DeleteSigningCertificate", {})
|
|
622
625
|
.n("IAMClient", "DeleteSigningCertificateCommand")
|
|
623
|
-
.sc(
|
|
626
|
+
.sc(DeleteSigningCertificate$)
|
|
624
627
|
.build() {
|
|
625
628
|
}
|
|
626
629
|
|
|
627
|
-
class DeleteSSHPublicKeyCommand extends
|
|
630
|
+
class DeleteSSHPublicKeyCommand extends Command
|
|
628
631
|
.classBuilder()
|
|
629
632
|
.ep(commonParams)
|
|
630
633
|
.m(function (Command, cs, config, o) {
|
|
631
|
-
return [
|
|
634
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
632
635
|
})
|
|
633
636
|
.s("AWSIdentityManagementV20100508", "DeleteSSHPublicKey", {})
|
|
634
637
|
.n("IAMClient", "DeleteSSHPublicKeyCommand")
|
|
635
|
-
.sc(
|
|
638
|
+
.sc(DeleteSSHPublicKey$)
|
|
636
639
|
.build() {
|
|
637
640
|
}
|
|
638
641
|
|
|
639
|
-
class DeleteUserCommand extends
|
|
642
|
+
class DeleteUserCommand extends Command
|
|
640
643
|
.classBuilder()
|
|
641
644
|
.ep(commonParams)
|
|
642
645
|
.m(function (Command, cs, config, o) {
|
|
643
|
-
return [
|
|
646
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
644
647
|
})
|
|
645
648
|
.s("AWSIdentityManagementV20100508", "DeleteUser", {})
|
|
646
649
|
.n("IAMClient", "DeleteUserCommand")
|
|
647
|
-
.sc(
|
|
650
|
+
.sc(DeleteUser$)
|
|
648
651
|
.build() {
|
|
649
652
|
}
|
|
650
653
|
|
|
651
|
-
class DeleteUserPermissionsBoundaryCommand extends
|
|
654
|
+
class DeleteUserPermissionsBoundaryCommand extends Command
|
|
652
655
|
.classBuilder()
|
|
653
656
|
.ep(commonParams)
|
|
654
657
|
.m(function (Command, cs, config, o) {
|
|
655
|
-
return [
|
|
658
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
656
659
|
})
|
|
657
660
|
.s("AWSIdentityManagementV20100508", "DeleteUserPermissionsBoundary", {})
|
|
658
661
|
.n("IAMClient", "DeleteUserPermissionsBoundaryCommand")
|
|
659
|
-
.sc(
|
|
662
|
+
.sc(DeleteUserPermissionsBoundary$)
|
|
660
663
|
.build() {
|
|
661
664
|
}
|
|
662
665
|
|
|
663
|
-
class DeleteUserPolicyCommand extends
|
|
666
|
+
class DeleteUserPolicyCommand extends Command
|
|
664
667
|
.classBuilder()
|
|
665
668
|
.ep(commonParams)
|
|
666
669
|
.m(function (Command, cs, config, o) {
|
|
667
|
-
return [
|
|
670
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
668
671
|
})
|
|
669
672
|
.s("AWSIdentityManagementV20100508", "DeleteUserPolicy", {})
|
|
670
673
|
.n("IAMClient", "DeleteUserPolicyCommand")
|
|
671
|
-
.sc(
|
|
674
|
+
.sc(DeleteUserPolicy$)
|
|
672
675
|
.build() {
|
|
673
676
|
}
|
|
674
677
|
|
|
675
|
-
class DeleteVirtualMFADeviceCommand extends
|
|
678
|
+
class DeleteVirtualMFADeviceCommand extends Command
|
|
676
679
|
.classBuilder()
|
|
677
680
|
.ep(commonParams)
|
|
678
681
|
.m(function (Command, cs, config, o) {
|
|
679
|
-
return [
|
|
682
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
680
683
|
})
|
|
681
684
|
.s("AWSIdentityManagementV20100508", "DeleteVirtualMFADevice", {})
|
|
682
685
|
.n("IAMClient", "DeleteVirtualMFADeviceCommand")
|
|
683
|
-
.sc(
|
|
686
|
+
.sc(DeleteVirtualMFADevice$)
|
|
684
687
|
.build() {
|
|
685
688
|
}
|
|
686
689
|
|
|
687
|
-
class DetachGroupPolicyCommand extends
|
|
690
|
+
class DetachGroupPolicyCommand extends Command
|
|
688
691
|
.classBuilder()
|
|
689
692
|
.ep(commonParams)
|
|
690
693
|
.m(function (Command, cs, config, o) {
|
|
691
|
-
return [
|
|
694
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
692
695
|
})
|
|
693
696
|
.s("AWSIdentityManagementV20100508", "DetachGroupPolicy", {})
|
|
694
697
|
.n("IAMClient", "DetachGroupPolicyCommand")
|
|
695
|
-
.sc(
|
|
698
|
+
.sc(DetachGroupPolicy$)
|
|
696
699
|
.build() {
|
|
697
700
|
}
|
|
698
701
|
|
|
699
|
-
class DetachRolePolicyCommand extends
|
|
702
|
+
class DetachRolePolicyCommand extends Command
|
|
700
703
|
.classBuilder()
|
|
701
704
|
.ep(commonParams)
|
|
702
705
|
.m(function (Command, cs, config, o) {
|
|
703
|
-
return [
|
|
706
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
704
707
|
})
|
|
705
708
|
.s("AWSIdentityManagementV20100508", "DetachRolePolicy", {})
|
|
706
709
|
.n("IAMClient", "DetachRolePolicyCommand")
|
|
707
|
-
.sc(
|
|
710
|
+
.sc(DetachRolePolicy$)
|
|
708
711
|
.build() {
|
|
709
712
|
}
|
|
710
713
|
|
|
711
|
-
class DetachUserPolicyCommand extends
|
|
714
|
+
class DetachUserPolicyCommand extends Command
|
|
712
715
|
.classBuilder()
|
|
713
716
|
.ep(commonParams)
|
|
714
717
|
.m(function (Command, cs, config, o) {
|
|
715
|
-
return [
|
|
718
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
716
719
|
})
|
|
717
720
|
.s("AWSIdentityManagementV20100508", "DetachUserPolicy", {})
|
|
718
721
|
.n("IAMClient", "DetachUserPolicyCommand")
|
|
719
|
-
.sc(
|
|
722
|
+
.sc(DetachUserPolicy$)
|
|
720
723
|
.build() {
|
|
721
724
|
}
|
|
722
725
|
|
|
723
|
-
class DisableOrganizationsRootCredentialsManagementCommand extends
|
|
726
|
+
class DisableOrganizationsRootCredentialsManagementCommand extends Command
|
|
724
727
|
.classBuilder()
|
|
725
728
|
.ep(commonParams)
|
|
726
729
|
.m(function (Command, cs, config, o) {
|
|
727
|
-
return [
|
|
730
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
728
731
|
})
|
|
729
732
|
.s("AWSIdentityManagementV20100508", "DisableOrganizationsRootCredentialsManagement", {})
|
|
730
733
|
.n("IAMClient", "DisableOrganizationsRootCredentialsManagementCommand")
|
|
731
|
-
.sc(
|
|
734
|
+
.sc(DisableOrganizationsRootCredentialsManagement$)
|
|
732
735
|
.build() {
|
|
733
736
|
}
|
|
734
737
|
|
|
735
|
-
class DisableOrganizationsRootSessionsCommand extends
|
|
738
|
+
class DisableOrganizationsRootSessionsCommand extends Command
|
|
736
739
|
.classBuilder()
|
|
737
740
|
.ep(commonParams)
|
|
738
741
|
.m(function (Command, cs, config, o) {
|
|
739
|
-
return [
|
|
742
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
740
743
|
})
|
|
741
744
|
.s("AWSIdentityManagementV20100508", "DisableOrganizationsRootSessions", {})
|
|
742
745
|
.n("IAMClient", "DisableOrganizationsRootSessionsCommand")
|
|
743
|
-
.sc(
|
|
746
|
+
.sc(DisableOrganizationsRootSessions$)
|
|
744
747
|
.build() {
|
|
745
748
|
}
|
|
746
749
|
|
|
747
|
-
class DisableOutboundWebIdentityFederationCommand extends
|
|
750
|
+
class DisableOutboundWebIdentityFederationCommand extends Command
|
|
748
751
|
.classBuilder()
|
|
749
752
|
.ep(commonParams)
|
|
750
753
|
.m(function (Command, cs, config, o) {
|
|
751
|
-
return [
|
|
754
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
752
755
|
})
|
|
753
756
|
.s("AWSIdentityManagementV20100508", "DisableOutboundWebIdentityFederation", {})
|
|
754
757
|
.n("IAMClient", "DisableOutboundWebIdentityFederationCommand")
|
|
755
|
-
.sc(
|
|
758
|
+
.sc(DisableOutboundWebIdentityFederation$)
|
|
756
759
|
.build() {
|
|
757
760
|
}
|
|
758
761
|
|
|
759
|
-
class EnableMFADeviceCommand extends
|
|
762
|
+
class EnableMFADeviceCommand extends Command
|
|
760
763
|
.classBuilder()
|
|
761
764
|
.ep(commonParams)
|
|
762
765
|
.m(function (Command, cs, config, o) {
|
|
763
|
-
return [
|
|
766
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
764
767
|
})
|
|
765
768
|
.s("AWSIdentityManagementV20100508", "EnableMFADevice", {})
|
|
766
769
|
.n("IAMClient", "EnableMFADeviceCommand")
|
|
767
|
-
.sc(
|
|
770
|
+
.sc(EnableMFADevice$)
|
|
768
771
|
.build() {
|
|
769
772
|
}
|
|
770
773
|
|
|
771
|
-
class EnableOrganizationsRootCredentialsManagementCommand extends
|
|
774
|
+
class EnableOrganizationsRootCredentialsManagementCommand extends Command
|
|
772
775
|
.classBuilder()
|
|
773
776
|
.ep(commonParams)
|
|
774
777
|
.m(function (Command, cs, config, o) {
|
|
775
|
-
return [
|
|
778
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
776
779
|
})
|
|
777
780
|
.s("AWSIdentityManagementV20100508", "EnableOrganizationsRootCredentialsManagement", {})
|
|
778
781
|
.n("IAMClient", "EnableOrganizationsRootCredentialsManagementCommand")
|
|
779
|
-
.sc(
|
|
782
|
+
.sc(EnableOrganizationsRootCredentialsManagement$)
|
|
780
783
|
.build() {
|
|
781
784
|
}
|
|
782
785
|
|
|
783
|
-
class EnableOrganizationsRootSessionsCommand extends
|
|
786
|
+
class EnableOrganizationsRootSessionsCommand extends Command
|
|
784
787
|
.classBuilder()
|
|
785
788
|
.ep(commonParams)
|
|
786
789
|
.m(function (Command, cs, config, o) {
|
|
787
|
-
return [
|
|
790
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
788
791
|
})
|
|
789
792
|
.s("AWSIdentityManagementV20100508", "EnableOrganizationsRootSessions", {})
|
|
790
793
|
.n("IAMClient", "EnableOrganizationsRootSessionsCommand")
|
|
791
|
-
.sc(
|
|
794
|
+
.sc(EnableOrganizationsRootSessions$)
|
|
792
795
|
.build() {
|
|
793
796
|
}
|
|
794
797
|
|
|
795
|
-
class EnableOutboundWebIdentityFederationCommand extends
|
|
798
|
+
class EnableOutboundWebIdentityFederationCommand extends Command
|
|
796
799
|
.classBuilder()
|
|
797
800
|
.ep(commonParams)
|
|
798
801
|
.m(function (Command, cs, config, o) {
|
|
799
|
-
return [
|
|
802
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
800
803
|
})
|
|
801
804
|
.s("AWSIdentityManagementV20100508", "EnableOutboundWebIdentityFederation", {})
|
|
802
805
|
.n("IAMClient", "EnableOutboundWebIdentityFederationCommand")
|
|
803
|
-
.sc(
|
|
806
|
+
.sc(EnableOutboundWebIdentityFederation$)
|
|
804
807
|
.build() {
|
|
805
808
|
}
|
|
806
809
|
|
|
807
|
-
class GenerateCredentialReportCommand extends
|
|
810
|
+
class GenerateCredentialReportCommand extends Command
|
|
808
811
|
.classBuilder()
|
|
809
812
|
.ep(commonParams)
|
|
810
813
|
.m(function (Command, cs, config, o) {
|
|
811
|
-
return [
|
|
814
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
812
815
|
})
|
|
813
816
|
.s("AWSIdentityManagementV20100508", "GenerateCredentialReport", {})
|
|
814
817
|
.n("IAMClient", "GenerateCredentialReportCommand")
|
|
815
|
-
.sc(
|
|
818
|
+
.sc(GenerateCredentialReport$)
|
|
816
819
|
.build() {
|
|
817
820
|
}
|
|
818
821
|
|
|
819
|
-
class GenerateOrganizationsAccessReportCommand extends
|
|
822
|
+
class GenerateOrganizationsAccessReportCommand extends Command
|
|
820
823
|
.classBuilder()
|
|
821
824
|
.ep(commonParams)
|
|
822
825
|
.m(function (Command, cs, config, o) {
|
|
823
|
-
return [
|
|
826
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
824
827
|
})
|
|
825
828
|
.s("AWSIdentityManagementV20100508", "GenerateOrganizationsAccessReport", {})
|
|
826
829
|
.n("IAMClient", "GenerateOrganizationsAccessReportCommand")
|
|
827
|
-
.sc(
|
|
830
|
+
.sc(GenerateOrganizationsAccessReport$)
|
|
828
831
|
.build() {
|
|
829
832
|
}
|
|
830
833
|
|
|
831
|
-
class GenerateServiceLastAccessedDetailsCommand extends
|
|
834
|
+
class GenerateServiceLastAccessedDetailsCommand extends Command
|
|
832
835
|
.classBuilder()
|
|
833
836
|
.ep(commonParams)
|
|
834
837
|
.m(function (Command, cs, config, o) {
|
|
835
|
-
return [
|
|
838
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
836
839
|
})
|
|
837
840
|
.s("AWSIdentityManagementV20100508", "GenerateServiceLastAccessedDetails", {})
|
|
838
841
|
.n("IAMClient", "GenerateServiceLastAccessedDetailsCommand")
|
|
839
|
-
.sc(
|
|
842
|
+
.sc(GenerateServiceLastAccessedDetails$)
|
|
840
843
|
.build() {
|
|
841
844
|
}
|
|
842
845
|
|
|
843
|
-
class GetAccessKeyLastUsedCommand extends
|
|
846
|
+
class GetAccessKeyLastUsedCommand extends Command
|
|
844
847
|
.classBuilder()
|
|
845
848
|
.ep(commonParams)
|
|
846
849
|
.m(function (Command, cs, config, o) {
|
|
847
|
-
return [
|
|
850
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
848
851
|
})
|
|
849
852
|
.s("AWSIdentityManagementV20100508", "GetAccessKeyLastUsed", {})
|
|
850
853
|
.n("IAMClient", "GetAccessKeyLastUsedCommand")
|
|
851
|
-
.sc(
|
|
854
|
+
.sc(GetAccessKeyLastUsed$)
|
|
852
855
|
.build() {
|
|
853
856
|
}
|
|
854
857
|
|
|
855
|
-
class GetAccountAuthorizationDetailsCommand extends
|
|
858
|
+
class GetAccountAuthorizationDetailsCommand extends Command
|
|
856
859
|
.classBuilder()
|
|
857
860
|
.ep(commonParams)
|
|
858
861
|
.m(function (Command, cs, config, o) {
|
|
859
|
-
return [
|
|
862
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
860
863
|
})
|
|
861
864
|
.s("AWSIdentityManagementV20100508", "GetAccountAuthorizationDetails", {})
|
|
862
865
|
.n("IAMClient", "GetAccountAuthorizationDetailsCommand")
|
|
863
|
-
.sc(
|
|
866
|
+
.sc(GetAccountAuthorizationDetails$)
|
|
864
867
|
.build() {
|
|
865
868
|
}
|
|
866
869
|
|
|
867
|
-
class GetAccountPasswordPolicyCommand extends
|
|
870
|
+
class GetAccountPasswordPolicyCommand extends Command
|
|
868
871
|
.classBuilder()
|
|
869
872
|
.ep(commonParams)
|
|
870
873
|
.m(function (Command, cs, config, o) {
|
|
871
|
-
return [
|
|
874
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
872
875
|
})
|
|
873
876
|
.s("AWSIdentityManagementV20100508", "GetAccountPasswordPolicy", {})
|
|
874
877
|
.n("IAMClient", "GetAccountPasswordPolicyCommand")
|
|
875
|
-
.sc(
|
|
878
|
+
.sc(GetAccountPasswordPolicy$)
|
|
876
879
|
.build() {
|
|
877
880
|
}
|
|
878
881
|
|
|
879
|
-
class GetAccountSummaryCommand extends
|
|
882
|
+
class GetAccountSummaryCommand extends Command
|
|
880
883
|
.classBuilder()
|
|
881
884
|
.ep(commonParams)
|
|
882
885
|
.m(function (Command, cs, config, o) {
|
|
883
|
-
return [
|
|
886
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
884
887
|
})
|
|
885
888
|
.s("AWSIdentityManagementV20100508", "GetAccountSummary", {})
|
|
886
889
|
.n("IAMClient", "GetAccountSummaryCommand")
|
|
887
|
-
.sc(
|
|
890
|
+
.sc(GetAccountSummary$)
|
|
888
891
|
.build() {
|
|
889
892
|
}
|
|
890
893
|
|
|
891
|
-
class GetContextKeysForCustomPolicyCommand extends
|
|
894
|
+
class GetContextKeysForCustomPolicyCommand extends Command
|
|
892
895
|
.classBuilder()
|
|
893
896
|
.ep(commonParams)
|
|
894
897
|
.m(function (Command, cs, config, o) {
|
|
895
|
-
return [
|
|
898
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
896
899
|
})
|
|
897
900
|
.s("AWSIdentityManagementV20100508", "GetContextKeysForCustomPolicy", {})
|
|
898
901
|
.n("IAMClient", "GetContextKeysForCustomPolicyCommand")
|
|
899
|
-
.sc(
|
|
902
|
+
.sc(GetContextKeysForCustomPolicy$)
|
|
900
903
|
.build() {
|
|
901
904
|
}
|
|
902
905
|
|
|
903
|
-
class GetContextKeysForPrincipalPolicyCommand extends
|
|
906
|
+
class GetContextKeysForPrincipalPolicyCommand extends Command
|
|
904
907
|
.classBuilder()
|
|
905
908
|
.ep(commonParams)
|
|
906
909
|
.m(function (Command, cs, config, o) {
|
|
907
|
-
return [
|
|
910
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
908
911
|
})
|
|
909
912
|
.s("AWSIdentityManagementV20100508", "GetContextKeysForPrincipalPolicy", {})
|
|
910
913
|
.n("IAMClient", "GetContextKeysForPrincipalPolicyCommand")
|
|
911
|
-
.sc(
|
|
914
|
+
.sc(GetContextKeysForPrincipalPolicy$)
|
|
912
915
|
.build() {
|
|
913
916
|
}
|
|
914
917
|
|
|
915
|
-
class GetCredentialReportCommand extends
|
|
918
|
+
class GetCredentialReportCommand extends Command
|
|
916
919
|
.classBuilder()
|
|
917
920
|
.ep(commonParams)
|
|
918
921
|
.m(function (Command, cs, config, o) {
|
|
919
|
-
return [
|
|
922
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
920
923
|
})
|
|
921
924
|
.s("AWSIdentityManagementV20100508", "GetCredentialReport", {})
|
|
922
925
|
.n("IAMClient", "GetCredentialReportCommand")
|
|
923
|
-
.sc(
|
|
926
|
+
.sc(GetCredentialReport$)
|
|
924
927
|
.build() {
|
|
925
928
|
}
|
|
926
929
|
|
|
927
|
-
class GetDelegationRequestCommand extends
|
|
930
|
+
class GetDelegationRequestCommand extends Command
|
|
928
931
|
.classBuilder()
|
|
929
932
|
.ep(commonParams)
|
|
930
933
|
.m(function (Command, cs, config, o) {
|
|
931
|
-
return [
|
|
934
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
932
935
|
})
|
|
933
936
|
.s("AWSIdentityManagementV20100508", "GetDelegationRequest", {})
|
|
934
937
|
.n("IAMClient", "GetDelegationRequestCommand")
|
|
935
|
-
.sc(
|
|
938
|
+
.sc(GetDelegationRequest$)
|
|
936
939
|
.build() {
|
|
937
940
|
}
|
|
938
941
|
|
|
939
|
-
class GetGroupCommand extends
|
|
942
|
+
class GetGroupCommand extends Command
|
|
940
943
|
.classBuilder()
|
|
941
944
|
.ep(commonParams)
|
|
942
945
|
.m(function (Command, cs, config, o) {
|
|
943
|
-
return [
|
|
946
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
944
947
|
})
|
|
945
948
|
.s("AWSIdentityManagementV20100508", "GetGroup", {})
|
|
946
949
|
.n("IAMClient", "GetGroupCommand")
|
|
947
|
-
.sc(
|
|
950
|
+
.sc(GetGroup$)
|
|
948
951
|
.build() {
|
|
949
952
|
}
|
|
950
953
|
|
|
951
|
-
class GetGroupPolicyCommand extends
|
|
954
|
+
class GetGroupPolicyCommand extends Command
|
|
952
955
|
.classBuilder()
|
|
953
956
|
.ep(commonParams)
|
|
954
957
|
.m(function (Command, cs, config, o) {
|
|
955
|
-
return [
|
|
958
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
956
959
|
})
|
|
957
960
|
.s("AWSIdentityManagementV20100508", "GetGroupPolicy", {})
|
|
958
961
|
.n("IAMClient", "GetGroupPolicyCommand")
|
|
959
|
-
.sc(
|
|
962
|
+
.sc(GetGroupPolicy$)
|
|
960
963
|
.build() {
|
|
961
964
|
}
|
|
962
965
|
|
|
963
|
-
class GetHumanReadableSummaryCommand extends
|
|
966
|
+
class GetHumanReadableSummaryCommand extends Command
|
|
964
967
|
.classBuilder()
|
|
965
968
|
.ep(commonParams)
|
|
966
969
|
.m(function (Command, cs, config, o) {
|
|
967
|
-
return [
|
|
970
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
968
971
|
})
|
|
969
972
|
.s("AWSIdentityManagementV20100508", "GetHumanReadableSummary", {})
|
|
970
973
|
.n("IAMClient", "GetHumanReadableSummaryCommand")
|
|
971
|
-
.sc(
|
|
974
|
+
.sc(GetHumanReadableSummary$)
|
|
972
975
|
.build() {
|
|
973
976
|
}
|
|
974
977
|
|
|
975
|
-
class GetInstanceProfileCommand extends
|
|
978
|
+
class GetInstanceProfileCommand extends Command
|
|
976
979
|
.classBuilder()
|
|
977
980
|
.ep(commonParams)
|
|
978
981
|
.m(function (Command, cs, config, o) {
|
|
979
|
-
return [
|
|
982
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
980
983
|
})
|
|
981
984
|
.s("AWSIdentityManagementV20100508", "GetInstanceProfile", {})
|
|
982
985
|
.n("IAMClient", "GetInstanceProfileCommand")
|
|
983
|
-
.sc(
|
|
986
|
+
.sc(GetInstanceProfile$)
|
|
984
987
|
.build() {
|
|
985
988
|
}
|
|
986
989
|
|
|
987
|
-
class GetLoginProfileCommand extends
|
|
990
|
+
class GetLoginProfileCommand extends Command
|
|
988
991
|
.classBuilder()
|
|
989
992
|
.ep(commonParams)
|
|
990
993
|
.m(function (Command, cs, config, o) {
|
|
991
|
-
return [
|
|
994
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
992
995
|
})
|
|
993
996
|
.s("AWSIdentityManagementV20100508", "GetLoginProfile", {})
|
|
994
997
|
.n("IAMClient", "GetLoginProfileCommand")
|
|
995
|
-
.sc(
|
|
998
|
+
.sc(GetLoginProfile$)
|
|
996
999
|
.build() {
|
|
997
1000
|
}
|
|
998
1001
|
|
|
999
|
-
class GetMFADeviceCommand extends
|
|
1002
|
+
class GetMFADeviceCommand extends Command
|
|
1000
1003
|
.classBuilder()
|
|
1001
1004
|
.ep(commonParams)
|
|
1002
1005
|
.m(function (Command, cs, config, o) {
|
|
1003
|
-
return [
|
|
1006
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1004
1007
|
})
|
|
1005
1008
|
.s("AWSIdentityManagementV20100508", "GetMFADevice", {})
|
|
1006
1009
|
.n("IAMClient", "GetMFADeviceCommand")
|
|
1007
|
-
.sc(
|
|
1010
|
+
.sc(GetMFADevice$)
|
|
1008
1011
|
.build() {
|
|
1009
1012
|
}
|
|
1010
1013
|
|
|
1011
|
-
class GetOpenIDConnectProviderCommand extends
|
|
1014
|
+
class GetOpenIDConnectProviderCommand extends Command
|
|
1012
1015
|
.classBuilder()
|
|
1013
1016
|
.ep(commonParams)
|
|
1014
1017
|
.m(function (Command, cs, config, o) {
|
|
1015
|
-
return [
|
|
1018
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1016
1019
|
})
|
|
1017
1020
|
.s("AWSIdentityManagementV20100508", "GetOpenIDConnectProvider", {})
|
|
1018
1021
|
.n("IAMClient", "GetOpenIDConnectProviderCommand")
|
|
1019
|
-
.sc(
|
|
1022
|
+
.sc(GetOpenIDConnectProvider$)
|
|
1020
1023
|
.build() {
|
|
1021
1024
|
}
|
|
1022
1025
|
|
|
1023
|
-
class GetOrganizationsAccessReportCommand extends
|
|
1026
|
+
class GetOrganizationsAccessReportCommand extends Command
|
|
1024
1027
|
.classBuilder()
|
|
1025
1028
|
.ep(commonParams)
|
|
1026
1029
|
.m(function (Command, cs, config, o) {
|
|
1027
|
-
return [
|
|
1030
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1028
1031
|
})
|
|
1029
1032
|
.s("AWSIdentityManagementV20100508", "GetOrganizationsAccessReport", {})
|
|
1030
1033
|
.n("IAMClient", "GetOrganizationsAccessReportCommand")
|
|
1031
|
-
.sc(
|
|
1034
|
+
.sc(GetOrganizationsAccessReport$)
|
|
1032
1035
|
.build() {
|
|
1033
1036
|
}
|
|
1034
1037
|
|
|
1035
|
-
class GetOutboundWebIdentityFederationInfoCommand extends
|
|
1038
|
+
class GetOutboundWebIdentityFederationInfoCommand extends Command
|
|
1036
1039
|
.classBuilder()
|
|
1037
1040
|
.ep(commonParams)
|
|
1038
1041
|
.m(function (Command, cs, config, o) {
|
|
1039
|
-
return [
|
|
1042
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1040
1043
|
})
|
|
1041
1044
|
.s("AWSIdentityManagementV20100508", "GetOutboundWebIdentityFederationInfo", {})
|
|
1042
1045
|
.n("IAMClient", "GetOutboundWebIdentityFederationInfoCommand")
|
|
1043
|
-
.sc(
|
|
1046
|
+
.sc(GetOutboundWebIdentityFederationInfo$)
|
|
1044
1047
|
.build() {
|
|
1045
1048
|
}
|
|
1046
1049
|
|
|
1047
|
-
class GetPolicyCommand extends
|
|
1050
|
+
class GetPolicyCommand extends Command
|
|
1048
1051
|
.classBuilder()
|
|
1049
1052
|
.ep(commonParams)
|
|
1050
1053
|
.m(function (Command, cs, config, o) {
|
|
1051
|
-
return [
|
|
1054
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1052
1055
|
})
|
|
1053
1056
|
.s("AWSIdentityManagementV20100508", "GetPolicy", {})
|
|
1054
1057
|
.n("IAMClient", "GetPolicyCommand")
|
|
1055
|
-
.sc(
|
|
1058
|
+
.sc(GetPolicy$)
|
|
1056
1059
|
.build() {
|
|
1057
1060
|
}
|
|
1058
1061
|
|
|
1059
|
-
class GetPolicyVersionCommand extends
|
|
1062
|
+
class GetPolicyVersionCommand extends Command
|
|
1060
1063
|
.classBuilder()
|
|
1061
1064
|
.ep(commonParams)
|
|
1062
1065
|
.m(function (Command, cs, config, o) {
|
|
1063
|
-
return [
|
|
1066
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1064
1067
|
})
|
|
1065
1068
|
.s("AWSIdentityManagementV20100508", "GetPolicyVersion", {})
|
|
1066
1069
|
.n("IAMClient", "GetPolicyVersionCommand")
|
|
1067
|
-
.sc(
|
|
1070
|
+
.sc(GetPolicyVersion$)
|
|
1068
1071
|
.build() {
|
|
1069
1072
|
}
|
|
1070
1073
|
|
|
1071
|
-
class GetRoleCommand extends
|
|
1074
|
+
class GetRoleCommand extends Command
|
|
1072
1075
|
.classBuilder()
|
|
1073
1076
|
.ep(commonParams)
|
|
1074
1077
|
.m(function (Command, cs, config, o) {
|
|
1075
|
-
return [
|
|
1078
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1076
1079
|
})
|
|
1077
1080
|
.s("AWSIdentityManagementV20100508", "GetRole", {})
|
|
1078
1081
|
.n("IAMClient", "GetRoleCommand")
|
|
1079
|
-
.sc(
|
|
1082
|
+
.sc(GetRole$)
|
|
1080
1083
|
.build() {
|
|
1081
1084
|
}
|
|
1082
1085
|
|
|
1083
|
-
class GetRolePolicyCommand extends
|
|
1086
|
+
class GetRolePolicyCommand extends Command
|
|
1084
1087
|
.classBuilder()
|
|
1085
1088
|
.ep(commonParams)
|
|
1086
1089
|
.m(function (Command, cs, config, o) {
|
|
1087
|
-
return [
|
|
1090
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1088
1091
|
})
|
|
1089
1092
|
.s("AWSIdentityManagementV20100508", "GetRolePolicy", {})
|
|
1090
1093
|
.n("IAMClient", "GetRolePolicyCommand")
|
|
1091
|
-
.sc(
|
|
1094
|
+
.sc(GetRolePolicy$)
|
|
1092
1095
|
.build() {
|
|
1093
1096
|
}
|
|
1094
1097
|
|
|
1095
|
-
class GetSAMLProviderCommand extends
|
|
1098
|
+
class GetSAMLProviderCommand extends Command
|
|
1096
1099
|
.classBuilder()
|
|
1097
1100
|
.ep(commonParams)
|
|
1098
1101
|
.m(function (Command, cs, config, o) {
|
|
1099
|
-
return [
|
|
1102
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1100
1103
|
})
|
|
1101
1104
|
.s("AWSIdentityManagementV20100508", "GetSAMLProvider", {})
|
|
1102
1105
|
.n("IAMClient", "GetSAMLProviderCommand")
|
|
1103
|
-
.sc(
|
|
1106
|
+
.sc(GetSAMLProvider$)
|
|
1104
1107
|
.build() {
|
|
1105
1108
|
}
|
|
1106
1109
|
|
|
1107
|
-
class GetServerCertificateCommand extends
|
|
1110
|
+
class GetServerCertificateCommand extends Command
|
|
1108
1111
|
.classBuilder()
|
|
1109
1112
|
.ep(commonParams)
|
|
1110
1113
|
.m(function (Command, cs, config, o) {
|
|
1111
|
-
return [
|
|
1114
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1112
1115
|
})
|
|
1113
1116
|
.s("AWSIdentityManagementV20100508", "GetServerCertificate", {})
|
|
1114
1117
|
.n("IAMClient", "GetServerCertificateCommand")
|
|
1115
|
-
.sc(
|
|
1118
|
+
.sc(GetServerCertificate$)
|
|
1116
1119
|
.build() {
|
|
1117
1120
|
}
|
|
1118
1121
|
|
|
1119
|
-
class GetServiceLastAccessedDetailsCommand extends
|
|
1122
|
+
class GetServiceLastAccessedDetailsCommand extends Command
|
|
1120
1123
|
.classBuilder()
|
|
1121
1124
|
.ep(commonParams)
|
|
1122
1125
|
.m(function (Command, cs, config, o) {
|
|
1123
|
-
return [
|
|
1126
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1124
1127
|
})
|
|
1125
1128
|
.s("AWSIdentityManagementV20100508", "GetServiceLastAccessedDetails", {})
|
|
1126
1129
|
.n("IAMClient", "GetServiceLastAccessedDetailsCommand")
|
|
1127
|
-
.sc(
|
|
1130
|
+
.sc(GetServiceLastAccessedDetails$)
|
|
1128
1131
|
.build() {
|
|
1129
1132
|
}
|
|
1130
1133
|
|
|
1131
|
-
class GetServiceLastAccessedDetailsWithEntitiesCommand extends
|
|
1134
|
+
class GetServiceLastAccessedDetailsWithEntitiesCommand extends Command
|
|
1132
1135
|
.classBuilder()
|
|
1133
1136
|
.ep(commonParams)
|
|
1134
1137
|
.m(function (Command, cs, config, o) {
|
|
1135
|
-
return [
|
|
1138
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1136
1139
|
})
|
|
1137
1140
|
.s("AWSIdentityManagementV20100508", "GetServiceLastAccessedDetailsWithEntities", {})
|
|
1138
1141
|
.n("IAMClient", "GetServiceLastAccessedDetailsWithEntitiesCommand")
|
|
1139
|
-
.sc(
|
|
1142
|
+
.sc(GetServiceLastAccessedDetailsWithEntities$)
|
|
1140
1143
|
.build() {
|
|
1141
1144
|
}
|
|
1142
1145
|
|
|
1143
|
-
class GetServiceLinkedRoleDeletionStatusCommand extends
|
|
1146
|
+
class GetServiceLinkedRoleDeletionStatusCommand extends Command
|
|
1144
1147
|
.classBuilder()
|
|
1145
1148
|
.ep(commonParams)
|
|
1146
1149
|
.m(function (Command, cs, config, o) {
|
|
1147
|
-
return [
|
|
1150
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1148
1151
|
})
|
|
1149
1152
|
.s("AWSIdentityManagementV20100508", "GetServiceLinkedRoleDeletionStatus", {})
|
|
1150
1153
|
.n("IAMClient", "GetServiceLinkedRoleDeletionStatusCommand")
|
|
1151
|
-
.sc(
|
|
1154
|
+
.sc(GetServiceLinkedRoleDeletionStatus$)
|
|
1152
1155
|
.build() {
|
|
1153
1156
|
}
|
|
1154
1157
|
|
|
1155
|
-
class GetSSHPublicKeyCommand extends
|
|
1158
|
+
class GetSSHPublicKeyCommand extends Command
|
|
1156
1159
|
.classBuilder()
|
|
1157
1160
|
.ep(commonParams)
|
|
1158
1161
|
.m(function (Command, cs, config, o) {
|
|
1159
|
-
return [
|
|
1162
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1160
1163
|
})
|
|
1161
1164
|
.s("AWSIdentityManagementV20100508", "GetSSHPublicKey", {})
|
|
1162
1165
|
.n("IAMClient", "GetSSHPublicKeyCommand")
|
|
1163
|
-
.sc(
|
|
1166
|
+
.sc(GetSSHPublicKey$)
|
|
1164
1167
|
.build() {
|
|
1165
1168
|
}
|
|
1166
1169
|
|
|
1167
|
-
class GetUserCommand extends
|
|
1170
|
+
class GetUserCommand extends Command
|
|
1168
1171
|
.classBuilder()
|
|
1169
1172
|
.ep(commonParams)
|
|
1170
1173
|
.m(function (Command, cs, config, o) {
|
|
1171
|
-
return [
|
|
1174
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1172
1175
|
})
|
|
1173
1176
|
.s("AWSIdentityManagementV20100508", "GetUser", {})
|
|
1174
1177
|
.n("IAMClient", "GetUserCommand")
|
|
1175
|
-
.sc(
|
|
1178
|
+
.sc(GetUser$)
|
|
1176
1179
|
.build() {
|
|
1177
1180
|
}
|
|
1178
1181
|
|
|
1179
|
-
class GetUserPolicyCommand extends
|
|
1182
|
+
class GetUserPolicyCommand extends Command
|
|
1180
1183
|
.classBuilder()
|
|
1181
1184
|
.ep(commonParams)
|
|
1182
1185
|
.m(function (Command, cs, config, o) {
|
|
1183
|
-
return [
|
|
1186
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1184
1187
|
})
|
|
1185
1188
|
.s("AWSIdentityManagementV20100508", "GetUserPolicy", {})
|
|
1186
1189
|
.n("IAMClient", "GetUserPolicyCommand")
|
|
1187
|
-
.sc(
|
|
1190
|
+
.sc(GetUserPolicy$)
|
|
1188
1191
|
.build() {
|
|
1189
1192
|
}
|
|
1190
1193
|
|
|
1191
|
-
class ListAccessKeysCommand extends
|
|
1194
|
+
class ListAccessKeysCommand extends Command
|
|
1192
1195
|
.classBuilder()
|
|
1193
1196
|
.ep(commonParams)
|
|
1194
1197
|
.m(function (Command, cs, config, o) {
|
|
1195
|
-
return [
|
|
1198
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1196
1199
|
})
|
|
1197
1200
|
.s("AWSIdentityManagementV20100508", "ListAccessKeys", {})
|
|
1198
1201
|
.n("IAMClient", "ListAccessKeysCommand")
|
|
1199
|
-
.sc(
|
|
1202
|
+
.sc(ListAccessKeys$)
|
|
1200
1203
|
.build() {
|
|
1201
1204
|
}
|
|
1202
1205
|
|
|
1203
|
-
class ListAccountAliasesCommand extends
|
|
1206
|
+
class ListAccountAliasesCommand extends Command
|
|
1204
1207
|
.classBuilder()
|
|
1205
1208
|
.ep(commonParams)
|
|
1206
1209
|
.m(function (Command, cs, config, o) {
|
|
1207
|
-
return [
|
|
1210
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1208
1211
|
})
|
|
1209
1212
|
.s("AWSIdentityManagementV20100508", "ListAccountAliases", {})
|
|
1210
1213
|
.n("IAMClient", "ListAccountAliasesCommand")
|
|
1211
|
-
.sc(
|
|
1214
|
+
.sc(ListAccountAliases$)
|
|
1212
1215
|
.build() {
|
|
1213
1216
|
}
|
|
1214
1217
|
|
|
1215
|
-
class ListAttachedGroupPoliciesCommand extends
|
|
1218
|
+
class ListAttachedGroupPoliciesCommand extends Command
|
|
1216
1219
|
.classBuilder()
|
|
1217
1220
|
.ep(commonParams)
|
|
1218
1221
|
.m(function (Command, cs, config, o) {
|
|
1219
|
-
return [
|
|
1222
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1220
1223
|
})
|
|
1221
1224
|
.s("AWSIdentityManagementV20100508", "ListAttachedGroupPolicies", {})
|
|
1222
1225
|
.n("IAMClient", "ListAttachedGroupPoliciesCommand")
|
|
1223
|
-
.sc(
|
|
1226
|
+
.sc(ListAttachedGroupPolicies$)
|
|
1224
1227
|
.build() {
|
|
1225
1228
|
}
|
|
1226
1229
|
|
|
1227
|
-
class ListAttachedRolePoliciesCommand extends
|
|
1230
|
+
class ListAttachedRolePoliciesCommand extends Command
|
|
1228
1231
|
.classBuilder()
|
|
1229
1232
|
.ep(commonParams)
|
|
1230
1233
|
.m(function (Command, cs, config, o) {
|
|
1231
|
-
return [
|
|
1234
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1232
1235
|
})
|
|
1233
1236
|
.s("AWSIdentityManagementV20100508", "ListAttachedRolePolicies", {})
|
|
1234
1237
|
.n("IAMClient", "ListAttachedRolePoliciesCommand")
|
|
1235
|
-
.sc(
|
|
1238
|
+
.sc(ListAttachedRolePolicies$)
|
|
1236
1239
|
.build() {
|
|
1237
1240
|
}
|
|
1238
1241
|
|
|
1239
|
-
class ListAttachedUserPoliciesCommand extends
|
|
1242
|
+
class ListAttachedUserPoliciesCommand extends Command
|
|
1240
1243
|
.classBuilder()
|
|
1241
1244
|
.ep(commonParams)
|
|
1242
1245
|
.m(function (Command, cs, config, o) {
|
|
1243
|
-
return [
|
|
1246
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1244
1247
|
})
|
|
1245
1248
|
.s("AWSIdentityManagementV20100508", "ListAttachedUserPolicies", {})
|
|
1246
1249
|
.n("IAMClient", "ListAttachedUserPoliciesCommand")
|
|
1247
|
-
.sc(
|
|
1250
|
+
.sc(ListAttachedUserPolicies$)
|
|
1248
1251
|
.build() {
|
|
1249
1252
|
}
|
|
1250
1253
|
|
|
1251
|
-
class ListDelegationRequestsCommand extends
|
|
1254
|
+
class ListDelegationRequestsCommand extends Command
|
|
1252
1255
|
.classBuilder()
|
|
1253
1256
|
.ep(commonParams)
|
|
1254
1257
|
.m(function (Command, cs, config, o) {
|
|
1255
|
-
return [
|
|
1258
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1256
1259
|
})
|
|
1257
1260
|
.s("AWSIdentityManagementV20100508", "ListDelegationRequests", {})
|
|
1258
1261
|
.n("IAMClient", "ListDelegationRequestsCommand")
|
|
1259
|
-
.sc(
|
|
1262
|
+
.sc(ListDelegationRequests$)
|
|
1260
1263
|
.build() {
|
|
1261
1264
|
}
|
|
1262
1265
|
|
|
1263
|
-
class ListEntitiesForPolicyCommand extends
|
|
1266
|
+
class ListEntitiesForPolicyCommand extends Command
|
|
1264
1267
|
.classBuilder()
|
|
1265
1268
|
.ep(commonParams)
|
|
1266
1269
|
.m(function (Command, cs, config, o) {
|
|
1267
|
-
return [
|
|
1270
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1268
1271
|
})
|
|
1269
1272
|
.s("AWSIdentityManagementV20100508", "ListEntitiesForPolicy", {})
|
|
1270
1273
|
.n("IAMClient", "ListEntitiesForPolicyCommand")
|
|
1271
|
-
.sc(
|
|
1274
|
+
.sc(ListEntitiesForPolicy$)
|
|
1272
1275
|
.build() {
|
|
1273
1276
|
}
|
|
1274
1277
|
|
|
1275
|
-
class ListGroupPoliciesCommand extends
|
|
1278
|
+
class ListGroupPoliciesCommand extends Command
|
|
1276
1279
|
.classBuilder()
|
|
1277
1280
|
.ep(commonParams)
|
|
1278
1281
|
.m(function (Command, cs, config, o) {
|
|
1279
|
-
return [
|
|
1282
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1280
1283
|
})
|
|
1281
1284
|
.s("AWSIdentityManagementV20100508", "ListGroupPolicies", {})
|
|
1282
1285
|
.n("IAMClient", "ListGroupPoliciesCommand")
|
|
1283
|
-
.sc(
|
|
1286
|
+
.sc(ListGroupPolicies$)
|
|
1284
1287
|
.build() {
|
|
1285
1288
|
}
|
|
1286
1289
|
|
|
1287
|
-
class ListGroupsCommand extends
|
|
1290
|
+
class ListGroupsCommand extends Command
|
|
1288
1291
|
.classBuilder()
|
|
1289
1292
|
.ep(commonParams)
|
|
1290
1293
|
.m(function (Command, cs, config, o) {
|
|
1291
|
-
return [
|
|
1294
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1292
1295
|
})
|
|
1293
1296
|
.s("AWSIdentityManagementV20100508", "ListGroups", {})
|
|
1294
1297
|
.n("IAMClient", "ListGroupsCommand")
|
|
1295
|
-
.sc(
|
|
1298
|
+
.sc(ListGroups$)
|
|
1296
1299
|
.build() {
|
|
1297
1300
|
}
|
|
1298
1301
|
|
|
1299
|
-
class ListGroupsForUserCommand extends
|
|
1302
|
+
class ListGroupsForUserCommand extends Command
|
|
1300
1303
|
.classBuilder()
|
|
1301
1304
|
.ep(commonParams)
|
|
1302
1305
|
.m(function (Command, cs, config, o) {
|
|
1303
|
-
return [
|
|
1306
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1304
1307
|
})
|
|
1305
1308
|
.s("AWSIdentityManagementV20100508", "ListGroupsForUser", {})
|
|
1306
1309
|
.n("IAMClient", "ListGroupsForUserCommand")
|
|
1307
|
-
.sc(
|
|
1310
|
+
.sc(ListGroupsForUser$)
|
|
1308
1311
|
.build() {
|
|
1309
1312
|
}
|
|
1310
1313
|
|
|
1311
|
-
class ListInstanceProfilesCommand extends
|
|
1314
|
+
class ListInstanceProfilesCommand extends Command
|
|
1312
1315
|
.classBuilder()
|
|
1313
1316
|
.ep(commonParams)
|
|
1314
1317
|
.m(function (Command, cs, config, o) {
|
|
1315
|
-
return [
|
|
1318
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1316
1319
|
})
|
|
1317
1320
|
.s("AWSIdentityManagementV20100508", "ListInstanceProfiles", {})
|
|
1318
1321
|
.n("IAMClient", "ListInstanceProfilesCommand")
|
|
1319
|
-
.sc(
|
|
1322
|
+
.sc(ListInstanceProfiles$)
|
|
1320
1323
|
.build() {
|
|
1321
1324
|
}
|
|
1322
1325
|
|
|
1323
|
-
class ListInstanceProfilesForRoleCommand extends
|
|
1326
|
+
class ListInstanceProfilesForRoleCommand extends Command
|
|
1324
1327
|
.classBuilder()
|
|
1325
1328
|
.ep(commonParams)
|
|
1326
1329
|
.m(function (Command, cs, config, o) {
|
|
1327
|
-
return [
|
|
1330
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1328
1331
|
})
|
|
1329
1332
|
.s("AWSIdentityManagementV20100508", "ListInstanceProfilesForRole", {})
|
|
1330
1333
|
.n("IAMClient", "ListInstanceProfilesForRoleCommand")
|
|
1331
|
-
.sc(
|
|
1334
|
+
.sc(ListInstanceProfilesForRole$)
|
|
1332
1335
|
.build() {
|
|
1333
1336
|
}
|
|
1334
1337
|
|
|
1335
|
-
class ListInstanceProfileTagsCommand extends
|
|
1338
|
+
class ListInstanceProfileTagsCommand extends Command
|
|
1336
1339
|
.classBuilder()
|
|
1337
1340
|
.ep(commonParams)
|
|
1338
1341
|
.m(function (Command, cs, config, o) {
|
|
1339
|
-
return [
|
|
1342
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1340
1343
|
})
|
|
1341
1344
|
.s("AWSIdentityManagementV20100508", "ListInstanceProfileTags", {})
|
|
1342
1345
|
.n("IAMClient", "ListInstanceProfileTagsCommand")
|
|
1343
|
-
.sc(
|
|
1346
|
+
.sc(ListInstanceProfileTags$)
|
|
1344
1347
|
.build() {
|
|
1345
1348
|
}
|
|
1346
1349
|
|
|
1347
|
-
class ListMFADevicesCommand extends
|
|
1350
|
+
class ListMFADevicesCommand extends Command
|
|
1348
1351
|
.classBuilder()
|
|
1349
1352
|
.ep(commonParams)
|
|
1350
1353
|
.m(function (Command, cs, config, o) {
|
|
1351
|
-
return [
|
|
1354
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1352
1355
|
})
|
|
1353
1356
|
.s("AWSIdentityManagementV20100508", "ListMFADevices", {})
|
|
1354
1357
|
.n("IAMClient", "ListMFADevicesCommand")
|
|
1355
|
-
.sc(
|
|
1358
|
+
.sc(ListMFADevices$)
|
|
1356
1359
|
.build() {
|
|
1357
1360
|
}
|
|
1358
1361
|
|
|
1359
|
-
class ListMFADeviceTagsCommand extends
|
|
1362
|
+
class ListMFADeviceTagsCommand extends Command
|
|
1360
1363
|
.classBuilder()
|
|
1361
1364
|
.ep(commonParams)
|
|
1362
1365
|
.m(function (Command, cs, config, o) {
|
|
1363
|
-
return [
|
|
1366
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1364
1367
|
})
|
|
1365
1368
|
.s("AWSIdentityManagementV20100508", "ListMFADeviceTags", {})
|
|
1366
1369
|
.n("IAMClient", "ListMFADeviceTagsCommand")
|
|
1367
|
-
.sc(
|
|
1370
|
+
.sc(ListMFADeviceTags$)
|
|
1368
1371
|
.build() {
|
|
1369
1372
|
}
|
|
1370
1373
|
|
|
1371
|
-
class ListOpenIDConnectProvidersCommand extends
|
|
1374
|
+
class ListOpenIDConnectProvidersCommand extends Command
|
|
1372
1375
|
.classBuilder()
|
|
1373
1376
|
.ep(commonParams)
|
|
1374
1377
|
.m(function (Command, cs, config, o) {
|
|
1375
|
-
return [
|
|
1378
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1376
1379
|
})
|
|
1377
1380
|
.s("AWSIdentityManagementV20100508", "ListOpenIDConnectProviders", {})
|
|
1378
1381
|
.n("IAMClient", "ListOpenIDConnectProvidersCommand")
|
|
1379
|
-
.sc(
|
|
1382
|
+
.sc(ListOpenIDConnectProviders$)
|
|
1380
1383
|
.build() {
|
|
1381
1384
|
}
|
|
1382
1385
|
|
|
1383
|
-
class ListOpenIDConnectProviderTagsCommand extends
|
|
1386
|
+
class ListOpenIDConnectProviderTagsCommand extends Command
|
|
1384
1387
|
.classBuilder()
|
|
1385
1388
|
.ep(commonParams)
|
|
1386
1389
|
.m(function (Command, cs, config, o) {
|
|
1387
|
-
return [
|
|
1390
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1388
1391
|
})
|
|
1389
1392
|
.s("AWSIdentityManagementV20100508", "ListOpenIDConnectProviderTags", {})
|
|
1390
1393
|
.n("IAMClient", "ListOpenIDConnectProviderTagsCommand")
|
|
1391
|
-
.sc(
|
|
1394
|
+
.sc(ListOpenIDConnectProviderTags$)
|
|
1392
1395
|
.build() {
|
|
1393
1396
|
}
|
|
1394
1397
|
|
|
1395
|
-
class ListOrganizationsFeaturesCommand extends
|
|
1398
|
+
class ListOrganizationsFeaturesCommand extends Command
|
|
1396
1399
|
.classBuilder()
|
|
1397
1400
|
.ep(commonParams)
|
|
1398
1401
|
.m(function (Command, cs, config, o) {
|
|
1399
|
-
return [
|
|
1402
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1400
1403
|
})
|
|
1401
1404
|
.s("AWSIdentityManagementV20100508", "ListOrganizationsFeatures", {})
|
|
1402
1405
|
.n("IAMClient", "ListOrganizationsFeaturesCommand")
|
|
1403
|
-
.sc(
|
|
1406
|
+
.sc(ListOrganizationsFeatures$)
|
|
1404
1407
|
.build() {
|
|
1405
1408
|
}
|
|
1406
1409
|
|
|
1407
|
-
class ListPoliciesCommand extends
|
|
1410
|
+
class ListPoliciesCommand extends Command
|
|
1408
1411
|
.classBuilder()
|
|
1409
1412
|
.ep(commonParams)
|
|
1410
1413
|
.m(function (Command, cs, config, o) {
|
|
1411
|
-
return [
|
|
1414
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1412
1415
|
})
|
|
1413
1416
|
.s("AWSIdentityManagementV20100508", "ListPolicies", {})
|
|
1414
1417
|
.n("IAMClient", "ListPoliciesCommand")
|
|
1415
|
-
.sc(
|
|
1418
|
+
.sc(ListPolicies$)
|
|
1416
1419
|
.build() {
|
|
1417
1420
|
}
|
|
1418
1421
|
|
|
1419
|
-
class ListPoliciesGrantingServiceAccessCommand extends
|
|
1422
|
+
class ListPoliciesGrantingServiceAccessCommand extends Command
|
|
1420
1423
|
.classBuilder()
|
|
1421
1424
|
.ep(commonParams)
|
|
1422
1425
|
.m(function (Command, cs, config, o) {
|
|
1423
|
-
return [
|
|
1426
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1424
1427
|
})
|
|
1425
1428
|
.s("AWSIdentityManagementV20100508", "ListPoliciesGrantingServiceAccess", {})
|
|
1426
1429
|
.n("IAMClient", "ListPoliciesGrantingServiceAccessCommand")
|
|
1427
|
-
.sc(
|
|
1430
|
+
.sc(ListPoliciesGrantingServiceAccess$)
|
|
1428
1431
|
.build() {
|
|
1429
1432
|
}
|
|
1430
1433
|
|
|
1431
|
-
class ListPolicyTagsCommand extends
|
|
1434
|
+
class ListPolicyTagsCommand extends Command
|
|
1432
1435
|
.classBuilder()
|
|
1433
1436
|
.ep(commonParams)
|
|
1434
1437
|
.m(function (Command, cs, config, o) {
|
|
1435
|
-
return [
|
|
1438
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1436
1439
|
})
|
|
1437
1440
|
.s("AWSIdentityManagementV20100508", "ListPolicyTags", {})
|
|
1438
1441
|
.n("IAMClient", "ListPolicyTagsCommand")
|
|
1439
|
-
.sc(
|
|
1442
|
+
.sc(ListPolicyTags$)
|
|
1440
1443
|
.build() {
|
|
1441
1444
|
}
|
|
1442
1445
|
|
|
1443
|
-
class ListPolicyVersionsCommand extends
|
|
1446
|
+
class ListPolicyVersionsCommand extends Command
|
|
1444
1447
|
.classBuilder()
|
|
1445
1448
|
.ep(commonParams)
|
|
1446
1449
|
.m(function (Command, cs, config, o) {
|
|
1447
|
-
return [
|
|
1450
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1448
1451
|
})
|
|
1449
1452
|
.s("AWSIdentityManagementV20100508", "ListPolicyVersions", {})
|
|
1450
1453
|
.n("IAMClient", "ListPolicyVersionsCommand")
|
|
1451
|
-
.sc(
|
|
1454
|
+
.sc(ListPolicyVersions$)
|
|
1452
1455
|
.build() {
|
|
1453
1456
|
}
|
|
1454
1457
|
|
|
1455
|
-
class ListRolePoliciesCommand extends
|
|
1458
|
+
class ListRolePoliciesCommand extends Command
|
|
1456
1459
|
.classBuilder()
|
|
1457
1460
|
.ep(commonParams)
|
|
1458
1461
|
.m(function (Command, cs, config, o) {
|
|
1459
|
-
return [
|
|
1462
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1460
1463
|
})
|
|
1461
1464
|
.s("AWSIdentityManagementV20100508", "ListRolePolicies", {})
|
|
1462
1465
|
.n("IAMClient", "ListRolePoliciesCommand")
|
|
1463
|
-
.sc(
|
|
1466
|
+
.sc(ListRolePolicies$)
|
|
1464
1467
|
.build() {
|
|
1465
1468
|
}
|
|
1466
1469
|
|
|
1467
|
-
class ListRolesCommand extends
|
|
1470
|
+
class ListRolesCommand extends Command
|
|
1468
1471
|
.classBuilder()
|
|
1469
1472
|
.ep(commonParams)
|
|
1470
1473
|
.m(function (Command, cs, config, o) {
|
|
1471
|
-
return [
|
|
1474
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1472
1475
|
})
|
|
1473
1476
|
.s("AWSIdentityManagementV20100508", "ListRoles", {})
|
|
1474
1477
|
.n("IAMClient", "ListRolesCommand")
|
|
1475
|
-
.sc(
|
|
1478
|
+
.sc(ListRoles$)
|
|
1476
1479
|
.build() {
|
|
1477
1480
|
}
|
|
1478
1481
|
|
|
1479
|
-
class ListRoleTagsCommand extends
|
|
1482
|
+
class ListRoleTagsCommand extends Command
|
|
1480
1483
|
.classBuilder()
|
|
1481
1484
|
.ep(commonParams)
|
|
1482
1485
|
.m(function (Command, cs, config, o) {
|
|
1483
|
-
return [
|
|
1486
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1484
1487
|
})
|
|
1485
1488
|
.s("AWSIdentityManagementV20100508", "ListRoleTags", {})
|
|
1486
1489
|
.n("IAMClient", "ListRoleTagsCommand")
|
|
1487
|
-
.sc(
|
|
1490
|
+
.sc(ListRoleTags$)
|
|
1488
1491
|
.build() {
|
|
1489
1492
|
}
|
|
1490
1493
|
|
|
1491
|
-
class ListSAMLProvidersCommand extends
|
|
1494
|
+
class ListSAMLProvidersCommand extends Command
|
|
1492
1495
|
.classBuilder()
|
|
1493
1496
|
.ep(commonParams)
|
|
1494
1497
|
.m(function (Command, cs, config, o) {
|
|
1495
|
-
return [
|
|
1498
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1496
1499
|
})
|
|
1497
1500
|
.s("AWSIdentityManagementV20100508", "ListSAMLProviders", {})
|
|
1498
1501
|
.n("IAMClient", "ListSAMLProvidersCommand")
|
|
1499
|
-
.sc(
|
|
1502
|
+
.sc(ListSAMLProviders$)
|
|
1500
1503
|
.build() {
|
|
1501
1504
|
}
|
|
1502
1505
|
|
|
1503
|
-
class ListSAMLProviderTagsCommand extends
|
|
1506
|
+
class ListSAMLProviderTagsCommand extends Command
|
|
1504
1507
|
.classBuilder()
|
|
1505
1508
|
.ep(commonParams)
|
|
1506
1509
|
.m(function (Command, cs, config, o) {
|
|
1507
|
-
return [
|
|
1510
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1508
1511
|
})
|
|
1509
1512
|
.s("AWSIdentityManagementV20100508", "ListSAMLProviderTags", {})
|
|
1510
1513
|
.n("IAMClient", "ListSAMLProviderTagsCommand")
|
|
1511
|
-
.sc(
|
|
1514
|
+
.sc(ListSAMLProviderTags$)
|
|
1512
1515
|
.build() {
|
|
1513
1516
|
}
|
|
1514
1517
|
|
|
1515
|
-
class ListServerCertificatesCommand extends
|
|
1518
|
+
class ListServerCertificatesCommand extends Command
|
|
1516
1519
|
.classBuilder()
|
|
1517
1520
|
.ep(commonParams)
|
|
1518
1521
|
.m(function (Command, cs, config, o) {
|
|
1519
|
-
return [
|
|
1522
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1520
1523
|
})
|
|
1521
1524
|
.s("AWSIdentityManagementV20100508", "ListServerCertificates", {})
|
|
1522
1525
|
.n("IAMClient", "ListServerCertificatesCommand")
|
|
1523
|
-
.sc(
|
|
1526
|
+
.sc(ListServerCertificates$)
|
|
1524
1527
|
.build() {
|
|
1525
1528
|
}
|
|
1526
1529
|
|
|
1527
|
-
class ListServerCertificateTagsCommand extends
|
|
1530
|
+
class ListServerCertificateTagsCommand extends Command
|
|
1528
1531
|
.classBuilder()
|
|
1529
1532
|
.ep(commonParams)
|
|
1530
1533
|
.m(function (Command, cs, config, o) {
|
|
1531
|
-
return [
|
|
1534
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1532
1535
|
})
|
|
1533
1536
|
.s("AWSIdentityManagementV20100508", "ListServerCertificateTags", {})
|
|
1534
1537
|
.n("IAMClient", "ListServerCertificateTagsCommand")
|
|
1535
|
-
.sc(
|
|
1538
|
+
.sc(ListServerCertificateTags$)
|
|
1536
1539
|
.build() {
|
|
1537
1540
|
}
|
|
1538
1541
|
|
|
1539
|
-
class ListServiceSpecificCredentialsCommand extends
|
|
1542
|
+
class ListServiceSpecificCredentialsCommand extends Command
|
|
1540
1543
|
.classBuilder()
|
|
1541
1544
|
.ep(commonParams)
|
|
1542
1545
|
.m(function (Command, cs, config, o) {
|
|
1543
|
-
return [
|
|
1546
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1544
1547
|
})
|
|
1545
1548
|
.s("AWSIdentityManagementV20100508", "ListServiceSpecificCredentials", {})
|
|
1546
1549
|
.n("IAMClient", "ListServiceSpecificCredentialsCommand")
|
|
1547
|
-
.sc(
|
|
1550
|
+
.sc(ListServiceSpecificCredentials$)
|
|
1548
1551
|
.build() {
|
|
1549
1552
|
}
|
|
1550
1553
|
|
|
1551
|
-
class ListSigningCertificatesCommand extends
|
|
1554
|
+
class ListSigningCertificatesCommand extends Command
|
|
1552
1555
|
.classBuilder()
|
|
1553
1556
|
.ep(commonParams)
|
|
1554
1557
|
.m(function (Command, cs, config, o) {
|
|
1555
|
-
return [
|
|
1558
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1556
1559
|
})
|
|
1557
1560
|
.s("AWSIdentityManagementV20100508", "ListSigningCertificates", {})
|
|
1558
1561
|
.n("IAMClient", "ListSigningCertificatesCommand")
|
|
1559
|
-
.sc(
|
|
1562
|
+
.sc(ListSigningCertificates$)
|
|
1560
1563
|
.build() {
|
|
1561
1564
|
}
|
|
1562
1565
|
|
|
1563
|
-
class ListSSHPublicKeysCommand extends
|
|
1566
|
+
class ListSSHPublicKeysCommand extends Command
|
|
1564
1567
|
.classBuilder()
|
|
1565
1568
|
.ep(commonParams)
|
|
1566
1569
|
.m(function (Command, cs, config, o) {
|
|
1567
|
-
return [
|
|
1570
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1568
1571
|
})
|
|
1569
1572
|
.s("AWSIdentityManagementV20100508", "ListSSHPublicKeys", {})
|
|
1570
1573
|
.n("IAMClient", "ListSSHPublicKeysCommand")
|
|
1571
|
-
.sc(
|
|
1574
|
+
.sc(ListSSHPublicKeys$)
|
|
1572
1575
|
.build() {
|
|
1573
1576
|
}
|
|
1574
1577
|
|
|
1575
|
-
class ListUserPoliciesCommand extends
|
|
1578
|
+
class ListUserPoliciesCommand extends Command
|
|
1576
1579
|
.classBuilder()
|
|
1577
1580
|
.ep(commonParams)
|
|
1578
1581
|
.m(function (Command, cs, config, o) {
|
|
1579
|
-
return [
|
|
1582
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1580
1583
|
})
|
|
1581
1584
|
.s("AWSIdentityManagementV20100508", "ListUserPolicies", {})
|
|
1582
1585
|
.n("IAMClient", "ListUserPoliciesCommand")
|
|
1583
|
-
.sc(
|
|
1586
|
+
.sc(ListUserPolicies$)
|
|
1584
1587
|
.build() {
|
|
1585
1588
|
}
|
|
1586
1589
|
|
|
1587
|
-
class ListUsersCommand extends
|
|
1590
|
+
class ListUsersCommand extends Command
|
|
1588
1591
|
.classBuilder()
|
|
1589
1592
|
.ep(commonParams)
|
|
1590
1593
|
.m(function (Command, cs, config, o) {
|
|
1591
|
-
return [
|
|
1594
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1592
1595
|
})
|
|
1593
1596
|
.s("AWSIdentityManagementV20100508", "ListUsers", {})
|
|
1594
1597
|
.n("IAMClient", "ListUsersCommand")
|
|
1595
|
-
.sc(
|
|
1598
|
+
.sc(ListUsers$)
|
|
1596
1599
|
.build() {
|
|
1597
1600
|
}
|
|
1598
1601
|
|
|
1599
|
-
class ListUserTagsCommand extends
|
|
1602
|
+
class ListUserTagsCommand extends Command
|
|
1600
1603
|
.classBuilder()
|
|
1601
1604
|
.ep(commonParams)
|
|
1602
1605
|
.m(function (Command, cs, config, o) {
|
|
1603
|
-
return [
|
|
1606
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1604
1607
|
})
|
|
1605
1608
|
.s("AWSIdentityManagementV20100508", "ListUserTags", {})
|
|
1606
1609
|
.n("IAMClient", "ListUserTagsCommand")
|
|
1607
|
-
.sc(
|
|
1610
|
+
.sc(ListUserTags$)
|
|
1608
1611
|
.build() {
|
|
1609
1612
|
}
|
|
1610
1613
|
|
|
1611
|
-
class ListVirtualMFADevicesCommand extends
|
|
1614
|
+
class ListVirtualMFADevicesCommand extends Command
|
|
1612
1615
|
.classBuilder()
|
|
1613
1616
|
.ep(commonParams)
|
|
1614
1617
|
.m(function (Command, cs, config, o) {
|
|
1615
|
-
return [
|
|
1618
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1616
1619
|
})
|
|
1617
1620
|
.s("AWSIdentityManagementV20100508", "ListVirtualMFADevices", {})
|
|
1618
1621
|
.n("IAMClient", "ListVirtualMFADevicesCommand")
|
|
1619
|
-
.sc(
|
|
1622
|
+
.sc(ListVirtualMFADevices$)
|
|
1620
1623
|
.build() {
|
|
1621
1624
|
}
|
|
1622
1625
|
|
|
1623
|
-
class PutGroupPolicyCommand extends
|
|
1626
|
+
class PutGroupPolicyCommand extends Command
|
|
1624
1627
|
.classBuilder()
|
|
1625
1628
|
.ep(commonParams)
|
|
1626
1629
|
.m(function (Command, cs, config, o) {
|
|
1627
|
-
return [
|
|
1630
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1628
1631
|
})
|
|
1629
1632
|
.s("AWSIdentityManagementV20100508", "PutGroupPolicy", {})
|
|
1630
1633
|
.n("IAMClient", "PutGroupPolicyCommand")
|
|
1631
|
-
.sc(
|
|
1634
|
+
.sc(PutGroupPolicy$)
|
|
1632
1635
|
.build() {
|
|
1633
1636
|
}
|
|
1634
1637
|
|
|
1635
|
-
class PutRolePermissionsBoundaryCommand extends
|
|
1638
|
+
class PutRolePermissionsBoundaryCommand extends Command
|
|
1636
1639
|
.classBuilder()
|
|
1637
1640
|
.ep(commonParams)
|
|
1638
1641
|
.m(function (Command, cs, config, o) {
|
|
1639
|
-
return [
|
|
1642
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1640
1643
|
})
|
|
1641
1644
|
.s("AWSIdentityManagementV20100508", "PutRolePermissionsBoundary", {})
|
|
1642
1645
|
.n("IAMClient", "PutRolePermissionsBoundaryCommand")
|
|
1643
|
-
.sc(
|
|
1646
|
+
.sc(PutRolePermissionsBoundary$)
|
|
1644
1647
|
.build() {
|
|
1645
1648
|
}
|
|
1646
1649
|
|
|
1647
|
-
class PutRolePolicyCommand extends
|
|
1650
|
+
class PutRolePolicyCommand extends Command
|
|
1648
1651
|
.classBuilder()
|
|
1649
1652
|
.ep(commonParams)
|
|
1650
1653
|
.m(function (Command, cs, config, o) {
|
|
1651
|
-
return [
|
|
1654
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1652
1655
|
})
|
|
1653
1656
|
.s("AWSIdentityManagementV20100508", "PutRolePolicy", {})
|
|
1654
1657
|
.n("IAMClient", "PutRolePolicyCommand")
|
|
1655
|
-
.sc(
|
|
1658
|
+
.sc(PutRolePolicy$)
|
|
1656
1659
|
.build() {
|
|
1657
1660
|
}
|
|
1658
1661
|
|
|
1659
|
-
class PutUserPermissionsBoundaryCommand extends
|
|
1662
|
+
class PutUserPermissionsBoundaryCommand extends Command
|
|
1660
1663
|
.classBuilder()
|
|
1661
1664
|
.ep(commonParams)
|
|
1662
1665
|
.m(function (Command, cs, config, o) {
|
|
1663
|
-
return [
|
|
1666
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1664
1667
|
})
|
|
1665
1668
|
.s("AWSIdentityManagementV20100508", "PutUserPermissionsBoundary", {})
|
|
1666
1669
|
.n("IAMClient", "PutUserPermissionsBoundaryCommand")
|
|
1667
|
-
.sc(
|
|
1670
|
+
.sc(PutUserPermissionsBoundary$)
|
|
1668
1671
|
.build() {
|
|
1669
1672
|
}
|
|
1670
1673
|
|
|
1671
|
-
class PutUserPolicyCommand extends
|
|
1674
|
+
class PutUserPolicyCommand extends Command
|
|
1672
1675
|
.classBuilder()
|
|
1673
1676
|
.ep(commonParams)
|
|
1674
1677
|
.m(function (Command, cs, config, o) {
|
|
1675
|
-
return [
|
|
1678
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1676
1679
|
})
|
|
1677
1680
|
.s("AWSIdentityManagementV20100508", "PutUserPolicy", {})
|
|
1678
1681
|
.n("IAMClient", "PutUserPolicyCommand")
|
|
1679
|
-
.sc(
|
|
1682
|
+
.sc(PutUserPolicy$)
|
|
1680
1683
|
.build() {
|
|
1681
1684
|
}
|
|
1682
1685
|
|
|
1683
|
-
class RejectDelegationRequestCommand extends
|
|
1686
|
+
class RejectDelegationRequestCommand extends Command
|
|
1684
1687
|
.classBuilder()
|
|
1685
1688
|
.ep(commonParams)
|
|
1686
1689
|
.m(function (Command, cs, config, o) {
|
|
1687
|
-
return [
|
|
1690
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1688
1691
|
})
|
|
1689
1692
|
.s("AWSIdentityManagementV20100508", "RejectDelegationRequest", {})
|
|
1690
1693
|
.n("IAMClient", "RejectDelegationRequestCommand")
|
|
1691
|
-
.sc(
|
|
1694
|
+
.sc(RejectDelegationRequest$)
|
|
1692
1695
|
.build() {
|
|
1693
1696
|
}
|
|
1694
1697
|
|
|
1695
|
-
class RemoveClientIDFromOpenIDConnectProviderCommand extends
|
|
1698
|
+
class RemoveClientIDFromOpenIDConnectProviderCommand extends Command
|
|
1696
1699
|
.classBuilder()
|
|
1697
1700
|
.ep(commonParams)
|
|
1698
1701
|
.m(function (Command, cs, config, o) {
|
|
1699
|
-
return [
|
|
1702
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1700
1703
|
})
|
|
1701
1704
|
.s("AWSIdentityManagementV20100508", "RemoveClientIDFromOpenIDConnectProvider", {})
|
|
1702
1705
|
.n("IAMClient", "RemoveClientIDFromOpenIDConnectProviderCommand")
|
|
1703
|
-
.sc(
|
|
1706
|
+
.sc(RemoveClientIDFromOpenIDConnectProvider$)
|
|
1704
1707
|
.build() {
|
|
1705
1708
|
}
|
|
1706
1709
|
|
|
1707
|
-
class RemoveRoleFromInstanceProfileCommand extends
|
|
1710
|
+
class RemoveRoleFromInstanceProfileCommand extends Command
|
|
1708
1711
|
.classBuilder()
|
|
1709
1712
|
.ep(commonParams)
|
|
1710
1713
|
.m(function (Command, cs, config, o) {
|
|
1711
|
-
return [
|
|
1714
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1712
1715
|
})
|
|
1713
1716
|
.s("AWSIdentityManagementV20100508", "RemoveRoleFromInstanceProfile", {})
|
|
1714
1717
|
.n("IAMClient", "RemoveRoleFromInstanceProfileCommand")
|
|
1715
|
-
.sc(
|
|
1718
|
+
.sc(RemoveRoleFromInstanceProfile$)
|
|
1716
1719
|
.build() {
|
|
1717
1720
|
}
|
|
1718
1721
|
|
|
1719
|
-
class RemoveUserFromGroupCommand extends
|
|
1722
|
+
class RemoveUserFromGroupCommand extends Command
|
|
1720
1723
|
.classBuilder()
|
|
1721
1724
|
.ep(commonParams)
|
|
1722
1725
|
.m(function (Command, cs, config, o) {
|
|
1723
|
-
return [
|
|
1726
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1724
1727
|
})
|
|
1725
1728
|
.s("AWSIdentityManagementV20100508", "RemoveUserFromGroup", {})
|
|
1726
1729
|
.n("IAMClient", "RemoveUserFromGroupCommand")
|
|
1727
|
-
.sc(
|
|
1730
|
+
.sc(RemoveUserFromGroup$)
|
|
1728
1731
|
.build() {
|
|
1729
1732
|
}
|
|
1730
1733
|
|
|
1731
|
-
class ResetServiceSpecificCredentialCommand extends
|
|
1734
|
+
class ResetServiceSpecificCredentialCommand extends Command
|
|
1732
1735
|
.classBuilder()
|
|
1733
1736
|
.ep(commonParams)
|
|
1734
1737
|
.m(function (Command, cs, config, o) {
|
|
1735
|
-
return [
|
|
1738
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1736
1739
|
})
|
|
1737
1740
|
.s("AWSIdentityManagementV20100508", "ResetServiceSpecificCredential", {})
|
|
1738
1741
|
.n("IAMClient", "ResetServiceSpecificCredentialCommand")
|
|
1739
|
-
.sc(
|
|
1742
|
+
.sc(ResetServiceSpecificCredential$)
|
|
1740
1743
|
.build() {
|
|
1741
1744
|
}
|
|
1742
1745
|
|
|
1743
|
-
class ResyncMFADeviceCommand extends
|
|
1746
|
+
class ResyncMFADeviceCommand extends Command
|
|
1744
1747
|
.classBuilder()
|
|
1745
1748
|
.ep(commonParams)
|
|
1746
1749
|
.m(function (Command, cs, config, o) {
|
|
1747
|
-
return [
|
|
1750
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1748
1751
|
})
|
|
1749
1752
|
.s("AWSIdentityManagementV20100508", "ResyncMFADevice", {})
|
|
1750
1753
|
.n("IAMClient", "ResyncMFADeviceCommand")
|
|
1751
|
-
.sc(
|
|
1754
|
+
.sc(ResyncMFADevice$)
|
|
1752
1755
|
.build() {
|
|
1753
1756
|
}
|
|
1754
1757
|
|
|
1755
|
-
class SendDelegationTokenCommand extends
|
|
1758
|
+
class SendDelegationTokenCommand extends Command
|
|
1756
1759
|
.classBuilder()
|
|
1757
1760
|
.ep(commonParams)
|
|
1758
1761
|
.m(function (Command, cs, config, o) {
|
|
1759
|
-
return [
|
|
1762
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1760
1763
|
})
|
|
1761
1764
|
.s("AWSIdentityManagementV20100508", "SendDelegationToken", {})
|
|
1762
1765
|
.n("IAMClient", "SendDelegationTokenCommand")
|
|
1763
|
-
.sc(
|
|
1766
|
+
.sc(SendDelegationToken$)
|
|
1764
1767
|
.build() {
|
|
1765
1768
|
}
|
|
1766
1769
|
|
|
1767
|
-
class SetDefaultPolicyVersionCommand extends
|
|
1770
|
+
class SetDefaultPolicyVersionCommand extends Command
|
|
1768
1771
|
.classBuilder()
|
|
1769
1772
|
.ep(commonParams)
|
|
1770
1773
|
.m(function (Command, cs, config, o) {
|
|
1771
|
-
return [
|
|
1774
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1772
1775
|
})
|
|
1773
1776
|
.s("AWSIdentityManagementV20100508", "SetDefaultPolicyVersion", {})
|
|
1774
1777
|
.n("IAMClient", "SetDefaultPolicyVersionCommand")
|
|
1775
|
-
.sc(
|
|
1778
|
+
.sc(SetDefaultPolicyVersion$)
|
|
1776
1779
|
.build() {
|
|
1777
1780
|
}
|
|
1778
1781
|
|
|
1779
|
-
class SetSecurityTokenServicePreferencesCommand extends
|
|
1782
|
+
class SetSecurityTokenServicePreferencesCommand extends Command
|
|
1780
1783
|
.classBuilder()
|
|
1781
1784
|
.ep(commonParams)
|
|
1782
1785
|
.m(function (Command, cs, config, o) {
|
|
1783
|
-
return [
|
|
1786
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1784
1787
|
})
|
|
1785
1788
|
.s("AWSIdentityManagementV20100508", "SetSecurityTokenServicePreferences", {})
|
|
1786
1789
|
.n("IAMClient", "SetSecurityTokenServicePreferencesCommand")
|
|
1787
|
-
.sc(
|
|
1790
|
+
.sc(SetSecurityTokenServicePreferences$)
|
|
1788
1791
|
.build() {
|
|
1789
1792
|
}
|
|
1790
1793
|
|
|
1791
|
-
class SimulateCustomPolicyCommand extends
|
|
1794
|
+
class SimulateCustomPolicyCommand extends Command
|
|
1792
1795
|
.classBuilder()
|
|
1793
1796
|
.ep(commonParams)
|
|
1794
1797
|
.m(function (Command, cs, config, o) {
|
|
1795
|
-
return [
|
|
1798
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1796
1799
|
})
|
|
1797
1800
|
.s("AWSIdentityManagementV20100508", "SimulateCustomPolicy", {})
|
|
1798
1801
|
.n("IAMClient", "SimulateCustomPolicyCommand")
|
|
1799
|
-
.sc(
|
|
1802
|
+
.sc(SimulateCustomPolicy$)
|
|
1800
1803
|
.build() {
|
|
1801
1804
|
}
|
|
1802
1805
|
|
|
1803
|
-
class SimulatePrincipalPolicyCommand extends
|
|
1806
|
+
class SimulatePrincipalPolicyCommand extends Command
|
|
1804
1807
|
.classBuilder()
|
|
1805
1808
|
.ep(commonParams)
|
|
1806
1809
|
.m(function (Command, cs, config, o) {
|
|
1807
|
-
return [
|
|
1810
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1808
1811
|
})
|
|
1809
1812
|
.s("AWSIdentityManagementV20100508", "SimulatePrincipalPolicy", {})
|
|
1810
1813
|
.n("IAMClient", "SimulatePrincipalPolicyCommand")
|
|
1811
|
-
.sc(
|
|
1814
|
+
.sc(SimulatePrincipalPolicy$)
|
|
1812
1815
|
.build() {
|
|
1813
1816
|
}
|
|
1814
1817
|
|
|
1815
|
-
class TagInstanceProfileCommand extends
|
|
1818
|
+
class TagInstanceProfileCommand extends Command
|
|
1816
1819
|
.classBuilder()
|
|
1817
1820
|
.ep(commonParams)
|
|
1818
1821
|
.m(function (Command, cs, config, o) {
|
|
1819
|
-
return [
|
|
1822
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1820
1823
|
})
|
|
1821
1824
|
.s("AWSIdentityManagementV20100508", "TagInstanceProfile", {})
|
|
1822
1825
|
.n("IAMClient", "TagInstanceProfileCommand")
|
|
1823
|
-
.sc(
|
|
1826
|
+
.sc(TagInstanceProfile$)
|
|
1824
1827
|
.build() {
|
|
1825
1828
|
}
|
|
1826
1829
|
|
|
1827
|
-
class TagMFADeviceCommand extends
|
|
1830
|
+
class TagMFADeviceCommand extends Command
|
|
1828
1831
|
.classBuilder()
|
|
1829
1832
|
.ep(commonParams)
|
|
1830
1833
|
.m(function (Command, cs, config, o) {
|
|
1831
|
-
return [
|
|
1834
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1832
1835
|
})
|
|
1833
1836
|
.s("AWSIdentityManagementV20100508", "TagMFADevice", {})
|
|
1834
1837
|
.n("IAMClient", "TagMFADeviceCommand")
|
|
1835
|
-
.sc(
|
|
1838
|
+
.sc(TagMFADevice$)
|
|
1836
1839
|
.build() {
|
|
1837
1840
|
}
|
|
1838
1841
|
|
|
1839
|
-
class TagOpenIDConnectProviderCommand extends
|
|
1842
|
+
class TagOpenIDConnectProviderCommand extends Command
|
|
1840
1843
|
.classBuilder()
|
|
1841
1844
|
.ep(commonParams)
|
|
1842
1845
|
.m(function (Command, cs, config, o) {
|
|
1843
|
-
return [
|
|
1846
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1844
1847
|
})
|
|
1845
1848
|
.s("AWSIdentityManagementV20100508", "TagOpenIDConnectProvider", {})
|
|
1846
1849
|
.n("IAMClient", "TagOpenIDConnectProviderCommand")
|
|
1847
|
-
.sc(
|
|
1850
|
+
.sc(TagOpenIDConnectProvider$)
|
|
1848
1851
|
.build() {
|
|
1849
1852
|
}
|
|
1850
1853
|
|
|
1851
|
-
class TagPolicyCommand extends
|
|
1854
|
+
class TagPolicyCommand extends Command
|
|
1852
1855
|
.classBuilder()
|
|
1853
1856
|
.ep(commonParams)
|
|
1854
1857
|
.m(function (Command, cs, config, o) {
|
|
1855
|
-
return [
|
|
1858
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1856
1859
|
})
|
|
1857
1860
|
.s("AWSIdentityManagementV20100508", "TagPolicy", {})
|
|
1858
1861
|
.n("IAMClient", "TagPolicyCommand")
|
|
1859
|
-
.sc(
|
|
1862
|
+
.sc(TagPolicy$)
|
|
1860
1863
|
.build() {
|
|
1861
1864
|
}
|
|
1862
1865
|
|
|
1863
|
-
class TagRoleCommand extends
|
|
1866
|
+
class TagRoleCommand extends Command
|
|
1864
1867
|
.classBuilder()
|
|
1865
1868
|
.ep(commonParams)
|
|
1866
1869
|
.m(function (Command, cs, config, o) {
|
|
1867
|
-
return [
|
|
1870
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1868
1871
|
})
|
|
1869
1872
|
.s("AWSIdentityManagementV20100508", "TagRole", {})
|
|
1870
1873
|
.n("IAMClient", "TagRoleCommand")
|
|
1871
|
-
.sc(
|
|
1874
|
+
.sc(TagRole$)
|
|
1872
1875
|
.build() {
|
|
1873
1876
|
}
|
|
1874
1877
|
|
|
1875
|
-
class TagSAMLProviderCommand extends
|
|
1878
|
+
class TagSAMLProviderCommand extends Command
|
|
1876
1879
|
.classBuilder()
|
|
1877
1880
|
.ep(commonParams)
|
|
1878
1881
|
.m(function (Command, cs, config, o) {
|
|
1879
|
-
return [
|
|
1882
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1880
1883
|
})
|
|
1881
1884
|
.s("AWSIdentityManagementV20100508", "TagSAMLProvider", {})
|
|
1882
1885
|
.n("IAMClient", "TagSAMLProviderCommand")
|
|
1883
|
-
.sc(
|
|
1886
|
+
.sc(TagSAMLProvider$)
|
|
1884
1887
|
.build() {
|
|
1885
1888
|
}
|
|
1886
1889
|
|
|
1887
|
-
class TagServerCertificateCommand extends
|
|
1890
|
+
class TagServerCertificateCommand extends Command
|
|
1888
1891
|
.classBuilder()
|
|
1889
1892
|
.ep(commonParams)
|
|
1890
1893
|
.m(function (Command, cs, config, o) {
|
|
1891
|
-
return [
|
|
1894
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1892
1895
|
})
|
|
1893
1896
|
.s("AWSIdentityManagementV20100508", "TagServerCertificate", {})
|
|
1894
1897
|
.n("IAMClient", "TagServerCertificateCommand")
|
|
1895
|
-
.sc(
|
|
1898
|
+
.sc(TagServerCertificate$)
|
|
1896
1899
|
.build() {
|
|
1897
1900
|
}
|
|
1898
1901
|
|
|
1899
|
-
class TagUserCommand extends
|
|
1902
|
+
class TagUserCommand extends Command
|
|
1900
1903
|
.classBuilder()
|
|
1901
1904
|
.ep(commonParams)
|
|
1902
1905
|
.m(function (Command, cs, config, o) {
|
|
1903
|
-
return [
|
|
1906
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1904
1907
|
})
|
|
1905
1908
|
.s("AWSIdentityManagementV20100508", "TagUser", {})
|
|
1906
1909
|
.n("IAMClient", "TagUserCommand")
|
|
1907
|
-
.sc(
|
|
1910
|
+
.sc(TagUser$)
|
|
1908
1911
|
.build() {
|
|
1909
1912
|
}
|
|
1910
1913
|
|
|
1911
|
-
class UntagInstanceProfileCommand extends
|
|
1914
|
+
class UntagInstanceProfileCommand extends Command
|
|
1912
1915
|
.classBuilder()
|
|
1913
1916
|
.ep(commonParams)
|
|
1914
1917
|
.m(function (Command, cs, config, o) {
|
|
1915
|
-
return [
|
|
1918
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1916
1919
|
})
|
|
1917
1920
|
.s("AWSIdentityManagementV20100508", "UntagInstanceProfile", {})
|
|
1918
1921
|
.n("IAMClient", "UntagInstanceProfileCommand")
|
|
1919
|
-
.sc(
|
|
1922
|
+
.sc(UntagInstanceProfile$)
|
|
1920
1923
|
.build() {
|
|
1921
1924
|
}
|
|
1922
1925
|
|
|
1923
|
-
class UntagMFADeviceCommand extends
|
|
1926
|
+
class UntagMFADeviceCommand extends Command
|
|
1924
1927
|
.classBuilder()
|
|
1925
1928
|
.ep(commonParams)
|
|
1926
1929
|
.m(function (Command, cs, config, o) {
|
|
1927
|
-
return [
|
|
1930
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1928
1931
|
})
|
|
1929
1932
|
.s("AWSIdentityManagementV20100508", "UntagMFADevice", {})
|
|
1930
1933
|
.n("IAMClient", "UntagMFADeviceCommand")
|
|
1931
|
-
.sc(
|
|
1934
|
+
.sc(UntagMFADevice$)
|
|
1932
1935
|
.build() {
|
|
1933
1936
|
}
|
|
1934
1937
|
|
|
1935
|
-
class UntagOpenIDConnectProviderCommand extends
|
|
1938
|
+
class UntagOpenIDConnectProviderCommand extends Command
|
|
1936
1939
|
.classBuilder()
|
|
1937
1940
|
.ep(commonParams)
|
|
1938
1941
|
.m(function (Command, cs, config, o) {
|
|
1939
|
-
return [
|
|
1942
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1940
1943
|
})
|
|
1941
1944
|
.s("AWSIdentityManagementV20100508", "UntagOpenIDConnectProvider", {})
|
|
1942
1945
|
.n("IAMClient", "UntagOpenIDConnectProviderCommand")
|
|
1943
|
-
.sc(
|
|
1946
|
+
.sc(UntagOpenIDConnectProvider$)
|
|
1944
1947
|
.build() {
|
|
1945
1948
|
}
|
|
1946
1949
|
|
|
1947
|
-
class UntagPolicyCommand extends
|
|
1950
|
+
class UntagPolicyCommand extends Command
|
|
1948
1951
|
.classBuilder()
|
|
1949
1952
|
.ep(commonParams)
|
|
1950
1953
|
.m(function (Command, cs, config, o) {
|
|
1951
|
-
return [
|
|
1954
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1952
1955
|
})
|
|
1953
1956
|
.s("AWSIdentityManagementV20100508", "UntagPolicy", {})
|
|
1954
1957
|
.n("IAMClient", "UntagPolicyCommand")
|
|
1955
|
-
.sc(
|
|
1958
|
+
.sc(UntagPolicy$)
|
|
1956
1959
|
.build() {
|
|
1957
1960
|
}
|
|
1958
1961
|
|
|
1959
|
-
class UntagRoleCommand extends
|
|
1962
|
+
class UntagRoleCommand extends Command
|
|
1960
1963
|
.classBuilder()
|
|
1961
1964
|
.ep(commonParams)
|
|
1962
1965
|
.m(function (Command, cs, config, o) {
|
|
1963
|
-
return [
|
|
1966
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1964
1967
|
})
|
|
1965
1968
|
.s("AWSIdentityManagementV20100508", "UntagRole", {})
|
|
1966
1969
|
.n("IAMClient", "UntagRoleCommand")
|
|
1967
|
-
.sc(
|
|
1970
|
+
.sc(UntagRole$)
|
|
1968
1971
|
.build() {
|
|
1969
1972
|
}
|
|
1970
1973
|
|
|
1971
|
-
class UntagSAMLProviderCommand extends
|
|
1974
|
+
class UntagSAMLProviderCommand extends Command
|
|
1972
1975
|
.classBuilder()
|
|
1973
1976
|
.ep(commonParams)
|
|
1974
1977
|
.m(function (Command, cs, config, o) {
|
|
1975
|
-
return [
|
|
1978
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1976
1979
|
})
|
|
1977
1980
|
.s("AWSIdentityManagementV20100508", "UntagSAMLProvider", {})
|
|
1978
1981
|
.n("IAMClient", "UntagSAMLProviderCommand")
|
|
1979
|
-
.sc(
|
|
1982
|
+
.sc(UntagSAMLProvider$)
|
|
1980
1983
|
.build() {
|
|
1981
1984
|
}
|
|
1982
1985
|
|
|
1983
|
-
class UntagServerCertificateCommand extends
|
|
1986
|
+
class UntagServerCertificateCommand extends Command
|
|
1984
1987
|
.classBuilder()
|
|
1985
1988
|
.ep(commonParams)
|
|
1986
1989
|
.m(function (Command, cs, config, o) {
|
|
1987
|
-
return [
|
|
1990
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1988
1991
|
})
|
|
1989
1992
|
.s("AWSIdentityManagementV20100508", "UntagServerCertificate", {})
|
|
1990
1993
|
.n("IAMClient", "UntagServerCertificateCommand")
|
|
1991
|
-
.sc(
|
|
1994
|
+
.sc(UntagServerCertificate$)
|
|
1992
1995
|
.build() {
|
|
1993
1996
|
}
|
|
1994
1997
|
|
|
1995
|
-
class UntagUserCommand extends
|
|
1998
|
+
class UntagUserCommand extends Command
|
|
1996
1999
|
.classBuilder()
|
|
1997
2000
|
.ep(commonParams)
|
|
1998
2001
|
.m(function (Command, cs, config, o) {
|
|
1999
|
-
return [
|
|
2002
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2000
2003
|
})
|
|
2001
2004
|
.s("AWSIdentityManagementV20100508", "UntagUser", {})
|
|
2002
2005
|
.n("IAMClient", "UntagUserCommand")
|
|
2003
|
-
.sc(
|
|
2006
|
+
.sc(UntagUser$)
|
|
2004
2007
|
.build() {
|
|
2005
2008
|
}
|
|
2006
2009
|
|
|
2007
|
-
class UpdateAccessKeyCommand extends
|
|
2010
|
+
class UpdateAccessKeyCommand extends Command
|
|
2008
2011
|
.classBuilder()
|
|
2009
2012
|
.ep(commonParams)
|
|
2010
2013
|
.m(function (Command, cs, config, o) {
|
|
2011
|
-
return [
|
|
2014
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2012
2015
|
})
|
|
2013
2016
|
.s("AWSIdentityManagementV20100508", "UpdateAccessKey", {})
|
|
2014
2017
|
.n("IAMClient", "UpdateAccessKeyCommand")
|
|
2015
|
-
.sc(
|
|
2018
|
+
.sc(UpdateAccessKey$)
|
|
2016
2019
|
.build() {
|
|
2017
2020
|
}
|
|
2018
2021
|
|
|
2019
|
-
class UpdateAccountPasswordPolicyCommand extends
|
|
2022
|
+
class UpdateAccountPasswordPolicyCommand extends Command
|
|
2020
2023
|
.classBuilder()
|
|
2021
2024
|
.ep(commonParams)
|
|
2022
2025
|
.m(function (Command, cs, config, o) {
|
|
2023
|
-
return [
|
|
2026
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2024
2027
|
})
|
|
2025
2028
|
.s("AWSIdentityManagementV20100508", "UpdateAccountPasswordPolicy", {})
|
|
2026
2029
|
.n("IAMClient", "UpdateAccountPasswordPolicyCommand")
|
|
2027
|
-
.sc(
|
|
2030
|
+
.sc(UpdateAccountPasswordPolicy$)
|
|
2028
2031
|
.build() {
|
|
2029
2032
|
}
|
|
2030
2033
|
|
|
2031
|
-
class UpdateAssumeRolePolicyCommand extends
|
|
2034
|
+
class UpdateAssumeRolePolicyCommand extends Command
|
|
2032
2035
|
.classBuilder()
|
|
2033
2036
|
.ep(commonParams)
|
|
2034
2037
|
.m(function (Command, cs, config, o) {
|
|
2035
|
-
return [
|
|
2038
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2036
2039
|
})
|
|
2037
2040
|
.s("AWSIdentityManagementV20100508", "UpdateAssumeRolePolicy", {})
|
|
2038
2041
|
.n("IAMClient", "UpdateAssumeRolePolicyCommand")
|
|
2039
|
-
.sc(
|
|
2042
|
+
.sc(UpdateAssumeRolePolicy$)
|
|
2040
2043
|
.build() {
|
|
2041
2044
|
}
|
|
2042
2045
|
|
|
2043
|
-
class UpdateDelegationRequestCommand extends
|
|
2046
|
+
class UpdateDelegationRequestCommand extends Command
|
|
2044
2047
|
.classBuilder()
|
|
2045
2048
|
.ep(commonParams)
|
|
2046
2049
|
.m(function (Command, cs, config, o) {
|
|
2047
|
-
return [
|
|
2050
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2048
2051
|
})
|
|
2049
2052
|
.s("AWSIdentityManagementV20100508", "UpdateDelegationRequest", {})
|
|
2050
2053
|
.n("IAMClient", "UpdateDelegationRequestCommand")
|
|
2051
|
-
.sc(
|
|
2054
|
+
.sc(UpdateDelegationRequest$)
|
|
2052
2055
|
.build() {
|
|
2053
2056
|
}
|
|
2054
2057
|
|
|
2055
|
-
class UpdateGroupCommand extends
|
|
2058
|
+
class UpdateGroupCommand extends Command
|
|
2056
2059
|
.classBuilder()
|
|
2057
2060
|
.ep(commonParams)
|
|
2058
2061
|
.m(function (Command, cs, config, o) {
|
|
2059
|
-
return [
|
|
2062
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2060
2063
|
})
|
|
2061
2064
|
.s("AWSIdentityManagementV20100508", "UpdateGroup", {})
|
|
2062
2065
|
.n("IAMClient", "UpdateGroupCommand")
|
|
2063
|
-
.sc(
|
|
2066
|
+
.sc(UpdateGroup$)
|
|
2064
2067
|
.build() {
|
|
2065
2068
|
}
|
|
2066
2069
|
|
|
2067
|
-
class UpdateLoginProfileCommand extends
|
|
2070
|
+
class UpdateLoginProfileCommand extends Command
|
|
2068
2071
|
.classBuilder()
|
|
2069
2072
|
.ep(commonParams)
|
|
2070
2073
|
.m(function (Command, cs, config, o) {
|
|
2071
|
-
return [
|
|
2074
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2072
2075
|
})
|
|
2073
2076
|
.s("AWSIdentityManagementV20100508", "UpdateLoginProfile", {})
|
|
2074
2077
|
.n("IAMClient", "UpdateLoginProfileCommand")
|
|
2075
|
-
.sc(
|
|
2078
|
+
.sc(UpdateLoginProfile$)
|
|
2076
2079
|
.build() {
|
|
2077
2080
|
}
|
|
2078
2081
|
|
|
2079
|
-
class UpdateOpenIDConnectProviderThumbprintCommand extends
|
|
2082
|
+
class UpdateOpenIDConnectProviderThumbprintCommand extends Command
|
|
2080
2083
|
.classBuilder()
|
|
2081
2084
|
.ep(commonParams)
|
|
2082
2085
|
.m(function (Command, cs, config, o) {
|
|
2083
|
-
return [
|
|
2086
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2084
2087
|
})
|
|
2085
2088
|
.s("AWSIdentityManagementV20100508", "UpdateOpenIDConnectProviderThumbprint", {})
|
|
2086
2089
|
.n("IAMClient", "UpdateOpenIDConnectProviderThumbprintCommand")
|
|
2087
|
-
.sc(
|
|
2090
|
+
.sc(UpdateOpenIDConnectProviderThumbprint$)
|
|
2088
2091
|
.build() {
|
|
2089
2092
|
}
|
|
2090
2093
|
|
|
2091
|
-
class UpdateRoleCommand extends
|
|
2094
|
+
class UpdateRoleCommand extends Command
|
|
2092
2095
|
.classBuilder()
|
|
2093
2096
|
.ep(commonParams)
|
|
2094
2097
|
.m(function (Command, cs, config, o) {
|
|
2095
|
-
return [
|
|
2098
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2096
2099
|
})
|
|
2097
2100
|
.s("AWSIdentityManagementV20100508", "UpdateRole", {})
|
|
2098
2101
|
.n("IAMClient", "UpdateRoleCommand")
|
|
2099
|
-
.sc(
|
|
2102
|
+
.sc(UpdateRole$)
|
|
2100
2103
|
.build() {
|
|
2101
2104
|
}
|
|
2102
2105
|
|
|
2103
|
-
class UpdateRoleDescriptionCommand extends
|
|
2106
|
+
class UpdateRoleDescriptionCommand extends Command
|
|
2104
2107
|
.classBuilder()
|
|
2105
2108
|
.ep(commonParams)
|
|
2106
2109
|
.m(function (Command, cs, config, o) {
|
|
2107
|
-
return [
|
|
2110
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2108
2111
|
})
|
|
2109
2112
|
.s("AWSIdentityManagementV20100508", "UpdateRoleDescription", {})
|
|
2110
2113
|
.n("IAMClient", "UpdateRoleDescriptionCommand")
|
|
2111
|
-
.sc(
|
|
2114
|
+
.sc(UpdateRoleDescription$)
|
|
2112
2115
|
.build() {
|
|
2113
2116
|
}
|
|
2114
2117
|
|
|
2115
|
-
class UpdateSAMLProviderCommand extends
|
|
2118
|
+
class UpdateSAMLProviderCommand extends Command
|
|
2116
2119
|
.classBuilder()
|
|
2117
2120
|
.ep(commonParams)
|
|
2118
2121
|
.m(function (Command, cs, config, o) {
|
|
2119
|
-
return [
|
|
2122
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2120
2123
|
})
|
|
2121
2124
|
.s("AWSIdentityManagementV20100508", "UpdateSAMLProvider", {})
|
|
2122
2125
|
.n("IAMClient", "UpdateSAMLProviderCommand")
|
|
2123
|
-
.sc(
|
|
2126
|
+
.sc(UpdateSAMLProvider$)
|
|
2124
2127
|
.build() {
|
|
2125
2128
|
}
|
|
2126
2129
|
|
|
2127
|
-
class UpdateServerCertificateCommand extends
|
|
2130
|
+
class UpdateServerCertificateCommand extends Command
|
|
2128
2131
|
.classBuilder()
|
|
2129
2132
|
.ep(commonParams)
|
|
2130
2133
|
.m(function (Command, cs, config, o) {
|
|
2131
|
-
return [
|
|
2134
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2132
2135
|
})
|
|
2133
2136
|
.s("AWSIdentityManagementV20100508", "UpdateServerCertificate", {})
|
|
2134
2137
|
.n("IAMClient", "UpdateServerCertificateCommand")
|
|
2135
|
-
.sc(
|
|
2138
|
+
.sc(UpdateServerCertificate$)
|
|
2136
2139
|
.build() {
|
|
2137
2140
|
}
|
|
2138
2141
|
|
|
2139
|
-
class UpdateServiceSpecificCredentialCommand extends
|
|
2142
|
+
class UpdateServiceSpecificCredentialCommand extends Command
|
|
2140
2143
|
.classBuilder()
|
|
2141
2144
|
.ep(commonParams)
|
|
2142
2145
|
.m(function (Command, cs, config, o) {
|
|
2143
|
-
return [
|
|
2146
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2144
2147
|
})
|
|
2145
2148
|
.s("AWSIdentityManagementV20100508", "UpdateServiceSpecificCredential", {})
|
|
2146
2149
|
.n("IAMClient", "UpdateServiceSpecificCredentialCommand")
|
|
2147
|
-
.sc(
|
|
2150
|
+
.sc(UpdateServiceSpecificCredential$)
|
|
2148
2151
|
.build() {
|
|
2149
2152
|
}
|
|
2150
2153
|
|
|
2151
|
-
class UpdateSigningCertificateCommand extends
|
|
2154
|
+
class UpdateSigningCertificateCommand extends Command
|
|
2152
2155
|
.classBuilder()
|
|
2153
2156
|
.ep(commonParams)
|
|
2154
2157
|
.m(function (Command, cs, config, o) {
|
|
2155
|
-
return [
|
|
2158
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2156
2159
|
})
|
|
2157
2160
|
.s("AWSIdentityManagementV20100508", "UpdateSigningCertificate", {})
|
|
2158
2161
|
.n("IAMClient", "UpdateSigningCertificateCommand")
|
|
2159
|
-
.sc(
|
|
2162
|
+
.sc(UpdateSigningCertificate$)
|
|
2160
2163
|
.build() {
|
|
2161
2164
|
}
|
|
2162
2165
|
|
|
2163
|
-
class UpdateSSHPublicKeyCommand extends
|
|
2166
|
+
class UpdateSSHPublicKeyCommand extends Command
|
|
2164
2167
|
.classBuilder()
|
|
2165
2168
|
.ep(commonParams)
|
|
2166
2169
|
.m(function (Command, cs, config, o) {
|
|
2167
|
-
return [
|
|
2170
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2168
2171
|
})
|
|
2169
2172
|
.s("AWSIdentityManagementV20100508", "UpdateSSHPublicKey", {})
|
|
2170
2173
|
.n("IAMClient", "UpdateSSHPublicKeyCommand")
|
|
2171
|
-
.sc(
|
|
2174
|
+
.sc(UpdateSSHPublicKey$)
|
|
2172
2175
|
.build() {
|
|
2173
2176
|
}
|
|
2174
2177
|
|
|
2175
|
-
class UpdateUserCommand extends
|
|
2178
|
+
class UpdateUserCommand extends Command
|
|
2176
2179
|
.classBuilder()
|
|
2177
2180
|
.ep(commonParams)
|
|
2178
2181
|
.m(function (Command, cs, config, o) {
|
|
2179
|
-
return [
|
|
2182
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2180
2183
|
})
|
|
2181
2184
|
.s("AWSIdentityManagementV20100508", "UpdateUser", {})
|
|
2182
2185
|
.n("IAMClient", "UpdateUserCommand")
|
|
2183
|
-
.sc(
|
|
2186
|
+
.sc(UpdateUser$)
|
|
2184
2187
|
.build() {
|
|
2185
2188
|
}
|
|
2186
2189
|
|
|
2187
|
-
class UploadServerCertificateCommand extends
|
|
2190
|
+
class UploadServerCertificateCommand extends Command
|
|
2188
2191
|
.classBuilder()
|
|
2189
2192
|
.ep(commonParams)
|
|
2190
2193
|
.m(function (Command, cs, config, o) {
|
|
2191
|
-
return [
|
|
2194
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2192
2195
|
})
|
|
2193
2196
|
.s("AWSIdentityManagementV20100508", "UploadServerCertificate", {})
|
|
2194
2197
|
.n("IAMClient", "UploadServerCertificateCommand")
|
|
2195
|
-
.sc(
|
|
2198
|
+
.sc(UploadServerCertificate$)
|
|
2196
2199
|
.build() {
|
|
2197
2200
|
}
|
|
2198
2201
|
|
|
2199
|
-
class UploadSigningCertificateCommand extends
|
|
2202
|
+
class UploadSigningCertificateCommand extends Command
|
|
2200
2203
|
.classBuilder()
|
|
2201
2204
|
.ep(commonParams)
|
|
2202
2205
|
.m(function (Command, cs, config, o) {
|
|
2203
|
-
return [
|
|
2206
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2204
2207
|
})
|
|
2205
2208
|
.s("AWSIdentityManagementV20100508", "UploadSigningCertificate", {})
|
|
2206
2209
|
.n("IAMClient", "UploadSigningCertificateCommand")
|
|
2207
|
-
.sc(
|
|
2210
|
+
.sc(UploadSigningCertificate$)
|
|
2208
2211
|
.build() {
|
|
2209
2212
|
}
|
|
2210
2213
|
|
|
2211
|
-
class UploadSSHPublicKeyCommand extends
|
|
2214
|
+
class UploadSSHPublicKeyCommand extends Command
|
|
2212
2215
|
.classBuilder()
|
|
2213
2216
|
.ep(commonParams)
|
|
2214
2217
|
.m(function (Command, cs, config, o) {
|
|
2215
|
-
return [
|
|
2218
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2216
2219
|
})
|
|
2217
2220
|
.s("AWSIdentityManagementV20100508", "UploadSSHPublicKey", {})
|
|
2218
2221
|
.n("IAMClient", "UploadSSHPublicKeyCommand")
|
|
2219
|
-
.sc(
|
|
2222
|
+
.sc(UploadSSHPublicKey$)
|
|
2220
2223
|
.build() {
|
|
2221
2224
|
}
|
|
2222
2225
|
|
|
2223
|
-
const paginateGetAccountAuthorizationDetails =
|
|
2226
|
+
const paginateGetAccountAuthorizationDetails = createPaginator(IAMClient, GetAccountAuthorizationDetailsCommand, "Marker", "Marker", "MaxItems");
|
|
2224
2227
|
|
|
2225
|
-
const paginateGetGroup =
|
|
2228
|
+
const paginateGetGroup = createPaginator(IAMClient, GetGroupCommand, "Marker", "Marker", "MaxItems");
|
|
2226
2229
|
|
|
2227
|
-
const paginateListAccessKeys =
|
|
2230
|
+
const paginateListAccessKeys = createPaginator(IAMClient, ListAccessKeysCommand, "Marker", "Marker", "MaxItems");
|
|
2228
2231
|
|
|
2229
|
-
const paginateListAccountAliases =
|
|
2232
|
+
const paginateListAccountAliases = createPaginator(IAMClient, ListAccountAliasesCommand, "Marker", "Marker", "MaxItems");
|
|
2230
2233
|
|
|
2231
|
-
const paginateListAttachedGroupPolicies =
|
|
2234
|
+
const paginateListAttachedGroupPolicies = createPaginator(IAMClient, ListAttachedGroupPoliciesCommand, "Marker", "Marker", "MaxItems");
|
|
2232
2235
|
|
|
2233
|
-
const paginateListAttachedRolePolicies =
|
|
2236
|
+
const paginateListAttachedRolePolicies = createPaginator(IAMClient, ListAttachedRolePoliciesCommand, "Marker", "Marker", "MaxItems");
|
|
2234
2237
|
|
|
2235
|
-
const paginateListAttachedUserPolicies =
|
|
2238
|
+
const paginateListAttachedUserPolicies = createPaginator(IAMClient, ListAttachedUserPoliciesCommand, "Marker", "Marker", "MaxItems");
|
|
2236
2239
|
|
|
2237
|
-
const paginateListEntitiesForPolicy =
|
|
2240
|
+
const paginateListEntitiesForPolicy = createPaginator(IAMClient, ListEntitiesForPolicyCommand, "Marker", "Marker", "MaxItems");
|
|
2238
2241
|
|
|
2239
|
-
const paginateListGroupPolicies =
|
|
2242
|
+
const paginateListGroupPolicies = createPaginator(IAMClient, ListGroupPoliciesCommand, "Marker", "Marker", "MaxItems");
|
|
2240
2243
|
|
|
2241
|
-
const paginateListGroupsForUser =
|
|
2244
|
+
const paginateListGroupsForUser = createPaginator(IAMClient, ListGroupsForUserCommand, "Marker", "Marker", "MaxItems");
|
|
2242
2245
|
|
|
2243
|
-
const paginateListGroups =
|
|
2246
|
+
const paginateListGroups = createPaginator(IAMClient, ListGroupsCommand, "Marker", "Marker", "MaxItems");
|
|
2244
2247
|
|
|
2245
|
-
const paginateListInstanceProfilesForRole =
|
|
2248
|
+
const paginateListInstanceProfilesForRole = createPaginator(IAMClient, ListInstanceProfilesForRoleCommand, "Marker", "Marker", "MaxItems");
|
|
2246
2249
|
|
|
2247
|
-
const paginateListInstanceProfiles =
|
|
2250
|
+
const paginateListInstanceProfiles = createPaginator(IAMClient, ListInstanceProfilesCommand, "Marker", "Marker", "MaxItems");
|
|
2248
2251
|
|
|
2249
|
-
const paginateListInstanceProfileTags =
|
|
2252
|
+
const paginateListInstanceProfileTags = createPaginator(IAMClient, ListInstanceProfileTagsCommand, "Marker", "Marker", "MaxItems");
|
|
2250
2253
|
|
|
2251
|
-
const paginateListMFADevices =
|
|
2254
|
+
const paginateListMFADevices = createPaginator(IAMClient, ListMFADevicesCommand, "Marker", "Marker", "MaxItems");
|
|
2252
2255
|
|
|
2253
|
-
const paginateListMFADeviceTags =
|
|
2256
|
+
const paginateListMFADeviceTags = createPaginator(IAMClient, ListMFADeviceTagsCommand, "Marker", "Marker", "MaxItems");
|
|
2254
2257
|
|
|
2255
|
-
const paginateListOpenIDConnectProviderTags =
|
|
2258
|
+
const paginateListOpenIDConnectProviderTags = createPaginator(IAMClient, ListOpenIDConnectProviderTagsCommand, "Marker", "Marker", "MaxItems");
|
|
2256
2259
|
|
|
2257
|
-
const paginateListPolicies =
|
|
2260
|
+
const paginateListPolicies = createPaginator(IAMClient, ListPoliciesCommand, "Marker", "Marker", "MaxItems");
|
|
2258
2261
|
|
|
2259
|
-
const paginateListPolicyTags =
|
|
2262
|
+
const paginateListPolicyTags = createPaginator(IAMClient, ListPolicyTagsCommand, "Marker", "Marker", "MaxItems");
|
|
2260
2263
|
|
|
2261
|
-
const paginateListPolicyVersions =
|
|
2264
|
+
const paginateListPolicyVersions = createPaginator(IAMClient, ListPolicyVersionsCommand, "Marker", "Marker", "MaxItems");
|
|
2262
2265
|
|
|
2263
|
-
const paginateListRolePolicies =
|
|
2266
|
+
const paginateListRolePolicies = createPaginator(IAMClient, ListRolePoliciesCommand, "Marker", "Marker", "MaxItems");
|
|
2264
2267
|
|
|
2265
|
-
const paginateListRoles =
|
|
2268
|
+
const paginateListRoles = createPaginator(IAMClient, ListRolesCommand, "Marker", "Marker", "MaxItems");
|
|
2266
2269
|
|
|
2267
|
-
const paginateListRoleTags =
|
|
2270
|
+
const paginateListRoleTags = createPaginator(IAMClient, ListRoleTagsCommand, "Marker", "Marker", "MaxItems");
|
|
2268
2271
|
|
|
2269
|
-
const paginateListSAMLProviderTags =
|
|
2272
|
+
const paginateListSAMLProviderTags = createPaginator(IAMClient, ListSAMLProviderTagsCommand, "Marker", "Marker", "MaxItems");
|
|
2270
2273
|
|
|
2271
|
-
const paginateListServerCertificates =
|
|
2274
|
+
const paginateListServerCertificates = createPaginator(IAMClient, ListServerCertificatesCommand, "Marker", "Marker", "MaxItems");
|
|
2272
2275
|
|
|
2273
|
-
const paginateListServerCertificateTags =
|
|
2276
|
+
const paginateListServerCertificateTags = createPaginator(IAMClient, ListServerCertificateTagsCommand, "Marker", "Marker", "MaxItems");
|
|
2274
2277
|
|
|
2275
|
-
const paginateListSigningCertificates =
|
|
2278
|
+
const paginateListSigningCertificates = createPaginator(IAMClient, ListSigningCertificatesCommand, "Marker", "Marker", "MaxItems");
|
|
2276
2279
|
|
|
2277
|
-
const paginateListSSHPublicKeys =
|
|
2280
|
+
const paginateListSSHPublicKeys = createPaginator(IAMClient, ListSSHPublicKeysCommand, "Marker", "Marker", "MaxItems");
|
|
2278
2281
|
|
|
2279
|
-
const paginateListUserPolicies =
|
|
2282
|
+
const paginateListUserPolicies = createPaginator(IAMClient, ListUserPoliciesCommand, "Marker", "Marker", "MaxItems");
|
|
2280
2283
|
|
|
2281
|
-
const paginateListUsers =
|
|
2284
|
+
const paginateListUsers = createPaginator(IAMClient, ListUsersCommand, "Marker", "Marker", "MaxItems");
|
|
2282
2285
|
|
|
2283
|
-
const paginateListUserTags =
|
|
2286
|
+
const paginateListUserTags = createPaginator(IAMClient, ListUserTagsCommand, "Marker", "Marker", "MaxItems");
|
|
2284
2287
|
|
|
2285
|
-
const paginateListVirtualMFADevices =
|
|
2288
|
+
const paginateListVirtualMFADevices = createPaginator(IAMClient, ListVirtualMFADevicesCommand, "Marker", "Marker", "MaxItems");
|
|
2286
2289
|
|
|
2287
|
-
const paginateSimulateCustomPolicy =
|
|
2290
|
+
const paginateSimulateCustomPolicy = createPaginator(IAMClient, SimulateCustomPolicyCommand, "Marker", "Marker", "MaxItems");
|
|
2288
2291
|
|
|
2289
|
-
const paginateSimulatePrincipalPolicy =
|
|
2292
|
+
const paginateSimulatePrincipalPolicy = createPaginator(IAMClient, SimulatePrincipalPolicyCommand, "Marker", "Marker", "MaxItems");
|
|
2290
2293
|
|
|
2291
|
-
const checkState$3 = async (client
|
|
2294
|
+
const checkState$3 = async (client, input) => {
|
|
2292
2295
|
let reason;
|
|
2293
2296
|
try {
|
|
2294
|
-
let result = await client
|
|
2297
|
+
let result = await client.send(new GetInstanceProfileCommand(input));
|
|
2295
2298
|
reason = result;
|
|
2296
|
-
return { state:
|
|
2299
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
2297
2300
|
}
|
|
2298
2301
|
catch (exception) {
|
|
2299
2302
|
reason = exception;
|
|
2300
2303
|
if (exception.name === "NoSuchEntityException") {
|
|
2301
|
-
return { state:
|
|
2304
|
+
return { state: WaiterState.RETRY, reason };
|
|
2302
2305
|
}
|
|
2303
2306
|
}
|
|
2304
|
-
return { state:
|
|
2307
|
+
return { state: WaiterState.RETRY, reason };
|
|
2305
2308
|
};
|
|
2306
2309
|
const waitForInstanceProfileExists = async (params, input) => {
|
|
2307
2310
|
const serviceDefaults = { minDelay: 1, maxDelay: 120 };
|
|
2308
|
-
return
|
|
2311
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
|
|
2309
2312
|
};
|
|
2310
2313
|
const waitUntilInstanceProfileExists = async (params, input) => {
|
|
2311
2314
|
const serviceDefaults = { minDelay: 1, maxDelay: 120 };
|
|
2312
|
-
const result = await
|
|
2313
|
-
return
|
|
2315
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
|
|
2316
|
+
return checkExceptions(result);
|
|
2314
2317
|
};
|
|
2315
2318
|
|
|
2316
|
-
const checkState$2 = async (client
|
|
2319
|
+
const checkState$2 = async (client, input) => {
|
|
2317
2320
|
let reason;
|
|
2318
2321
|
try {
|
|
2319
|
-
let result = await client
|
|
2322
|
+
let result = await client.send(new GetPolicyCommand(input));
|
|
2320
2323
|
reason = result;
|
|
2321
|
-
return { state:
|
|
2324
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
2322
2325
|
}
|
|
2323
2326
|
catch (exception) {
|
|
2324
2327
|
reason = exception;
|
|
2325
2328
|
if (exception.name === "NoSuchEntityException") {
|
|
2326
|
-
return { state:
|
|
2329
|
+
return { state: WaiterState.RETRY, reason };
|
|
2327
2330
|
}
|
|
2328
2331
|
}
|
|
2329
|
-
return { state:
|
|
2332
|
+
return { state: WaiterState.RETRY, reason };
|
|
2330
2333
|
};
|
|
2331
2334
|
const waitForPolicyExists = async (params, input) => {
|
|
2332
2335
|
const serviceDefaults = { minDelay: 1, maxDelay: 120 };
|
|
2333
|
-
return
|
|
2336
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
|
|
2334
2337
|
};
|
|
2335
2338
|
const waitUntilPolicyExists = async (params, input) => {
|
|
2336
2339
|
const serviceDefaults = { minDelay: 1, maxDelay: 120 };
|
|
2337
|
-
const result = await
|
|
2338
|
-
return
|
|
2340
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
|
|
2341
|
+
return checkExceptions(result);
|
|
2339
2342
|
};
|
|
2340
2343
|
|
|
2341
|
-
const checkState$1 = async (client
|
|
2344
|
+
const checkState$1 = async (client, input) => {
|
|
2342
2345
|
let reason;
|
|
2343
2346
|
try {
|
|
2344
|
-
let result = await client
|
|
2347
|
+
let result = await client.send(new GetRoleCommand(input));
|
|
2345
2348
|
reason = result;
|
|
2346
|
-
return { state:
|
|
2349
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
2347
2350
|
}
|
|
2348
2351
|
catch (exception) {
|
|
2349
2352
|
reason = exception;
|
|
2350
2353
|
if (exception.name === "NoSuchEntityException") {
|
|
2351
|
-
return { state:
|
|
2354
|
+
return { state: WaiterState.RETRY, reason };
|
|
2352
2355
|
}
|
|
2353
2356
|
}
|
|
2354
|
-
return { state:
|
|
2357
|
+
return { state: WaiterState.RETRY, reason };
|
|
2355
2358
|
};
|
|
2356
2359
|
const waitForRoleExists = async (params, input) => {
|
|
2357
2360
|
const serviceDefaults = { minDelay: 1, maxDelay: 120 };
|
|
2358
|
-
return
|
|
2361
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
|
|
2359
2362
|
};
|
|
2360
2363
|
const waitUntilRoleExists = async (params, input) => {
|
|
2361
2364
|
const serviceDefaults = { minDelay: 1, maxDelay: 120 };
|
|
2362
|
-
const result = await
|
|
2363
|
-
return
|
|
2365
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
|
|
2366
|
+
return checkExceptions(result);
|
|
2364
2367
|
};
|
|
2365
2368
|
|
|
2366
|
-
const checkState = async (client
|
|
2369
|
+
const checkState = async (client, input) => {
|
|
2367
2370
|
let reason;
|
|
2368
2371
|
try {
|
|
2369
|
-
let result = await client
|
|
2372
|
+
let result = await client.send(new GetUserCommand(input));
|
|
2370
2373
|
reason = result;
|
|
2371
|
-
return { state:
|
|
2374
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
2372
2375
|
}
|
|
2373
2376
|
catch (exception) {
|
|
2374
2377
|
reason = exception;
|
|
2375
2378
|
if (exception.name === "NoSuchEntityException") {
|
|
2376
|
-
return { state:
|
|
2379
|
+
return { state: WaiterState.RETRY, reason };
|
|
2377
2380
|
}
|
|
2378
2381
|
}
|
|
2379
|
-
return { state:
|
|
2382
|
+
return { state: WaiterState.RETRY, reason };
|
|
2380
2383
|
};
|
|
2381
2384
|
const waitForUserExists = async (params, input) => {
|
|
2382
2385
|
const serviceDefaults = { minDelay: 1, maxDelay: 120 };
|
|
2383
|
-
return
|
|
2386
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
2384
2387
|
};
|
|
2385
2388
|
const waitUntilUserExists = async (params, input) => {
|
|
2386
2389
|
const serviceDefaults = { minDelay: 1, maxDelay: 120 };
|
|
2387
|
-
const result = await
|
|
2388
|
-
return
|
|
2390
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
2391
|
+
return checkExceptions(result);
|
|
2389
2392
|
};
|
|
2390
2393
|
|
|
2391
2394
|
const commands = {
|
|
@@ -2610,7 +2613,7 @@ const waiters = {
|
|
|
2610
2613
|
};
|
|
2611
2614
|
class IAM extends IAMClient {
|
|
2612
2615
|
}
|
|
2613
|
-
|
|
2616
|
+
createAggregatedClient(commands, IAM, { paginators, waiters });
|
|
2614
2617
|
|
|
2615
2618
|
const AccessAdvisorUsageGranularityType = {
|
|
2616
2619
|
ACTION_LEVEL: "ACTION_LEVEL",
|
|
@@ -2789,9 +2792,6 @@ const PolicySourceType = {
|
|
|
2789
2792
|
USER_MANAGED: "user-managed",
|
|
2790
2793
|
};
|
|
2791
2794
|
|
|
2792
|
-
exports.$Command = client.Command;
|
|
2793
|
-
exports.__Client = client.Client;
|
|
2794
|
-
exports.IAMServiceException = IAMServiceException.IAMServiceException;
|
|
2795
2795
|
exports.AcceptDelegationRequestCommand = AcceptDelegationRequestCommand;
|
|
2796
2796
|
exports.AccessAdvisorUsageGranularityType = AccessAdvisorUsageGranularityType;
|
|
2797
2797
|
exports.AddClientIDToOpenIDConnectProviderCommand = AddClientIDToOpenIDConnectProviderCommand;
|
|
@@ -3039,23 +3039,3 @@ exports.waitUntilInstanceProfileExists = waitUntilInstanceProfileExists;
|
|
|
3039
3039
|
exports.waitUntilPolicyExists = waitUntilPolicyExists;
|
|
3040
3040
|
exports.waitUntilRoleExists = waitUntilRoleExists;
|
|
3041
3041
|
exports.waitUntilUserExists = waitUntilUserExists;
|
|
3042
|
-
Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
|
|
3043
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
3044
|
-
Object.defineProperty(exports, '__proto__', {
|
|
3045
|
-
enumerable: true,
|
|
3046
|
-
value: schemas_0['__proto__']
|
|
3047
|
-
});
|
|
3048
|
-
|
|
3049
|
-
Object.keys(schemas_0).forEach(function (k) {
|
|
3050
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
|
|
3051
|
-
});
|
|
3052
|
-
Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
|
|
3053
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
3054
|
-
Object.defineProperty(exports, '__proto__', {
|
|
3055
|
-
enumerable: true,
|
|
3056
|
-
value: errors['__proto__']
|
|
3057
|
-
});
|
|
3058
|
-
|
|
3059
|
-
Object.keys(errors).forEach(function (k) {
|
|
3060
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
|
|
3061
|
-
});
|