@aws-sdk/client-ssm 3.1079.0 → 3.1081.0
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/README.md +42 -0
- package/dist-cjs/index.js +385 -81
- package/dist-es/SSM.js +16 -0
- package/dist-es/commands/CreateCloudConnectorCommand.js +4 -0
- package/dist-es/commands/DeleteCloudConnectorCommand.js +4 -0
- package/dist-es/commands/GetCloudConnectorCommand.js +4 -0
- package/dist-es/commands/ListCloudConnectorsCommand.js +4 -0
- package/dist-es/commands/UpdateCloudConnectorCommand.js +4 -0
- package/dist-es/commands/ValidateCloudConnectorCommand.js +4 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/enums.js +34 -0
- package/dist-es/models/errors.js +50 -36
- package/dist-es/pagination/ListCloudConnectorsPaginator.js +4 -0
- package/dist-es/pagination/ValidateCloudConnectorPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +232 -45
- package/dist-types/SSM.d.ts +57 -0
- package/dist-types/SSMClient.d.ts +8 -2
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +1 -1
- package/dist-types/commands/CreateCloudConnectorCommand.d.ts +108 -0
- package/dist-types/commands/DeleteCloudConnectorCommand.d.ts +81 -0
- package/dist-types/commands/DescribeInstanceInformationCommand.d.ts +2 -1
- package/dist-types/commands/DescribeInstancePropertiesCommand.d.ts +3 -1
- package/dist-types/commands/GetCloudConnectorCommand.d.ts +99 -0
- package/dist-types/commands/GetParameterCommand.d.ts +14 -0
- package/dist-types/commands/GetParametersByPathCommand.d.ts +1 -1
- package/dist-types/commands/GetParametersCommand.d.ts +14 -0
- package/dist-types/commands/GetPatchBaselineCommand.d.ts +1 -1
- package/dist-types/commands/GetPatchBaselineForPatchGroupCommand.d.ts +1 -1
- package/dist-types/commands/GetResourcePoliciesCommand.d.ts +1 -1
- package/dist-types/commands/GetServiceSettingCommand.d.ts +1 -2
- package/dist-types/commands/ListAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/ListCloudConnectorsCommand.d.ts +93 -0
- package/dist-types/commands/ListNodesCommand.d.ts +7 -1
- package/dist-types/commands/ListNodesSummaryCommand.d.ts +3 -3
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PutParameterCommand.d.ts +14 -0
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCloudConnectorCommand.d.ts +99 -0
- package/dist-types/commands/ValidateCloudConnectorCommand.d.ts +91 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/enums.d.ts +66 -0
- package/dist-types/models/errors.d.ts +61 -47
- package/dist-types/models/models_0.d.ts +268 -360
- package/dist-types/models/models_1.d.ts +601 -3
- package/dist-types/pagination/ListCloudConnectorsPaginator.d.ts +7 -0
- package/dist-types/pagination/ValidateCloudConnectorPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +27 -0
- package/dist-types/ts3.4/SSM.d.ts +117 -0
- package/dist-types/ts3.4/SSMClient.d.ts +38 -2
- package/dist-types/ts3.4/commands/CreateCloudConnectorCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DeleteCloudConnectorCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/GetCloudConnectorCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/GetParametersByPathCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPatchBaselineCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPatchBaselineForPatchGroupCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetServiceSettingCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListCloudConnectorsCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/UpdateCloudConnectorCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/ValidateCloudConnectorCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/enums.d.ts +42 -0
- package/dist-types/ts3.4/models/errors.d.ts +26 -20
- package/dist-types/ts3.4/models/models_0.d.ts +78 -59
- package/dist-types/ts3.4/models/models_1.d.ts +123 -0
- package/dist-types/ts3.4/pagination/ListCloudConnectorsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ValidateCloudConnectorPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +27 -0
- package/package.json +3 -3
|
@@ -381,6 +381,54 @@ export declare class UnsupportedPlatformType extends __BaseException {
|
|
|
381
381
|
*/
|
|
382
382
|
constructor(opts: __ExceptionOptionType<UnsupportedPlatformType, __BaseException>);
|
|
383
383
|
}
|
|
384
|
+
/**
|
|
385
|
+
* <p>An error occurred because of a conflict with a concurrent request or the current state of
|
|
386
|
+
* the resource. Retry your request.</p>
|
|
387
|
+
* @public
|
|
388
|
+
*/
|
|
389
|
+
export declare class ConflictException extends __BaseException {
|
|
390
|
+
readonly name: "ConflictException";
|
|
391
|
+
readonly $fault: "client";
|
|
392
|
+
Message?: string | undefined;
|
|
393
|
+
/**
|
|
394
|
+
* @internal
|
|
395
|
+
*/
|
|
396
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
397
|
+
}
|
|
398
|
+
/**
|
|
399
|
+
* <p>The request exceeds the service quota. Service quotas, also referred to as limits, are the
|
|
400
|
+
* maximum number of service resources or operations for your Amazon Web Services account.</p>
|
|
401
|
+
* @public
|
|
402
|
+
*/
|
|
403
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
404
|
+
readonly name: "ServiceQuotaExceededException";
|
|
405
|
+
readonly $fault: "client";
|
|
406
|
+
Message: string | undefined;
|
|
407
|
+
/**
|
|
408
|
+
* <p>The unique ID of the resource referenced in the failed request.</p>
|
|
409
|
+
* @public
|
|
410
|
+
*/
|
|
411
|
+
ResourceId?: string | undefined;
|
|
412
|
+
/**
|
|
413
|
+
* <p>The resource type of the resource referenced in the failed request.</p>
|
|
414
|
+
* @public
|
|
415
|
+
*/
|
|
416
|
+
ResourceType?: string | undefined;
|
|
417
|
+
/**
|
|
418
|
+
* <p>The quota code recognized by the Amazon Web Services Service Quotas service.</p>
|
|
419
|
+
* @public
|
|
420
|
+
*/
|
|
421
|
+
QuotaCode: string | undefined;
|
|
422
|
+
/**
|
|
423
|
+
* <p>The code for the Amazon Web Services service that owns the quota.</p>
|
|
424
|
+
* @public
|
|
425
|
+
*/
|
|
426
|
+
ServiceCode: string | undefined;
|
|
427
|
+
/**
|
|
428
|
+
* @internal
|
|
429
|
+
*/
|
|
430
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
431
|
+
}
|
|
384
432
|
/**
|
|
385
433
|
* <p>The specified document already exists.</p>
|
|
386
434
|
* @public
|
|
@@ -652,6 +700,19 @@ export declare class AssociationDoesNotExist extends __BaseException {
|
|
|
652
700
|
*/
|
|
653
701
|
constructor(opts: __ExceptionOptionType<AssociationDoesNotExist, __BaseException>);
|
|
654
702
|
}
|
|
703
|
+
/**
|
|
704
|
+
* <p>The specified parameter to be shared could not be found.</p>
|
|
705
|
+
* @public
|
|
706
|
+
*/
|
|
707
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
708
|
+
readonly name: "ResourceNotFoundException";
|
|
709
|
+
readonly $fault: "client";
|
|
710
|
+
Message?: string | undefined;
|
|
711
|
+
/**
|
|
712
|
+
* @internal
|
|
713
|
+
*/
|
|
714
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
715
|
+
}
|
|
655
716
|
/**
|
|
656
717
|
* <p>You must disassociate a document from all managed nodes before you can delete it.</p>
|
|
657
718
|
* @public
|
|
@@ -803,19 +864,6 @@ export declare class MalformedResourcePolicyDocumentException extends __BaseExce
|
|
|
803
864
|
*/
|
|
804
865
|
constructor(opts: __ExceptionOptionType<MalformedResourcePolicyDocumentException, __BaseException>);
|
|
805
866
|
}
|
|
806
|
-
/**
|
|
807
|
-
* <p>The specified parameter to be shared could not be found.</p>
|
|
808
|
-
* @public
|
|
809
|
-
*/
|
|
810
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
811
|
-
readonly name: "ResourceNotFoundException";
|
|
812
|
-
readonly $fault: "client";
|
|
813
|
-
Message?: string | undefined;
|
|
814
|
-
/**
|
|
815
|
-
* @internal
|
|
816
|
-
*/
|
|
817
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
818
|
-
}
|
|
819
867
|
/**
|
|
820
868
|
* <p>The hash provided in the call doesn't match the stored hash. This exception is thrown when
|
|
821
869
|
* trying to update an obsolete policy version or when multiple requests to update a policy are
|
|
@@ -1697,40 +1745,6 @@ export declare class InvalidRole extends __BaseException {
|
|
|
1697
1745
|
*/
|
|
1698
1746
|
constructor(opts: __ExceptionOptionType<InvalidRole, __BaseException>);
|
|
1699
1747
|
}
|
|
1700
|
-
/**
|
|
1701
|
-
* <p>The request exceeds the service quota. Service quotas, also referred to as limits, are the
|
|
1702
|
-
* maximum number of service resources or operations for your Amazon Web Services account.</p>
|
|
1703
|
-
* @public
|
|
1704
|
-
*/
|
|
1705
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
1706
|
-
readonly name: "ServiceQuotaExceededException";
|
|
1707
|
-
readonly $fault: "client";
|
|
1708
|
-
Message: string | undefined;
|
|
1709
|
-
/**
|
|
1710
|
-
* <p>The unique ID of the resource referenced in the failed request.</p>
|
|
1711
|
-
* @public
|
|
1712
|
-
*/
|
|
1713
|
-
ResourceId?: string | undefined;
|
|
1714
|
-
/**
|
|
1715
|
-
* <p>The resource type of the resource referenced in the failed request.</p>
|
|
1716
|
-
* @public
|
|
1717
|
-
*/
|
|
1718
|
-
ResourceType?: string | undefined;
|
|
1719
|
-
/**
|
|
1720
|
-
* <p>The quota code recognized by the Amazon Web Services Service Quotas service.</p>
|
|
1721
|
-
* @public
|
|
1722
|
-
*/
|
|
1723
|
-
QuotaCode: string | undefined;
|
|
1724
|
-
/**
|
|
1725
|
-
* <p>The code for the Amazon Web Services service that owns the quota.</p>
|
|
1726
|
-
* @public
|
|
1727
|
-
*/
|
|
1728
|
-
ServiceCode: string | undefined;
|
|
1729
|
-
/**
|
|
1730
|
-
* @internal
|
|
1731
|
-
*/
|
|
1732
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
1733
|
-
}
|
|
1734
1748
|
/**
|
|
1735
1749
|
* <p>The association isn't valid or doesn't exist. </p>
|
|
1736
1750
|
* @public
|