@cdklabs/cdk-ssm-documents 0.0.68 → 0.0.69
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/package.json +5 -5
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/package.json +8 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/index.js +11 -9
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/schemas/schemas_0.js +11 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteAnomalyDetectorCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAnomalyDetectorsCommand.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutAnomalyDetectorCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/models_0.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutAnomalyDetectorCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/models_0.d.ts +6 -1
- package/node_modules/@aws-sdk/client-cloudwatch/package.json +10 -10
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +236 -12
- package/node_modules/@aws-sdk/client-ec2/dist-es/models/enums.js +201 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +30 -11
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationFleetCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFleetCommand.d.ts +18 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateReplaceRootVolumeTaskCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerPeerCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteRouteTableCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSecondaryNetworkCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationFleetsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFleetsCommand.d.ts +4 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImagesCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceTypeOfferingsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceTypesCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstancesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReservedInstancesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReservedInstancesModificationsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReservedInstancesOfferingsCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotFleetRequestsCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotInstanceRequestsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetAssociatedEnclaveCertificateIamRolesCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportInstanceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyFleetCommand.d.ts +12 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamPoolAllocationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyReservedInstancesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySpotFleetRequestCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RequestSpotFleetCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RequestSpotInstancesCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RunInstancesCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateCapacityManagerOrganizationsAccessCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/enums.d.ts +217 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_1.d.ts +136 -66
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_2.d.ts +59 -37
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_3.d.ts +86 -86
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +89 -310
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +309 -40
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +38 -32
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +36 -50
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_8.d.ts +47 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteServerPeerCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteRouteTableCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSecondaryNetworkCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetAssociatedEnclaveCertificateIamRolesCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamPoolAllocationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateCapacityManagerOrganizationsAccessCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/enums.d.ts +205 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_1.d.ts +19 -12
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_2.d.ts +11 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_3.d.ts +10 -15
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +16 -39
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +40 -10
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +9 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +10 -11
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_8.d.ts +10 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/package.json +10 -10
- package/node_modules/@aws-sdk/client-iam/dist-cjs/index.js +1 -1
- package/node_modules/@aws-sdk/client-iam/package.json +9 -9
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/index.js +107 -91
- package/node_modules/@aws-sdk/client-lambda/dist-es/models/enums.js +5 -5
- package/node_modules/@aws-sdk/client-lambda/dist-es/models/errors.js +64 -64
- package/node_modules/@aws-sdk/client-lambda/dist-es/schemas/schemas_0.js +35 -21
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CheckpointDurableExecutionCommand.d.ts +12 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateCapacityProviderCommand.d.ts +12 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateFunctionCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteCapacityProviderCommand.d.ts +6 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetCapacityProviderCommand.d.ts +6 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetDurableExecutionCommand.d.ts +19 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetDurableExecutionHistoryCommand.d.ts +12 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetDurableExecutionStateCommand.d.ts +12 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConfigurationCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListCapacityProvidersCommand.d.ts +6 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListDurableExecutionsByFunctionCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListVersionsByFunctionCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishVersionCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackFailureCommand.d.ts +12 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +12 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/StopDurableExecutionCommand.d.ts +12 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateCapacityProviderCommand.d.ts +12 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionCodeCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/enums.d.ts +13 -13
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/errors.d.ts +56 -56
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/models_0.d.ts +75 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/schemas/schemas_0.d.ts +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/enums.d.ts +7 -7
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/errors.d.ts +36 -36
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/models_0.d.ts +16 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
- package/node_modules/@aws-sdk/client-lambda/package.json +9 -9
- package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +1 -1
- package/node_modules/@aws-sdk/client-s3/package.json +13 -13
- package/node_modules/@aws-sdk/client-sns/dist-cjs/index.js +1 -1
- package/node_modules/@aws-sdk/client-sns/package.json +8 -8
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/index.js +1 -1
- package/node_modules/@aws-sdk/client-sqs/package.json +10 -10
- package/node_modules/@aws-sdk/client-ssm/README.md +42 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +385 -81
- package/node_modules/@aws-sdk/client-ssm/dist-es/SSM.js +16 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateCloudConnectorCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteCloudConnectorCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCloudConnectorCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCloudConnectorsCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateCloudConnectorCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ValidateCloudConnectorCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/index.js +6 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/models/enums.js +34 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/models/errors.js +50 -36
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListCloudConnectorsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ValidateCloudConnectorPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/index.js +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/schemas/schemas_0.js +232 -45
- package/node_modules/@aws-sdk/client-ssm/dist-types/SSM.d.ts +57 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/SSMClient.d.ts +8 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AddTagsToResourceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateCloudConnectorCommand.d.ts +108 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteCloudConnectorCommand.d.ts +81 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceInformationCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePropertiesCommand.d.ts +3 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCloudConnectorCommand.d.ts +99 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterCommand.d.ts +14 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersByPathCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersCommand.d.ts +14 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineForPatchGroupCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetResourcePoliciesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetServiceSettingCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCloudConnectorsCommand.d.ts +93 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListNodesCommand.d.ts +7 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListNodesSummaryCommand.d.ts +3 -3
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutParameterCommand.d.ts +14 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateCloudConnectorCommand.d.ts +99 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ValidateCloudConnectorCommand.d.ts +91 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/enums.d.ts +66 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/errors.d.ts +61 -47
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_0.d.ts +268 -360
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_1.d.ts +601 -3
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListCloudConnectorsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ValidateCloudConnectorPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/schemas/schemas_0.d.ts +27 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSM.d.ts +117 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSMClient.d.ts +38 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateCloudConnectorCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteCloudConnectorCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCloudConnectorCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersByPathCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineForPatchGroupCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetServiceSettingCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCloudConnectorsCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateCloudConnectorCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ValidateCloudConnectorCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/enums.d.ts +42 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/errors.d.ts +26 -20
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_0.d.ts +78 -59
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_1.d.ts +123 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListCloudConnectorsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ValidateCloudConnectorPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/schemas/schemas_0.d.ts +27 -0
- package/node_modules/@aws-sdk/client-ssm/package.json +8 -8
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +55 -141
- package/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/index.js +3 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-recursion-detection/configuration.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-recursion-detection/recursionDetectionMiddleware.js +48 -19
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-browser/defaultUserAgent.browser.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/defaultUserAgent.js +0 -5
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/index.js +3 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/index.js +2 -2
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/index.js +3 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +19 -20
- package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/index.d.ts +5 -3
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.browser.d.ts +5 -5
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts +5 -5
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.native.d.ts +5 -5
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/middleware-recursion-detection/configuration.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/middleware-recursion-detection/recursionDetectionMiddleware.d.ts +5 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/EndpointRuleObject.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/ErrorRuleObject.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/RuleSetObject.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/TreeRuleObject.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/shared.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-browser/defaultUserAgent.browser.d.ts +2 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/index.d.ts +5 -3
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/index.d.ts +3 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/index.d.ts +3 -3
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +22 -20
- package/node_modules/@aws-sdk/core/dist-types/submodules/util/index.d.ts +2 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/index.d.ts +16 -3
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-browser/defaultUserAgent.browser.d.ts +7 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/index.d.ts +23 -3
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/index.d.ts +24 -2
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/index.d.ts +3 -3
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +31 -20
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/util/index.d.ts +2 -1
- package/node_modules/@aws-sdk/core/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +2 -4
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +10 -1
- package/node_modules/@aws-sdk/credential-provider-env/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +16 -10
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +16 -10
- package/node_modules/@aws-sdk/credential-provider-http/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveLoginCredentials.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +2 -4
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +2 -1
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +13 -13
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/index.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/index.d.ts +2 -8
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/index.d.ts +7 -2
- package/node_modules/@aws-sdk/credential-provider-login/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +2 -1
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +6 -1
- package/node_modules/@aws-sdk/credential-provider-node/package.json +11 -11
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts +2 -4
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +2 -1
- package/node_modules/@aws-sdk/credential-provider-process/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +3 -4
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +4 -4
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +5 -16
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +5 -4
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -2
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +4 -8
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +7 -2
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +6 -6
- package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +6 -6
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +6 -6
- package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-es/index.js +4 -4
- package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-types/index.d.ts +5 -4
- package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-types/ts3.4/index.d.ts +26 -4
- package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/package.json +8 -8
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +4 -4
- package/node_modules/@aws-sdk/token-providers/dist-es/index.js +4 -4
- package/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +7 -4
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +7 -4
- package/node_modules/@aws-sdk/token-providers/package.json +6 -6
- package/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -1
- package/node_modules/@aws-sdk/types/dist-es/identity/index.js +1 -5
- package/node_modules/@aws-sdk/types/dist-es/index.js +4 -34
- package/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -1
- package/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/auth.d.ts +2 -1
- package/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -2
- package/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +2 -1
- package/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/http.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +7 -7
- package/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -5
- package/node_modules/@aws-sdk/types/dist-types/index.d.ts +42 -34
- package/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/response.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/serde.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +2 -1
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +2 -5
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +17 -5
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +225 -34
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -1
- package/node_modules/@aws-sdk/types/package.json +2 -2
- package/node_modules/@aws-sdk/xml-builder/dist-es/index.js +2 -2
- package/node_modules/@aws-sdk/xml-builder/dist-types/index.d.ts +2 -11
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/xml-builder/package.json +2 -2
- package/node_modules/@smithy/core/dist-es/index.js +5 -5
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/index.js +3 -3
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/index.js +2 -2
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/index.js +3 -3
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/index.js +3 -3
- package/node_modules/@smithy/core/dist-es/submodules/cbor/index.js +3 -3
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.browser.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/service-customizations/index.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/debug/index.js +2 -2
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/index.js +11 -11
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/types/index.js +1 -7
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/index.js +2 -2
- package/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +13 -13
- package/node_modules/@smithy/core/dist-es/submodules/schema/index.js +14 -14
- package/node_modules/@smithy/core/dist-types/index.d.ts +7 -5
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/middleware-http-auth-scheme/index.d.ts +4 -3
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/middleware-http-signing/index.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -3
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/util-identity-and-auth/index.d.ts +4 -3
- package/node_modules/@smithy/core/dist-types/submodules/cbor/index.d.ts +3 -3
- package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/waiter.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.browser.d.ts +2 -1
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.d.ts +2 -1
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/service-customizations/index.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/debug/index.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/index.d.ts +12 -11
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/types/index.d.ts +7 -7
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/index.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +13 -13
- package/node_modules/@smithy/core/dist-types/submodules/schema/index.d.ts +14 -14
- package/node_modules/@smithy/core/dist-types/submodules/transport/httpRequest.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/transport/index.d.ts +2 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/index.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-auth-scheme/index.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-auth-scheme/resolveAuthOptions.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-signing/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/pagination/createPaginator.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/index.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/memoizeIdentityProvider.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/setFeature.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/CborCodec.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +28 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/byte-printer.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-decode.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-encode.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-types.d.ts +65 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor.d.ts +25 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/index.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/parseCborBody.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/chunked-blob-reader/chunked-blob-reader.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/chunked-blob-reader/chunked-blob-reader.native.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/crc32/Crc32Js.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/crc32/Crc32Node.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/hash-blob-browser/blobHasher.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/hash-stream-node/HashCalculator.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/hash-stream-node/fileStreamHasher.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/hash-stream-node/readableStreamHasher.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/index.browser.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/index.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/index.native.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/md5/Md5Js.d.ts +19 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/md5/Md5Node.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/sha256/Sha256Js.d.ts +28 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/sha256/Sha256Node.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/sha256/Sha256WebCrypto.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/index.d.ts +27 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/invalid-dependency/invalidFunction.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/invalid-dependency/invalidProvider.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/middleware-stack/MiddlewareStack.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/middleware-stack/types.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/NoOpLogger.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/client-command-builder.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/client.d.ts +84 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/command.d.ts +118 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/constants.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/create-aggregated-client.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/default-error-handler.d.ts +15 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/defaults-mode.d.ts +28 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/emitWarningIfUnsupportedVersion.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/exceptions.d.ts +42 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/extensions/checksum.d.ts +25 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/extensions/retry.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/get-array-if-single-item.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/get-value-from-text-node.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/is-serializable-header-value.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/object-mapping.d.ts +179 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/schemaLogFilter.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/ser-utils.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/serde-json.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/circularReplacer.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/createWaiter.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/poller.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/utils/sleep.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/utils/validate.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/waiter.d.ts +49 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/endpointsConfig/resolveCustomEndpointsConfig.d.ts +37 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/checkRegion.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/config.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/getInstanceMetadataRegion.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/getRealRegion.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/isFipsRegion.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/resolveRegionConfig.d.ts +34 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/EndpointVariant.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/EndpointVariantTag.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/PartitionHash.d.ts +15 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/RegionHash.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/getHostnameFromVariants.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/getRegionInfo.d.ts +19 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/getResolvedHostname.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/getResolvedPartition.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/getResolvedSigningRegion.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/defaults-mode/constants.d.ts +36 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/defaults-mode/defaultsModeConfig.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/defaults-mode/resolveDefaultsModeConfig.browser.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/defaults-mode/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/defaults-mode/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/index.browser.d.ts +55 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/index.d.ts +36 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/index.native.d.ts +55 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/node-config-provider/configLoader.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/node-config-provider/fromEnv.d.ts +20 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/node-config-provider/fromSharedConfigFiles.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/node-config-provider/fromStatic.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/node-config-provider/getSelectorName.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/CredentialsProviderError.d.ts +29 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/ProviderError.d.ts +38 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/TokenProviderError.d.ts +29 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/chain.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/fromValue.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/memoize.d.ts +40 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/constants.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/externalDataInterceptor.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getConfigData.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getConfigFilepath.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getCredentialsFilepath.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getHomeDir.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getProfileName.d.ts +15 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getSSOTokenFilepath.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getSSOTokenFromFile.d.ts +53 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getSsoSessionData.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/loadSharedConfigFiles.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/loadSsoSessionData.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/mergeConfigFiles.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/parseIni.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/parseKnownFiles.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/readFile.d.ts +21 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/types.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/util-config-provider/booleanSelector.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/util-config-provider/numberSelector.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/util-config-provider/types.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/index.browser.d.ts +24 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/index.d.ts +24 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/createConfigValueProvider.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.d.ts +20 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/endpointMiddleware.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/getEndpointPlugin.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.d.ts +110 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/resolveEndpointRequiredConfig.d.ts +32 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/service-customizations/index.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/service-customizations/s3.d.ts +26 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/bdd/BinaryDecisionDiagram.d.ts +41 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/cache/EndpointCache.d.ts +34 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/debug/debugId.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/debug/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/debug/toDebugString.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/decideEndpoint.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/getEndpointUrlConfig.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/booleanEquals.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/coalesce.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/getAttr.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/getAttrPathList.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/index.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/isIpAddress.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/isSet.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/ite.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/not.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/parseURL.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/split.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/stringEquals.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/substring.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/uriEncode.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/resolveEndpoint.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/EndpointError.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/EndpointFunctions.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/EndpointRuleObject.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/ErrorRuleObject.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/RuleSetObject.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/TreeRuleObject.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/index.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/shared.d.ts +25 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/callFunction.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/customEndpointFunctions.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/endpointFunctions.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateCondition.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateConditions.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateEndpointRule.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateErrorRule.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateExpression.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateRules.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateTemplate.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateTreeRule.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/getEndpointHeaders.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/getEndpointProperties.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/getEndpointProperty.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/getEndpointUrl.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/getReferenceValue.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/EventStreamSerde.d.ts +60 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/EventStreamCodec.d.ts +30 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/HeaderMarshaller.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/Int64.d.ts +20 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/Message.d.ts +26 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/MessageDecoderStream.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/MessageEncoderStream.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/SmithyMessageDecoderStream.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/SmithyMessageEncoderStream.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/splitMessage.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde/EventStreamMarshaller.browser.d.ts +46 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde/EventStreamMarshaller.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde/utils.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde-config-resolver/EventStreamSerdeConfig.d.ts +27 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde-universal/EventStreamMarshaller.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde-universal/getChunkedStream.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde-universal/getUnmarshalledStream.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/index.browser.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/index.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpBindingProtocol.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpProtocol.d.ts +95 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/RpcProtocol.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/SerdeContext.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/collect-stream-body.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/extended-encode-uri-component.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/index.d.ts +27 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/middleware-content-length/contentLengthMiddleware.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/protocol-http/Field.d.ts +49 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/protocol-http/Fields.d.ts +44 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/protocol-http/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/protocol-http/httpHandler.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/protocol-http/types.d.ts +21 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/querystring-builder/buildQueryString.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/requestBuilder.d.ts +52 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/resolve-path.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +21 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/ToStringShapeSerializer.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/determineTimestampFormat.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/util-uri-escape/escape-uri-path.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/util-uri-escape/escape-uri.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/index.browser.d.ts +26 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/index.d.ts +20 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/configurations.d.ts +71 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/longPollMiddleware.d.ts +15 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/omitRetryHeadersMiddleware.d.ts +15 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/parseRetryAfterHeader.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/AdaptiveRetryStrategy.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/StandardRetryStrategy.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/defaultRetryQuota.d.ts +26 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/delayDecider.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/retryDecider.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/types.d.ts +65 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retryMiddleware.d.ts +19 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/util.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/service-error-classification/constants.d.ts +30 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/service-error-classification/service-error-classification.d.ts +30 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/AdaptiveRetryStrategy.d.ts +38 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/ConfiguredRetryStrategy.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/DefaultRateLimiter.d.ts +119 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/DefaultRetryBackoffStrategy.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/DefaultRetryToken.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/StandardRetryStrategy.d.ts +56 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/config.d.ts +20 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/constants.d.ts +60 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/retries-2026-config.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/types.d.ts +19 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/TypeRegistry.d.ts +71 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/deref.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/index.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/getSchemaSerdePlugin.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schema-middleware-types.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaDeserializationMiddleware.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaSerializationMiddleware.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ErrorSchema.d.ts +37 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ListSchema.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/MapSchema.d.ts +24 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/NormalizedSchema.d.ts +146 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/OperationSchema.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/Schema.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/SimpleSchema.d.ts +28 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/StructureSchema.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/operation.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/sentinels.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/translateTraits.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/concatBytes.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/copyDocumentWithTransform.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/date-utils.d.ts +61 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/hash-node/hash-node.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/index.browser.d.ts +41 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/index.d.ts +39 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/index.native.d.ts +39 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/is-array-buffer/is-array-buffer.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/lazy-json.d.ts +43 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/middleware-serde/deserializerMiddleware.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/middleware-serde/serdePlugin.d.ts +24 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/middleware-serde/serializerMiddleware.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/parse-utils.d.ts +250 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/quote-header.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +38 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-every.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-header.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-base64/constants-for-browser.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-base64/fromBase64.browser.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-base64/fromBase64.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-base64/toBase64.browser.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-base64/toBase64.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-body-length/calculateBodyLength.browser.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-body-length/calculateBodyLength.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-buffer-from/buffer-from.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-hex-encoding/hex-encoding.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/ByteArrayCollector.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/blob/Uint8ArrayBlobAdapter.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/checksum/ChecksumStream.d.ts +77 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/checksum/createChecksumStream.browser.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/checksum/createChecksumStream.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/createBufferedReadable.browser.d.ts +55 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/createBufferedReadable.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/getAwsChunkedEncodingStream.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/headStream.browser.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/headStream.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/splitStream.browser.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/splitStream.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/stream-collector.browser.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/stream-collector.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/stream-type-check.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-utf8/fromUtf8.browser.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-utf8/fromUtf8.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-utf8/toUint8Array.browser.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-utf8/toUint8Array.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-utf8/toUtf8.browser.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-utf8/toUtf8.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/uuid/v4.d.ts +24 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/value/NumericValue.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/getSmithyContext.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/httpRequest.d.ts +52 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/httpResponse.d.ts +29 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/index.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/isValidHostLabel.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/isValidHostname.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/normalizeProvider.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/parseQueryString.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/parseUrl.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/toEndpointV1.d.ts +6 -0
- package/node_modules/@smithy/core/package.json +2 -2
- package/node_modules/@smithy/credential-provider-imds/dist-es/index.js +3 -4
- package/node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts +5 -4
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +13 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +13 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/error/InstanceMetadataV1FallbackError.d.ts +12 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +21 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +10 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/index.d.ts +26 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +19 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +40 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +5 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/node-http.d.ts +2 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +10 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/types.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +21 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/staticStabilityProvider.d.ts +15 -0
- package/node_modules/@smithy/credential-provider-imds/package.json +3 -3
- package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +1 -1
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/create-request.d.ts +7 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +38 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
- package/node_modules/@smithy/fetch-http-handler/package.json +4 -4
- package/node_modules/@smithy/middleware-compression/dist-es/index.js +5 -6
- package/node_modules/@smithy/middleware-compression/dist-types/index.d.ts +7 -6
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/NODE_DISABLE_REQUEST_COMPRESSION_CONFIG_OPTIONS.d.ts +17 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/NODE_REQUEST_MIN_COMPRESSION_SIZE_BYTES_CONFIG_OPTIONS.d.ts +17 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/compressStream.browser.d.ts +1 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/compressStream.d.ts +2 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/compressString.browser.d.ts +1 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/compressString.d.ts +1 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/compressionMiddleware.d.ts +21 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/configurations.d.ts +37 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/constants.d.ts +7 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/getCompressionPlugin.d.ts +7 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/index.d.ts +7 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/isStreaming.d.ts +4 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/resolveCompressionConfig.d.ts +5 -0
- package/node_modules/@smithy/middleware-compression/package.json +3 -3
- package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/build-abort-error.d.ts +10 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +5 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/http2/ClientHttp2SessionRef.d.ts +46 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +47 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +46 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +36 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +76 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-https.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-request-timeout.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +9 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +12 -0
- package/node_modules/@smithy/node-http-handler/package.json +4 -4
- package/node_modules/@smithy/signature-v4/dist-es/index.js +4 -4
- package/node_modules/@smithy/signature-v4/dist-types/index.d.ts +5 -4
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/HeaderFormatter.d.ts +25 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +20 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4Base.d.ts +69 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/constants.d.ts +43 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +30 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/headerUtil.d.ts +4 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/index.d.ts +12 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +10 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/signature-v4a-container.d.ts +23 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/utilDate.d.ts +2 -0
- package/node_modules/@smithy/signature-v4/package.json +3 -3
- package/node_modules/@smithy/types/dist-es/auth/index.js +2 -6
- package/node_modules/@smithy/types/dist-es/connection/index.js +1 -3
- package/node_modules/@smithy/types/dist-es/endpoints/index.js +1 -5
- package/node_modules/@smithy/types/dist-es/extensions/index.js +1 -2
- package/node_modules/@smithy/types/dist-es/identity/index.js +1 -4
- package/node_modules/@smithy/types/dist-es/index.js +7 -43
- package/node_modules/@smithy/types/dist-es/metrics.js +1 -0
- package/node_modules/@smithy/types/dist-types/abort.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/auth/index.d.ts +7 -6
- package/node_modules/@smithy/types/dist-types/connection/index.d.ts +3 -3
- package/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -5
- package/node_modules/@smithy/types/dist-types/extensions/index.d.ts +6 -4
- package/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -4
- package/node_modules/@smithy/types/dist-types/index.d.ts +51 -43
- package/node_modules/@smithy/types/dist-types/metrics.d.ts +93 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +45 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +49 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +59 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +37 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +61 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +57 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +28 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +15 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +3 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +34 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +32 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +58 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +40 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +31 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +77 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointParameterInstructions.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +27 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +10 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +28 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +16 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +5 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +55 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +137 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +58 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +32 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +18 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +35 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +16 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +128 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +110 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +31 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +15 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +4 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +52 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +13 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/metrics.d.ts +93 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +541 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +33 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +30 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +40 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +162 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema-deprecated.d.ts +149 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +251 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +65 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/static-schemas.d.ts +118 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +46 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +114 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +79 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +172 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +22 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +28 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +54 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +42 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +26 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +77 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +88 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +40 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +17 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +192 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +35 -0
- package/node_modules/@smithy/types/package.json +2 -2
- package/package.json +10 -10
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/getNodeModulesParentDirs.js +0 -15
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/getSanitizedDevTypeScriptVersion.js +0 -14
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/getSanitizedTypeScriptVersion.js +0 -9
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/getTypeScriptUserAgentPair.js +0 -75
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-node/getNodeModulesParentDirs.d.ts +0 -10
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-node/getSanitizedDevTypeScriptVersion.d.ts +0 -8
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-node/getSanitizedTypeScriptVersion.d.ts +0 -8
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-node/getTypeScriptUserAgentPair.d.ts +0 -6
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-node/getNodeModulesParentDirs.d.ts +0 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-node/getSanitizedDevTypeScriptVersion.d.ts +0 -3
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-node/getSanitizedTypeScriptVersion.d.ts +0 -3
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-node/getTypeScriptUserAgentPair.d.ts +0 -4
|
@@ -69,7 +69,7 @@ const commonParams = {
|
|
|
69
69
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
70
70
|
};
|
|
71
71
|
|
|
72
|
-
var version = "3.
|
|
72
|
+
var version = "3.1084.0";
|
|
73
73
|
var packageInfo = {
|
|
74
74
|
version: version};
|
|
75
75
|
|
|
@@ -515,6 +515,42 @@ class UnsupportedPlatformType extends SSMServiceException {
|
|
|
515
515
|
this.Message = opts.Message;
|
|
516
516
|
}
|
|
517
517
|
}
|
|
518
|
+
class ConflictException extends SSMServiceException {
|
|
519
|
+
name = "ConflictException";
|
|
520
|
+
$fault = "client";
|
|
521
|
+
Message;
|
|
522
|
+
constructor(opts) {
|
|
523
|
+
super({
|
|
524
|
+
name: "ConflictException",
|
|
525
|
+
$fault: "client",
|
|
526
|
+
...opts,
|
|
527
|
+
});
|
|
528
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
529
|
+
this.Message = opts.Message;
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
class ServiceQuotaExceededException extends SSMServiceException {
|
|
533
|
+
name = "ServiceQuotaExceededException";
|
|
534
|
+
$fault = "client";
|
|
535
|
+
Message;
|
|
536
|
+
ResourceId;
|
|
537
|
+
ResourceType;
|
|
538
|
+
QuotaCode;
|
|
539
|
+
ServiceCode;
|
|
540
|
+
constructor(opts) {
|
|
541
|
+
super({
|
|
542
|
+
name: "ServiceQuotaExceededException",
|
|
543
|
+
$fault: "client",
|
|
544
|
+
...opts,
|
|
545
|
+
});
|
|
546
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
547
|
+
this.Message = opts.Message;
|
|
548
|
+
this.ResourceId = opts.ResourceId;
|
|
549
|
+
this.ResourceType = opts.ResourceType;
|
|
550
|
+
this.QuotaCode = opts.QuotaCode;
|
|
551
|
+
this.ServiceCode = opts.ServiceCode;
|
|
552
|
+
}
|
|
553
|
+
}
|
|
518
554
|
class DocumentAlreadyExists extends SSMServiceException {
|
|
519
555
|
name = "DocumentAlreadyExists";
|
|
520
556
|
$fault = "client";
|
|
@@ -789,6 +825,20 @@ class AssociationDoesNotExist extends SSMServiceException {
|
|
|
789
825
|
this.Message = opts.Message;
|
|
790
826
|
}
|
|
791
827
|
}
|
|
828
|
+
class ResourceNotFoundException extends SSMServiceException {
|
|
829
|
+
name = "ResourceNotFoundException";
|
|
830
|
+
$fault = "client";
|
|
831
|
+
Message;
|
|
832
|
+
constructor(opts) {
|
|
833
|
+
super({
|
|
834
|
+
name: "ResourceNotFoundException",
|
|
835
|
+
$fault: "client",
|
|
836
|
+
...opts,
|
|
837
|
+
});
|
|
838
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
839
|
+
this.Message = opts.Message;
|
|
840
|
+
}
|
|
841
|
+
}
|
|
792
842
|
class AssociatedInstances extends SSMServiceException {
|
|
793
843
|
name = "AssociatedInstances";
|
|
794
844
|
$fault = "client";
|
|
@@ -941,20 +991,6 @@ class MalformedResourcePolicyDocumentException extends SSMServiceException {
|
|
|
941
991
|
this.Message = opts.Message;
|
|
942
992
|
}
|
|
943
993
|
}
|
|
944
|
-
class ResourceNotFoundException extends SSMServiceException {
|
|
945
|
-
name = "ResourceNotFoundException";
|
|
946
|
-
$fault = "client";
|
|
947
|
-
Message;
|
|
948
|
-
constructor(opts) {
|
|
949
|
-
super({
|
|
950
|
-
name: "ResourceNotFoundException",
|
|
951
|
-
$fault: "client",
|
|
952
|
-
...opts,
|
|
953
|
-
});
|
|
954
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
955
|
-
this.Message = opts.Message;
|
|
956
|
-
}
|
|
957
|
-
}
|
|
958
994
|
class ResourcePolicyConflictException extends SSMServiceException {
|
|
959
995
|
name = "ResourcePolicyConflictException";
|
|
960
996
|
$fault = "client";
|
|
@@ -1813,28 +1849,6 @@ class InvalidRole extends SSMServiceException {
|
|
|
1813
1849
|
this.Message = opts.Message;
|
|
1814
1850
|
}
|
|
1815
1851
|
}
|
|
1816
|
-
class ServiceQuotaExceededException extends SSMServiceException {
|
|
1817
|
-
name = "ServiceQuotaExceededException";
|
|
1818
|
-
$fault = "client";
|
|
1819
|
-
Message;
|
|
1820
|
-
ResourceId;
|
|
1821
|
-
ResourceType;
|
|
1822
|
-
QuotaCode;
|
|
1823
|
-
ServiceCode;
|
|
1824
|
-
constructor(opts) {
|
|
1825
|
-
super({
|
|
1826
|
-
name: "ServiceQuotaExceededException",
|
|
1827
|
-
$fault: "client",
|
|
1828
|
-
...opts,
|
|
1829
|
-
});
|
|
1830
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
1831
|
-
this.Message = opts.Message;
|
|
1832
|
-
this.ResourceId = opts.ResourceId;
|
|
1833
|
-
this.ResourceType = opts.ResourceType;
|
|
1834
|
-
this.QuotaCode = opts.QuotaCode;
|
|
1835
|
-
this.ServiceCode = opts.ServiceCode;
|
|
1836
|
-
}
|
|
1837
|
-
}
|
|
1838
1852
|
class InvalidAssociation extends SSMServiceException {
|
|
1839
1853
|
name = "InvalidAssociation";
|
|
1840
1854
|
$fault = "client";
|
|
@@ -2065,10 +2079,12 @@ const _ACL = "AttachmentContentList";
|
|
|
2065
2079
|
const _ACc = "ActivationCode";
|
|
2066
2080
|
const _ACt = "AttachmentContent";
|
|
2067
2081
|
const _ACtt = "AttachmentsContent";
|
|
2082
|
+
const _ACz = "AzureConfiguration";
|
|
2068
2083
|
const _AD = "AssociationDescription";
|
|
2069
2084
|
const _ADAR = "AssociationDispatchAssumeRole";
|
|
2070
2085
|
const _ADE = "AccessDeniedException";
|
|
2071
2086
|
const _ADL = "AssociationDescriptionList";
|
|
2087
|
+
const _ADN = "ApplicationDisplayName";
|
|
2072
2088
|
const _ADNAE = "AutomationDefinitionNotApprovedException";
|
|
2073
2089
|
const _ADNE = "AssociationDoesNotExist";
|
|
2074
2090
|
const _ADNFE = "AutomationDefinitionNotFoundException";
|
|
@@ -2110,6 +2126,7 @@ const _AIcc = "AccountIds";
|
|
|
2110
2126
|
const _AIct = "ActivationId";
|
|
2111
2127
|
const _AId = "AdditionalInfo";
|
|
2112
2128
|
const _AIdv = "AdvisoryIds";
|
|
2129
|
+
const _AIp = "ApplicationId";
|
|
2113
2130
|
const _AIs = "AssociationId";
|
|
2114
2131
|
const _AIss = "AssociationIds";
|
|
2115
2132
|
const _AIt = "AttachmentInformation";
|
|
@@ -2144,12 +2161,14 @@ const _ASIL = "AccountSharingInfoList";
|
|
|
2144
2161
|
const _ASILl = "AlarmStateInformationList";
|
|
2145
2162
|
const _ASIl = "AlarmStateInformation";
|
|
2146
2163
|
const _ASL = "AttachmentsSourceList";
|
|
2164
|
+
const _ASLz = "AzureSubscriptionList";
|
|
2147
2165
|
const _ASNFE = "AutomationStepNotFoundException";
|
|
2148
2166
|
const _AST = "ActualStartTime";
|
|
2149
2167
|
const _ASUC = "AvailableSecurityUpdateCount";
|
|
2150
2168
|
const _ASUCS = "AvailableSecurityUpdatesComplianceStatus";
|
|
2151
2169
|
const _ASt = "AttachmentsSource";
|
|
2152
2170
|
const _ASu = "AutomationSubtype";
|
|
2171
|
+
const _ASz = "AzureSubscription";
|
|
2153
2172
|
const _AT = "AssociationType";
|
|
2154
2173
|
const _ATPN = "AutomationTargetParameterName";
|
|
2155
2174
|
const _ATTR = "AddTagsToResource";
|
|
@@ -2170,6 +2189,8 @@ const _AVg = "AgentVersion";
|
|
|
2170
2189
|
const _AVp = "ApprovedVersion";
|
|
2171
2190
|
const _AVs = "AssociationVersions";
|
|
2172
2191
|
const _AWSKMSKARN = "AWSKMSKeyARN";
|
|
2192
|
+
const _AZ = "AvailabilityZone";
|
|
2193
|
+
const _AZI = "AvailabilityZoneId";
|
|
2173
2194
|
const _Ac = "Action";
|
|
2174
2195
|
const _Acc = "Accounts";
|
|
2175
2196
|
const _Ag = "Aggregators";
|
|
@@ -2205,15 +2226,28 @@ const _CAR = "CreateActivationRequest";
|
|
|
2205
2226
|
const _CARr = "CreateActivationResult";
|
|
2206
2227
|
const _CARre = "CreateAssociationRequest";
|
|
2207
2228
|
const _CARrea = "CreateAssociationResult";
|
|
2208
|
-
const _CAr = "
|
|
2209
|
-
const _CAre = "
|
|
2229
|
+
const _CAr = "CreatedAt";
|
|
2230
|
+
const _CAre = "CreateActivation";
|
|
2231
|
+
const _CArea = "CreateAssociation";
|
|
2210
2232
|
const _CB = "CutoffBehavior";
|
|
2211
2233
|
const _CBr = "CreatedBy";
|
|
2212
2234
|
const _CC = "CompletedCount";
|
|
2235
|
+
const _CCA = "ConfigConnectorArn";
|
|
2236
|
+
const _CCAl = "CloudConnectorArn";
|
|
2237
|
+
const _CCC = "CloudConnectorConfiguration";
|
|
2238
|
+
const _CCCR = "CreateCloudConnectorRequest";
|
|
2239
|
+
const _CCCRr = "CreateCloudConnectorResult";
|
|
2240
|
+
const _CCCr = "CreateCloudConnector";
|
|
2241
|
+
const _CCF = "CloudConnectorFilter";
|
|
2242
|
+
const _CCFL = "CloudConnectorFilterList";
|
|
2243
|
+
const _CCI = "CloudConnectorId";
|
|
2213
2244
|
const _CCR = "CancelCommandRequest";
|
|
2214
2245
|
const _CCRa = "CancelCommandResult";
|
|
2246
|
+
const _CCS = "CloudConnectorSummary";
|
|
2247
|
+
const _CCSL = "CloudConnectorSummaryList";
|
|
2215
2248
|
const _CCa = "CancelCommand";
|
|
2216
|
-
const _CCl = "
|
|
2249
|
+
const _CCl = "CloudConnectors";
|
|
2250
|
+
const _CCli = "ClientContext";
|
|
2217
2251
|
const _CCo = "CompliantCount";
|
|
2218
2252
|
const _CCr = "CriticalCount";
|
|
2219
2253
|
const _CD = "CreatedDate";
|
|
@@ -2222,8 +2256,9 @@ const _CDRr = "CreateDocumentResult";
|
|
|
2222
2256
|
const _CDh = "ChangeDetails";
|
|
2223
2257
|
const _CDr = "CreationDate";
|
|
2224
2258
|
const _CDre = "CreateDocument";
|
|
2225
|
-
const _CE = "
|
|
2259
|
+
const _CE = "ConflictException";
|
|
2226
2260
|
const _CES = "ComplianceExecutionSummary";
|
|
2261
|
+
const _CEa = "CategoryEnum";
|
|
2227
2262
|
const _CF = "CommandFilter";
|
|
2228
2263
|
const _CFL = "CommandFilterList";
|
|
2229
2264
|
const _CFo = "ComplianceFilter";
|
|
@@ -2280,6 +2315,7 @@ const _CTCLEE = "ComplianceTypeCountLimitExceededException";
|
|
|
2280
2315
|
const _CTa = "CaptureTime";
|
|
2281
2316
|
const _CTl = "ClientToken";
|
|
2282
2317
|
const _CTo = "ComplianceType";
|
|
2318
|
+
const _CTon = "ConfigurationTargets";
|
|
2283
2319
|
const _CTr = "CreateTime";
|
|
2284
2320
|
const _CU = "ContentUrl";
|
|
2285
2321
|
const _CVEI = "CVEIds";
|
|
@@ -2290,10 +2326,11 @@ const _CWOU = "CloudWatchOutputUrl";
|
|
|
2290
2326
|
const _Ca = "Category";
|
|
2291
2327
|
const _Cl = "Classification";
|
|
2292
2328
|
const _Co = "Comment";
|
|
2329
|
+
const _Cod = "Code";
|
|
2293
2330
|
const _Com = "Commands";
|
|
2294
|
-
const _Con = "
|
|
2295
|
-
const
|
|
2296
|
-
const
|
|
2331
|
+
const _Con = "Configuration";
|
|
2332
|
+
const _Cont = "Content";
|
|
2333
|
+
const _Conte = "Context";
|
|
2297
2334
|
const _Cou = "Count";
|
|
2298
2335
|
const _Cr = "Credentials";
|
|
2299
2336
|
const _Cu = "Cutoff";
|
|
@@ -2329,6 +2366,9 @@ const _DAe = "DeleteAssociation";
|
|
|
2329
2366
|
const _DAes = "DescribeActivations";
|
|
2330
2367
|
const _DAesc = "DescribeAssociation";
|
|
2331
2368
|
const _DB = "DefaultBaseline";
|
|
2369
|
+
const _DCC = "DeleteCloudConnector";
|
|
2370
|
+
const _DCCR = "DeleteCloudConnectorRequest";
|
|
2371
|
+
const _DCCRe = "DeleteCloudConnectorResult";
|
|
2332
2372
|
const _DD = "DocumentDescription";
|
|
2333
2373
|
const _DDC = "DuplicateDocumentContent";
|
|
2334
2374
|
const _DDP = "DescribeDocumentPermission";
|
|
@@ -2573,6 +2613,9 @@ const _GAERe = "GetAutomationExecutionResult";
|
|
|
2573
2613
|
const _GAT = "GetAccessToken";
|
|
2574
2614
|
const _GATR = "GetAccessTokenRequest";
|
|
2575
2615
|
const _GATRe = "GetAccessTokenResponse";
|
|
2616
|
+
const _GCC = "GetCloudConnector";
|
|
2617
|
+
const _GCCR = "GetCloudConnectorRequest";
|
|
2618
|
+
const _GCCRe = "GetCloudConnectorResult";
|
|
2576
2619
|
const _GCI = "GetCommandInvocation";
|
|
2577
2620
|
const _GCIR = "GetCommandInvocationRequest";
|
|
2578
2621
|
const _GCIRe = "GetCommandInvocationResult";
|
|
@@ -2830,6 +2873,9 @@ const _LAV = "ListAssociationVersions";
|
|
|
2830
2873
|
const _LAVR = "ListAssociationVersionsRequest";
|
|
2831
2874
|
const _LAVRi = "ListAssociationVersionsResult";
|
|
2832
2875
|
const _LC = "LowCount";
|
|
2876
|
+
const _LCC = "ListCloudConnectors";
|
|
2877
|
+
const _LCCR = "ListCloudConnectorsRequest";
|
|
2878
|
+
const _LCCRi = "ListCloudConnectorsResult";
|
|
2833
2879
|
const _LCI = "ListCommandInvocations";
|
|
2834
2880
|
const _LCIR = "ListCommandInvocationsRequest";
|
|
2835
2881
|
const _LCIRi = "ListCommandInvocationsResult";
|
|
@@ -3105,6 +3151,7 @@ const _PLa = "PatchList";
|
|
|
3105
3151
|
const _PM = "ParameterMetadata";
|
|
3106
3152
|
const _PML = "ParameterMetadataList";
|
|
3107
3153
|
const _PMVLE = "ParameterMaxVersionLimitExceeded";
|
|
3154
|
+
const _PMr = "ProviderMessage";
|
|
3108
3155
|
const _PN = "ParameterNames";
|
|
3109
3156
|
const _PNF = "ParameterNotFound";
|
|
3110
3157
|
const _PNl = "PluginName";
|
|
@@ -3164,10 +3211,11 @@ const _Prop = "Properties";
|
|
|
3164
3211
|
const _Q = "Qualifier";
|
|
3165
3212
|
const _QC = "QuotaCode";
|
|
3166
3213
|
const _R = "Runbooks";
|
|
3167
|
-
const _RA = "
|
|
3214
|
+
const _RA = "RoleArn";
|
|
3168
3215
|
const _RAL = "ResultAttributeList";
|
|
3169
|
-
const _RAe = "
|
|
3170
|
-
const _RAes = "
|
|
3216
|
+
const _RAe = "ResourceArn";
|
|
3217
|
+
const _RAes = "ResultAttributes";
|
|
3218
|
+
const _RAesu = "ResultAttribute";
|
|
3171
3219
|
const _RC = "ReasonCode";
|
|
3172
3220
|
const _RCBS = "ResourceCountByStatus";
|
|
3173
3221
|
const _RCSI = "ResourceComplianceSummaryItems";
|
|
@@ -3320,6 +3368,7 @@ const _SKP = "S3KeyPrefix";
|
|
|
3320
3368
|
const _SL = "S3Location";
|
|
3321
3369
|
const _SLMT = "SyncLastModifiedTime";
|
|
3322
3370
|
const _SLe = "SessionList";
|
|
3371
|
+
const _SLo = "SourceLocation";
|
|
3323
3372
|
const _SM = "StatusMessage";
|
|
3324
3373
|
const _SMOU = "SessionManagerOutputUrl";
|
|
3325
3374
|
const _SMP = "SessionManagerParameters";
|
|
@@ -3367,6 +3416,7 @@ const _SWEc = "ScheduledWindowExecution";
|
|
|
3367
3416
|
const _Sa = "Safe";
|
|
3368
3417
|
const _Sc = "Schedule";
|
|
3369
3418
|
const _Sch = "Schemas";
|
|
3419
|
+
const _Sco = "Scope";
|
|
3370
3420
|
const _Se = "Severity";
|
|
3371
3421
|
const _Sel = "Selector";
|
|
3372
3422
|
const _Ses = "Sessions";
|
|
@@ -3378,6 +3428,7 @@ const _So = "Sources";
|
|
|
3378
3428
|
const _Sou = "Source";
|
|
3379
3429
|
const _St = "Status";
|
|
3380
3430
|
const _Su = "Successful";
|
|
3431
|
+
const _Sub = "Subscriptions";
|
|
3381
3432
|
const _Sum = "Summary";
|
|
3382
3433
|
const _Summ = "Summaries";
|
|
3383
3434
|
const _T = "Tags";
|
|
@@ -3386,12 +3437,14 @@ const _TAa = "TaskArn";
|
|
|
3386
3437
|
const _TAo = "TotalAccounts";
|
|
3387
3438
|
const _TC = "TargetCount";
|
|
3388
3439
|
const _TCo = "TotalCount";
|
|
3440
|
+
const _TDN = "TenantDisplayName";
|
|
3389
3441
|
const _TE = "ThrottlingException";
|
|
3390
3442
|
const _TEI = "TaskExecutionId";
|
|
3391
|
-
const _TI = "
|
|
3443
|
+
const _TI = "TenantId";
|
|
3392
3444
|
const _TIP = "TaskInvocationParameters";
|
|
3393
3445
|
const _TIUE = "TargetInUseException";
|
|
3394
|
-
const _TIa = "
|
|
3446
|
+
const _TIa = "TaskId";
|
|
3447
|
+
const _TIas = "TaskIds";
|
|
3395
3448
|
const _TK = "TagKeys";
|
|
3396
3449
|
const _TL = "TargetLocations";
|
|
3397
3450
|
const _TLAC = "TargetLocationAlarmConfiguration";
|
|
@@ -3433,13 +3486,17 @@ const _Tie = "Tier";
|
|
|
3433
3486
|
const _Tr = "Truncated";
|
|
3434
3487
|
const _Ty = "Type";
|
|
3435
3488
|
const _U = "Url";
|
|
3436
|
-
const _UA = "
|
|
3489
|
+
const _UA = "UpdatedAt";
|
|
3437
3490
|
const _UAR = "UpdateAssociationRequest";
|
|
3438
3491
|
const _UARp = "UpdateAssociationResult";
|
|
3439
3492
|
const _UAS = "UpdateAssociationStatus";
|
|
3440
3493
|
const _UASR = "UpdateAssociationStatusRequest";
|
|
3441
3494
|
const _UASRp = "UpdateAssociationStatusResult";
|
|
3495
|
+
const _UAp = "UpdateAssociation";
|
|
3442
3496
|
const _UC = "UnspecifiedCount";
|
|
3497
|
+
const _UCC = "UpdateCloudConnector";
|
|
3498
|
+
const _UCCR = "UpdateCloudConnectorRequest";
|
|
3499
|
+
const _UCCRp = "UpdateCloudConnectorResult";
|
|
3443
3500
|
const _UCE = "UnsupportedCalendarException";
|
|
3444
3501
|
const _UD = "UpdateDocument";
|
|
3445
3502
|
const _UDDV = "UpdateDocumentDefaultVersion";
|
|
@@ -3492,7 +3549,14 @@ const _USSRp = "UpdateServiceSettingResult";
|
|
|
3492
3549
|
const _UT = "UpdatedTime";
|
|
3493
3550
|
const _UTp = "UploadType";
|
|
3494
3551
|
const _V = "Value";
|
|
3552
|
+
const _VCC = "ValidateCloudConnector";
|
|
3553
|
+
const _VCCR = "ValidateCloudConnectorRequest";
|
|
3554
|
+
const _VCCRa = "ValidateCloudConnectorResult";
|
|
3495
3555
|
const _VE = "ValidationException";
|
|
3556
|
+
const _VF = "ValidationFindings";
|
|
3557
|
+
const _VFL = "ValidationFindingList";
|
|
3558
|
+
const _VFS = "ValidationFindingScope";
|
|
3559
|
+
const _VFa = "ValidationFinding";
|
|
3496
3560
|
const _VN = "VersionName";
|
|
3497
3561
|
const _VNS = "ValidNextSteps";
|
|
3498
3562
|
const _Va = "Values";
|
|
@@ -3614,6 +3678,12 @@ var ComplianceTypeCountLimitExceededException$ = [-3, n0, _CTCLEE,
|
|
|
3614
3678
|
[0]
|
|
3615
3679
|
];
|
|
3616
3680
|
n0_registry.registerError(ComplianceTypeCountLimitExceededException$, ComplianceTypeCountLimitExceededException);
|
|
3681
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
3682
|
+
{ [_aQE]: [`ConflictException`, 409], [_e]: _c },
|
|
3683
|
+
[_M],
|
|
3684
|
+
[0]
|
|
3685
|
+
];
|
|
3686
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
3617
3687
|
var CustomSchemaCountLimitExceededException$ = [-3, n0, _CSCLEE,
|
|
3618
3688
|
{ [_aQE]: [`CustomSchemaCountLimitExceeded`, 400], [_e]: _c },
|
|
3619
3689
|
[_M],
|
|
@@ -4508,6 +4578,16 @@ var AutomationExecutionPreview$ = [3, n0, _AEP,
|
|
|
4508
4578
|
[_SP, _Re, _TP, _TAo],
|
|
4509
4579
|
[128 | 1, 64 | 0, () => TargetPreviewList, 1]
|
|
4510
4580
|
];
|
|
4581
|
+
var AzureConfiguration$ = [3, n0, _ACz,
|
|
4582
|
+
0,
|
|
4583
|
+
[_TI, _AIp, _TDN, _ADN, _Ta],
|
|
4584
|
+
[0, 0, 0, 0, () => ConfigurationTargets$], 2
|
|
4585
|
+
];
|
|
4586
|
+
var AzureSubscription$ = [3, n0, _ASz,
|
|
4587
|
+
0,
|
|
4588
|
+
[_I, _DNi],
|
|
4589
|
+
[0, 0], 1
|
|
4590
|
+
];
|
|
4511
4591
|
var BaselineOverride$ = [3, n0, _BO,
|
|
4512
4592
|
0,
|
|
4513
4593
|
[_OSp, _GF, _AR, _AP, _APCL, _RP, _RPA, _APENS, _So, _ASUCS],
|
|
@@ -4533,6 +4613,16 @@ var CancelMaintenanceWindowExecutionResult$ = [3, n0, _CMWERa,
|
|
|
4533
4613
|
[_WEI],
|
|
4534
4614
|
[0]
|
|
4535
4615
|
];
|
|
4616
|
+
var CloudConnectorFilter$ = [3, n0, _CCF,
|
|
4617
|
+
0,
|
|
4618
|
+
[_FK, _FV],
|
|
4619
|
+
[0, 64 | 0]
|
|
4620
|
+
];
|
|
4621
|
+
var CloudConnectorSummary$ = [3, n0, _CCS,
|
|
4622
|
+
0,
|
|
4623
|
+
[_CCI, _DNi, _D, _RA, _CAr, _UA],
|
|
4624
|
+
[0, 0, 0, 0, 4, 4]
|
|
4625
|
+
];
|
|
4536
4626
|
var CloudWatchOutputConfig$ = [3, n0, _CWOC,
|
|
4537
4627
|
0,
|
|
4538
4628
|
[_CWLGN, _CWOE],
|
|
@@ -4623,9 +4713,19 @@ var CreateAssociationResult$ = [3, n0, _CARrea,
|
|
|
4623
4713
|
[_AD],
|
|
4624
4714
|
[[() => AssociationDescription$, 0]]
|
|
4625
4715
|
];
|
|
4716
|
+
var CreateCloudConnectorRequest$ = [3, n0, _CCCR,
|
|
4717
|
+
0,
|
|
4718
|
+
[_DNi, _RA, _Con, _CCA, _D, _T],
|
|
4719
|
+
[0, 0, () => CloudConnectorConfiguration$, 0, 0, () => TagList], 4
|
|
4720
|
+
];
|
|
4721
|
+
var CreateCloudConnectorResult$ = [3, n0, _CCCRr,
|
|
4722
|
+
0,
|
|
4723
|
+
[_CCI],
|
|
4724
|
+
[0]
|
|
4725
|
+
];
|
|
4626
4726
|
var CreateDocumentRequest$ = [3, n0, _CDR,
|
|
4627
4727
|
0,
|
|
4628
|
-
[
|
|
4728
|
+
[_Cont, _N, _Req, _At, _DNi, _VN, _DT, _DF, _TT, _T],
|
|
4629
4729
|
[0, 0, () => DocumentRequiresList, () => AttachmentsSourceList, 0, 0, 0, 0, 0, () => TagList], 2
|
|
4630
4730
|
];
|
|
4631
4731
|
var CreateDocumentResult$ = [3, n0, _CDRr,
|
|
@@ -4708,6 +4808,16 @@ var DeleteAssociationResult$ = [3, n0, _DARele,
|
|
|
4708
4808
|
[],
|
|
4709
4809
|
[]
|
|
4710
4810
|
];
|
|
4811
|
+
var DeleteCloudConnectorRequest$ = [3, n0, _DCCR,
|
|
4812
|
+
0,
|
|
4813
|
+
[_CCI],
|
|
4814
|
+
[0], 1
|
|
4815
|
+
];
|
|
4816
|
+
var DeleteCloudConnectorResult$ = [3, n0, _DCCRe,
|
|
4817
|
+
0,
|
|
4818
|
+
[_CCI],
|
|
4819
|
+
[0]
|
|
4820
|
+
];
|
|
4711
4821
|
var DeleteDocumentRequest$ = [3, n0, _DDR,
|
|
4712
4822
|
0,
|
|
4713
4823
|
[_N, _DV, _VN, _Fo],
|
|
@@ -4800,7 +4910,7 @@ var DeleteResourceDataSyncResult$ = [3, n0, _DRDSRe,
|
|
|
4800
4910
|
];
|
|
4801
4911
|
var DeleteResourcePolicyRequest$ = [3, n0, _DRPR,
|
|
4802
4912
|
0,
|
|
4803
|
-
[
|
|
4913
|
+
[_RAe, _PI, _PH],
|
|
4804
4914
|
[0, 0, 0], 3
|
|
4805
4915
|
];
|
|
4806
4916
|
var DeleteResourcePolicyResponse$ = [3, n0, _DRPRe,
|
|
@@ -5045,7 +5155,7 @@ var DescribeMaintenanceWindowExecutionsResult$ = [3, n0, _DMWERe,
|
|
|
5045
5155
|
];
|
|
5046
5156
|
var DescribeMaintenanceWindowExecutionTaskInvocationsRequest$ = [3, n0, _DMWETIR,
|
|
5047
5157
|
0,
|
|
5048
|
-
[_WEI,
|
|
5158
|
+
[_WEI, _TIa, _Fi, _MR, _NT],
|
|
5049
5159
|
[0, 0, () => MaintenanceWindowFilterList, 1, 0], 2
|
|
5050
5160
|
];
|
|
5051
5161
|
var DescribeMaintenanceWindowExecutionTaskInvocationsResult$ = [3, n0, _DMWETIRe,
|
|
@@ -5200,7 +5310,7 @@ var DocumentDefaultVersionDescription$ = [3, n0, _DDVD,
|
|
|
5200
5310
|
];
|
|
5201
5311
|
var DocumentDescription$ = [3, n0, _DD,
|
|
5202
5312
|
0,
|
|
5203
|
-
[_Sha, _H, _HT, _N, _DNi, _VN, _Ow, _CD, _St, _SI, _DV, _D, _P, _PTl, _DT, _SV, _LV, _DVe, _DF, _TT, _T, _AItt, _Req, _Au, _RIe, _AVp, _PRV, _RS, _Ca,
|
|
5313
|
+
[_Sha, _H, _HT, _N, _DNi, _VN, _Ow, _CD, _St, _SI, _DV, _D, _P, _PTl, _DT, _SV, _LV, _DVe, _DF, _TT, _T, _AItt, _Req, _Au, _RIe, _AVp, _PRV, _RS, _Ca, _CEa],
|
|
5204
5314
|
[0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, [() => DocumentParameterList, 0], [() => PlatformTypeList, 0], 0, 0, 0, 0, 0, 0, () => TagList, [() => AttachmentInformationList, 0], () => DocumentRequiresList, 0, [() => ReviewInformationList, 0], 0, 0, 0, 64 | 0, 64 | 0]
|
|
5205
5315
|
];
|
|
5206
5316
|
var DocumentFilter$ = [3, n0, _DFo,
|
|
@@ -5235,7 +5345,7 @@ var DocumentRequires$ = [3, n0, _DRo,
|
|
|
5235
5345
|
];
|
|
5236
5346
|
var DocumentReviewCommentSource$ = [3, n0, _DRCS,
|
|
5237
5347
|
0,
|
|
5238
|
-
[_Ty,
|
|
5348
|
+
[_Ty, _Cont],
|
|
5239
5349
|
[0, 0]
|
|
5240
5350
|
];
|
|
5241
5351
|
var DocumentReviewerResponseSource$ = [3, n0, _DRRS,
|
|
@@ -5298,6 +5408,16 @@ var GetCalendarStateResponse$ = [3, n0, _GCSRe,
|
|
|
5298
5408
|
[_S, _ATt, _NTT],
|
|
5299
5409
|
[0, 0, 0]
|
|
5300
5410
|
];
|
|
5411
|
+
var GetCloudConnectorRequest$ = [3, n0, _GCCR,
|
|
5412
|
+
0,
|
|
5413
|
+
[_CCI],
|
|
5414
|
+
[0], 1
|
|
5415
|
+
];
|
|
5416
|
+
var GetCloudConnectorResult$ = [3, n0, _GCCRe,
|
|
5417
|
+
0,
|
|
5418
|
+
[_CCAl, _DNi, _D, _RA, _Con, _CCA, _CAr, _UA],
|
|
5419
|
+
[0, 0, 0, 0, () => CloudConnectorConfiguration$, 0, 4, 4]
|
|
5420
|
+
];
|
|
5301
5421
|
var GetCommandInvocationRequest$ = [3, n0, _GCIR,
|
|
5302
5422
|
0,
|
|
5303
5423
|
[_CI, _II, _PNl],
|
|
@@ -5345,7 +5465,7 @@ var GetDocumentRequest$ = [3, n0, _GDR,
|
|
|
5345
5465
|
];
|
|
5346
5466
|
var GetDocumentResult$ = [3, n0, _GDRe,
|
|
5347
5467
|
0,
|
|
5348
|
-
[_N, _CD, _DNi, _VN, _DV, _St, _SI,
|
|
5468
|
+
[_N, _CD, _DNi, _VN, _DV, _St, _SI, _Cont, _DT, _DF, _Req, _ACtt, _RS],
|
|
5349
5469
|
[0, 4, 0, 0, 0, 0, 0, 0, 0, 0, () => DocumentRequiresList, [() => AttachmentContentList, 0], 0]
|
|
5350
5470
|
];
|
|
5351
5471
|
var GetExecutionPreviewRequest$ = [3, n0, _GEPR,
|
|
@@ -5360,7 +5480,7 @@ var GetExecutionPreviewResponse$ = [3, n0, _GEPRe,
|
|
|
5360
5480
|
];
|
|
5361
5481
|
var GetInventoryRequest$ = [3, n0, _GIR,
|
|
5362
5482
|
0,
|
|
5363
|
-
[_Fi, _Ag,
|
|
5483
|
+
[_Fi, _Ag, _RAes, _NT, _MR],
|
|
5364
5484
|
[[() => InventoryFilterList, 0], [() => InventoryAggregatorList, 0], [() => ResultAttributeList, 0], 0, 1]
|
|
5365
5485
|
];
|
|
5366
5486
|
var GetInventoryResult$ = [3, n0, _GIRe,
|
|
@@ -5385,12 +5505,12 @@ var GetMaintenanceWindowExecutionRequest$ = [3, n0, _GMWER,
|
|
|
5385
5505
|
];
|
|
5386
5506
|
var GetMaintenanceWindowExecutionResult$ = [3, n0, _GMWERe,
|
|
5387
5507
|
0,
|
|
5388
|
-
[_WEI,
|
|
5508
|
+
[_WEI, _TIas, _St, _SD, _STt, _ETn],
|
|
5389
5509
|
[0, 64 | 0, 0, 0, 4, 4]
|
|
5390
5510
|
];
|
|
5391
5511
|
var GetMaintenanceWindowExecutionTaskInvocationRequest$ = [3, n0, _GMWETIR,
|
|
5392
5512
|
0,
|
|
5393
|
-
[_WEI,
|
|
5513
|
+
[_WEI, _TIa, _IInv],
|
|
5394
5514
|
[0, 0, 0], 3
|
|
5395
5515
|
];
|
|
5396
5516
|
var GetMaintenanceWindowExecutionTaskInvocationResult$ = [3, n0, _GMWETIRe,
|
|
@@ -5400,7 +5520,7 @@ var GetMaintenanceWindowExecutionTaskInvocationResult$ = [3, n0, _GMWETIRe,
|
|
|
5400
5520
|
];
|
|
5401
5521
|
var GetMaintenanceWindowExecutionTaskRequest$ = [3, n0, _GMWETR,
|
|
5402
5522
|
0,
|
|
5403
|
-
[_WEI,
|
|
5523
|
+
[_WEI, _TIa],
|
|
5404
5524
|
[0, 0], 2
|
|
5405
5525
|
];
|
|
5406
5526
|
var GetMaintenanceWindowExecutionTaskResult$ = [3, n0, _GMWETRe,
|
|
@@ -5450,7 +5570,7 @@ var GetOpsMetadataResult$ = [3, n0, _GOMRe,
|
|
|
5450
5570
|
];
|
|
5451
5571
|
var GetOpsSummaryRequest$ = [3, n0, _GOSR,
|
|
5452
5572
|
0,
|
|
5453
|
-
[_SN, _Fi, _Ag,
|
|
5573
|
+
[_SN, _Fi, _Ag, _RAes, _NT, _MR],
|
|
5454
5574
|
[0, [() => OpsFilterList, 0], [() => OpsAggregatorList, 0], [() => OpsResultAttributeList, 0], 0, 1]
|
|
5455
5575
|
];
|
|
5456
5576
|
var GetOpsSummaryResult$ = [3, n0, _GOSRe,
|
|
@@ -5520,7 +5640,7 @@ var GetPatchBaselineResult$ = [3, n0, _GPBRe,
|
|
|
5520
5640
|
];
|
|
5521
5641
|
var GetResourcePoliciesRequest$ = [3, n0, _GRPR,
|
|
5522
5642
|
0,
|
|
5523
|
-
[
|
|
5643
|
+
[_RAe, _NT, _MR],
|
|
5524
5644
|
[0, 0, 1], 1
|
|
5525
5645
|
];
|
|
5526
5646
|
var GetResourcePoliciesResponse$ = [3, n0, _GRPRe,
|
|
@@ -5550,7 +5670,7 @@ var InstanceAggregatedAssociationOverview$ = [3, n0, _IAAO,
|
|
|
5550
5670
|
];
|
|
5551
5671
|
var InstanceAssociation$ = [3, n0, _IAns,
|
|
5552
5672
|
0,
|
|
5553
|
-
[_AIs, _II,
|
|
5673
|
+
[_AIs, _II, _Cont, _AV],
|
|
5554
5674
|
[0, 0, 0, 0]
|
|
5555
5675
|
];
|
|
5556
5676
|
var InstanceAssociationOutputLocation$ = [3, n0, _IAOL,
|
|
@@ -5570,13 +5690,13 @@ var InstanceAssociationStatusInfo$ = [3, n0, _IASIn,
|
|
|
5570
5690
|
];
|
|
5571
5691
|
var InstanceInfo$ = [3, n0, _IIns,
|
|
5572
5692
|
0,
|
|
5573
|
-
[_ATg, _AVg, _CNo, _ISn, _IAp, _MS, _PTla, _PNla, _PV, _RTe],
|
|
5574
|
-
[0, 0, 0, 0, [() => IPAddress, 0], 0, 0, 0, 0, 0]
|
|
5693
|
+
[_ATg, _AVg, _CNo, _ISn, _IAp, _MS, _N, _PTla, _PNla, _PV, _RTe, _STo, _SIo, _SLo, _AZ, _AZI],
|
|
5694
|
+
[0, 0, 0, 0, [() => IPAddress, 0], 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
5575
5695
|
];
|
|
5576
5696
|
var InstanceInformation$ = [3, n0, _IInst,
|
|
5577
5697
|
0,
|
|
5578
|
-
[_II, _PSi, _LPDT, _AVg, _ILV, _PTla, _PNla, _PV, _AIct, _IRa, _RD, _RTe, _N, _IPA, _CNo, _AS, _LAED, _LSAED, _AO, _SIo, _STo],
|
|
5579
|
-
[0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 4, 0, 0, [() => IPAddress, 0], 0, 0, 4, 4, () => InstanceAggregatedAssociationOverview$, 0, 0]
|
|
5698
|
+
[_II, _PSi, _LPDT, _AVg, _ILV, _PTla, _PNla, _PV, _AIct, _IRa, _RD, _RTe, _N, _IPA, _CNo, _AS, _LAED, _LSAED, _AO, _SIo, _STo, _SLo],
|
|
5699
|
+
[0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 4, 0, 0, [() => IPAddress, 0], 0, 0, 4, 4, () => InstanceAggregatedAssociationOverview$, 0, 0, 0]
|
|
5580
5700
|
];
|
|
5581
5701
|
var InstanceInformationFilter$ = [3, n0, _IIF,
|
|
5582
5702
|
0,
|
|
@@ -5600,8 +5720,8 @@ var InstancePatchStateFilter$ = [3, n0, _IPSF,
|
|
|
5600
5720
|
];
|
|
5601
5721
|
var InstanceProperty$ = [3, n0, _IPns,
|
|
5602
5722
|
0,
|
|
5603
|
-
[_N, _II, _ITns, _IRn, _KN, _ISns, _Ar, _IPA, _LTa, _PSi, _LPDT, _AVg, _PTla, _PNla, _PV, _AIct, _IRa, _RD, _RTe, _CNo, _AS, _LAED, _LSAED, _AO, _SIo, _STo],
|
|
5604
|
-
[0, 0, 0, 0, 0, 0, 0, [() => IPAddress, 0], 4, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 4, () => InstanceAggregatedAssociationOverview$, 0, 0]
|
|
5723
|
+
[_N, _II, _ITns, _IRn, _KN, _ISns, _Ar, _IPA, _LTa, _PSi, _LPDT, _AVg, _PTla, _PNla, _PV, _AIct, _IRa, _RD, _RTe, _CNo, _AS, _LAED, _LSAED, _AO, _SIo, _STo, _SLo, _AZ],
|
|
5724
|
+
[0, 0, 0, 0, 0, 0, 0, [() => IPAddress, 0], 4, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 4, () => InstanceAggregatedAssociationOverview$, 0, 0, 0, 0]
|
|
5605
5725
|
];
|
|
5606
5726
|
var InstancePropertyFilter$ = [3, n0, _IPF,
|
|
5607
5727
|
0,
|
|
@@ -5645,7 +5765,7 @@ var InventoryGroup$ = [3, n0, _IG,
|
|
|
5645
5765
|
];
|
|
5646
5766
|
var InventoryItem$ = [3, n0, _IInve,
|
|
5647
5767
|
0,
|
|
5648
|
-
[_TN, _SV, _CTa, _CH,
|
|
5768
|
+
[_TN, _SV, _CTa, _CH, _Cont, _Conte],
|
|
5649
5769
|
[0, 0, 0, 0, [1, n0, _IIEL, 0, 128 | 0], 128 | 0], 3
|
|
5650
5770
|
];
|
|
5651
5771
|
var InventoryItemAttribute$ = [3, n0, _IIA,
|
|
@@ -5665,7 +5785,7 @@ var InventoryResultEntity$ = [3, n0, _IRE,
|
|
|
5665
5785
|
];
|
|
5666
5786
|
var InventoryResultItem$ = [3, n0, _IRIn,
|
|
5667
5787
|
0,
|
|
5668
|
-
[_TN, _SV,
|
|
5788
|
+
[_TN, _SV, _Cont, _CTa, _CH],
|
|
5669
5789
|
[0, 0, [1, n0, _IIEL, 0, 128 | 0], 0, 0], 3
|
|
5670
5790
|
];
|
|
5671
5791
|
var LabelParameterVersionRequest$ = [3, n0, _LPVR,
|
|
@@ -5698,6 +5818,16 @@ var ListAssociationVersionsResult$ = [3, n0, _LAVRi,
|
|
|
5698
5818
|
[_AVs, _NT],
|
|
5699
5819
|
[[() => AssociationVersionList, 0], 0]
|
|
5700
5820
|
];
|
|
5821
|
+
var ListCloudConnectorsRequest$ = [3, n0, _LCCR,
|
|
5822
|
+
0,
|
|
5823
|
+
[_MR, _NT, _Fi],
|
|
5824
|
+
[1, 0, () => CloudConnectorFilterList]
|
|
5825
|
+
];
|
|
5826
|
+
var ListCloudConnectorsResult$ = [3, n0, _LCCRi,
|
|
5827
|
+
0,
|
|
5828
|
+
[_CCl, _NT],
|
|
5829
|
+
[() => CloudConnectorSummaryList, 0]
|
|
5830
|
+
];
|
|
5701
5831
|
var ListCommandInvocationsRequest$ = [3, n0, _LCIR,
|
|
5702
5832
|
0,
|
|
5703
5833
|
[_CI, _II, _MR, _NT, _Fi, _De],
|
|
@@ -5900,7 +6030,7 @@ var MaintenanceWindowIdentityForTarget$ = [3, n0, _MWIFT,
|
|
|
5900
6030
|
];
|
|
5901
6031
|
var MaintenanceWindowLambdaParameters$ = [3, n0, _MWLPa,
|
|
5902
6032
|
0,
|
|
5903
|
-
[
|
|
6033
|
+
[_CCli, _Q, _Pay],
|
|
5904
6034
|
[0, 0, [() => MaintenanceWindowLambdaPayload, 0]]
|
|
5905
6035
|
];
|
|
5906
6036
|
var MaintenanceWindowRunCommandParameters$ = [3, n0, _MWRCP,
|
|
@@ -5990,7 +6120,7 @@ var OpsEntity$ = [3, n0, _OE,
|
|
|
5990
6120
|
];
|
|
5991
6121
|
var OpsEntityItem$ = [3, n0, _OEI,
|
|
5992
6122
|
0,
|
|
5993
|
-
[_CTa,
|
|
6123
|
+
[_CTa, _Cont],
|
|
5994
6124
|
[0, [1, n0, _OEIEL, 0, 128 | 0]]
|
|
5995
6125
|
];
|
|
5996
6126
|
var OpsFilter$ = [3, n0, _OF,
|
|
@@ -6150,7 +6280,7 @@ var PatchRuleGroup$ = [3, n0, _PRG,
|
|
|
6150
6280
|
];
|
|
6151
6281
|
var PatchSource$ = [3, n0, _PSat,
|
|
6152
6282
|
0,
|
|
6153
|
-
[_N, _Produ,
|
|
6283
|
+
[_N, _Produ, _Con],
|
|
6154
6284
|
[0, 64 | 0, [() => PatchSourceConfiguration, 0]], 3
|
|
6155
6285
|
];
|
|
6156
6286
|
var PatchStatus$ = [3, n0, _PSa,
|
|
@@ -6195,7 +6325,7 @@ var PutParameterResult$ = [3, n0, _PPRu,
|
|
|
6195
6325
|
];
|
|
6196
6326
|
var PutResourcePolicyRequest$ = [3, n0, _PRPR,
|
|
6197
6327
|
0,
|
|
6198
|
-
[
|
|
6328
|
+
[_RAe, _Pol, _PI, _PH],
|
|
6199
6329
|
[0, 0, 0, 0], 2
|
|
6200
6330
|
];
|
|
6201
6331
|
var PutResourcePolicyResponse$ = [3, n0, _PRPRu,
|
|
@@ -6318,7 +6448,7 @@ var ResourceDataSyncSourceWithState$ = [3, n0, _RDSSWS,
|
|
|
6318
6448
|
[_STo, _AOS, _SRou, _IFR, _S, _EAODS],
|
|
6319
6449
|
[0, () => ResourceDataSyncAwsOrganizationsSource$, 64 | 0, 2, 0, 2]
|
|
6320
6450
|
];
|
|
6321
|
-
var ResultAttribute$ = [3, n0,
|
|
6451
|
+
var ResultAttribute$ = [3, n0, _RAesu,
|
|
6322
6452
|
0,
|
|
6323
6453
|
[_TN],
|
|
6324
6454
|
[0], 1
|
|
@@ -6543,6 +6673,16 @@ var UpdateAssociationStatusResult$ = [3, n0, _UASRp,
|
|
|
6543
6673
|
[_AD],
|
|
6544
6674
|
[[() => AssociationDescription$, 0]]
|
|
6545
6675
|
];
|
|
6676
|
+
var UpdateCloudConnectorRequest$ = [3, n0, _UCCR,
|
|
6677
|
+
0,
|
|
6678
|
+
[_CCI, _DNi, _Con, _D],
|
|
6679
|
+
[0, 0, () => CloudConnectorConfiguration$, 0], 1
|
|
6680
|
+
];
|
|
6681
|
+
var UpdateCloudConnectorResult$ = [3, n0, _UCCRp,
|
|
6682
|
+
0,
|
|
6683
|
+
[_CCI],
|
|
6684
|
+
[0]
|
|
6685
|
+
];
|
|
6546
6686
|
var UpdateDocumentDefaultVersionRequest$ = [3, n0, _UDDVR,
|
|
6547
6687
|
0,
|
|
6548
6688
|
[_N, _DV],
|
|
@@ -6565,7 +6705,7 @@ var UpdateDocumentMetadataResponse$ = [3, n0, _UDMRp,
|
|
|
6565
6705
|
];
|
|
6566
6706
|
var UpdateDocumentRequest$ = [3, n0, _UDR,
|
|
6567
6707
|
0,
|
|
6568
|
-
[
|
|
6708
|
+
[_Cont, _N, _At, _DNi, _VN, _DV, _DF, _TT],
|
|
6569
6709
|
[0, 0, () => AttachmentsSourceList, 0, 0, 0, 0, 0], 2
|
|
6570
6710
|
];
|
|
6571
6711
|
var UpdateDocumentResult$ = [3, n0, _UDRp,
|
|
@@ -6663,6 +6803,26 @@ var UpdateServiceSettingResult$ = [3, n0, _USSRp,
|
|
|
6663
6803
|
[],
|
|
6664
6804
|
[]
|
|
6665
6805
|
];
|
|
6806
|
+
var ValidateCloudConnectorRequest$ = [3, n0, _VCCR,
|
|
6807
|
+
0,
|
|
6808
|
+
[_CCI, _MR, _NT],
|
|
6809
|
+
[0, 1, 0], 1
|
|
6810
|
+
];
|
|
6811
|
+
var ValidateCloudConnectorResult$ = [3, n0, _VCCRa,
|
|
6812
|
+
0,
|
|
6813
|
+
[_VF, _NT],
|
|
6814
|
+
[() => ValidationFindingList, 0]
|
|
6815
|
+
];
|
|
6816
|
+
var ValidationFinding$ = [3, n0, _VFa,
|
|
6817
|
+
0,
|
|
6818
|
+
[_Ty, _Cod, _M, _PMr, _Sco],
|
|
6819
|
+
[0, 0, 0, 0, () => ValidationFindingScope$]
|
|
6820
|
+
];
|
|
6821
|
+
var ValidationFindingScope$ = [3, n0, _VFS,
|
|
6822
|
+
0,
|
|
6823
|
+
[_Ty, _I],
|
|
6824
|
+
[0, 0]
|
|
6825
|
+
];
|
|
6666
6826
|
var AccountIdList = [1, n0, _AIL,
|
|
6667
6827
|
0, [0,
|
|
6668
6828
|
{ [_xN]: _AIc }]
|
|
@@ -6729,6 +6889,15 @@ var AutomationExecutionFilterList = [1, n0, _AEFLu,
|
|
|
6729
6889
|
var AutomationExecutionMetadataList = [1, n0, _AEML,
|
|
6730
6890
|
0, () => AutomationExecutionMetadata$
|
|
6731
6891
|
];
|
|
6892
|
+
var AzureSubscriptionList = [1, n0, _ASLz,
|
|
6893
|
+
0, () => AzureSubscription$
|
|
6894
|
+
];
|
|
6895
|
+
var CloudConnectorFilterList = [1, n0, _CCFL,
|
|
6896
|
+
0, () => CloudConnectorFilter$
|
|
6897
|
+
];
|
|
6898
|
+
var CloudConnectorSummaryList = [1, n0, _CCSL,
|
|
6899
|
+
0, () => CloudConnectorSummary$
|
|
6900
|
+
];
|
|
6732
6901
|
var CommandFilterList = [1, n0, _CFL,
|
|
6733
6902
|
0, () => CommandFilter$
|
|
6734
6903
|
];
|
|
@@ -7058,7 +7227,7 @@ var ResourceDataSyncOrganizationalUnitList = [1, n0, _RDSOUL,
|
|
|
7058
7227
|
];
|
|
7059
7228
|
var ResultAttributeList = [1, n0, _RAL,
|
|
7060
7229
|
0, [() => ResultAttribute$,
|
|
7061
|
-
{ [_xN]:
|
|
7230
|
+
{ [_xN]: _RAesu }]
|
|
7062
7231
|
];
|
|
7063
7232
|
var ReviewInformationList = [1, n0, _RIL,
|
|
7064
7233
|
0, [() => ReviewInformation$,
|
|
@@ -7094,6 +7263,9 @@ var TargetPreviewList = [1, n0, _TPL,
|
|
|
7094
7263
|
var Targets = [1, n0, _Ta,
|
|
7095
7264
|
0, () => Target$
|
|
7096
7265
|
];
|
|
7266
|
+
var ValidationFindingList = [1, n0, _VFL,
|
|
7267
|
+
0, () => ValidationFinding$
|
|
7268
|
+
];
|
|
7097
7269
|
var InventoryResultItemMap = [2, n0, _IRIM,
|
|
7098
7270
|
0, 0, () => InventoryResultItem$
|
|
7099
7271
|
];
|
|
@@ -7115,6 +7287,16 @@ var OpsItemOperationalData = [2, n0, _OIOD,
|
|
|
7115
7287
|
var _Parameters = [2, n0, _P,
|
|
7116
7288
|
8, 0, 64 | 0
|
|
7117
7289
|
];
|
|
7290
|
+
var CloudConnectorConfiguration$ = [4, n0, _CCC,
|
|
7291
|
+
0,
|
|
7292
|
+
[_ACz],
|
|
7293
|
+
[() => AzureConfiguration$]
|
|
7294
|
+
];
|
|
7295
|
+
var ConfigurationTargets$ = [4, n0, _CTon,
|
|
7296
|
+
0,
|
|
7297
|
+
[_Sub],
|
|
7298
|
+
[() => AzureSubscriptionList]
|
|
7299
|
+
];
|
|
7118
7300
|
var ExecutionInputs$ = [4, n0, _EIx,
|
|
7119
7301
|
0,
|
|
7120
7302
|
[_Aut],
|
|
@@ -7142,15 +7324,18 @@ var CancelCommand$ = [9, n0, _CCa,
|
|
|
7142
7324
|
var CancelMaintenanceWindowExecution$ = [9, n0, _CMWE,
|
|
7143
7325
|
0, () => CancelMaintenanceWindowExecutionRequest$, () => CancelMaintenanceWindowExecutionResult$
|
|
7144
7326
|
];
|
|
7145
|
-
var CreateActivation$ = [9, n0,
|
|
7327
|
+
var CreateActivation$ = [9, n0, _CAre,
|
|
7146
7328
|
0, () => CreateActivationRequest$, () => CreateActivationResult$
|
|
7147
7329
|
];
|
|
7148
|
-
var CreateAssociation$ = [9, n0,
|
|
7330
|
+
var CreateAssociation$ = [9, n0, _CArea,
|
|
7149
7331
|
0, () => CreateAssociationRequest$, () => CreateAssociationResult$
|
|
7150
7332
|
];
|
|
7151
7333
|
var CreateAssociationBatch$ = [9, n0, _CAB,
|
|
7152
7334
|
0, () => CreateAssociationBatchRequest$, () => CreateAssociationBatchResult$
|
|
7153
7335
|
];
|
|
7336
|
+
var CreateCloudConnector$ = [9, n0, _CCCr,
|
|
7337
|
+
0, () => CreateCloudConnectorRequest$, () => CreateCloudConnectorResult$
|
|
7338
|
+
];
|
|
7154
7339
|
var CreateDocument$ = [9, n0, _CDre,
|
|
7155
7340
|
0, () => CreateDocumentRequest$, () => CreateDocumentResult$
|
|
7156
7341
|
];
|
|
@@ -7175,6 +7360,9 @@ var DeleteActivation$ = [9, n0, _DA,
|
|
|
7175
7360
|
var DeleteAssociation$ = [9, n0, _DAe,
|
|
7176
7361
|
0, () => DeleteAssociationRequest$, () => DeleteAssociationResult$
|
|
7177
7362
|
];
|
|
7363
|
+
var DeleteCloudConnector$ = [9, n0, _DCC,
|
|
7364
|
+
0, () => DeleteCloudConnectorRequest$, () => DeleteCloudConnectorResult$
|
|
7365
|
+
];
|
|
7178
7366
|
var DeleteDocument$ = [9, n0, _DDe,
|
|
7179
7367
|
0, () => DeleteDocumentRequest$, () => DeleteDocumentResult$
|
|
7180
7368
|
];
|
|
@@ -7328,6 +7516,9 @@ var GetAutomationExecution$ = [9, n0, _GAE,
|
|
|
7328
7516
|
var GetCalendarState$ = [9, n0, _GCS,
|
|
7329
7517
|
0, () => GetCalendarStateRequest$, () => GetCalendarStateResponse$
|
|
7330
7518
|
];
|
|
7519
|
+
var GetCloudConnector$ = [9, n0, _GCC,
|
|
7520
|
+
0, () => GetCloudConnectorRequest$, () => GetCloudConnectorResult$
|
|
7521
|
+
];
|
|
7331
7522
|
var GetCommandInvocation$ = [9, n0, _GCI,
|
|
7332
7523
|
0, () => GetCommandInvocationRequest$, () => GetCommandInvocationResult$
|
|
7333
7524
|
];
|
|
@@ -7409,6 +7600,9 @@ var ListAssociations$ = [9, n0, _LA,
|
|
|
7409
7600
|
var ListAssociationVersions$ = [9, n0, _LAV,
|
|
7410
7601
|
0, () => ListAssociationVersionsRequest$, () => ListAssociationVersionsResult$
|
|
7411
7602
|
];
|
|
7603
|
+
var ListCloudConnectors$ = [9, n0, _LCC,
|
|
7604
|
+
0, () => ListCloudConnectorsRequest$, () => ListCloudConnectorsResult$
|
|
7605
|
+
];
|
|
7412
7606
|
var ListCommandInvocations$ = [9, n0, _LCI,
|
|
7413
7607
|
0, () => ListCommandInvocationsRequest$, () => ListCommandInvocationsResult$
|
|
7414
7608
|
];
|
|
@@ -7526,12 +7720,15 @@ var TerminateSession$ = [9, n0, _TSe,
|
|
|
7526
7720
|
var UnlabelParameterVersion$ = [9, n0, _UPV,
|
|
7527
7721
|
0, () => UnlabelParameterVersionRequest$, () => UnlabelParameterVersionResult$
|
|
7528
7722
|
];
|
|
7529
|
-
var UpdateAssociation$ = [9, n0,
|
|
7723
|
+
var UpdateAssociation$ = [9, n0, _UAp,
|
|
7530
7724
|
0, () => UpdateAssociationRequest$, () => UpdateAssociationResult$
|
|
7531
7725
|
];
|
|
7532
7726
|
var UpdateAssociationStatus$ = [9, n0, _UAS,
|
|
7533
7727
|
0, () => UpdateAssociationStatusRequest$, () => UpdateAssociationStatusResult$
|
|
7534
7728
|
];
|
|
7729
|
+
var UpdateCloudConnector$ = [9, n0, _UCC,
|
|
7730
|
+
0, () => UpdateCloudConnectorRequest$, () => UpdateCloudConnectorResult$
|
|
7731
|
+
];
|
|
7535
7732
|
var UpdateDocument$ = [9, n0, _UD,
|
|
7536
7733
|
0, () => UpdateDocumentRequest$, () => UpdateDocumentResult$
|
|
7537
7734
|
];
|
|
@@ -7568,6 +7765,9 @@ var UpdateResourceDataSync$ = [9, n0, _URDS,
|
|
|
7568
7765
|
var UpdateServiceSetting$ = [9, n0, _USS,
|
|
7569
7766
|
0, () => UpdateServiceSettingRequest$, () => UpdateServiceSettingResult$
|
|
7570
7767
|
];
|
|
7768
|
+
var ValidateCloudConnector$ = [9, n0, _VCC,
|
|
7769
|
+
0, () => ValidateCloudConnectorRequest$, () => ValidateCloudConnectorResult$
|
|
7770
|
+
];
|
|
7571
7771
|
|
|
7572
7772
|
const getRuntimeConfig$1 = (config) => {
|
|
7573
7773
|
return {
|
|
@@ -7741,6 +7941,9 @@ class CreateAssociationBatchCommand extends command(_ep0, _mw0, "CreateAssociati
|
|
|
7741
7941
|
class CreateAssociationCommand extends command(_ep0, _mw0, "CreateAssociation", CreateAssociation$) {
|
|
7742
7942
|
}
|
|
7743
7943
|
|
|
7944
|
+
class CreateCloudConnectorCommand extends command(_ep0, _mw0, "CreateCloudConnector", CreateCloudConnector$) {
|
|
7945
|
+
}
|
|
7946
|
+
|
|
7744
7947
|
class CreateDocumentCommand extends command(_ep0, _mw0, "CreateDocument", CreateDocument$) {
|
|
7745
7948
|
}
|
|
7746
7949
|
|
|
@@ -7765,6 +7968,9 @@ class DeleteActivationCommand extends command(_ep0, _mw0, "DeleteActivation", De
|
|
|
7765
7968
|
class DeleteAssociationCommand extends command(_ep0, _mw0, "DeleteAssociation", DeleteAssociation$) {
|
|
7766
7969
|
}
|
|
7767
7970
|
|
|
7971
|
+
class DeleteCloudConnectorCommand extends command(_ep0, _mw0, "DeleteCloudConnector", DeleteCloudConnector$) {
|
|
7972
|
+
}
|
|
7973
|
+
|
|
7768
7974
|
class DeleteDocumentCommand extends command(_ep0, _mw0, "DeleteDocument", DeleteDocument$) {
|
|
7769
7975
|
}
|
|
7770
7976
|
|
|
@@ -7918,6 +8124,9 @@ class GetAutomationExecutionCommand extends command(_ep0, _mw0, "GetAutomationEx
|
|
|
7918
8124
|
class GetCalendarStateCommand extends command(_ep0, _mw0, "GetCalendarState", GetCalendarState$) {
|
|
7919
8125
|
}
|
|
7920
8126
|
|
|
8127
|
+
class GetCloudConnectorCommand extends command(_ep0, _mw0, "GetCloudConnector", GetCloudConnector$) {
|
|
8128
|
+
}
|
|
8129
|
+
|
|
7921
8130
|
class GetCommandInvocationCommand extends command(_ep0, _mw0, "GetCommandInvocation", GetCommandInvocation$) {
|
|
7922
8131
|
}
|
|
7923
8132
|
|
|
@@ -7999,6 +8208,9 @@ class ListAssociationsCommand extends command(_ep0, _mw0, "ListAssociations", Li
|
|
|
7999
8208
|
class ListAssociationVersionsCommand extends command(_ep0, _mw0, "ListAssociationVersions", ListAssociationVersions$) {
|
|
8000
8209
|
}
|
|
8001
8210
|
|
|
8211
|
+
class ListCloudConnectorsCommand extends command(_ep0, _mw0, "ListCloudConnectors", ListCloudConnectors$) {
|
|
8212
|
+
}
|
|
8213
|
+
|
|
8002
8214
|
class ListCommandInvocationsCommand extends command(_ep0, _mw0, "ListCommandInvocations", ListCommandInvocations$) {
|
|
8003
8215
|
}
|
|
8004
8216
|
|
|
@@ -8122,6 +8334,9 @@ class UpdateAssociationCommand extends command(_ep0, _mw0, "UpdateAssociation",
|
|
|
8122
8334
|
class UpdateAssociationStatusCommand extends command(_ep0, _mw0, "UpdateAssociationStatus", UpdateAssociationStatus$) {
|
|
8123
8335
|
}
|
|
8124
8336
|
|
|
8337
|
+
class UpdateCloudConnectorCommand extends command(_ep0, _mw0, "UpdateCloudConnector", UpdateCloudConnector$) {
|
|
8338
|
+
}
|
|
8339
|
+
|
|
8125
8340
|
class UpdateDocumentCommand extends command(_ep0, _mw0, "UpdateDocument", UpdateDocument$) {
|
|
8126
8341
|
}
|
|
8127
8342
|
|
|
@@ -8158,6 +8373,9 @@ class UpdateResourceDataSyncCommand extends command(_ep0, _mw0, "UpdateResourceD
|
|
|
8158
8373
|
class UpdateServiceSettingCommand extends command(_ep0, _mw0, "UpdateServiceSetting", UpdateServiceSetting$) {
|
|
8159
8374
|
}
|
|
8160
8375
|
|
|
8376
|
+
class ValidateCloudConnectorCommand extends command(_ep0, _mw0, "ValidateCloudConnector", ValidateCloudConnector$) {
|
|
8377
|
+
}
|
|
8378
|
+
|
|
8161
8379
|
const paginateDescribeActivations = createPaginator(SSMClient, DescribeActivationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
8162
8380
|
|
|
8163
8381
|
const paginateDescribeAssociationExecutions = createPaginator(SSMClient, DescribeAssociationExecutionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -8232,6 +8450,8 @@ const paginateListAssociations = createPaginator(SSMClient, ListAssociationsComm
|
|
|
8232
8450
|
|
|
8233
8451
|
const paginateListAssociationVersions = createPaginator(SSMClient, ListAssociationVersionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
8234
8452
|
|
|
8453
|
+
const paginateListCloudConnectors = createPaginator(SSMClient, ListCloudConnectorsCommand, "NextToken", "NextToken", "MaxResults");
|
|
8454
|
+
|
|
8235
8455
|
const paginateListCommandInvocations = createPaginator(SSMClient, ListCommandInvocationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
8236
8456
|
|
|
8237
8457
|
const paginateListCommands = createPaginator(SSMClient, ListCommandsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -8258,6 +8478,8 @@ const paginateListResourceComplianceSummaries = createPaginator(SSMClient, ListR
|
|
|
8258
8478
|
|
|
8259
8479
|
const paginateListResourceDataSync = createPaginator(SSMClient, ListResourceDataSyncCommand, "NextToken", "NextToken", "MaxResults");
|
|
8260
8480
|
|
|
8481
|
+
const paginateValidateCloudConnector = createPaginator(SSMClient, ValidateCloudConnectorCommand, "NextToken", "NextToken", "MaxResults");
|
|
8482
|
+
|
|
8261
8483
|
const checkState = async (client, input) => {
|
|
8262
8484
|
let reason;
|
|
8263
8485
|
try {
|
|
@@ -8362,6 +8584,7 @@ const commands = {
|
|
|
8362
8584
|
CreateActivationCommand,
|
|
8363
8585
|
CreateAssociationCommand,
|
|
8364
8586
|
CreateAssociationBatchCommand,
|
|
8587
|
+
CreateCloudConnectorCommand,
|
|
8365
8588
|
CreateDocumentCommand,
|
|
8366
8589
|
CreateMaintenanceWindowCommand,
|
|
8367
8590
|
CreateOpsItemCommand,
|
|
@@ -8370,6 +8593,7 @@ const commands = {
|
|
|
8370
8593
|
CreateResourceDataSyncCommand,
|
|
8371
8594
|
DeleteActivationCommand,
|
|
8372
8595
|
DeleteAssociationCommand,
|
|
8596
|
+
DeleteCloudConnectorCommand,
|
|
8373
8597
|
DeleteDocumentCommand,
|
|
8374
8598
|
DeleteInventoryCommand,
|
|
8375
8599
|
DeleteMaintenanceWindowCommand,
|
|
@@ -8421,6 +8645,7 @@ const commands = {
|
|
|
8421
8645
|
GetAccessTokenCommand,
|
|
8422
8646
|
GetAutomationExecutionCommand,
|
|
8423
8647
|
GetCalendarStateCommand,
|
|
8648
|
+
GetCloudConnectorCommand,
|
|
8424
8649
|
GetCommandInvocationCommand,
|
|
8425
8650
|
GetConnectionStatusCommand,
|
|
8426
8651
|
GetDefaultPatchBaselineCommand,
|
|
@@ -8448,6 +8673,7 @@ const commands = {
|
|
|
8448
8673
|
LabelParameterVersionCommand,
|
|
8449
8674
|
ListAssociationsCommand,
|
|
8450
8675
|
ListAssociationVersionsCommand,
|
|
8676
|
+
ListCloudConnectorsCommand,
|
|
8451
8677
|
ListCommandInvocationsCommand,
|
|
8452
8678
|
ListCommandsCommand,
|
|
8453
8679
|
ListComplianceItemsCommand,
|
|
@@ -8489,6 +8715,7 @@ const commands = {
|
|
|
8489
8715
|
UnlabelParameterVersionCommand,
|
|
8490
8716
|
UpdateAssociationCommand,
|
|
8491
8717
|
UpdateAssociationStatusCommand,
|
|
8718
|
+
UpdateCloudConnectorCommand,
|
|
8492
8719
|
UpdateDocumentCommand,
|
|
8493
8720
|
UpdateDocumentDefaultVersionCommand,
|
|
8494
8721
|
UpdateDocumentMetadataCommand,
|
|
@@ -8501,6 +8728,7 @@ const commands = {
|
|
|
8501
8728
|
UpdatePatchBaselineCommand,
|
|
8502
8729
|
UpdateResourceDataSyncCommand,
|
|
8503
8730
|
UpdateServiceSettingCommand,
|
|
8731
|
+
ValidateCloudConnectorCommand,
|
|
8504
8732
|
};
|
|
8505
8733
|
const paginators = {
|
|
8506
8734
|
paginateDescribeActivations,
|
|
@@ -8540,6 +8768,7 @@ const paginators = {
|
|
|
8540
8768
|
paginateGetResourcePolicies,
|
|
8541
8769
|
paginateListAssociations,
|
|
8542
8770
|
paginateListAssociationVersions,
|
|
8771
|
+
paginateListCloudConnectors,
|
|
8543
8772
|
paginateListCommandInvocations,
|
|
8544
8773
|
paginateListCommands,
|
|
8545
8774
|
paginateListComplianceItems,
|
|
@@ -8553,6 +8782,7 @@ const paginators = {
|
|
|
8553
8782
|
paginateListOpsMetadata,
|
|
8554
8783
|
paginateListResourceComplianceSummaries,
|
|
8555
8784
|
paginateListResourceDataSync,
|
|
8785
|
+
paginateValidateCloudConnector,
|
|
8556
8786
|
};
|
|
8557
8787
|
const waiters = {
|
|
8558
8788
|
waitUntilCommandExecuted,
|
|
@@ -8575,6 +8805,7 @@ const AccessType = {
|
|
|
8575
8805
|
const ResourceTypeForTagging = {
|
|
8576
8806
|
ASSOCIATION: "Association",
|
|
8577
8807
|
AUTOMATION: "Automation",
|
|
8808
|
+
CLOUD_CONNECTOR: "CloudConnector",
|
|
8578
8809
|
DOCUMENT: "Document",
|
|
8579
8810
|
MAINTENANCE_WINDOW: "MaintenanceWindow",
|
|
8580
8811
|
MANAGED_INSTANCE: "ManagedInstance",
|
|
@@ -8838,6 +9069,7 @@ const SourceType = {
|
|
|
8838
9069
|
AWS_EC2_INSTANCE: "AWS::EC2::Instance",
|
|
8839
9070
|
AWS_IOT_THING: "AWS::IoT::Thing",
|
|
8840
9071
|
AWS_SSM_MANAGEDINSTANCE: "AWS::SSM::ManagedInstance",
|
|
9072
|
+
AZURE_INSTANCE: "Microsoft.Compute/virtualMachines",
|
|
8841
9073
|
};
|
|
8842
9074
|
const PatchComplianceDataState = {
|
|
8843
9075
|
AvailableSecurityUpdate: "AVAILABLE_SECURITY_UPDATE",
|
|
@@ -9091,6 +9323,7 @@ const OpsFilterOperatorType = {
|
|
|
9091
9323
|
const AssociationFilterKey = {
|
|
9092
9324
|
AssociationId: "AssociationId",
|
|
9093
9325
|
AssociationName: "AssociationName",
|
|
9326
|
+
CloudConnectorId: "CloudConnectorId",
|
|
9094
9327
|
InstanceId: "InstanceId",
|
|
9095
9328
|
LastExecutedAfter: "LastExecutedAfter",
|
|
9096
9329
|
LastExecutedBefore: "LastExecutedBefore",
|
|
@@ -9098,6 +9331,10 @@ const AssociationFilterKey = {
|
|
|
9098
9331
|
ResourceGroupName: "ResourceGroupName",
|
|
9099
9332
|
Status: "AssociationStatusName",
|
|
9100
9333
|
};
|
|
9334
|
+
const CloudConnectorFilterKey = {
|
|
9335
|
+
SubscriptionId: "SubscriptionId",
|
|
9336
|
+
TenantId: "TenantId",
|
|
9337
|
+
};
|
|
9101
9338
|
const CommandFilterKey = {
|
|
9102
9339
|
DOCUMENT_NAME: "DocumentName",
|
|
9103
9340
|
EXECUTION_STAGE: "ExecutionStage",
|
|
@@ -9157,6 +9394,8 @@ const NodeFilterKey = {
|
|
|
9157
9394
|
ACCOUNT_ID: "AccountId",
|
|
9158
9395
|
AGENT_TYPE: "AgentType",
|
|
9159
9396
|
AGENT_VERSION: "AgentVersion",
|
|
9397
|
+
AVAILABILITY_ZONE: "AvailabilityZone",
|
|
9398
|
+
AVAILABILITY_ZONE_ID: "AvailabilityZoneId",
|
|
9160
9399
|
COMPUTER_NAME: "ComputerName",
|
|
9161
9400
|
INSTANCE_ID: "InstanceId",
|
|
9162
9401
|
INSTANCE_STATUS: "InstanceStatus",
|
|
@@ -9169,6 +9408,9 @@ const NodeFilterKey = {
|
|
|
9169
9408
|
PLATFORM_VERSION: "PlatformVersion",
|
|
9170
9409
|
REGION: "Region",
|
|
9171
9410
|
RESOURCE_TYPE: "ResourceType",
|
|
9411
|
+
SOURCE_ID: "SourceId",
|
|
9412
|
+
SOURCE_LOCATION: "SourceLocation",
|
|
9413
|
+
SOURCE_TYPE: "SourceType",
|
|
9172
9414
|
};
|
|
9173
9415
|
const NodeFilterOperatorType = {
|
|
9174
9416
|
BEGIN_WITH: "BeginWith",
|
|
@@ -9185,11 +9427,13 @@ const NodeAggregatorType = {
|
|
|
9185
9427
|
};
|
|
9186
9428
|
const NodeAttributeName = {
|
|
9187
9429
|
AGENT_VERSION: "AgentVersion",
|
|
9430
|
+
AVAILABILITY_ZONE: "AvailabilityZone",
|
|
9188
9431
|
PLATFORM_NAME: "PlatformName",
|
|
9189
9432
|
PLATFORM_TYPE: "PlatformType",
|
|
9190
9433
|
PLATFORM_VERSION: "PlatformVersion",
|
|
9191
9434
|
REGION: "Region",
|
|
9192
9435
|
RESOURCE_TYPE: "ResourceType",
|
|
9436
|
+
SOURCE_TYPE: "SourceType",
|
|
9193
9437
|
};
|
|
9194
9438
|
const NodeTypeName = {
|
|
9195
9439
|
INSTANCE: "Instance",
|
|
@@ -9235,6 +9479,26 @@ const DocumentReviewAction = {
|
|
|
9235
9479
|
SendForReview: "SendForReview",
|
|
9236
9480
|
UpdateReview: "UpdateReview",
|
|
9237
9481
|
};
|
|
9482
|
+
const ValidationFindingCode = {
|
|
9483
|
+
AWS_ROLE_ASSUMPTION_FAILED: "AwsRoleAssumptionFailed",
|
|
9484
|
+
OUTBOUND_WEB_IDENTITY_FEDERATION_DISABLED: "OutboundWebIdentityFederationDisabled",
|
|
9485
|
+
PROVIDER_CREDENTIAL_CREATION_FAILED: "ProviderCredentialCreationFailed",
|
|
9486
|
+
SUBSCRIPTION_ACCESSIBLE: "SubscriptionAccessible",
|
|
9487
|
+
TARGET_INACCESSIBLE: "TargetInaccessible",
|
|
9488
|
+
TARGET_STATE_WARNING: "TargetStateWarning",
|
|
9489
|
+
TARGET_UNUSABLE: "TargetUnusable",
|
|
9490
|
+
TENANT_SUMMARY: "TenantSummary",
|
|
9491
|
+
WEB_IDENTITY_TOKEN_FAILED: "WebIdentityTokenFailed",
|
|
9492
|
+
};
|
|
9493
|
+
const ValidationFindingScopeType = {
|
|
9494
|
+
AZURE_SUBSCRIPTION: "azure:subscription",
|
|
9495
|
+
AZURE_TENANT: "azure:tenant",
|
|
9496
|
+
};
|
|
9497
|
+
const ValidationFindingType = {
|
|
9498
|
+
ERROR: "ERROR",
|
|
9499
|
+
INFO: "INFO",
|
|
9500
|
+
WARN: "WARN",
|
|
9501
|
+
};
|
|
9238
9502
|
|
|
9239
9503
|
exports.AccessDeniedException = AccessDeniedException;
|
|
9240
9504
|
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
@@ -9310,6 +9574,8 @@ exports.AutomationStepNotFoundException = AutomationStepNotFoundException;
|
|
|
9310
9574
|
exports.AutomationStepNotFoundException$ = AutomationStepNotFoundException$;
|
|
9311
9575
|
exports.AutomationSubtype = AutomationSubtype;
|
|
9312
9576
|
exports.AutomationType = AutomationType;
|
|
9577
|
+
exports.AzureConfiguration$ = AzureConfiguration$;
|
|
9578
|
+
exports.AzureSubscription$ = AzureSubscription$;
|
|
9313
9579
|
exports.BaselineOverride$ = BaselineOverride$;
|
|
9314
9580
|
exports.CalendarState = CalendarState;
|
|
9315
9581
|
exports.CancelCommand$ = CancelCommand$;
|
|
@@ -9320,6 +9586,10 @@ exports.CancelMaintenanceWindowExecution$ = CancelMaintenanceWindowExecution$;
|
|
|
9320
9586
|
exports.CancelMaintenanceWindowExecutionCommand = CancelMaintenanceWindowExecutionCommand;
|
|
9321
9587
|
exports.CancelMaintenanceWindowExecutionRequest$ = CancelMaintenanceWindowExecutionRequest$;
|
|
9322
9588
|
exports.CancelMaintenanceWindowExecutionResult$ = CancelMaintenanceWindowExecutionResult$;
|
|
9589
|
+
exports.CloudConnectorConfiguration$ = CloudConnectorConfiguration$;
|
|
9590
|
+
exports.CloudConnectorFilter$ = CloudConnectorFilter$;
|
|
9591
|
+
exports.CloudConnectorFilterKey = CloudConnectorFilterKey;
|
|
9592
|
+
exports.CloudConnectorSummary$ = CloudConnectorSummary$;
|
|
9323
9593
|
exports.CloudWatchOutputConfig$ = CloudWatchOutputConfig$;
|
|
9324
9594
|
exports.Command$ = Command$;
|
|
9325
9595
|
exports.CommandFilter$ = CommandFilter$;
|
|
@@ -9341,6 +9611,9 @@ exports.ComplianceTypeCountLimitExceededException = ComplianceTypeCountLimitExce
|
|
|
9341
9611
|
exports.ComplianceTypeCountLimitExceededException$ = ComplianceTypeCountLimitExceededException$;
|
|
9342
9612
|
exports.ComplianceUploadType = ComplianceUploadType;
|
|
9343
9613
|
exports.CompliantSummary$ = CompliantSummary$;
|
|
9614
|
+
exports.ConfigurationTargets$ = ConfigurationTargets$;
|
|
9615
|
+
exports.ConflictException = ConflictException;
|
|
9616
|
+
exports.ConflictException$ = ConflictException$;
|
|
9344
9617
|
exports.ConnectionStatus = ConnectionStatus;
|
|
9345
9618
|
exports.CreateActivation$ = CreateActivation$;
|
|
9346
9619
|
exports.CreateActivationCommand = CreateActivationCommand;
|
|
@@ -9355,6 +9628,10 @@ exports.CreateAssociationBatchResult$ = CreateAssociationBatchResult$;
|
|
|
9355
9628
|
exports.CreateAssociationCommand = CreateAssociationCommand;
|
|
9356
9629
|
exports.CreateAssociationRequest$ = CreateAssociationRequest$;
|
|
9357
9630
|
exports.CreateAssociationResult$ = CreateAssociationResult$;
|
|
9631
|
+
exports.CreateCloudConnector$ = CreateCloudConnector$;
|
|
9632
|
+
exports.CreateCloudConnectorCommand = CreateCloudConnectorCommand;
|
|
9633
|
+
exports.CreateCloudConnectorRequest$ = CreateCloudConnectorRequest$;
|
|
9634
|
+
exports.CreateCloudConnectorResult$ = CreateCloudConnectorResult$;
|
|
9358
9635
|
exports.CreateDocument$ = CreateDocument$;
|
|
9359
9636
|
exports.CreateDocumentCommand = CreateDocumentCommand;
|
|
9360
9637
|
exports.CreateDocumentRequest$ = CreateDocumentRequest$;
|
|
@@ -9390,6 +9667,10 @@ exports.DeleteAssociation$ = DeleteAssociation$;
|
|
|
9390
9667
|
exports.DeleteAssociationCommand = DeleteAssociationCommand;
|
|
9391
9668
|
exports.DeleteAssociationRequest$ = DeleteAssociationRequest$;
|
|
9392
9669
|
exports.DeleteAssociationResult$ = DeleteAssociationResult$;
|
|
9670
|
+
exports.DeleteCloudConnector$ = DeleteCloudConnector$;
|
|
9671
|
+
exports.DeleteCloudConnectorCommand = DeleteCloudConnectorCommand;
|
|
9672
|
+
exports.DeleteCloudConnectorRequest$ = DeleteCloudConnectorRequest$;
|
|
9673
|
+
exports.DeleteCloudConnectorResult$ = DeleteCloudConnectorResult$;
|
|
9393
9674
|
exports.DeleteDocument$ = DeleteDocument$;
|
|
9394
9675
|
exports.DeleteDocumentCommand = DeleteDocumentCommand;
|
|
9395
9676
|
exports.DeleteDocumentRequest$ = DeleteDocumentRequest$;
|
|
@@ -9645,6 +9926,10 @@ exports.GetCalendarState$ = GetCalendarState$;
|
|
|
9645
9926
|
exports.GetCalendarStateCommand = GetCalendarStateCommand;
|
|
9646
9927
|
exports.GetCalendarStateRequest$ = GetCalendarStateRequest$;
|
|
9647
9928
|
exports.GetCalendarStateResponse$ = GetCalendarStateResponse$;
|
|
9929
|
+
exports.GetCloudConnector$ = GetCloudConnector$;
|
|
9930
|
+
exports.GetCloudConnectorCommand = GetCloudConnectorCommand;
|
|
9931
|
+
exports.GetCloudConnectorRequest$ = GetCloudConnectorRequest$;
|
|
9932
|
+
exports.GetCloudConnectorResult$ = GetCloudConnectorResult$;
|
|
9648
9933
|
exports.GetCommandInvocation$ = GetCommandInvocation$;
|
|
9649
9934
|
exports.GetCommandInvocationCommand = GetCommandInvocationCommand;
|
|
9650
9935
|
exports.GetCommandInvocationRequest$ = GetCommandInvocationRequest$;
|
|
@@ -9905,6 +10190,10 @@ exports.ListAssociations$ = ListAssociations$;
|
|
|
9905
10190
|
exports.ListAssociationsCommand = ListAssociationsCommand;
|
|
9906
10191
|
exports.ListAssociationsRequest$ = ListAssociationsRequest$;
|
|
9907
10192
|
exports.ListAssociationsResult$ = ListAssociationsResult$;
|
|
10193
|
+
exports.ListCloudConnectors$ = ListCloudConnectors$;
|
|
10194
|
+
exports.ListCloudConnectorsCommand = ListCloudConnectorsCommand;
|
|
10195
|
+
exports.ListCloudConnectorsRequest$ = ListCloudConnectorsRequest$;
|
|
10196
|
+
exports.ListCloudConnectorsResult$ = ListCloudConnectorsResult$;
|
|
9908
10197
|
exports.ListCommandInvocations$ = ListCommandInvocations$;
|
|
9909
10198
|
exports.ListCommandInvocationsCommand = ListCommandInvocationsCommand;
|
|
9910
10199
|
exports.ListCommandInvocationsRequest$ = ListCommandInvocationsRequest$;
|
|
@@ -10319,6 +10608,10 @@ exports.UpdateAssociationStatus$ = UpdateAssociationStatus$;
|
|
|
10319
10608
|
exports.UpdateAssociationStatusCommand = UpdateAssociationStatusCommand;
|
|
10320
10609
|
exports.UpdateAssociationStatusRequest$ = UpdateAssociationStatusRequest$;
|
|
10321
10610
|
exports.UpdateAssociationStatusResult$ = UpdateAssociationStatusResult$;
|
|
10611
|
+
exports.UpdateCloudConnector$ = UpdateCloudConnector$;
|
|
10612
|
+
exports.UpdateCloudConnectorCommand = UpdateCloudConnectorCommand;
|
|
10613
|
+
exports.UpdateCloudConnectorRequest$ = UpdateCloudConnectorRequest$;
|
|
10614
|
+
exports.UpdateCloudConnectorResult$ = UpdateCloudConnectorResult$;
|
|
10322
10615
|
exports.UpdateDocument$ = UpdateDocument$;
|
|
10323
10616
|
exports.UpdateDocumentCommand = UpdateDocumentCommand;
|
|
10324
10617
|
exports.UpdateDocumentDefaultVersion$ = UpdateDocumentDefaultVersion$;
|
|
@@ -10367,8 +10660,17 @@ exports.UpdateServiceSetting$ = UpdateServiceSetting$;
|
|
|
10367
10660
|
exports.UpdateServiceSettingCommand = UpdateServiceSettingCommand;
|
|
10368
10661
|
exports.UpdateServiceSettingRequest$ = UpdateServiceSettingRequest$;
|
|
10369
10662
|
exports.UpdateServiceSettingResult$ = UpdateServiceSettingResult$;
|
|
10663
|
+
exports.ValidateCloudConnector$ = ValidateCloudConnector$;
|
|
10664
|
+
exports.ValidateCloudConnectorCommand = ValidateCloudConnectorCommand;
|
|
10665
|
+
exports.ValidateCloudConnectorRequest$ = ValidateCloudConnectorRequest$;
|
|
10666
|
+
exports.ValidateCloudConnectorResult$ = ValidateCloudConnectorResult$;
|
|
10370
10667
|
exports.ValidationException = ValidationException;
|
|
10371
10668
|
exports.ValidationException$ = ValidationException$;
|
|
10669
|
+
exports.ValidationFinding$ = ValidationFinding$;
|
|
10670
|
+
exports.ValidationFindingCode = ValidationFindingCode;
|
|
10671
|
+
exports.ValidationFindingScope$ = ValidationFindingScope$;
|
|
10672
|
+
exports.ValidationFindingScopeType = ValidationFindingScopeType;
|
|
10673
|
+
exports.ValidationFindingType = ValidationFindingType;
|
|
10372
10674
|
exports.errorTypeRegistries = errorTypeRegistries;
|
|
10373
10675
|
exports.paginateDescribeActivations = paginateDescribeActivations;
|
|
10374
10676
|
exports.paginateDescribeAssociationExecutionTargets = paginateDescribeAssociationExecutionTargets;
|
|
@@ -10407,6 +10709,7 @@ exports.paginateGetParametersByPath = paginateGetParametersByPath;
|
|
|
10407
10709
|
exports.paginateGetResourcePolicies = paginateGetResourcePolicies;
|
|
10408
10710
|
exports.paginateListAssociationVersions = paginateListAssociationVersions;
|
|
10409
10711
|
exports.paginateListAssociations = paginateListAssociations;
|
|
10712
|
+
exports.paginateListCloudConnectors = paginateListCloudConnectors;
|
|
10410
10713
|
exports.paginateListCommandInvocations = paginateListCommandInvocations;
|
|
10411
10714
|
exports.paginateListCommands = paginateListCommands;
|
|
10412
10715
|
exports.paginateListComplianceItems = paginateListComplianceItems;
|
|
@@ -10420,5 +10723,6 @@ exports.paginateListOpsItemRelatedItems = paginateListOpsItemRelatedItems;
|
|
|
10420
10723
|
exports.paginateListOpsMetadata = paginateListOpsMetadata;
|
|
10421
10724
|
exports.paginateListResourceComplianceSummaries = paginateListResourceComplianceSummaries;
|
|
10422
10725
|
exports.paginateListResourceDataSync = paginateListResourceDataSync;
|
|
10726
|
+
exports.paginateValidateCloudConnector = paginateValidateCloudConnector;
|
|
10423
10727
|
exports.waitForCommandExecuted = waitForCommandExecuted;
|
|
10424
10728
|
exports.waitUntilCommandExecuted = waitUntilCommandExecuted;
|