@cdklabs/cdk-ssm-documents 0.0.64 → 0.0.66
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +11 -11
- package/lib/construct/synth-utils.js +1 -1
- package/lib/document/automation-document.js +1 -1
- package/lib/document/command-document.js +1 -1
- package/lib/document/document-builder.js +2 -2
- package/lib/document/ssm-document.js +1 -1
- package/lib/domain/aws-service.js +1 -1
- package/lib/domain/choice.js +1 -1
- package/lib/domain/data-type.js +1 -1
- package/lib/domain/enum/install-action.js +2 -2
- package/lib/domain/enum/install-uninstall-repair.js +2 -2
- package/lib/domain/enum/installation-type.js +2 -2
- package/lib/domain/enum/package-name.js +2 -2
- package/lib/domain/input.js +1 -1
- package/lib/domain/operation.js +1 -1
- package/lib/domain/platform.js +1 -1
- package/lib/domain/precondition.js +1 -1
- package/lib/incident-response/incident-response.js +3 -3
- package/lib/interface/approve-hook.js +2 -2
- package/lib/interface/auth-method.js +3 -3
- package/lib/interface/aws-invoker.js +2 -2
- package/lib/interface/downloadable-content.js +8 -8
- package/lib/interface/environment.js +3 -3
- package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
- package/lib/interface/observer.js +1 -1
- package/lib/interface/on-failure.js +6 -6
- package/lib/interface/pause-hook.js +2 -2
- package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
- package/lib/interface/run-document-location.js +2 -2
- package/lib/interface/sleep-hook.js +2 -2
- package/lib/interface/step-ref.js +1 -1
- package/lib/interface/variables/boolean-variable.js +2 -2
- package/lib/interface/variables/map-list-variable.js +2 -2
- package/lib/interface/variables/number-variable.js +2 -2
- package/lib/interface/variables/secure-string-variable.js +4 -4
- package/lib/interface/variables/string-list-variable.js +2 -2
- package/lib/interface/variables/string-map-variable.js +2 -2
- package/lib/interface/variables/string-variable.js +4 -4
- package/lib/interface/variables/variable.js +2 -2
- package/lib/interface/webhook.js +1 -1
- package/lib/parent-steps/automation/approve-step.js +1 -1
- package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
- package/lib/parent-steps/automation/aws-api-step.js +1 -1
- package/lib/parent-steps/automation/branch-step.js +1 -1
- package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
- package/lib/parent-steps/automation/copy-image-step.js +1 -1
- package/lib/parent-steps/automation/create-image-step.js +1 -1
- package/lib/parent-steps/automation/create-stack-step.js +3 -3
- package/lib/parent-steps/automation/create-tags-step.js +3 -3
- package/lib/parent-steps/automation/delete-image-step.js +1 -1
- package/lib/parent-steps/automation/delete-stack-step.js +1 -1
- package/lib/parent-steps/automation/execute-automation-step.js +1 -1
- package/lib/parent-steps/automation/execute-script-step.js +5 -5
- package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
- package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
- package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
- package/lib/parent-steps/automation/pause-step.js +1 -1
- package/lib/parent-steps/automation/run-command-step.js +3 -3
- package/lib/parent-steps/automation/run-instance-step.js +1 -1
- package/lib/parent-steps/automation/sleep-step.js +1 -1
- package/lib/parent-steps/automation/update-variable.js +1 -1
- package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
- package/lib/parent-steps/automation-step.js +1 -1
- package/lib/parent-steps/command/applications-step.js +1 -1
- package/lib/parent-steps/command/configure-docker-step.js +1 -1
- package/lib/parent-steps/command/configure-package-step.js +1 -1
- package/lib/parent-steps/command/domain-join-step.js +1 -1
- package/lib/parent-steps/command/download-content-step.js +1 -1
- package/lib/parent-steps/command/ps-module-step.js +1 -1
- package/lib/parent-steps/command/run-docker-action-step.js +1 -1
- package/lib/parent-steps/command/run-document-step.js +1 -1
- package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
- package/lib/parent-steps/command/run-shell-script-step.js +1 -1
- package/lib/parent-steps/command/software-inventory-step.js +1 -1
- package/lib/parent-steps/command/update-agent-step.js +1 -1
- package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
- package/lib/parent-steps/command-step.js +1 -1
- package/lib/parent-steps/step.js +1 -1
- package/lib/patterns/automation/composite-step.js +2 -2
- package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
- package/lib/patterns/automation/string-step.js +1 -1
- package/lib/patterns/document/string-document.js +1 -1
- package/lib/patterns/document/timed-document.js +1 -1
- package/lib/samples/hello-world.js +1 -1
- package/lib/simulation/automation/approve-simulation.js +1 -1
- package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
- package/lib/simulation/automation/automation-simulation-base.js +1 -1
- package/lib/simulation/automation/aws-api-simulation.js +1 -1
- package/lib/simulation/automation/branch-simulation.js +1 -1
- package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
- package/lib/simulation/automation/copy-image-simulation.js +1 -1
- package/lib/simulation/automation/create-image-simulation.js +1 -1
- package/lib/simulation/automation/create-stack-simulation.js +1 -1
- package/lib/simulation/automation/create-tags-simulation.js +1 -1
- package/lib/simulation/automation/delete-image-simulation.js +1 -1
- package/lib/simulation/automation/delete-stack-simulation.js +1 -1
- package/lib/simulation/automation/execute-script-simulation.js +1 -1
- package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
- package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
- package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
- package/lib/simulation/automation/pause-simulation.js +1 -1
- package/lib/simulation/automation/run-command-simulation.js +1 -1
- package/lib/simulation/automation/run-instance-simulation.js +1 -1
- package/lib/simulation/automation/sleep-simulation.js +1 -1
- package/lib/simulation/automation/update-variable-simulation.js +1 -1
- package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
- package/lib/simulation/automation-step-simulation.js +1 -1
- package/lib/simulation/command/command-simulation-base.js +1 -1
- package/lib/simulation/command/ps-module-simulation.js +1 -1
- package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
- package/lib/simulation/command/run-shell-script-simulation.js +1 -1
- package/lib/simulation/command-step-simulation.js +1 -1
- package/lib/simulation/document/automation-simulation.js +1 -1
- package/lib/simulation/document/command-simulation.js +1 -1
- package/lib/simulation/simulation.js +1 -1
- package/node_modules/@aws-sdk/checksums/dist-cjs/flexible-checksums/getCrc32ChecksumAlgorithmFunction.browser.js +2 -6
- package/node_modules/@aws-sdk/checksums/dist-cjs/flexible-checksums/getCrc32ChecksumAlgorithmFunction.js +6 -11
- package/node_modules/@aws-sdk/checksums/dist-cjs/index.js +56 -56
- package/node_modules/@aws-sdk/checksums/package.json +7 -7
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +449 -469
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/CloudFormationServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/errors.js +59 -91
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/schemas/schemas_0.js +814 -533
- package/node_modules/@aws-sdk/client-cloudformation/package.json +9 -9
- package/node_modules/@aws-sdk/client-cloudwatch/README.md +21 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/index.js +255 -233
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/CloudWatchServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/errors.js +93 -68
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.browser.js +25 -29
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.js +33 -37
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/schemas/schemas_0.js +476 -259
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/CloudWatch.js +6 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/AssociateDatasetKmsKeyCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DisassociateDatasetKmsKeyCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetDatasetCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/index.js +3 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/models/errors.js +68 -26
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/schemas/schemas_0.js +73 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatch.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatchClient.d.ts +5 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/AssociateDatasetKmsKeyCommand.d.ts +161 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DisassociateDatasetKmsKeyCommand.d.ts +105 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetDatasetCommand.d.ts +91 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/errors.d.ts +74 -23
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/models_0.d.ts +90 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/schemas/schemas_0.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatch.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatchClient.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/AssociateDatasetKmsKeyCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DisassociateDatasetKmsKeyCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetDatasetCommand.d.ts +49 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/errors.d.ts +40 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/models_0.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/schemas/schemas_0.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cloudwatch/package.json +13 -13
- package/node_modules/@aws-sdk/client-ec2/README.md +14 -0
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +2903 -2879
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/models/EC2ServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +6980 -4554
- package/node_modules/@aws-sdk/client-ec2/dist-es/EC2.js +4 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachImageWatermarkCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachImageWatermarkCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/index.js +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/models/enums.js +5 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +108 -13
- package/node_modules/@aws-sdk/client-ec2/dist-types/EC2.d.ts +14 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/EC2Client.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachImageWatermarkCommand.d.ts +84 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelCapacityReservationCommand.d.ts +16 -10
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationFleetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDefaultSubnetCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDefaultVpcCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFlowLogsCommand.d.ts +8 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerPeerCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteTableCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSecurityGroupCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSnapshotCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFlowLogsCommand.d.ts +8 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImagesCommand.d.ts +9 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImportSnapshotTasksCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceAttributeCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +9 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotInstanceRequestsCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeStaleSecurityGroupsCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumesModificationsCommand.d.ts +0 -5
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachImageWatermarkCommand.d.ts +82 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerAttributesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDataCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamScopeCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLaunchTemplateCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLocalGatewayRouteCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedPrefixListCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVolumeCommand.d.ts +0 -5
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/enums.d.ts +13 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_0.d.ts +38 -23
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_1.d.ts +45 -128
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_2.d.ts +128 -48
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_3.d.ts +109 -161
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +169 -219
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +250 -353
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +351 -182
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +178 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +9 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2.d.ts +34 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2Client.d.ts +12 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachImageWatermarkCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDefaultSubnetCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDefaultVpcCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteServerPeerCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteTableCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSecurityGroupCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSnapshotCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImportSnapshotTasksCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceAttributeCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotInstanceRequestsCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotPriceHistoryCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeStaleSecurityGroupsCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachImageWatermarkCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerAttributesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMetricDataCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamScopeCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyLaunchTemplateCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyLocalGatewayRouteCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyManagedPrefixListCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/enums.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_0.d.ts +9 -7
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_1.d.ts +13 -26
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_2.d.ts +29 -12
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_3.d.ts +25 -36
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +40 -35
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +49 -67
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +66 -47
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +40 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
- package/node_modules/@aws-sdk/client-ec2/package.json +15 -15
- package/node_modules/@aws-sdk/client-iam/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-iam/dist-cjs/index.js +634 -654
- package/node_modules/@aws-sdk/client-iam/dist-cjs/models/IAMServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-iam/dist-cjs/models/errors.js +71 -109
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-iam/dist-cjs/schemas/schemas_0.js +1006 -665
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateServiceSpecificCredentialCommand.d.ts +18 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListServiceSpecificCredentialsCommand.d.ts +17 -2
- package/node_modules/@aws-sdk/client-iam/dist-types/models/models_0.d.ts +5 -2
- package/node_modules/@aws-sdk/client-iam/package.json +14 -14
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/index.js +368 -386
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/LambdaServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/errors.js +229 -145
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.browser.js +24 -28
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.js +32 -36
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/schemas/schemas_0.js +959 -581
- package/node_modules/@aws-sdk/client-lambda/dist-es/models/enums.js +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/models/errors.js +134 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/schemas/schemas_0.js +100 -31
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/AddPermissionCommand.d.ts +5 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateAliasCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateEventSourceMappingCommand.d.ts +28 -28
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateFunctionCommand.d.ts +14 -14
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteAliasCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteEventSourceMappingCommand.d.ts +16 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionUrlConfigCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteLayerVersionCommand.d.ts +6 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetEventSourceMappingCommand.d.ts +16 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCodeSigningConfigCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConfigurationCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionByArnCommand.d.ts +4 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionCommand.d.ts +4 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetRuntimeManagementConfigCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeAsyncCommand.d.ts +72 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeCommand.d.ts +21 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +6 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListEventSourceMappingsCommand.d.ts +16 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayerVersionsCommand.d.ts +6 -6
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayersCommand.d.ts +6 -6
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListVersionsByFunctionCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishLayerVersionCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishVersionCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutProvisionedConcurrencyConfigCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/RemovePermissionCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackFailureCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateEventSourceMappingCommand.d.ts +32 -32
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionCodeCommand.d.ts +12 -12
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +9 -9
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/enums.d.ts +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/errors.d.ts +173 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/models_0.d.ts +158 -158
- package/node_modules/@aws-sdk/client-lambda/dist-types/schemas/schemas_0.d.ts +9 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/enums.d.ts +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/errors.d.ts +88 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/models_0.d.ts +33 -33
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
- package/node_modules/@aws-sdk/client-lambda/package.json +13 -13
- package/node_modules/@aws-sdk/client-s3/README.md +35 -0
- package/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js +15 -19
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +646 -535
- package/node_modules/@aws-sdk/client-s3/dist-cjs/models/S3ServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-s3/dist-cjs/models/errors.js +106 -52
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.browser.js +29 -33
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +43 -47
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +25 -29
- package/node_modules/@aws-sdk/client-s3/dist-cjs/schemas/schemas_0.js +1256 -740
- package/node_modules/@aws-sdk/client-s3/dist-es/S3.js +12 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectAnnotationCommand.js +23 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAnnotationCommand.js +28 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectAnnotationsCommand.js +23 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAnnotationCommand.js +29 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.js +27 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/index.js +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/models/enums.js +12 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/models/errors.js +76 -4
- package/node_modules/@aws-sdk/client-s3/dist-es/pagination/ListObjectAnnotationsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/pagination/index.js +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/schemas/schemas_0.js +260 -100
- package/node_modules/@aws-sdk/client-s3/dist-types/S3.d.ts +42 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +7 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +27 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectAnnotationCommand.d.ts +119 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataConfigurationCommand.d.ts +11 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketNotificationConfigurationCommand.d.ts +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAnnotationCommand.d.ts +141 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectAnnotationsCommand.d.ts +138 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAnnotationCommand.d.ts +166 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RenameObjectCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RestoreObjectCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +110 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/models/enums.d.ts +29 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/models/errors.d.ts +76 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +925 -549
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_1.d.ts +380 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListObjectAnnotationsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/pagination/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3.d.ts +98 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +30 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectAnnotationCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAnnotationCommand.d.ts +61 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectAnnotationsCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAnnotationCommand.d.ts +61 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RenameObjectCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +49 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/enums.d.ts +18 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/errors.d.ts +41 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +138 -64
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_1.d.ts +75 -5
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListObjectAnnotationsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/client-s3/package.json +21 -21
- package/node_modules/@aws-sdk/client-sns/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-sns/dist-cjs/index.js +174 -194
- package/node_modules/@aws-sdk/client-sns/dist-cjs/models/SNSServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-sns/dist-cjs/models/errors.js +69 -106
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-sns/dist-cjs/schemas/schemas_0.js +331 -218
- package/node_modules/@aws-sdk/client-sns/package.json +10 -10
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/index.js +118 -138
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/models/SQSServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/models/errors.js +57 -88
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.browser.js +24 -28
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.js +31 -35
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/schemas/schemas_0.js +222 -150
- package/node_modules/@aws-sdk/client-sqs/package.json +16 -16
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +543 -563
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/SSMServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/errors.js +279 -423
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/schemas/schemas_0.js +1693 -1109
- package/node_modules/@aws-sdk/client-ssm/package.json +10 -10
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +19 -2274
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +2 -4
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.browser.js +297 -23
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +327 -52
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.native.js +297 -23
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +19 -21
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +107 -109
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/util/index.js +2 -4
- package/node_modules/@aws-sdk/core/dist-es/index.js +3 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/aws/partitions.js +276 -1
- package/node_modules/@aws-sdk/core/dist-types/index.d.ts +5 -5
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +5 -5
- package/node_modules/@aws-sdk/core/package.json +12 -12
- package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +4 -6
- package/node_modules/@aws-sdk/credential-provider-env/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +3 -7
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +12 -16
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +16 -21
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +14 -18
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +1 -5
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +2 -5
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +2 -7
- package/node_modules/@aws-sdk/credential-provider-http/package.json +9 -8
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +47 -41
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +8 -4
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +14 -10
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +14 -14
- package/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +31 -33
- package/node_modules/@aws-sdk/credential-provider-login/package.json +8 -8
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +16 -18
- package/node_modules/@aws-sdk/credential-provider-node/package.json +12 -12
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +11 -13
- package/node_modules/@aws-sdk/credential-provider-process/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +26 -25
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BGYXHf8s.js +3 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +4 -1
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +12 -10
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +10 -14
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +2 -6
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +3 -27
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +8 -8
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +18 -23
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +6 -6
- package/node_modules/@aws-sdk/middleware-sdk-ec2/dist-cjs/index.js +11 -13
- package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +7 -7
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +1 -518
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.browser.js +31 -33
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.js +37 -39
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3-control/index.js +14 -16
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +17 -14
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3-control.d.ts +7 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3-control.js +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3.d.ts +7 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3.js +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-cjs/index.js +9 -11
- package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +7 -7
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/index.js +0 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +82 -84
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +158 -119
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +80 -82
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +80 -82
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +99 -101
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +4 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/bdd.js +70 -35
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/enums.js +3 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/EndpointParameters.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/enums.d.ts +12 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/EndpointParameters.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/enums.d.ts +3 -0
- package/node_modules/@aws-sdk/nested-clients/package.json +11 -10
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js +4 -6
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +9 -8
- package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +26 -28
- package/node_modules/@aws-sdk/token-providers/package.json +8 -8
- package/node_modules/@aws-sdk/types/dist-cjs/index.js +7 -8
- package/node_modules/@aws-sdk/types/package.json +5 -5
- package/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +0 -2
- package/node_modules/@aws-sdk/util-locate-window/package.json +5 -5
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +2 -4
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-external/nodable_entities.js +4 -7
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.browser.js +2 -5
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +7 -10
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/CHANGELOG.md +8 -0
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/README.md +9 -0
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/package.json +7 -3
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/strnum.js +9 -1
- package/node_modules/@aws-sdk/xml-builder/package.json +5 -5
- package/node_modules/@nodable/entities/package.json +4 -1
- package/node_modules/@nodable/entities/src/EntityDecoder.js +104 -3
- package/node_modules/@nodable/entities/src/index.d.ts +77 -0
- package/node_modules/@nodable/entities/src/index.js +1 -1
- package/node_modules/@smithy/core/dist-cjs/index.js +13 -15
- package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +543 -398
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.browser.js +2 -4
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.js +7 -9
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.native.js +3 -5
- package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +23 -24
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.browser.js +10 -11
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.js +38 -39
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.native.js +10 -11
- package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.browser.js +14 -17
- package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +20 -23
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.browser.js +9 -11
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +11 -13
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +68 -61
- package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.browser.js +26 -27
- package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.js +28 -29
- package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +5 -7
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.browser.js +4 -6
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +23 -25
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.native.js +4 -6
- package/node_modules/@smithy/core/dist-cjs/submodules/transport/index.js +2 -4
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +1 -1
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/httpSigningMiddleware.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +326 -269
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +192 -103
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor.js +4 -2
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/get-value-from-text-node.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/endpointMiddleware.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +10 -2
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/StandardRetryStrategy.js +2 -2
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRateLimiter.js +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-encode.d.ts +8 -4
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/TypeRegistry.d.ts +1 -1
- package/node_modules/@smithy/core/package.json +18 -17
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +23 -24
- package/node_modules/@smithy/credential-provider-imds/package.json +7 -7
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +6 -8
- package/node_modules/@smithy/fetch-http-handler/package.json +10 -10
- package/node_modules/@smithy/middleware-compression/dist-cjs/compressStream.browser.js +3 -7
- package/node_modules/@smithy/middleware-compression/dist-cjs/compressStream.js +2 -6
- package/node_modules/@smithy/middleware-compression/dist-cjs/compressString.browser.js +4 -8
- package/node_modules/@smithy/middleware-compression/dist-cjs/compressString.js +7 -11
- package/node_modules/@smithy/middleware-compression/dist-cjs/index.js +18 -20
- package/node_modules/@smithy/middleware-compression/package.json +6 -6
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +11 -13
- package/node_modules/@smithy/node-http-handler/package.json +8 -8
- package/node_modules/@smithy/signature-v4/dist-cjs/index.js +27 -29
- package/node_modules/@smithy/signature-v4/package.json +7 -7
- package/node_modules/@smithy/types/dist-cjs/index.js +23 -18
- package/node_modules/@smithy/types/package.json +10 -10
- package/node_modules/anynum/LICENSE +21 -0
- package/node_modules/anynum/README.md +142 -0
- package/node_modules/anynum/anynum.js +135 -0
- package/node_modules/anynum/digitTable.js +116 -0
- package/node_modules/anynum/package.json +42 -0
- package/node_modules/path-expression-matcher/README.md +82 -7
- package/node_modules/path-expression-matcher/lib/pem.cjs +1 -1
- package/node_modules/path-expression-matcher/lib/pem.d.cts +83 -2
- package/node_modules/path-expression-matcher/lib/pem.min.js +1 -1
- package/node_modules/path-expression-matcher/lib/pem.min.js.map +1 -1
- package/node_modules/path-expression-matcher/package.json +3 -2
- package/node_modules/path-expression-matcher/src/ExpressionSet.js +18 -2
- package/node_modules/path-expression-matcher/src/Matcher.js +93 -3
- package/node_modules/path-expression-matcher/src/index.d.ts +67 -1
- package/package.json +10 -10
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BKDNrsal.js +0 -8
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.browser.js +0 -34
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.browser.js +0 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.browser.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.browser.d.ts +0 -39
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/LICENSE +0 -0
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DimensionFilter$ = exports.Dimension$ = exports.DescribeInsightRulesOutput$ = exports.DescribeInsightRulesInput$ = exports.DescribeAnomalyDetectorsOutput$ = exports.DescribeAnomalyDetectorsInput$ = exports.DescribeAlarmsOutput$ = exports.DescribeAlarmsInput$ = exports.DescribeAlarmsForMetricOutput$ = exports.DescribeAlarmsForMetricInput$ = exports.DescribeAlarmHistoryOutput$ = exports.DescribeAlarmHistoryInput$ = exports.DescribeAlarmContributorsOutput$ = exports.DescribeAlarmContributorsInput$ = exports.DeleteMetricStreamOutput$ = exports.DeleteMetricStreamInput$ = exports.DeleteInsightRulesOutput$ = exports.DeleteInsightRulesInput$ = exports.DeleteDashboardsOutput$ = exports.DeleteDashboardsInput$ = exports.DeleteAnomalyDetectorOutput$ = exports.DeleteAnomalyDetectorInput$ = exports.DeleteAlarmsInput$ = exports.DeleteAlarmMuteRuleInput$ = exports.Datapoint$ = exports.DashboardValidationMessage$ = exports.DashboardEntry$ = exports.CompositeAlarm$ = exports.AnomalyDetectorConfiguration$ = exports.AnomalyDetector$ = exports.AlarmPromQLCriteria$ = exports.AlarmMuteRuleSummary$ = exports.AlarmHistoryItem$ = exports.AlarmContributor$ = exports.errorTypeRegistries = exports.ResourceNotFoundException$ = exports.ResourceNotFound$ = exports.MissingRequiredParameterException$ = exports.LimitExceededFault$ = exports.LimitExceededException$ = exports.InvalidParameterValueException$ = exports.InvalidParameterCombinationException$ = exports.InvalidNextToken$ = exports.InvalidFormatFault$ = exports.InternalServiceFault$ = exports.DashboardNotFoundError$ = exports.DashboardInvalidInputError$ = exports.ConflictException$ = exports.ConcurrentModificationException$ = exports.CloudWatchServiceException$ = void 0;
|
|
4
|
-
exports.MetricDataResult$ = exports.MetricDataQuery$ = exports.MetricCharacteristics$ = exports.MetricAlarm$ = exports.Metric$ = exports.MessageData$ = exports.ManagedRuleState$ = exports.ManagedRuleDescription$ = exports.ManagedRule$ = exports.ListTagsForResourceOutput$ = exports.ListTagsForResourceInput$ = exports.ListMetricStreamsOutput$ = exports.ListMetricStreamsInput$ = exports.ListMetricsOutput$ = exports.ListMetricsInput$ = exports.ListManagedInsightRulesOutput$ = exports.ListManagedInsightRulesInput$ = exports.ListDashboardsOutput$ = exports.ListDashboardsInput$ = exports.ListAlarmMuteRulesOutput$ = exports.ListAlarmMuteRulesInput$ = exports.LabelOptions$ = exports.InsightRuleMetricDatapoint$ = exports.InsightRuleContributorDatapoint$ = exports.InsightRuleContributor$ = exports.InsightRule$ = exports.GetOTelEnrichmentOutput$ = exports.GetOTelEnrichmentInput$ = exports.GetMetricWidgetImageOutput$ = exports.GetMetricWidgetImageInput$ = exports.GetMetricStreamOutput$ = exports.GetMetricStreamInput$ = exports.GetMetricStatisticsOutput$ = exports.GetMetricStatisticsInput$ = exports.GetMetricDataOutput$ = exports.GetMetricDataInput$ = exports.GetInsightRuleReportOutput$ = exports.GetInsightRuleReportInput$ = exports.GetDashboardOutput$ = exports.GetDashboardInput$ = exports.GetAlarmMuteRuleOutput$ = exports.GetAlarmMuteRuleInput$ = exports.EntityMetricData$ = exports.Entity$ = exports.EnableInsightRulesOutput$ = exports.EnableInsightRulesInput$ = exports.EnableAlarmActionsInput$ = exports.DisableInsightRulesOutput$ = exports.DisableInsightRulesInput$ = exports.DisableAlarmActionsInput$ = void 0;
|
|
5
|
-
exports.DescribeAlarmContributors$ = exports.DeleteMetricStream$ = exports.DeleteInsightRules$ = exports.DeleteDashboards$ = exports.DeleteAnomalyDetector$ = exports.DeleteAlarms$ = exports.DeleteAlarmMuteRule$ = exports.EvaluationCriteria$ = exports.UntagResourceOutput$ = exports.UntagResourceInput$ = exports.TagResourceOutput$ = exports.TagResourceInput$ = exports.Tag$ = exports.StopOTelEnrichmentOutput$ = exports.StopOTelEnrichmentInput$ = exports.StopMetricStreamsOutput$ = exports.StopMetricStreamsInput$ = exports.StatisticSet$ = exports.StartOTelEnrichmentOutput$ = exports.StartOTelEnrichmentInput$ = exports.StartMetricStreamsOutput$ = exports.StartMetricStreamsInput$ = exports.SingleMetricAnomalyDetector$ = exports.SetAlarmStateInput$ = exports.Schedule$ = exports.Rule$ = exports.Range$ = exports.PutMetricStreamOutput$ = exports.PutMetricStreamInput$ = exports.PutMetricDataInput$ = exports.PutMetricAlarmInput$ = exports.PutManagedInsightRulesOutput$ = exports.PutManagedInsightRulesInput$ = exports.PutInsightRuleOutput$ = exports.PutInsightRuleInput$ = exports.PutDashboardOutput$ = exports.PutDashboardInput$ = exports.PutCompositeAlarmInput$ = exports.PutAnomalyDetectorOutput$ = exports.PutAnomalyDetectorInput$ = exports.PutAlarmMuteRuleInput$ = exports.PartialFailure$ = exports.MuteTargets$ = exports.MetricStreamStatisticsMetric$ = exports.MetricStreamStatisticsConfiguration$ = exports.MetricStreamFilter$ = exports.MetricStreamEntry$ = exports.MetricStat$ = exports.MetricMathAnomalyDetector$ = exports.MetricDatum$ = void 0;
|
|
6
|
-
exports.UntagResource$ = exports.TagResource$ = exports.StopOTelEnrichment$ = exports.StopMetricStreams$ = exports.StartOTelEnrichment$ = exports.StartMetricStreams$ = exports.SetAlarmState$ = exports.PutMetricStream$ = exports.PutMetricData$ = exports.PutMetricAlarm$ = exports.PutManagedInsightRules$ = exports.PutInsightRule$ = exports.PutDashboard$ = exports.PutCompositeAlarm$ = exports.PutAnomalyDetector$ = exports.PutAlarmMuteRule$ = exports.ListTagsForResource$ = exports.ListMetricStreams$ = exports.ListMetrics$ = exports.ListManagedInsightRules$ = exports.ListDashboards$ = exports.ListAlarmMuteRules$ = exports.GetOTelEnrichment$ = exports.GetMetricWidgetImage$ = exports.GetMetricStream$ = exports.GetMetricStatistics$ = exports.GetMetricData$ = exports.GetInsightRuleReport$ = exports.GetDashboard$ = exports.GetAlarmMuteRule$ = exports.EnableInsightRules$ = exports.EnableAlarmActions$ = exports.DisableInsightRules$ = exports.DisableAlarmActions$ = exports.DescribeInsightRules$ = exports.DescribeAnomalyDetectors$ = exports.DescribeAlarmsForMetric$ = exports.DescribeAlarms$ = exports.DescribeAlarmHistory$ = void 0;
|
|
7
1
|
const _A = "Average";
|
|
8
2
|
const _AA = "AlarmActions";
|
|
9
3
|
const _AAV = "ApproximateAggregateValue";
|
|
@@ -16,6 +10,9 @@ const _ACl = "AlarmContributors";
|
|
|
16
10
|
const _AD = "AnomalyDetector";
|
|
17
11
|
const _ADC = "AnomalyDetectorConfiguration";
|
|
18
12
|
const _ADETR = "AnomalyDetectorExcludedTimeRanges";
|
|
13
|
+
const _ADKK = "AssociateDatasetKmsKey";
|
|
14
|
+
const _ADKKI = "AssociateDatasetKmsKeyInput";
|
|
15
|
+
const _ADKKO = "AssociateDatasetKmsKeyOutput";
|
|
19
16
|
const _ADT = "AnomalyDetectorTypes";
|
|
20
17
|
const _ADl = "AlarmDescription";
|
|
21
18
|
const _ADn = "AnomalyDetectors";
|
|
@@ -91,11 +88,15 @@ const _DAes = "DescribeAlarms";
|
|
|
91
88
|
const _DB = "DashboardBody";
|
|
92
89
|
const _DD = "DeleteDashboards";
|
|
93
90
|
const _DDI = "DeleteDashboardsInput";
|
|
91
|
+
const _DDKK = "DisassociateDatasetKmsKey";
|
|
92
|
+
const _DDKKI = "DisassociateDatasetKmsKeyInput";
|
|
93
|
+
const _DDKKO = "DisassociateDatasetKmsKeyOutput";
|
|
94
94
|
const _DDO = "DeleteDashboardsOutput";
|
|
95
95
|
const _DE = "DashboardEntry";
|
|
96
96
|
const _DEa = "DashboardEntries";
|
|
97
97
|
const _DF = "DimensionFilter";
|
|
98
98
|
const _DFi = "DimensionFilters";
|
|
99
|
+
const _DI = "DatasetIdentifier";
|
|
99
100
|
const _DIIE = "DashboardInvalidInputError";
|
|
100
101
|
const _DIR = "DeleteInsightRules";
|
|
101
102
|
const _DIRI = "DeleteInsightRulesInput";
|
|
@@ -106,6 +107,7 @@ const _DIROe = "DescribeInsightRulesOutput";
|
|
|
106
107
|
const _DIROi = "DisableInsightRulesOutput";
|
|
107
108
|
const _DIRe = "DescribeInsightRules";
|
|
108
109
|
const _DIRi = "DisableInsightRules";
|
|
110
|
+
const _DIa = "DatasetId";
|
|
109
111
|
const _DMS = "DeleteMetricStream";
|
|
110
112
|
const _DMSI = "DeleteMetricStreamInput";
|
|
111
113
|
const _DMSO = "DeleteMetricStreamOutput";
|
|
@@ -156,7 +158,10 @@ const _GAMRI = "GetAlarmMuteRuleInput";
|
|
|
156
158
|
const _GAMRO = "GetAlarmMuteRuleOutput";
|
|
157
159
|
const _GD = "GetDashboard";
|
|
158
160
|
const _GDI = "GetDashboardInput";
|
|
161
|
+
const _GDIe = "GetDatasetInput";
|
|
159
162
|
const _GDO = "GetDashboardOutput";
|
|
163
|
+
const _GDOe = "GetDatasetOutput";
|
|
164
|
+
const _GDe = "GetDataset";
|
|
160
165
|
const _GIRR = "GetInsightRuleReport";
|
|
161
166
|
const _GIRRI = "GetInsightRuleReportInput";
|
|
162
167
|
const _GIRRO = "GetInsightRuleReportOutput";
|
|
@@ -199,6 +204,10 @@ const _IRn = "InsightRule";
|
|
|
199
204
|
const _ISF = "InternalServiceFault";
|
|
200
205
|
const _K = "Keys";
|
|
201
206
|
const _KA = "KeyAttributes";
|
|
207
|
+
const _KADE = "KmsAccessDeniedException";
|
|
208
|
+
const _KKA = "KmsKeyArn";
|
|
209
|
+
const _KKDE = "KmsKeyDisabledException";
|
|
210
|
+
const _KKNFE = "KmsKeyNotFoundException";
|
|
202
211
|
const _KL = "KeyLabels";
|
|
203
212
|
const _Ke = "Key";
|
|
204
213
|
const _L = "Label";
|
|
@@ -396,833 +405,1031 @@ const _m = "message";
|
|
|
396
405
|
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.cloudwatch";
|
|
397
406
|
const _se = "server";
|
|
398
407
|
const n0 = "com.amazonaws.cloudwatch";
|
|
399
|
-
const
|
|
400
|
-
const
|
|
401
|
-
const
|
|
402
|
-
const _s_registry =
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
408
|
+
const { TypeRegistry } = require("@smithy/core/schema");
|
|
409
|
+
const { CloudWatchServiceException } = require("../models/CloudWatchServiceException");
|
|
410
|
+
const { ConcurrentModificationException, ConflictException, DashboardInvalidInputError, DashboardNotFoundError, InternalServiceFault, InvalidFormatFault, InvalidNextToken, InvalidParameterCombinationException, InvalidParameterValueException, KmsAccessDeniedException, KmsKeyDisabledException, KmsKeyNotFoundException, LimitExceededException, LimitExceededFault, MissingRequiredParameterException, ResourceNotFound, ResourceNotFoundException } = require("../models/errors");
|
|
411
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
412
|
+
const CloudWatchServiceException$ = [-3, _s, "CloudWatchServiceException", 0, [], []];
|
|
413
|
+
exports.CloudWatchServiceException$ = CloudWatchServiceException$;
|
|
414
|
+
_s_registry.registerError(CloudWatchServiceException$, CloudWatchServiceException);
|
|
415
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
416
|
+
const ConcurrentModificationException$ = [-3, n0, _CME,
|
|
407
417
|
{ [_aQE]: [`ConcurrentModificationException`, 429], [_e]: _c, [_hE]: 429 },
|
|
408
418
|
[_M],
|
|
409
419
|
[0]
|
|
410
420
|
];
|
|
411
|
-
|
|
412
|
-
|
|
421
|
+
exports.ConcurrentModificationException$ = ConcurrentModificationException$;
|
|
422
|
+
n0_registry.registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
423
|
+
const ConflictException$ = [-3, n0, _CE,
|
|
413
424
|
{ [_e]: _c, [_hE]: 409 },
|
|
414
425
|
[_M],
|
|
415
426
|
[0]
|
|
416
427
|
];
|
|
417
|
-
|
|
418
|
-
|
|
428
|
+
exports.ConflictException$ = ConflictException$;
|
|
429
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
430
|
+
const DashboardInvalidInputError$ = [-3, n0, _DIIE,
|
|
419
431
|
{ [_aQE]: [`InvalidParameterInput`, 400], [_e]: _c, [_hE]: 400 },
|
|
420
432
|
[_m, _dVM],
|
|
421
433
|
[0, () => DashboardValidationMessages]
|
|
422
434
|
];
|
|
423
|
-
|
|
424
|
-
|
|
435
|
+
exports.DashboardInvalidInputError$ = DashboardInvalidInputError$;
|
|
436
|
+
n0_registry.registerError(DashboardInvalidInputError$, DashboardInvalidInputError);
|
|
437
|
+
const DashboardNotFoundError$ = [-3, n0, _DNFE,
|
|
425
438
|
{ [_aQE]: [`ResourceNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
426
439
|
[_m],
|
|
427
440
|
[0]
|
|
428
441
|
];
|
|
429
|
-
|
|
430
|
-
|
|
442
|
+
exports.DashboardNotFoundError$ = DashboardNotFoundError$;
|
|
443
|
+
n0_registry.registerError(DashboardNotFoundError$, DashboardNotFoundError);
|
|
444
|
+
const InternalServiceFault$ = [-3, n0, _ISF,
|
|
431
445
|
{ [_aQE]: [`InternalServiceError`, 500], [_e]: _se, [_hE]: 500 },
|
|
432
446
|
[_M],
|
|
433
447
|
[0]
|
|
434
448
|
];
|
|
435
|
-
|
|
436
|
-
|
|
449
|
+
exports.InternalServiceFault$ = InternalServiceFault$;
|
|
450
|
+
n0_registry.registerError(InternalServiceFault$, InternalServiceFault);
|
|
451
|
+
const InvalidFormatFault$ = [-3, n0, _IFF,
|
|
437
452
|
{ [_aQE]: [`InvalidFormat`, 400], [_e]: _c, [_hE]: 400 },
|
|
438
453
|
[_m],
|
|
439
454
|
[0]
|
|
440
455
|
];
|
|
441
|
-
|
|
442
|
-
|
|
456
|
+
exports.InvalidFormatFault$ = InvalidFormatFault$;
|
|
457
|
+
n0_registry.registerError(InvalidFormatFault$, InvalidFormatFault);
|
|
458
|
+
const InvalidNextToken$ = [-3, n0, _INT,
|
|
443
459
|
{ [_aQE]: [`InvalidNextToken`, 400], [_e]: _c, [_hE]: 400 },
|
|
444
460
|
[_m],
|
|
445
461
|
[0]
|
|
446
462
|
];
|
|
447
|
-
|
|
448
|
-
|
|
463
|
+
exports.InvalidNextToken$ = InvalidNextToken$;
|
|
464
|
+
n0_registry.registerError(InvalidNextToken$, InvalidNextToken);
|
|
465
|
+
const InvalidParameterCombinationException$ = [-3, n0, _IPCE,
|
|
449
466
|
{ [_aQE]: [`InvalidParameterCombination`, 400], [_e]: _c, [_hE]: 400 },
|
|
450
467
|
[_m],
|
|
451
468
|
[0]
|
|
452
469
|
];
|
|
453
|
-
|
|
454
|
-
|
|
470
|
+
exports.InvalidParameterCombinationException$ = InvalidParameterCombinationException$;
|
|
471
|
+
n0_registry.registerError(InvalidParameterCombinationException$, InvalidParameterCombinationException);
|
|
472
|
+
const InvalidParameterValueException$ = [-3, n0, _IPVE,
|
|
455
473
|
{ [_aQE]: [`InvalidParameterValue`, 400], [_e]: _c, [_hE]: 400 },
|
|
456
474
|
[_m],
|
|
457
475
|
[0]
|
|
458
476
|
];
|
|
459
|
-
|
|
460
|
-
|
|
477
|
+
exports.InvalidParameterValueException$ = InvalidParameterValueException$;
|
|
478
|
+
n0_registry.registerError(InvalidParameterValueException$, InvalidParameterValueException);
|
|
479
|
+
const KmsAccessDeniedException$ = [-3, n0, _KADE,
|
|
480
|
+
{ [_e]: _c },
|
|
481
|
+
[_M],
|
|
482
|
+
[0], 1
|
|
483
|
+
];
|
|
484
|
+
exports.KmsAccessDeniedException$ = KmsAccessDeniedException$;
|
|
485
|
+
n0_registry.registerError(KmsAccessDeniedException$, KmsAccessDeniedException);
|
|
486
|
+
const KmsKeyDisabledException$ = [-3, n0, _KKDE,
|
|
487
|
+
{ [_e]: _c },
|
|
488
|
+
[_M],
|
|
489
|
+
[0], 1
|
|
490
|
+
];
|
|
491
|
+
exports.KmsKeyDisabledException$ = KmsKeyDisabledException$;
|
|
492
|
+
n0_registry.registerError(KmsKeyDisabledException$, KmsKeyDisabledException);
|
|
493
|
+
const KmsKeyNotFoundException$ = [-3, n0, _KKNFE,
|
|
494
|
+
{ [_e]: _c },
|
|
495
|
+
[_M],
|
|
496
|
+
[0], 1
|
|
497
|
+
];
|
|
498
|
+
exports.KmsKeyNotFoundException$ = KmsKeyNotFoundException$;
|
|
499
|
+
n0_registry.registerError(KmsKeyNotFoundException$, KmsKeyNotFoundException);
|
|
500
|
+
const LimitExceededException$ = [-3, n0, _LEE,
|
|
461
501
|
{ [_aQE]: [`LimitExceededException`, 400], [_e]: _c, [_hE]: 400 },
|
|
462
502
|
[_M],
|
|
463
503
|
[0]
|
|
464
504
|
];
|
|
465
|
-
|
|
466
|
-
|
|
505
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
506
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
507
|
+
const LimitExceededFault$ = [-3, n0, _LEF,
|
|
467
508
|
{ [_aQE]: [`LimitExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
468
509
|
[_m],
|
|
469
510
|
[0]
|
|
470
511
|
];
|
|
471
|
-
|
|
472
|
-
|
|
512
|
+
exports.LimitExceededFault$ = LimitExceededFault$;
|
|
513
|
+
n0_registry.registerError(LimitExceededFault$, LimitExceededFault);
|
|
514
|
+
const MissingRequiredParameterException$ = [-3, n0, _MRPE,
|
|
473
515
|
{ [_aQE]: [`MissingParameter`, 400], [_e]: _c, [_hE]: 400 },
|
|
474
516
|
[_m],
|
|
475
517
|
[0]
|
|
476
518
|
];
|
|
477
|
-
|
|
478
|
-
|
|
519
|
+
exports.MissingRequiredParameterException$ = MissingRequiredParameterException$;
|
|
520
|
+
n0_registry.registerError(MissingRequiredParameterException$, MissingRequiredParameterException);
|
|
521
|
+
const ResourceNotFound$ = [-3, n0, _RNF,
|
|
479
522
|
{ [_aQE]: [`ResourceNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
480
523
|
[_m],
|
|
481
524
|
[0]
|
|
482
525
|
];
|
|
483
|
-
|
|
484
|
-
|
|
526
|
+
exports.ResourceNotFound$ = ResourceNotFound$;
|
|
527
|
+
n0_registry.registerError(ResourceNotFound$, ResourceNotFound);
|
|
528
|
+
const ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
485
529
|
{ [_aQE]: [`ResourceNotFoundException`, 404], [_e]: _c, [_hE]: 404 },
|
|
486
530
|
[_RT, _RI, _M],
|
|
487
531
|
[0, 0, 0]
|
|
488
532
|
];
|
|
489
|
-
|
|
533
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
534
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
490
535
|
exports.errorTypeRegistries = [
|
|
491
536
|
_s_registry,
|
|
492
537
|
n0_registry,
|
|
493
538
|
];
|
|
494
|
-
|
|
539
|
+
const AlarmContributor$ = [3, n0, _AC,
|
|
495
540
|
0,
|
|
496
541
|
[_CI, _CA, _SR, _STT],
|
|
497
542
|
[0, 128 | 0, 0, 4], 3
|
|
498
543
|
];
|
|
499
|
-
exports.
|
|
544
|
+
exports.AlarmContributor$ = AlarmContributor$;
|
|
545
|
+
const AlarmHistoryItem$ = [3, n0, _AHI,
|
|
500
546
|
0,
|
|
501
547
|
[_AN, _ACI, _AT, _T, _HIT, _HS, _HD, _ACA],
|
|
502
548
|
[0, 0, 0, 4, 0, 0, 0, 128 | 0]
|
|
503
549
|
];
|
|
504
|
-
exports.
|
|
550
|
+
exports.AlarmHistoryItem$ = AlarmHistoryItem$;
|
|
551
|
+
const AlarmMuteRuleSummary$ = [3, n0, _AMRS,
|
|
505
552
|
0,
|
|
506
553
|
[_AMRA, _ED, _S, _MT, _LUT],
|
|
507
554
|
[0, 4, 0, 0, 4]
|
|
508
555
|
];
|
|
509
|
-
exports.
|
|
556
|
+
exports.AlarmMuteRuleSummary$ = AlarmMuteRuleSummary$;
|
|
557
|
+
const AlarmPromQLCriteria$ = [3, n0, _APQLC,
|
|
510
558
|
0,
|
|
511
559
|
[_Q, _PP, _RP],
|
|
512
560
|
[0, 1, 1], 1
|
|
513
561
|
];
|
|
514
|
-
exports.
|
|
562
|
+
exports.AlarmPromQLCriteria$ = AlarmPromQLCriteria$;
|
|
563
|
+
const AnomalyDetector$ = [3, n0, _AD,
|
|
515
564
|
0,
|
|
516
565
|
[_N, _MN, _D, _St, _C, _SV, _MC, _SMAD, _MMAD],
|
|
517
|
-
[0, 0, () => Dimensions, 0, () =>
|
|
566
|
+
[0, 0, () => Dimensions, 0, () => AnomalyDetectorConfiguration$, 0, () => MetricCharacteristics$, () => SingleMetricAnomalyDetector$, () => MetricMathAnomalyDetector$]
|
|
518
567
|
];
|
|
519
|
-
exports.
|
|
568
|
+
exports.AnomalyDetector$ = AnomalyDetector$;
|
|
569
|
+
const AnomalyDetectorConfiguration$ = [3, n0, _ADC,
|
|
520
570
|
0,
|
|
521
571
|
[_ETR, _MTe],
|
|
522
572
|
[() => AnomalyDetectorExcludedTimeRanges, 0]
|
|
523
573
|
];
|
|
524
|
-
exports.
|
|
574
|
+
exports.AnomalyDetectorConfiguration$ = AnomalyDetectorConfiguration$;
|
|
575
|
+
const AssociateDatasetKmsKeyInput$ = [3, n0, _ADKKI,
|
|
576
|
+
0,
|
|
577
|
+
[_DI, _KKA],
|
|
578
|
+
[0, 0], 2
|
|
579
|
+
];
|
|
580
|
+
exports.AssociateDatasetKmsKeyInput$ = AssociateDatasetKmsKeyInput$;
|
|
581
|
+
const AssociateDatasetKmsKeyOutput$ = [3, n0, _ADKKO,
|
|
582
|
+
0,
|
|
583
|
+
[],
|
|
584
|
+
[]
|
|
585
|
+
];
|
|
586
|
+
exports.AssociateDatasetKmsKeyOutput$ = AssociateDatasetKmsKeyOutput$;
|
|
587
|
+
const CompositeAlarm$ = [3, n0, _CAo,
|
|
525
588
|
0,
|
|
526
589
|
[_AE, _AA, _AAl, _ACUT, _ADl, _AN, _AR, _IDA, _OKA, _SR, _SRD, _SUT, _SV, _STT, _ASB, _ASR, _AS, _ASWP, _ASEP],
|
|
527
590
|
[2, 64 | 0, 0, 4, 0, 0, 0, 64 | 0, 64 | 0, 0, 0, 4, 0, 4, 0, 0, 0, 1, 1]
|
|
528
591
|
];
|
|
529
|
-
exports.
|
|
592
|
+
exports.CompositeAlarm$ = CompositeAlarm$;
|
|
593
|
+
const DashboardEntry$ = [3, n0, _DE,
|
|
530
594
|
0,
|
|
531
595
|
[_DN, _DA, _LM, _Si],
|
|
532
596
|
[0, 0, 4, 1]
|
|
533
597
|
];
|
|
534
|
-
exports.
|
|
598
|
+
exports.DashboardEntry$ = DashboardEntry$;
|
|
599
|
+
const DashboardValidationMessage$ = [3, n0, _DVM,
|
|
535
600
|
0,
|
|
536
601
|
[_DP, _M],
|
|
537
602
|
[0, 0]
|
|
538
603
|
];
|
|
539
|
-
exports.
|
|
604
|
+
exports.DashboardValidationMessage$ = DashboardValidationMessage$;
|
|
605
|
+
const Datapoint$ = [3, n0, _Da,
|
|
540
606
|
0,
|
|
541
607
|
[_T, _SC, _A, _Su, _Mi, _Ma, _U, _ES],
|
|
542
608
|
[4, 1, 1, 1, 1, 1, 0, 128 | 1]
|
|
543
609
|
];
|
|
544
|
-
exports.
|
|
610
|
+
exports.Datapoint$ = Datapoint$;
|
|
611
|
+
const DeleteAlarmMuteRuleInput$ = [3, n0, _DAMRI,
|
|
545
612
|
0,
|
|
546
613
|
[_AMRN],
|
|
547
614
|
[0], 1
|
|
548
615
|
];
|
|
549
|
-
exports.
|
|
616
|
+
exports.DeleteAlarmMuteRuleInput$ = DeleteAlarmMuteRuleInput$;
|
|
617
|
+
const DeleteAlarmsInput$ = [3, n0, _DAI,
|
|
550
618
|
0,
|
|
551
619
|
[_ANl],
|
|
552
620
|
[64 | 0], 1
|
|
553
621
|
];
|
|
554
|
-
exports.
|
|
622
|
+
exports.DeleteAlarmsInput$ = DeleteAlarmsInput$;
|
|
623
|
+
const DeleteAnomalyDetectorInput$ = [3, n0, _DADI,
|
|
555
624
|
0,
|
|
556
625
|
[_N, _MN, _D, _St, _SMAD, _MMAD],
|
|
557
|
-
[0, 0, () => Dimensions, 0, () =>
|
|
626
|
+
[0, 0, () => Dimensions, 0, () => SingleMetricAnomalyDetector$, () => MetricMathAnomalyDetector$]
|
|
558
627
|
];
|
|
559
|
-
exports.
|
|
628
|
+
exports.DeleteAnomalyDetectorInput$ = DeleteAnomalyDetectorInput$;
|
|
629
|
+
const DeleteAnomalyDetectorOutput$ = [3, n0, _DADO,
|
|
560
630
|
0,
|
|
561
631
|
[],
|
|
562
632
|
[]
|
|
563
633
|
];
|
|
564
|
-
exports.
|
|
634
|
+
exports.DeleteAnomalyDetectorOutput$ = DeleteAnomalyDetectorOutput$;
|
|
635
|
+
const DeleteDashboardsInput$ = [3, n0, _DDI,
|
|
565
636
|
0,
|
|
566
637
|
[_DNa],
|
|
567
638
|
[64 | 0], 1
|
|
568
639
|
];
|
|
569
|
-
exports.
|
|
640
|
+
exports.DeleteDashboardsInput$ = DeleteDashboardsInput$;
|
|
641
|
+
const DeleteDashboardsOutput$ = [3, n0, _DDO,
|
|
570
642
|
0,
|
|
571
643
|
[],
|
|
572
644
|
[]
|
|
573
645
|
];
|
|
574
|
-
exports.
|
|
646
|
+
exports.DeleteDashboardsOutput$ = DeleteDashboardsOutput$;
|
|
647
|
+
const DeleteInsightRulesInput$ = [3, n0, _DIRI,
|
|
575
648
|
0,
|
|
576
649
|
[_RN],
|
|
577
650
|
[64 | 0], 1
|
|
578
651
|
];
|
|
579
|
-
exports.
|
|
652
|
+
exports.DeleteInsightRulesInput$ = DeleteInsightRulesInput$;
|
|
653
|
+
const DeleteInsightRulesOutput$ = [3, n0, _DIRO,
|
|
580
654
|
0,
|
|
581
655
|
[_F],
|
|
582
656
|
[() => BatchFailures]
|
|
583
657
|
];
|
|
584
|
-
exports.
|
|
658
|
+
exports.DeleteInsightRulesOutput$ = DeleteInsightRulesOutput$;
|
|
659
|
+
const DeleteMetricStreamInput$ = [3, n0, _DMSI,
|
|
585
660
|
0,
|
|
586
661
|
[_Na],
|
|
587
662
|
[0], 1
|
|
588
663
|
];
|
|
589
|
-
exports.
|
|
664
|
+
exports.DeleteMetricStreamInput$ = DeleteMetricStreamInput$;
|
|
665
|
+
const DeleteMetricStreamOutput$ = [3, n0, _DMSO,
|
|
590
666
|
0,
|
|
591
667
|
[],
|
|
592
668
|
[]
|
|
593
669
|
];
|
|
594
|
-
exports.
|
|
670
|
+
exports.DeleteMetricStreamOutput$ = DeleteMetricStreamOutput$;
|
|
671
|
+
const DescribeAlarmContributorsInput$ = [3, n0, _DACI,
|
|
595
672
|
0,
|
|
596
673
|
[_AN, _NT],
|
|
597
674
|
[0, 0], 1
|
|
598
675
|
];
|
|
599
|
-
exports.
|
|
676
|
+
exports.DescribeAlarmContributorsInput$ = DescribeAlarmContributorsInput$;
|
|
677
|
+
const DescribeAlarmContributorsOutput$ = [3, n0, _DACO,
|
|
600
678
|
0,
|
|
601
679
|
[_ACl, _NT],
|
|
602
680
|
[() => AlarmContributors, 0], 1
|
|
603
681
|
];
|
|
604
|
-
exports.
|
|
682
|
+
exports.DescribeAlarmContributorsOutput$ = DescribeAlarmContributorsOutput$;
|
|
683
|
+
const DescribeAlarmHistoryInput$ = [3, n0, _DAHI,
|
|
605
684
|
0,
|
|
606
685
|
[_AN, _ACI, _ATl, _HIT, _SD, _EDn, _MR, _NT, _SB],
|
|
607
686
|
[0, 0, 64 | 0, 0, 4, 4, 1, 0, 0]
|
|
608
687
|
];
|
|
609
|
-
exports.
|
|
688
|
+
exports.DescribeAlarmHistoryInput$ = DescribeAlarmHistoryInput$;
|
|
689
|
+
const DescribeAlarmHistoryOutput$ = [3, n0, _DAHO,
|
|
610
690
|
0,
|
|
611
691
|
[_AHIl, _NT],
|
|
612
692
|
[() => AlarmHistoryItems, 0]
|
|
613
693
|
];
|
|
614
|
-
exports.
|
|
694
|
+
exports.DescribeAlarmHistoryOutput$ = DescribeAlarmHistoryOutput$;
|
|
695
|
+
const DescribeAlarmsForMetricInput$ = [3, n0, _DAFMI,
|
|
615
696
|
0,
|
|
616
697
|
[_MN, _N, _Sta, _ESx, _D, _P, _U],
|
|
617
698
|
[0, 0, 0, 0, () => Dimensions, 1, 0], 2
|
|
618
699
|
];
|
|
619
|
-
exports.
|
|
700
|
+
exports.DescribeAlarmsForMetricInput$ = DescribeAlarmsForMetricInput$;
|
|
701
|
+
const DescribeAlarmsForMetricOutput$ = [3, n0, _DAFMO,
|
|
620
702
|
0,
|
|
621
703
|
[_MA],
|
|
622
704
|
[() => MetricAlarms]
|
|
623
705
|
];
|
|
624
|
-
exports.
|
|
706
|
+
exports.DescribeAlarmsForMetricOutput$ = DescribeAlarmsForMetricOutput$;
|
|
707
|
+
const DescribeAlarmsInput$ = [3, n0, _DAIe,
|
|
625
708
|
0,
|
|
626
709
|
[_ANl, _ANP, _ATl, _COAN, _POAN, _SV, _AP, _MR, _NT],
|
|
627
710
|
[64 | 0, 0, 64 | 0, 0, 0, 0, 0, 1, 0]
|
|
628
711
|
];
|
|
629
|
-
exports.
|
|
712
|
+
exports.DescribeAlarmsInput$ = DescribeAlarmsInput$;
|
|
713
|
+
const DescribeAlarmsOutput$ = [3, n0, _DAO,
|
|
630
714
|
0,
|
|
631
715
|
[_CAom, _MA, _NT],
|
|
632
716
|
[() => CompositeAlarms, () => MetricAlarms, 0]
|
|
633
717
|
];
|
|
634
|
-
exports.
|
|
718
|
+
exports.DescribeAlarmsOutput$ = DescribeAlarmsOutput$;
|
|
719
|
+
const DescribeAnomalyDetectorsInput$ = [3, n0, _DADIe,
|
|
635
720
|
0,
|
|
636
721
|
[_NT, _MRa, _N, _MN, _D, _ADT],
|
|
637
722
|
[0, 1, 0, 0, () => Dimensions, 64 | 0]
|
|
638
723
|
];
|
|
639
|
-
exports.
|
|
724
|
+
exports.DescribeAnomalyDetectorsInput$ = DescribeAnomalyDetectorsInput$;
|
|
725
|
+
const DescribeAnomalyDetectorsOutput$ = [3, n0, _DADOe,
|
|
640
726
|
0,
|
|
641
727
|
[_ADn, _NT],
|
|
642
728
|
[() => AnomalyDetectors, 0]
|
|
643
729
|
];
|
|
644
|
-
exports.
|
|
730
|
+
exports.DescribeAnomalyDetectorsOutput$ = DescribeAnomalyDetectorsOutput$;
|
|
731
|
+
const DescribeInsightRulesInput$ = [3, n0, _DIRIe,
|
|
645
732
|
0,
|
|
646
733
|
[_NT, _MRa],
|
|
647
734
|
[0, 1]
|
|
648
735
|
];
|
|
649
|
-
exports.
|
|
736
|
+
exports.DescribeInsightRulesInput$ = DescribeInsightRulesInput$;
|
|
737
|
+
const DescribeInsightRulesOutput$ = [3, n0, _DIROe,
|
|
650
738
|
0,
|
|
651
739
|
[_NT, _IR],
|
|
652
740
|
[0, () => InsightRules]
|
|
653
741
|
];
|
|
654
|
-
exports.
|
|
742
|
+
exports.DescribeInsightRulesOutput$ = DescribeInsightRulesOutput$;
|
|
743
|
+
const Dimension$ = [3, n0, _Di,
|
|
655
744
|
0,
|
|
656
745
|
[_Na, _V],
|
|
657
746
|
[0, 0], 2
|
|
658
747
|
];
|
|
659
|
-
exports.
|
|
748
|
+
exports.Dimension$ = Dimension$;
|
|
749
|
+
const DimensionFilter$ = [3, n0, _DF,
|
|
660
750
|
0,
|
|
661
751
|
[_Na, _V],
|
|
662
752
|
[0, 0], 1
|
|
663
753
|
];
|
|
664
|
-
exports.
|
|
754
|
+
exports.DimensionFilter$ = DimensionFilter$;
|
|
755
|
+
const DisableAlarmActionsInput$ = [3, n0, _DAAI,
|
|
665
756
|
0,
|
|
666
757
|
[_ANl],
|
|
667
758
|
[64 | 0], 1
|
|
668
759
|
];
|
|
669
|
-
exports.
|
|
760
|
+
exports.DisableAlarmActionsInput$ = DisableAlarmActionsInput$;
|
|
761
|
+
const DisableInsightRulesInput$ = [3, n0, _DIRIi,
|
|
670
762
|
0,
|
|
671
763
|
[_RN],
|
|
672
764
|
[64 | 0], 1
|
|
673
765
|
];
|
|
674
|
-
exports.
|
|
766
|
+
exports.DisableInsightRulesInput$ = DisableInsightRulesInput$;
|
|
767
|
+
const DisableInsightRulesOutput$ = [3, n0, _DIROi,
|
|
675
768
|
0,
|
|
676
769
|
[_F],
|
|
677
770
|
[() => BatchFailures]
|
|
678
771
|
];
|
|
679
|
-
exports.
|
|
772
|
+
exports.DisableInsightRulesOutput$ = DisableInsightRulesOutput$;
|
|
773
|
+
const DisassociateDatasetKmsKeyInput$ = [3, n0, _DDKKI,
|
|
774
|
+
0,
|
|
775
|
+
[_DI],
|
|
776
|
+
[0], 1
|
|
777
|
+
];
|
|
778
|
+
exports.DisassociateDatasetKmsKeyInput$ = DisassociateDatasetKmsKeyInput$;
|
|
779
|
+
const DisassociateDatasetKmsKeyOutput$ = [3, n0, _DDKKO,
|
|
780
|
+
0,
|
|
781
|
+
[],
|
|
782
|
+
[]
|
|
783
|
+
];
|
|
784
|
+
exports.DisassociateDatasetKmsKeyOutput$ = DisassociateDatasetKmsKeyOutput$;
|
|
785
|
+
const EnableAlarmActionsInput$ = [3, n0, _EAAI,
|
|
680
786
|
0,
|
|
681
787
|
[_ANl],
|
|
682
788
|
[64 | 0], 1
|
|
683
789
|
];
|
|
684
|
-
exports.
|
|
790
|
+
exports.EnableAlarmActionsInput$ = EnableAlarmActionsInput$;
|
|
791
|
+
const EnableInsightRulesInput$ = [3, n0, _EIRI,
|
|
685
792
|
0,
|
|
686
793
|
[_RN],
|
|
687
794
|
[64 | 0], 1
|
|
688
795
|
];
|
|
689
|
-
exports.
|
|
796
|
+
exports.EnableInsightRulesInput$ = EnableInsightRulesInput$;
|
|
797
|
+
const EnableInsightRulesOutput$ = [3, n0, _EIRO,
|
|
690
798
|
0,
|
|
691
799
|
[_F],
|
|
692
800
|
[() => BatchFailures]
|
|
693
801
|
];
|
|
694
|
-
exports.
|
|
802
|
+
exports.EnableInsightRulesOutput$ = EnableInsightRulesOutput$;
|
|
803
|
+
const Entity$ = [3, n0, _E,
|
|
695
804
|
0,
|
|
696
805
|
[_KA, _At],
|
|
697
806
|
[128 | 0, 128 | 0]
|
|
698
807
|
];
|
|
699
|
-
exports.
|
|
808
|
+
exports.Entity$ = Entity$;
|
|
809
|
+
const EntityMetricData$ = [3, n0, _EMD,
|
|
700
810
|
0,
|
|
701
811
|
[_E, _MD],
|
|
702
|
-
[() =>
|
|
812
|
+
[() => Entity$, () => MetricData]
|
|
703
813
|
];
|
|
704
|
-
exports.
|
|
814
|
+
exports.EntityMetricData$ = EntityMetricData$;
|
|
815
|
+
const GetAlarmMuteRuleInput$ = [3, n0, _GAMRI,
|
|
705
816
|
0,
|
|
706
817
|
[_AMRN],
|
|
707
818
|
[0], 1
|
|
708
819
|
];
|
|
709
|
-
exports.
|
|
820
|
+
exports.GetAlarmMuteRuleInput$ = GetAlarmMuteRuleInput$;
|
|
821
|
+
const GetAlarmMuteRuleOutput$ = [3, n0, _GAMRO,
|
|
710
822
|
0,
|
|
711
823
|
[_Na, _AMRA, _De, _R, _MTu, _SD, _ED, _S, _LUT, _MT],
|
|
712
|
-
[0, 0, 0, () =>
|
|
824
|
+
[0, 0, 0, () => Rule$, () => MuteTargets$, 4, 4, 0, 4, 0]
|
|
713
825
|
];
|
|
714
|
-
exports.
|
|
826
|
+
exports.GetAlarmMuteRuleOutput$ = GetAlarmMuteRuleOutput$;
|
|
827
|
+
const GetDashboardInput$ = [3, n0, _GDI,
|
|
715
828
|
0,
|
|
716
829
|
[_DN],
|
|
717
830
|
[0], 1
|
|
718
831
|
];
|
|
719
|
-
exports.
|
|
832
|
+
exports.GetDashboardInput$ = GetDashboardInput$;
|
|
833
|
+
const GetDashboardOutput$ = [3, n0, _GDO,
|
|
720
834
|
0,
|
|
721
835
|
[_DA, _DB, _DN],
|
|
722
836
|
[0, 0, 0]
|
|
723
837
|
];
|
|
724
|
-
exports.
|
|
838
|
+
exports.GetDashboardOutput$ = GetDashboardOutput$;
|
|
839
|
+
const GetDatasetInput$ = [3, n0, _GDIe,
|
|
840
|
+
0,
|
|
841
|
+
[_DI],
|
|
842
|
+
[0], 1
|
|
843
|
+
];
|
|
844
|
+
exports.GetDatasetInput$ = GetDatasetInput$;
|
|
845
|
+
const GetDatasetOutput$ = [3, n0, _GDOe,
|
|
846
|
+
0,
|
|
847
|
+
[_DIa, _Ar, _KKA],
|
|
848
|
+
[0, 0, 0], 2
|
|
849
|
+
];
|
|
850
|
+
exports.GetDatasetOutput$ = GetDatasetOutput$;
|
|
851
|
+
const GetInsightRuleReportInput$ = [3, n0, _GIRRI,
|
|
725
852
|
0,
|
|
726
853
|
[_RNu, _ST, _ET, _P, _MCC, _Me, _OB],
|
|
727
854
|
[0, 4, 4, 1, 1, 64 | 0, 0], 4
|
|
728
855
|
];
|
|
729
|
-
exports.
|
|
856
|
+
exports.GetInsightRuleReportInput$ = GetInsightRuleReportInput$;
|
|
857
|
+
const GetInsightRuleReportOutput$ = [3, n0, _GIRRO,
|
|
730
858
|
0,
|
|
731
859
|
[_KL, _ASg, _AV, _AUC, _Co, _MDe],
|
|
732
860
|
[64 | 0, 0, 1, 1, () => InsightRuleContributors, () => InsightRuleMetricDatapoints]
|
|
733
861
|
];
|
|
734
|
-
exports.
|
|
862
|
+
exports.GetInsightRuleReportOutput$ = GetInsightRuleReportOutput$;
|
|
863
|
+
const GetMetricDataInput$ = [3, n0, _GMDI,
|
|
735
864
|
0,
|
|
736
865
|
[_MDQ, _ST, _ET, _NT, _SB, _MDa, _LO],
|
|
737
|
-
[() => MetricDataQueries, 4, 4, 0, 0, 1, () =>
|
|
866
|
+
[() => MetricDataQueries, 4, 4, 0, 0, 1, () => LabelOptions$], 3
|
|
738
867
|
];
|
|
739
|
-
exports.
|
|
868
|
+
exports.GetMetricDataInput$ = GetMetricDataInput$;
|
|
869
|
+
const GetMetricDataOutput$ = [3, n0, _GMDO,
|
|
740
870
|
0,
|
|
741
871
|
[_MDR, _NT, _Mes],
|
|
742
872
|
[() => MetricDataResults, 0, () => MetricDataResultMessages]
|
|
743
873
|
];
|
|
744
|
-
exports.
|
|
874
|
+
exports.GetMetricDataOutput$ = GetMetricDataOutput$;
|
|
875
|
+
const GetMetricStatisticsInput$ = [3, n0, _GMSI,
|
|
745
876
|
0,
|
|
746
877
|
[_N, _MN, _ST, _ET, _P, _D, _Stat, _ES, _U],
|
|
747
878
|
[0, 0, 4, 4, 1, () => Dimensions, 64 | 0, 64 | 0, 0], 5
|
|
748
879
|
];
|
|
749
|
-
exports.
|
|
880
|
+
exports.GetMetricStatisticsInput$ = GetMetricStatisticsInput$;
|
|
881
|
+
const GetMetricStatisticsOutput$ = [3, n0, _GMSO,
|
|
750
882
|
0,
|
|
751
883
|
[_L, _Dat],
|
|
752
884
|
[0, () => Datapoints]
|
|
753
885
|
];
|
|
754
|
-
exports.
|
|
886
|
+
exports.GetMetricStatisticsOutput$ = GetMetricStatisticsOutput$;
|
|
887
|
+
const GetMetricStreamInput$ = [3, n0, _GMSIe,
|
|
755
888
|
0,
|
|
756
889
|
[_Na],
|
|
757
890
|
[0], 1
|
|
758
891
|
];
|
|
759
|
-
exports.
|
|
892
|
+
exports.GetMetricStreamInput$ = GetMetricStreamInput$;
|
|
893
|
+
const GetMetricStreamOutput$ = [3, n0, _GMSOe,
|
|
760
894
|
0,
|
|
761
895
|
[_Ar, _Na, _IF, _EF, _FA, _RA, _State, _CD, _LUD, _OF, _SCt, _ILAM],
|
|
762
896
|
[0, 0, () => MetricStreamFilters, () => MetricStreamFilters, 0, 0, 0, 4, 4, 0, () => MetricStreamStatisticsConfigurations, 2]
|
|
763
897
|
];
|
|
764
|
-
exports.
|
|
898
|
+
exports.GetMetricStreamOutput$ = GetMetricStreamOutput$;
|
|
899
|
+
const GetMetricWidgetImageInput$ = [3, n0, _GMWII,
|
|
765
900
|
0,
|
|
766
901
|
[_MW, _OF],
|
|
767
902
|
[0, 0], 1
|
|
768
903
|
];
|
|
769
|
-
exports.
|
|
904
|
+
exports.GetMetricWidgetImageInput$ = GetMetricWidgetImageInput$;
|
|
905
|
+
const GetMetricWidgetImageOutput$ = [3, n0, _GMWIO,
|
|
770
906
|
0,
|
|
771
907
|
[_MWI],
|
|
772
908
|
[21]
|
|
773
909
|
];
|
|
774
|
-
exports.
|
|
910
|
+
exports.GetMetricWidgetImageOutput$ = GetMetricWidgetImageOutput$;
|
|
911
|
+
const GetOTelEnrichmentInput$ = [3, n0, _GOTEI,
|
|
775
912
|
0,
|
|
776
913
|
[],
|
|
777
914
|
[]
|
|
778
915
|
];
|
|
779
|
-
exports.
|
|
916
|
+
exports.GetOTelEnrichmentInput$ = GetOTelEnrichmentInput$;
|
|
917
|
+
const GetOTelEnrichmentOutput$ = [3, n0, _GOTEO,
|
|
780
918
|
0,
|
|
781
919
|
[_S],
|
|
782
920
|
[0], 1
|
|
783
921
|
];
|
|
784
|
-
exports.
|
|
922
|
+
exports.GetOTelEnrichmentOutput$ = GetOTelEnrichmentOutput$;
|
|
923
|
+
const InsightRule$ = [3, n0, _IRn,
|
|
785
924
|
0,
|
|
786
925
|
[_Na, _State, _Sc, _Def, _MRan, _AOTL],
|
|
787
926
|
[0, 0, 0, 0, 2, 2], 4
|
|
788
927
|
];
|
|
789
|
-
exports.
|
|
928
|
+
exports.InsightRule$ = InsightRule$;
|
|
929
|
+
const InsightRuleContributor$ = [3, n0, _IRC,
|
|
790
930
|
0,
|
|
791
931
|
[_K, _AAV, _Dat],
|
|
792
932
|
[64 | 0, 1, () => InsightRuleContributorDatapoints], 3
|
|
793
933
|
];
|
|
794
|
-
exports.
|
|
934
|
+
exports.InsightRuleContributor$ = InsightRuleContributor$;
|
|
935
|
+
const InsightRuleContributorDatapoint$ = [3, n0, _IRCD,
|
|
795
936
|
0,
|
|
796
937
|
[_T, _AVp],
|
|
797
938
|
[4, 1], 2
|
|
798
939
|
];
|
|
799
|
-
exports.
|
|
940
|
+
exports.InsightRuleContributorDatapoint$ = InsightRuleContributorDatapoint$;
|
|
941
|
+
const InsightRuleMetricDatapoint$ = [3, n0, _IRMD,
|
|
800
942
|
0,
|
|
801
943
|
[_T, _UC, _MCV, _SC, _A, _Su, _Mi, _Ma],
|
|
802
944
|
[4, 1, 1, 1, 1, 1, 1, 1], 1
|
|
803
945
|
];
|
|
804
|
-
exports.
|
|
946
|
+
exports.InsightRuleMetricDatapoint$ = InsightRuleMetricDatapoint$;
|
|
947
|
+
const LabelOptions$ = [3, n0, _LO,
|
|
805
948
|
0,
|
|
806
949
|
[_Ti],
|
|
807
950
|
[0]
|
|
808
951
|
];
|
|
809
|
-
exports.
|
|
952
|
+
exports.LabelOptions$ = LabelOptions$;
|
|
953
|
+
const ListAlarmMuteRulesInput$ = [3, n0, _LAMRI,
|
|
810
954
|
0,
|
|
811
955
|
[_AN, _Statu, _MR, _NT],
|
|
812
956
|
[0, 64 | 0, 1, 0]
|
|
813
957
|
];
|
|
814
|
-
exports.
|
|
958
|
+
exports.ListAlarmMuteRulesInput$ = ListAlarmMuteRulesInput$;
|
|
959
|
+
const ListAlarmMuteRulesOutput$ = [3, n0, _LAMRO,
|
|
815
960
|
0,
|
|
816
961
|
[_AMRSl, _NT],
|
|
817
962
|
[() => AlarmMuteRuleSummaries, 0]
|
|
818
963
|
];
|
|
819
|
-
exports.
|
|
964
|
+
exports.ListAlarmMuteRulesOutput$ = ListAlarmMuteRulesOutput$;
|
|
965
|
+
const ListDashboardsInput$ = [3, n0, _LDI,
|
|
820
966
|
0,
|
|
821
967
|
[_DNP, _NT],
|
|
822
968
|
[0, 0]
|
|
823
969
|
];
|
|
824
|
-
exports.
|
|
970
|
+
exports.ListDashboardsInput$ = ListDashboardsInput$;
|
|
971
|
+
const ListDashboardsOutput$ = [3, n0, _LDO,
|
|
825
972
|
0,
|
|
826
973
|
[_DEa, _NT],
|
|
827
974
|
[() => DashboardEntries, 0]
|
|
828
975
|
];
|
|
829
|
-
exports.
|
|
976
|
+
exports.ListDashboardsOutput$ = ListDashboardsOutput$;
|
|
977
|
+
const ListManagedInsightRulesInput$ = [3, n0, _LMIRI,
|
|
830
978
|
0,
|
|
831
979
|
[_RARN, _NT, _MRa],
|
|
832
980
|
[0, 0, 1], 1
|
|
833
981
|
];
|
|
834
|
-
exports.
|
|
982
|
+
exports.ListManagedInsightRulesInput$ = ListManagedInsightRulesInput$;
|
|
983
|
+
const ListManagedInsightRulesOutput$ = [3, n0, _LMIRO,
|
|
835
984
|
0,
|
|
836
985
|
[_MRana, _NT],
|
|
837
986
|
[() => ManagedRuleDescriptions, 0]
|
|
838
987
|
];
|
|
839
|
-
exports.
|
|
988
|
+
exports.ListManagedInsightRulesOutput$ = ListManagedInsightRulesOutput$;
|
|
989
|
+
const ListMetricsInput$ = [3, n0, _LMI,
|
|
840
990
|
0,
|
|
841
991
|
[_N, _MN, _D, _NT, _RAe, _ILA, _OA],
|
|
842
992
|
[0, 0, () => DimensionFilters, 0, 0, 2, 0]
|
|
843
993
|
];
|
|
844
|
-
exports.
|
|
994
|
+
exports.ListMetricsInput$ = ListMetricsInput$;
|
|
995
|
+
const ListMetricsOutput$ = [3, n0, _LMO,
|
|
845
996
|
0,
|
|
846
997
|
[_Me, _NT, _OAw],
|
|
847
998
|
[() => Metrics, 0, 64 | 0]
|
|
848
999
|
];
|
|
849
|
-
exports.
|
|
1000
|
+
exports.ListMetricsOutput$ = ListMetricsOutput$;
|
|
1001
|
+
const ListMetricStreamsInput$ = [3, n0, _LMSI,
|
|
850
1002
|
0,
|
|
851
1003
|
[_NT, _MRa],
|
|
852
1004
|
[0, 1]
|
|
853
1005
|
];
|
|
854
|
-
exports.
|
|
1006
|
+
exports.ListMetricStreamsInput$ = ListMetricStreamsInput$;
|
|
1007
|
+
const ListMetricStreamsOutput$ = [3, n0, _LMSO,
|
|
855
1008
|
0,
|
|
856
1009
|
[_NT, _En],
|
|
857
1010
|
[0, () => MetricStreamEntries]
|
|
858
1011
|
];
|
|
859
|
-
exports.
|
|
1012
|
+
exports.ListMetricStreamsOutput$ = ListMetricStreamsOutput$;
|
|
1013
|
+
const ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
860
1014
|
0,
|
|
861
1015
|
[_RARN],
|
|
862
1016
|
[0], 1
|
|
863
1017
|
];
|
|
864
|
-
exports.
|
|
1018
|
+
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
1019
|
+
const ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
865
1020
|
0,
|
|
866
1021
|
[_Ta],
|
|
867
1022
|
[() => TagList]
|
|
868
1023
|
];
|
|
869
|
-
exports.
|
|
1024
|
+
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
1025
|
+
const ManagedRule$ = [3, n0, _MRan,
|
|
870
1026
|
0,
|
|
871
1027
|
[_TN, _RARN, _Ta],
|
|
872
1028
|
[0, 0, () => TagList], 2
|
|
873
1029
|
];
|
|
874
|
-
exports.
|
|
1030
|
+
exports.ManagedRule$ = ManagedRule$;
|
|
1031
|
+
const ManagedRuleDescription$ = [3, n0, _MRD,
|
|
875
1032
|
0,
|
|
876
1033
|
[_TN, _RARN, _RS],
|
|
877
|
-
[0, 0, () =>
|
|
1034
|
+
[0, 0, () => ManagedRuleState$]
|
|
878
1035
|
];
|
|
879
|
-
exports.
|
|
1036
|
+
exports.ManagedRuleDescription$ = ManagedRuleDescription$;
|
|
1037
|
+
const ManagedRuleState$ = [3, n0, _MRS,
|
|
880
1038
|
0,
|
|
881
1039
|
[_RNu, _State],
|
|
882
1040
|
[0, 0], 2
|
|
883
1041
|
];
|
|
884
|
-
exports.
|
|
1042
|
+
exports.ManagedRuleState$ = ManagedRuleState$;
|
|
1043
|
+
const MessageData$ = [3, n0, _MDes,
|
|
885
1044
|
0,
|
|
886
1045
|
[_Cod, _V],
|
|
887
1046
|
[0, 0]
|
|
888
1047
|
];
|
|
889
|
-
exports.
|
|
1048
|
+
exports.MessageData$ = MessageData$;
|
|
1049
|
+
const Metric$ = [3, n0, _Met,
|
|
890
1050
|
0,
|
|
891
1051
|
[_N, _MN, _D],
|
|
892
1052
|
[0, 0, () => Dimensions]
|
|
893
1053
|
];
|
|
894
|
-
exports.
|
|
1054
|
+
exports.Metric$ = Metric$;
|
|
1055
|
+
const MetricAlarm$ = [3, n0, _MAe,
|
|
895
1056
|
0,
|
|
896
1057
|
[_AN, _AAl, _ADl, _ACUT, _AE, _OKA, _AA, _IDA, _SV, _SR, _SRD, _SUT, _MN, _N, _Sta, _ESx, _D, _P, _U, _EP, _DTA, _Th, _CO, _TMD, _ELSCP, _Me, _TMI, _ESv, _STT, _EC, _EI],
|
|
897
|
-
[0, 0, 0, 4, 2, 64 | 0, 64 | 0, 64 | 0, 0, 0, 0, 4, 0, 0, 0, 0, () => Dimensions, 1, 0, 1, 1, 1, 0, 0, 0, () => MetricDataQueries, 0, 0, 4, () =>
|
|
1058
|
+
[0, 0, 0, 4, 2, 64 | 0, 64 | 0, 64 | 0, 0, 0, 0, 4, 0, 0, 0, 0, () => Dimensions, 1, 0, 1, 1, 1, 0, 0, 0, () => MetricDataQueries, 0, 0, 4, () => EvaluationCriteria$, 1]
|
|
898
1059
|
];
|
|
899
|
-
exports.
|
|
1060
|
+
exports.MetricAlarm$ = MetricAlarm$;
|
|
1061
|
+
const MetricCharacteristics$ = [3, n0, _MC,
|
|
900
1062
|
0,
|
|
901
1063
|
[_PS],
|
|
902
1064
|
[2]
|
|
903
1065
|
];
|
|
904
|
-
exports.
|
|
1066
|
+
exports.MetricCharacteristics$ = MetricCharacteristics$;
|
|
1067
|
+
const MetricDataQuery$ = [3, n0, _MDQe,
|
|
905
1068
|
0,
|
|
906
1069
|
[_I, _MS, _Ex, _L, _RD, _P, _AI],
|
|
907
|
-
[0, () =>
|
|
1070
|
+
[0, () => MetricStat$, 0, 0, 2, 1, 0], 1
|
|
908
1071
|
];
|
|
909
|
-
exports.
|
|
1072
|
+
exports.MetricDataQuery$ = MetricDataQuery$;
|
|
1073
|
+
const MetricDataResult$ = [3, n0, _MDRe,
|
|
910
1074
|
0,
|
|
911
1075
|
[_I, _L, _Tim, _Va, _SCta, _Mes],
|
|
912
1076
|
[0, 0, 64 | 4, 64 | 1, 0, () => MetricDataResultMessages]
|
|
913
1077
|
];
|
|
914
|
-
exports.
|
|
1078
|
+
exports.MetricDataResult$ = MetricDataResult$;
|
|
1079
|
+
const MetricDatum$ = [3, n0, _MDet,
|
|
915
1080
|
0,
|
|
916
1081
|
[_MN, _D, _T, _V, _SVt, _Va, _Cou, _U, _SRt],
|
|
917
|
-
[0, () => Dimensions, 4, 1, () =>
|
|
1082
|
+
[0, () => Dimensions, 4, 1, () => StatisticSet$, 64 | 1, 64 | 1, 0, 1], 1
|
|
918
1083
|
];
|
|
919
|
-
exports.
|
|
1084
|
+
exports.MetricDatum$ = MetricDatum$;
|
|
1085
|
+
const MetricMathAnomalyDetector$ = [3, n0, _MMAD,
|
|
920
1086
|
0,
|
|
921
1087
|
[_MDQ],
|
|
922
1088
|
[() => MetricDataQueries]
|
|
923
1089
|
];
|
|
924
|
-
exports.
|
|
1090
|
+
exports.MetricMathAnomalyDetector$ = MetricMathAnomalyDetector$;
|
|
1091
|
+
const MetricStat$ = [3, n0, _MS,
|
|
925
1092
|
0,
|
|
926
1093
|
[_Met, _P, _St, _U],
|
|
927
|
-
[() =>
|
|
1094
|
+
[() => Metric$, 1, 0, 0], 3
|
|
928
1095
|
];
|
|
929
|
-
exports.
|
|
1096
|
+
exports.MetricStat$ = MetricStat$;
|
|
1097
|
+
const MetricStreamEntry$ = [3, n0, _MSE,
|
|
930
1098
|
0,
|
|
931
1099
|
[_Ar, _CD, _LUD, _Na, _FA, _State, _OF],
|
|
932
1100
|
[0, 4, 4, 0, 0, 0, 0]
|
|
933
1101
|
];
|
|
934
|
-
exports.
|
|
1102
|
+
exports.MetricStreamEntry$ = MetricStreamEntry$;
|
|
1103
|
+
const MetricStreamFilter$ = [3, n0, _MSF,
|
|
935
1104
|
0,
|
|
936
1105
|
[_N, _MNe],
|
|
937
1106
|
[0, 64 | 0]
|
|
938
1107
|
];
|
|
939
|
-
exports.
|
|
1108
|
+
exports.MetricStreamFilter$ = MetricStreamFilter$;
|
|
1109
|
+
const MetricStreamStatisticsConfiguration$ = [3, n0, _MSSC,
|
|
940
1110
|
0,
|
|
941
1111
|
[_IM, _ASd],
|
|
942
1112
|
[() => MetricStreamStatisticsIncludeMetrics, 64 | 0], 2
|
|
943
1113
|
];
|
|
944
|
-
exports.
|
|
1114
|
+
exports.MetricStreamStatisticsConfiguration$ = MetricStreamStatisticsConfiguration$;
|
|
1115
|
+
const MetricStreamStatisticsMetric$ = [3, n0, _MSSM,
|
|
945
1116
|
0,
|
|
946
1117
|
[_N, _MN],
|
|
947
1118
|
[0, 0], 2
|
|
948
1119
|
];
|
|
949
|
-
exports.
|
|
1120
|
+
exports.MetricStreamStatisticsMetric$ = MetricStreamStatisticsMetric$;
|
|
1121
|
+
const MuteTargets$ = [3, n0, _MTu,
|
|
950
1122
|
0,
|
|
951
1123
|
[_ANl],
|
|
952
1124
|
[64 | 0], 1
|
|
953
1125
|
];
|
|
954
|
-
exports.
|
|
1126
|
+
exports.MuteTargets$ = MuteTargets$;
|
|
1127
|
+
const PartialFailure$ = [3, n0, _PF,
|
|
955
1128
|
0,
|
|
956
1129
|
[_FR, _ETx, _FC, _FD],
|
|
957
1130
|
[0, 0, 0, 0]
|
|
958
1131
|
];
|
|
959
|
-
exports.
|
|
1132
|
+
exports.PartialFailure$ = PartialFailure$;
|
|
1133
|
+
const PutAlarmMuteRuleInput$ = [3, n0, _PAMRI,
|
|
960
1134
|
0,
|
|
961
1135
|
[_Na, _R, _De, _MTu, _Ta, _SD, _ED],
|
|
962
|
-
[0, () =>
|
|
1136
|
+
[0, () => Rule$, 0, () => MuteTargets$, () => TagList, 4, 4], 2
|
|
963
1137
|
];
|
|
964
|
-
exports.
|
|
1138
|
+
exports.PutAlarmMuteRuleInput$ = PutAlarmMuteRuleInput$;
|
|
1139
|
+
const PutAnomalyDetectorInput$ = [3, n0, _PADI,
|
|
965
1140
|
0,
|
|
966
1141
|
[_N, _MN, _D, _St, _C, _MC, _SMAD, _MMAD],
|
|
967
|
-
[0, 0, () => Dimensions, 0, () =>
|
|
1142
|
+
[0, 0, () => Dimensions, 0, () => AnomalyDetectorConfiguration$, () => MetricCharacteristics$, () => SingleMetricAnomalyDetector$, () => MetricMathAnomalyDetector$]
|
|
968
1143
|
];
|
|
969
|
-
exports.
|
|
1144
|
+
exports.PutAnomalyDetectorInput$ = PutAnomalyDetectorInput$;
|
|
1145
|
+
const PutAnomalyDetectorOutput$ = [3, n0, _PADO,
|
|
970
1146
|
0,
|
|
971
1147
|
[],
|
|
972
1148
|
[]
|
|
973
1149
|
];
|
|
974
|
-
exports.
|
|
1150
|
+
exports.PutAnomalyDetectorOutput$ = PutAnomalyDetectorOutput$;
|
|
1151
|
+
const PutCompositeAlarmInput$ = [3, n0, _PCAI,
|
|
975
1152
|
0,
|
|
976
1153
|
[_AN, _AR, _AE, _AA, _ADl, _IDA, _OKA, _Ta, _AS, _ASWP, _ASEP],
|
|
977
1154
|
[0, 0, 2, 64 | 0, 0, 64 | 0, 64 | 0, () => TagList, 0, 1, 1], 2
|
|
978
1155
|
];
|
|
979
|
-
exports.
|
|
1156
|
+
exports.PutCompositeAlarmInput$ = PutCompositeAlarmInput$;
|
|
1157
|
+
const PutDashboardInput$ = [3, n0, _PDI,
|
|
980
1158
|
0,
|
|
981
1159
|
[_DN, _DB, _Ta],
|
|
982
1160
|
[0, 0, () => TagList], 2
|
|
983
1161
|
];
|
|
984
|
-
exports.
|
|
1162
|
+
exports.PutDashboardInput$ = PutDashboardInput$;
|
|
1163
|
+
const PutDashboardOutput$ = [3, n0, _PDO,
|
|
985
1164
|
0,
|
|
986
1165
|
[_DVMa],
|
|
987
1166
|
[() => DashboardValidationMessages]
|
|
988
1167
|
];
|
|
989
|
-
exports.
|
|
1168
|
+
exports.PutDashboardOutput$ = PutDashboardOutput$;
|
|
1169
|
+
const PutInsightRuleInput$ = [3, n0, _PIRI,
|
|
990
1170
|
0,
|
|
991
1171
|
[_RNu, _RDu, _RS, _Ta, _AOTL],
|
|
992
1172
|
[0, 0, 0, () => TagList, 2], 2
|
|
993
1173
|
];
|
|
994
|
-
exports.
|
|
1174
|
+
exports.PutInsightRuleInput$ = PutInsightRuleInput$;
|
|
1175
|
+
const PutInsightRuleOutput$ = [3, n0, _PIRO,
|
|
995
1176
|
0,
|
|
996
1177
|
[],
|
|
997
1178
|
[]
|
|
998
1179
|
];
|
|
999
|
-
exports.
|
|
1180
|
+
exports.PutInsightRuleOutput$ = PutInsightRuleOutput$;
|
|
1181
|
+
const PutManagedInsightRulesInput$ = [3, n0, _PMIRI,
|
|
1000
1182
|
0,
|
|
1001
1183
|
[_MRana],
|
|
1002
1184
|
[() => ManagedRules], 1
|
|
1003
1185
|
];
|
|
1004
|
-
exports.
|
|
1186
|
+
exports.PutManagedInsightRulesInput$ = PutManagedInsightRulesInput$;
|
|
1187
|
+
const PutManagedInsightRulesOutput$ = [3, n0, _PMIRO,
|
|
1005
1188
|
0,
|
|
1006
1189
|
[_F],
|
|
1007
1190
|
[() => BatchFailures]
|
|
1008
1191
|
];
|
|
1009
|
-
exports.
|
|
1192
|
+
exports.PutManagedInsightRulesOutput$ = PutManagedInsightRulesOutput$;
|
|
1193
|
+
const PutMetricAlarmInput$ = [3, n0, _PMAI,
|
|
1010
1194
|
0,
|
|
1011
1195
|
[_AN, _ADl, _AE, _OKA, _AA, _IDA, _MN, _N, _Sta, _ESx, _D, _P, _U, _EP, _DTA, _Th, _CO, _TMD, _ELSCP, _Me, _Ta, _TMI, _EC, _EI],
|
|
1012
|
-
[0, 0, 2, 64 | 0, 64 | 0, 64 | 0, 0, 0, 0, 0, () => Dimensions, 1, 0, 1, 1, 1, 0, 0, 0, () => MetricDataQueries, () => TagList, 0, () =>
|
|
1196
|
+
[0, 0, 2, 64 | 0, 64 | 0, 64 | 0, 0, 0, 0, 0, () => Dimensions, 1, 0, 1, 1, 1, 0, 0, 0, () => MetricDataQueries, () => TagList, 0, () => EvaluationCriteria$, 1], 1
|
|
1013
1197
|
];
|
|
1014
|
-
exports.
|
|
1198
|
+
exports.PutMetricAlarmInput$ = PutMetricAlarmInput$;
|
|
1199
|
+
const PutMetricDataInput$ = [3, n0, _PMDI,
|
|
1015
1200
|
0,
|
|
1016
1201
|
[_N, _MD, _EMD, _SEV],
|
|
1017
1202
|
[0, () => MetricData, () => EntityMetricDataList, 2], 1
|
|
1018
1203
|
];
|
|
1019
|
-
exports.
|
|
1204
|
+
exports.PutMetricDataInput$ = PutMetricDataInput$;
|
|
1205
|
+
const PutMetricStreamInput$ = [3, n0, _PMSI,
|
|
1020
1206
|
0,
|
|
1021
1207
|
[_Na, _FA, _RA, _OF, _IF, _EF, _Ta, _SCt, _ILAM],
|
|
1022
1208
|
[0, 0, 0, 0, () => MetricStreamFilters, () => MetricStreamFilters, () => TagList, () => MetricStreamStatisticsConfigurations, 2], 4
|
|
1023
1209
|
];
|
|
1024
|
-
exports.
|
|
1210
|
+
exports.PutMetricStreamInput$ = PutMetricStreamInput$;
|
|
1211
|
+
const PutMetricStreamOutput$ = [3, n0, _PMSO,
|
|
1025
1212
|
0,
|
|
1026
1213
|
[_Ar],
|
|
1027
1214
|
[0]
|
|
1028
1215
|
];
|
|
1029
|
-
exports.
|
|
1216
|
+
exports.PutMetricStreamOutput$ = PutMetricStreamOutput$;
|
|
1217
|
+
const Range$ = [3, n0, _Ra,
|
|
1030
1218
|
0,
|
|
1031
1219
|
[_ST, _ET],
|
|
1032
1220
|
[4, 4], 2
|
|
1033
1221
|
];
|
|
1034
|
-
exports.
|
|
1222
|
+
exports.Range$ = Range$;
|
|
1223
|
+
const Rule$ = [3, n0, _R,
|
|
1035
1224
|
0,
|
|
1036
1225
|
[_Sch],
|
|
1037
|
-
[() =>
|
|
1226
|
+
[() => Schedule$], 1
|
|
1038
1227
|
];
|
|
1039
|
-
exports.
|
|
1228
|
+
exports.Rule$ = Rule$;
|
|
1229
|
+
const Schedule$ = [3, n0, _Sch,
|
|
1040
1230
|
0,
|
|
1041
1231
|
[_Ex, _Du, _Ti],
|
|
1042
1232
|
[0, 0, 0], 2
|
|
1043
1233
|
];
|
|
1044
|
-
exports.
|
|
1234
|
+
exports.Schedule$ = Schedule$;
|
|
1235
|
+
const SetAlarmStateInput$ = [3, n0, _SASI,
|
|
1045
1236
|
0,
|
|
1046
1237
|
[_AN, _SV, _SR, _SRD],
|
|
1047
1238
|
[0, 0, 0, 0], 3
|
|
1048
1239
|
];
|
|
1049
|
-
exports.
|
|
1240
|
+
exports.SetAlarmStateInput$ = SetAlarmStateInput$;
|
|
1241
|
+
const SingleMetricAnomalyDetector$ = [3, n0, _SMAD,
|
|
1050
1242
|
0,
|
|
1051
1243
|
[_AI, _N, _MN, _D, _St],
|
|
1052
1244
|
[0, 0, 0, () => Dimensions, 0]
|
|
1053
1245
|
];
|
|
1054
|
-
exports.
|
|
1246
|
+
exports.SingleMetricAnomalyDetector$ = SingleMetricAnomalyDetector$;
|
|
1247
|
+
const StartMetricStreamsInput$ = [3, n0, _SMSI,
|
|
1055
1248
|
0,
|
|
1056
1249
|
[_Nam],
|
|
1057
1250
|
[64 | 0], 1
|
|
1058
1251
|
];
|
|
1059
|
-
exports.
|
|
1252
|
+
exports.StartMetricStreamsInput$ = StartMetricStreamsInput$;
|
|
1253
|
+
const StartMetricStreamsOutput$ = [3, n0, _SMSO,
|
|
1060
1254
|
0,
|
|
1061
1255
|
[],
|
|
1062
1256
|
[]
|
|
1063
1257
|
];
|
|
1064
|
-
exports.
|
|
1258
|
+
exports.StartMetricStreamsOutput$ = StartMetricStreamsOutput$;
|
|
1259
|
+
const StartOTelEnrichmentInput$ = [3, n0, _SOTEI,
|
|
1065
1260
|
0,
|
|
1066
1261
|
[],
|
|
1067
1262
|
[]
|
|
1068
1263
|
];
|
|
1069
|
-
exports.
|
|
1264
|
+
exports.StartOTelEnrichmentInput$ = StartOTelEnrichmentInput$;
|
|
1265
|
+
const StartOTelEnrichmentOutput$ = [3, n0, _SOTEO,
|
|
1070
1266
|
0,
|
|
1071
1267
|
[],
|
|
1072
1268
|
[]
|
|
1073
1269
|
];
|
|
1074
|
-
exports.
|
|
1270
|
+
exports.StartOTelEnrichmentOutput$ = StartOTelEnrichmentOutput$;
|
|
1271
|
+
const StatisticSet$ = [3, n0, _SS,
|
|
1075
1272
|
0,
|
|
1076
1273
|
[_SC, _Su, _Mi, _Ma],
|
|
1077
1274
|
[1, 1, 1, 1], 4
|
|
1078
1275
|
];
|
|
1079
|
-
exports.
|
|
1276
|
+
exports.StatisticSet$ = StatisticSet$;
|
|
1277
|
+
const StopMetricStreamsInput$ = [3, n0, _SMSIt,
|
|
1080
1278
|
0,
|
|
1081
1279
|
[_Nam],
|
|
1082
1280
|
[64 | 0], 1
|
|
1083
1281
|
];
|
|
1084
|
-
exports.
|
|
1282
|
+
exports.StopMetricStreamsInput$ = StopMetricStreamsInput$;
|
|
1283
|
+
const StopMetricStreamsOutput$ = [3, n0, _SMSOt,
|
|
1085
1284
|
0,
|
|
1086
1285
|
[],
|
|
1087
1286
|
[]
|
|
1088
1287
|
];
|
|
1089
|
-
exports.
|
|
1288
|
+
exports.StopMetricStreamsOutput$ = StopMetricStreamsOutput$;
|
|
1289
|
+
const StopOTelEnrichmentInput$ = [3, n0, _SOTEIt,
|
|
1090
1290
|
0,
|
|
1091
1291
|
[],
|
|
1092
1292
|
[]
|
|
1093
1293
|
];
|
|
1094
|
-
exports.
|
|
1294
|
+
exports.StopOTelEnrichmentInput$ = StopOTelEnrichmentInput$;
|
|
1295
|
+
const StopOTelEnrichmentOutput$ = [3, n0, _SOTEOt,
|
|
1095
1296
|
0,
|
|
1096
1297
|
[],
|
|
1097
1298
|
[]
|
|
1098
1299
|
];
|
|
1099
|
-
exports.
|
|
1300
|
+
exports.StopOTelEnrichmentOutput$ = StopOTelEnrichmentOutput$;
|
|
1301
|
+
const Tag$ = [3, n0, _Tag,
|
|
1100
1302
|
0,
|
|
1101
1303
|
[_Ke, _V],
|
|
1102
1304
|
[0, 0], 2
|
|
1103
1305
|
];
|
|
1104
|
-
exports.
|
|
1306
|
+
exports.Tag$ = Tag$;
|
|
1307
|
+
const TagResourceInput$ = [3, n0, _TRI,
|
|
1105
1308
|
0,
|
|
1106
1309
|
[_RARN, _Ta],
|
|
1107
1310
|
[0, () => TagList], 2
|
|
1108
1311
|
];
|
|
1109
|
-
exports.
|
|
1312
|
+
exports.TagResourceInput$ = TagResourceInput$;
|
|
1313
|
+
const TagResourceOutput$ = [3, n0, _TRO,
|
|
1110
1314
|
0,
|
|
1111
1315
|
[],
|
|
1112
1316
|
[]
|
|
1113
1317
|
];
|
|
1114
|
-
exports.
|
|
1318
|
+
exports.TagResourceOutput$ = TagResourceOutput$;
|
|
1319
|
+
const UntagResourceInput$ = [3, n0, _URI,
|
|
1115
1320
|
0,
|
|
1116
1321
|
[_RARN, _TK],
|
|
1117
1322
|
[0, 64 | 0], 2
|
|
1118
1323
|
];
|
|
1119
|
-
exports.
|
|
1324
|
+
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
1325
|
+
const UntagResourceOutput$ = [3, n0, _URO,
|
|
1120
1326
|
0,
|
|
1121
1327
|
[],
|
|
1122
1328
|
[]
|
|
1123
1329
|
];
|
|
1330
|
+
exports.UntagResourceOutput$ = UntagResourceOutput$;
|
|
1124
1331
|
var __Unit = "unit";
|
|
1125
1332
|
var AlarmContributors = [1, n0, _ACl,
|
|
1126
|
-
0, () =>
|
|
1333
|
+
0, () => AlarmContributor$
|
|
1127
1334
|
];
|
|
1128
1335
|
var AlarmHistoryItems = [1, n0, _AHIl,
|
|
1129
|
-
0, () =>
|
|
1336
|
+
0, () => AlarmHistoryItem$
|
|
1130
1337
|
];
|
|
1131
1338
|
var AlarmMuteRuleStatuses = 64 | 0;
|
|
1132
1339
|
var AlarmMuteRuleSummaries = [1, n0, _AMRSl,
|
|
1133
|
-
0, () =>
|
|
1340
|
+
0, () => AlarmMuteRuleSummary$
|
|
1134
1341
|
];
|
|
1135
1342
|
var AlarmNames = 64 | 0;
|
|
1136
1343
|
var AlarmTypes = 64 | 0;
|
|
1137
1344
|
var AnomalyDetectorExcludedTimeRanges = [1, n0, _ADETR,
|
|
1138
|
-
0, () =>
|
|
1345
|
+
0, () => Range$
|
|
1139
1346
|
];
|
|
1140
1347
|
var AnomalyDetectors = [1, n0, _ADn,
|
|
1141
|
-
0, () =>
|
|
1348
|
+
0, () => AnomalyDetector$
|
|
1142
1349
|
];
|
|
1143
1350
|
var AnomalyDetectorTypes = 64 | 0;
|
|
1144
1351
|
var BatchFailures = [1, n0, _BF,
|
|
1145
|
-
0, () =>
|
|
1352
|
+
0, () => PartialFailure$
|
|
1146
1353
|
];
|
|
1147
1354
|
var CompositeAlarms = [1, n0, _CAom,
|
|
1148
|
-
0, () =>
|
|
1355
|
+
0, () => CompositeAlarm$
|
|
1149
1356
|
];
|
|
1150
1357
|
var Counts = 64 | 1;
|
|
1151
1358
|
var DashboardEntries = [1, n0, _DEa,
|
|
1152
|
-
0, () =>
|
|
1359
|
+
0, () => DashboardEntry$
|
|
1153
1360
|
];
|
|
1154
1361
|
var DashboardNames = 64 | 0;
|
|
1155
1362
|
var DashboardValidationMessages = [1, n0, _DVMa,
|
|
1156
|
-
0, () =>
|
|
1363
|
+
0, () => DashboardValidationMessage$
|
|
1157
1364
|
];
|
|
1158
1365
|
var Datapoints = [1, n0, _Dat,
|
|
1159
|
-
0, () =>
|
|
1366
|
+
0, () => Datapoint$
|
|
1160
1367
|
];
|
|
1161
1368
|
var DatapointValues = 64 | 1;
|
|
1162
1369
|
var DimensionFilters = [1, n0, _DFi,
|
|
1163
|
-
0, () =>
|
|
1370
|
+
0, () => DimensionFilter$
|
|
1164
1371
|
];
|
|
1165
1372
|
var Dimensions = [1, n0, _D,
|
|
1166
|
-
0, () =>
|
|
1373
|
+
0, () => Dimension$
|
|
1167
1374
|
];
|
|
1168
1375
|
var EntityMetricDataList = [1, n0, _EMDL,
|
|
1169
|
-
0, () =>
|
|
1376
|
+
0, () => EntityMetricData$
|
|
1170
1377
|
];
|
|
1171
1378
|
var ExtendedStatistics = 64 | 0;
|
|
1172
1379
|
var InsightRuleContributorDatapoints = [1, n0, _IRCDn,
|
|
1173
|
-
0, () =>
|
|
1380
|
+
0, () => InsightRuleContributorDatapoint$
|
|
1174
1381
|
];
|
|
1175
1382
|
var InsightRuleContributorKeyLabels = 64 | 0;
|
|
1176
1383
|
var InsightRuleContributorKeys = 64 | 0;
|
|
1177
1384
|
var InsightRuleContributors = [1, n0, _IRCn,
|
|
1178
|
-
0, () =>
|
|
1385
|
+
0, () => InsightRuleContributor$
|
|
1179
1386
|
];
|
|
1180
1387
|
var InsightRuleMetricDatapoints = [1, n0, _IRMDn,
|
|
1181
|
-
0, () =>
|
|
1388
|
+
0, () => InsightRuleMetricDatapoint$
|
|
1182
1389
|
];
|
|
1183
1390
|
var InsightRuleMetricList = 64 | 0;
|
|
1184
1391
|
var InsightRuleNames = 64 | 0;
|
|
1185
1392
|
var InsightRules = [1, n0, _IR,
|
|
1186
|
-
0, () =>
|
|
1393
|
+
0, () => InsightRule$
|
|
1187
1394
|
];
|
|
1188
1395
|
var ManagedRuleDescriptions = [1, n0, _MRDa,
|
|
1189
|
-
0, () =>
|
|
1396
|
+
0, () => ManagedRuleDescription$
|
|
1190
1397
|
];
|
|
1191
1398
|
var ManagedRules = [1, n0, _MRana,
|
|
1192
|
-
0, () =>
|
|
1399
|
+
0, () => ManagedRule$
|
|
1193
1400
|
];
|
|
1194
1401
|
var MetricAlarms = [1, n0, _MA,
|
|
1195
|
-
0, () =>
|
|
1402
|
+
0, () => MetricAlarm$
|
|
1196
1403
|
];
|
|
1197
1404
|
var MetricData = [1, n0, _MD,
|
|
1198
|
-
0, () =>
|
|
1405
|
+
0, () => MetricDatum$
|
|
1199
1406
|
];
|
|
1200
1407
|
var MetricDataQueries = [1, n0, _MDQ,
|
|
1201
|
-
0, () =>
|
|
1408
|
+
0, () => MetricDataQuery$
|
|
1202
1409
|
];
|
|
1203
1410
|
var MetricDataResultMessages = [1, n0, _MDRM,
|
|
1204
|
-
0, () =>
|
|
1411
|
+
0, () => MessageData$
|
|
1205
1412
|
];
|
|
1206
1413
|
var MetricDataResults = [1, n0, _MDR,
|
|
1207
|
-
0, () =>
|
|
1414
|
+
0, () => MetricDataResult$
|
|
1208
1415
|
];
|
|
1209
1416
|
var Metrics = [1, n0, _Me,
|
|
1210
|
-
0, () =>
|
|
1417
|
+
0, () => Metric$
|
|
1211
1418
|
];
|
|
1212
1419
|
var MetricStreamEntries = [1, n0, _MSEe,
|
|
1213
|
-
0, () =>
|
|
1420
|
+
0, () => MetricStreamEntry$
|
|
1214
1421
|
];
|
|
1215
1422
|
var MetricStreamFilterMetricNames = 64 | 0;
|
|
1216
1423
|
var MetricStreamFilters = [1, n0, _MSFe,
|
|
1217
|
-
0, () =>
|
|
1424
|
+
0, () => MetricStreamFilter$
|
|
1218
1425
|
];
|
|
1219
1426
|
var MetricStreamNames = 64 | 0;
|
|
1220
1427
|
var MetricStreamStatisticsAdditionalStatistics = 64 | 0;
|
|
1221
1428
|
var MetricStreamStatisticsConfigurations = [1, n0, _MSSCe,
|
|
1222
|
-
0, () =>
|
|
1429
|
+
0, () => MetricStreamStatisticsConfiguration$
|
|
1223
1430
|
];
|
|
1224
1431
|
var MetricStreamStatisticsIncludeMetrics = [1, n0, _MSSIM,
|
|
1225
|
-
0, () =>
|
|
1432
|
+
0, () => MetricStreamStatisticsMetric$
|
|
1226
1433
|
];
|
|
1227
1434
|
var MuteTargetAlarmNameList = 64 | 0;
|
|
1228
1435
|
var OwningAccounts = 64 | 0;
|
|
@@ -1230,7 +1437,7 @@ var ResourceList = 64 | 0;
|
|
|
1230
1437
|
var Statistics = 64 | 0;
|
|
1231
1438
|
var TagKeyList = 64 | 0;
|
|
1232
1439
|
var TagList = [1, n0, _TL,
|
|
1233
|
-
0, () =>
|
|
1440
|
+
0, () => Tag$
|
|
1234
1441
|
];
|
|
1235
1442
|
var Timestamps = 64 | 4;
|
|
1236
1443
|
var Values = 64 | 1;
|
|
@@ -1238,146 +1445,156 @@ var ContributorAttributes = 128 | 0;
|
|
|
1238
1445
|
var DatapointValueMap = 128 | 1;
|
|
1239
1446
|
var EntityAttributesMap = 128 | 0;
|
|
1240
1447
|
var EntityKeyAttributesMap = 128 | 0;
|
|
1241
|
-
|
|
1448
|
+
const EvaluationCriteria$ = [4, n0, _EC,
|
|
1242
1449
|
0,
|
|
1243
1450
|
[_PQLC],
|
|
1244
|
-
[() =>
|
|
1451
|
+
[() => AlarmPromQLCriteria$]
|
|
1452
|
+
];
|
|
1453
|
+
exports.EvaluationCriteria$ = EvaluationCriteria$;
|
|
1454
|
+
exports.AssociateDatasetKmsKey$ = [9, n0, _ADKK,
|
|
1455
|
+
0, () => AssociateDatasetKmsKeyInput$, () => AssociateDatasetKmsKeyOutput$
|
|
1245
1456
|
];
|
|
1246
1457
|
exports.DeleteAlarmMuteRule$ = [9, n0, _DAMR,
|
|
1247
|
-
0, () =>
|
|
1458
|
+
0, () => DeleteAlarmMuteRuleInput$, () => __Unit
|
|
1248
1459
|
];
|
|
1249
1460
|
exports.DeleteAlarms$ = [9, n0, _DAe,
|
|
1250
|
-
0, () =>
|
|
1461
|
+
0, () => DeleteAlarmsInput$, () => __Unit
|
|
1251
1462
|
];
|
|
1252
1463
|
exports.DeleteAnomalyDetector$ = [9, n0, _DAD,
|
|
1253
|
-
0, () =>
|
|
1464
|
+
0, () => DeleteAnomalyDetectorInput$, () => DeleteAnomalyDetectorOutput$
|
|
1254
1465
|
];
|
|
1255
1466
|
exports.DeleteDashboards$ = [9, n0, _DD,
|
|
1256
|
-
0, () =>
|
|
1467
|
+
0, () => DeleteDashboardsInput$, () => DeleteDashboardsOutput$
|
|
1257
1468
|
];
|
|
1258
1469
|
exports.DeleteInsightRules$ = [9, n0, _DIR,
|
|
1259
|
-
0, () =>
|
|
1470
|
+
0, () => DeleteInsightRulesInput$, () => DeleteInsightRulesOutput$
|
|
1260
1471
|
];
|
|
1261
1472
|
exports.DeleteMetricStream$ = [9, n0, _DMS,
|
|
1262
|
-
0, () =>
|
|
1473
|
+
0, () => DeleteMetricStreamInput$, () => DeleteMetricStreamOutput$
|
|
1263
1474
|
];
|
|
1264
1475
|
exports.DescribeAlarmContributors$ = [9, n0, _DAC,
|
|
1265
|
-
0, () =>
|
|
1476
|
+
0, () => DescribeAlarmContributorsInput$, () => DescribeAlarmContributorsOutput$
|
|
1266
1477
|
];
|
|
1267
1478
|
exports.DescribeAlarmHistory$ = [9, n0, _DAH,
|
|
1268
|
-
0, () =>
|
|
1479
|
+
0, () => DescribeAlarmHistoryInput$, () => DescribeAlarmHistoryOutput$
|
|
1269
1480
|
];
|
|
1270
1481
|
exports.DescribeAlarms$ = [9, n0, _DAes,
|
|
1271
|
-
0, () =>
|
|
1482
|
+
0, () => DescribeAlarmsInput$, () => DescribeAlarmsOutput$
|
|
1272
1483
|
];
|
|
1273
1484
|
exports.DescribeAlarmsForMetric$ = [9, n0, _DAFM,
|
|
1274
|
-
0, () =>
|
|
1485
|
+
0, () => DescribeAlarmsForMetricInput$, () => DescribeAlarmsForMetricOutput$
|
|
1275
1486
|
];
|
|
1276
1487
|
exports.DescribeAnomalyDetectors$ = [9, n0, _DADe,
|
|
1277
|
-
0, () =>
|
|
1488
|
+
0, () => DescribeAnomalyDetectorsInput$, () => DescribeAnomalyDetectorsOutput$
|
|
1278
1489
|
];
|
|
1279
1490
|
exports.DescribeInsightRules$ = [9, n0, _DIRe,
|
|
1280
|
-
0, () =>
|
|
1491
|
+
0, () => DescribeInsightRulesInput$, () => DescribeInsightRulesOutput$
|
|
1281
1492
|
];
|
|
1282
1493
|
exports.DisableAlarmActions$ = [9, n0, _DAA,
|
|
1283
|
-
0, () =>
|
|
1494
|
+
0, () => DisableAlarmActionsInput$, () => __Unit
|
|
1284
1495
|
];
|
|
1285
1496
|
exports.DisableInsightRules$ = [9, n0, _DIRi,
|
|
1286
|
-
0, () =>
|
|
1497
|
+
0, () => DisableInsightRulesInput$, () => DisableInsightRulesOutput$
|
|
1498
|
+
];
|
|
1499
|
+
exports.DisassociateDatasetKmsKey$ = [9, n0, _DDKK,
|
|
1500
|
+
2, () => DisassociateDatasetKmsKeyInput$, () => DisassociateDatasetKmsKeyOutput$
|
|
1287
1501
|
];
|
|
1288
1502
|
exports.EnableAlarmActions$ = [9, n0, _EAA,
|
|
1289
|
-
0, () =>
|
|
1503
|
+
0, () => EnableAlarmActionsInput$, () => __Unit
|
|
1290
1504
|
];
|
|
1291
1505
|
exports.EnableInsightRules$ = [9, n0, _EIR,
|
|
1292
|
-
0, () =>
|
|
1506
|
+
0, () => EnableInsightRulesInput$, () => EnableInsightRulesOutput$
|
|
1293
1507
|
];
|
|
1294
1508
|
exports.GetAlarmMuteRule$ = [9, n0, _GAMR,
|
|
1295
|
-
0, () =>
|
|
1509
|
+
0, () => GetAlarmMuteRuleInput$, () => GetAlarmMuteRuleOutput$
|
|
1296
1510
|
];
|
|
1297
1511
|
exports.GetDashboard$ = [9, n0, _GD,
|
|
1298
|
-
0, () =>
|
|
1512
|
+
0, () => GetDashboardInput$, () => GetDashboardOutput$
|
|
1513
|
+
];
|
|
1514
|
+
exports.GetDataset$ = [9, n0, _GDe,
|
|
1515
|
+
0, () => GetDatasetInput$, () => GetDatasetOutput$
|
|
1299
1516
|
];
|
|
1300
1517
|
exports.GetInsightRuleReport$ = [9, n0, _GIRR,
|
|
1301
|
-
0, () =>
|
|
1518
|
+
0, () => GetInsightRuleReportInput$, () => GetInsightRuleReportOutput$
|
|
1302
1519
|
];
|
|
1303
1520
|
exports.GetMetricData$ = [9, n0, _GMD,
|
|
1304
|
-
0, () =>
|
|
1521
|
+
0, () => GetMetricDataInput$, () => GetMetricDataOutput$
|
|
1305
1522
|
];
|
|
1306
1523
|
exports.GetMetricStatistics$ = [9, n0, _GMS,
|
|
1307
|
-
0, () =>
|
|
1524
|
+
0, () => GetMetricStatisticsInput$, () => GetMetricStatisticsOutput$
|
|
1308
1525
|
];
|
|
1309
1526
|
exports.GetMetricStream$ = [9, n0, _GMSe,
|
|
1310
|
-
0, () =>
|
|
1527
|
+
0, () => GetMetricStreamInput$, () => GetMetricStreamOutput$
|
|
1311
1528
|
];
|
|
1312
1529
|
exports.GetMetricWidgetImage$ = [9, n0, _GMWI,
|
|
1313
|
-
0, () =>
|
|
1530
|
+
0, () => GetMetricWidgetImageInput$, () => GetMetricWidgetImageOutput$
|
|
1314
1531
|
];
|
|
1315
1532
|
exports.GetOTelEnrichment$ = [9, n0, _GOTE,
|
|
1316
|
-
0, () =>
|
|
1533
|
+
0, () => GetOTelEnrichmentInput$, () => GetOTelEnrichmentOutput$
|
|
1317
1534
|
];
|
|
1318
1535
|
exports.ListAlarmMuteRules$ = [9, n0, _LAMR,
|
|
1319
|
-
0, () =>
|
|
1536
|
+
0, () => ListAlarmMuteRulesInput$, () => ListAlarmMuteRulesOutput$
|
|
1320
1537
|
];
|
|
1321
1538
|
exports.ListDashboards$ = [9, n0, _LD,
|
|
1322
|
-
0, () =>
|
|
1539
|
+
0, () => ListDashboardsInput$, () => ListDashboardsOutput$
|
|
1323
1540
|
];
|
|
1324
1541
|
exports.ListManagedInsightRules$ = [9, n0, _LMIR,
|
|
1325
|
-
0, () =>
|
|
1542
|
+
0, () => ListManagedInsightRulesInput$, () => ListManagedInsightRulesOutput$
|
|
1326
1543
|
];
|
|
1327
1544
|
exports.ListMetrics$ = [9, n0, _LMi,
|
|
1328
|
-
0, () =>
|
|
1545
|
+
0, () => ListMetricsInput$, () => ListMetricsOutput$
|
|
1329
1546
|
];
|
|
1330
1547
|
exports.ListMetricStreams$ = [9, n0, _LMS,
|
|
1331
|
-
0, () =>
|
|
1548
|
+
0, () => ListMetricStreamsInput$, () => ListMetricStreamsOutput$
|
|
1332
1549
|
];
|
|
1333
1550
|
exports.ListTagsForResource$ = [9, n0, _LTFR,
|
|
1334
|
-
0, () =>
|
|
1551
|
+
0, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
|
|
1335
1552
|
];
|
|
1336
1553
|
exports.PutAlarmMuteRule$ = [9, n0, _PAMR,
|
|
1337
|
-
0, () =>
|
|
1554
|
+
0, () => PutAlarmMuteRuleInput$, () => __Unit
|
|
1338
1555
|
];
|
|
1339
1556
|
exports.PutAnomalyDetector$ = [9, n0, _PAD,
|
|
1340
|
-
0, () =>
|
|
1557
|
+
0, () => PutAnomalyDetectorInput$, () => PutAnomalyDetectorOutput$
|
|
1341
1558
|
];
|
|
1342
1559
|
exports.PutCompositeAlarm$ = [9, n0, _PCA,
|
|
1343
|
-
0, () =>
|
|
1560
|
+
0, () => PutCompositeAlarmInput$, () => __Unit
|
|
1344
1561
|
];
|
|
1345
1562
|
exports.PutDashboard$ = [9, n0, _PD,
|
|
1346
|
-
0, () =>
|
|
1563
|
+
0, () => PutDashboardInput$, () => PutDashboardOutput$
|
|
1347
1564
|
];
|
|
1348
1565
|
exports.PutInsightRule$ = [9, n0, _PIR,
|
|
1349
|
-
0, () =>
|
|
1566
|
+
0, () => PutInsightRuleInput$, () => PutInsightRuleOutput$
|
|
1350
1567
|
];
|
|
1351
1568
|
exports.PutManagedInsightRules$ = [9, n0, _PMIR,
|
|
1352
|
-
0, () =>
|
|
1569
|
+
0, () => PutManagedInsightRulesInput$, () => PutManagedInsightRulesOutput$
|
|
1353
1570
|
];
|
|
1354
1571
|
exports.PutMetricAlarm$ = [9, n0, _PMA,
|
|
1355
|
-
0, () =>
|
|
1572
|
+
0, () => PutMetricAlarmInput$, () => __Unit
|
|
1356
1573
|
];
|
|
1357
1574
|
exports.PutMetricData$ = [9, n0, _PMD,
|
|
1358
|
-
0, () =>
|
|
1575
|
+
0, () => PutMetricDataInput$, () => __Unit
|
|
1359
1576
|
];
|
|
1360
1577
|
exports.PutMetricStream$ = [9, n0, _PMS,
|
|
1361
|
-
0, () =>
|
|
1578
|
+
0, () => PutMetricStreamInput$, () => PutMetricStreamOutput$
|
|
1362
1579
|
];
|
|
1363
1580
|
exports.SetAlarmState$ = [9, n0, _SAS,
|
|
1364
|
-
0, () =>
|
|
1581
|
+
0, () => SetAlarmStateInput$, () => __Unit
|
|
1365
1582
|
];
|
|
1366
1583
|
exports.StartMetricStreams$ = [9, n0, _SMS,
|
|
1367
|
-
0, () =>
|
|
1584
|
+
0, () => StartMetricStreamsInput$, () => StartMetricStreamsOutput$
|
|
1368
1585
|
];
|
|
1369
1586
|
exports.StartOTelEnrichment$ = [9, n0, _SOTE,
|
|
1370
|
-
0, () =>
|
|
1587
|
+
0, () => StartOTelEnrichmentInput$, () => StartOTelEnrichmentOutput$
|
|
1371
1588
|
];
|
|
1372
1589
|
exports.StopMetricStreams$ = [9, n0, _SMSt,
|
|
1373
|
-
0, () =>
|
|
1590
|
+
0, () => StopMetricStreamsInput$, () => StopMetricStreamsOutput$
|
|
1374
1591
|
];
|
|
1375
1592
|
exports.StopOTelEnrichment$ = [9, n0, _SOTEt,
|
|
1376
|
-
0, () =>
|
|
1593
|
+
0, () => StopOTelEnrichmentInput$, () => StopOTelEnrichmentOutput$
|
|
1377
1594
|
];
|
|
1378
1595
|
exports.TagResource$ = [9, n0, _TR,
|
|
1379
|
-
0, () =>
|
|
1596
|
+
0, () => TagResourceInput$, () => TagResourceOutput$
|
|
1380
1597
|
];
|
|
1381
1598
|
exports.UntagResource$ = [9, n0, _UR,
|
|
1382
|
-
0, () =>
|
|
1599
|
+
0, () => UntagResourceInput$, () => UntagResourceOutput$
|
|
1383
1600
|
];
|