@aws-sdk/client-ssm 3.1080.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
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListCloudConnectorsRequest,
|
|
4
|
+
ListCloudConnectorsResult,
|
|
5
|
+
} from "../models/models_1";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface ListCloudConnectorsCommandInput
|
|
8
|
+
extends ListCloudConnectorsRequest {}
|
|
9
|
+
export interface ListCloudConnectorsCommandOutput
|
|
10
|
+
extends ListCloudConnectorsResult,
|
|
11
|
+
__MetadataBearer {}
|
|
12
|
+
declare const ListCloudConnectorsCommand_base: {
|
|
13
|
+
new (
|
|
14
|
+
input: ListCloudConnectorsCommandInput
|
|
15
|
+
): import("@smithy/core/client").CommandImpl<
|
|
16
|
+
ListCloudConnectorsCommandInput,
|
|
17
|
+
ListCloudConnectorsCommandOutput,
|
|
18
|
+
import("..").SSMClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
21
|
+
>;
|
|
22
|
+
new (
|
|
23
|
+
...[input]: [] | [ListCloudConnectorsCommandInput]
|
|
24
|
+
): import("@smithy/core/client").CommandImpl<
|
|
25
|
+
ListCloudConnectorsCommandInput,
|
|
26
|
+
ListCloudConnectorsCommandOutput,
|
|
27
|
+
import("..").SSMClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
30
|
+
>;
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
32
|
+
};
|
|
33
|
+
export declare class ListCloudConnectorsCommand extends ListCloudConnectorsCommand_base {
|
|
34
|
+
protected static __types: {
|
|
35
|
+
api: {
|
|
36
|
+
input: ListCloudConnectorsRequest;
|
|
37
|
+
output: ListCloudConnectorsResult;
|
|
38
|
+
};
|
|
39
|
+
sdk: {
|
|
40
|
+
input: ListCloudConnectorsCommandInput;
|
|
41
|
+
output: ListCloudConnectorsCommandOutput;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
UpdateCloudConnectorRequest,
|
|
4
|
+
UpdateCloudConnectorResult,
|
|
5
|
+
} from "../models/models_1";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface UpdateCloudConnectorCommandInput
|
|
8
|
+
extends UpdateCloudConnectorRequest {}
|
|
9
|
+
export interface UpdateCloudConnectorCommandOutput
|
|
10
|
+
extends UpdateCloudConnectorResult,
|
|
11
|
+
__MetadataBearer {}
|
|
12
|
+
declare const UpdateCloudConnectorCommand_base: {
|
|
13
|
+
new (
|
|
14
|
+
input: UpdateCloudConnectorCommandInput
|
|
15
|
+
): import("@smithy/core/client").CommandImpl<
|
|
16
|
+
UpdateCloudConnectorCommandInput,
|
|
17
|
+
UpdateCloudConnectorCommandOutput,
|
|
18
|
+
import("..").SSMClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
21
|
+
>;
|
|
22
|
+
new (
|
|
23
|
+
input: UpdateCloudConnectorCommandInput
|
|
24
|
+
): import("@smithy/core/client").CommandImpl<
|
|
25
|
+
UpdateCloudConnectorCommandInput,
|
|
26
|
+
UpdateCloudConnectorCommandOutput,
|
|
27
|
+
import("..").SSMClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
30
|
+
>;
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
32
|
+
};
|
|
33
|
+
export declare class UpdateCloudConnectorCommand extends UpdateCloudConnectorCommand_base {
|
|
34
|
+
protected static __types: {
|
|
35
|
+
api: {
|
|
36
|
+
input: UpdateCloudConnectorRequest;
|
|
37
|
+
output: UpdateCloudConnectorResult;
|
|
38
|
+
};
|
|
39
|
+
sdk: {
|
|
40
|
+
input: UpdateCloudConnectorCommandInput;
|
|
41
|
+
output: UpdateCloudConnectorCommandOutput;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ValidateCloudConnectorRequest,
|
|
4
|
+
ValidateCloudConnectorResult,
|
|
5
|
+
} from "../models/models_1";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface ValidateCloudConnectorCommandInput
|
|
8
|
+
extends ValidateCloudConnectorRequest {}
|
|
9
|
+
export interface ValidateCloudConnectorCommandOutput
|
|
10
|
+
extends ValidateCloudConnectorResult,
|
|
11
|
+
__MetadataBearer {}
|
|
12
|
+
declare const ValidateCloudConnectorCommand_base: {
|
|
13
|
+
new (
|
|
14
|
+
input: ValidateCloudConnectorCommandInput
|
|
15
|
+
): import("@smithy/core/client").CommandImpl<
|
|
16
|
+
ValidateCloudConnectorCommandInput,
|
|
17
|
+
ValidateCloudConnectorCommandOutput,
|
|
18
|
+
import("..").SSMClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
21
|
+
>;
|
|
22
|
+
new (
|
|
23
|
+
input: ValidateCloudConnectorCommandInput
|
|
24
|
+
): import("@smithy/core/client").CommandImpl<
|
|
25
|
+
ValidateCloudConnectorCommandInput,
|
|
26
|
+
ValidateCloudConnectorCommandOutput,
|
|
27
|
+
import("..").SSMClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
30
|
+
>;
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
32
|
+
};
|
|
33
|
+
export declare class ValidateCloudConnectorCommand extends ValidateCloudConnectorCommand_base {
|
|
34
|
+
protected static __types: {
|
|
35
|
+
api: {
|
|
36
|
+
input: ValidateCloudConnectorRequest;
|
|
37
|
+
output: ValidateCloudConnectorResult;
|
|
38
|
+
};
|
|
39
|
+
sdk: {
|
|
40
|
+
input: ValidateCloudConnectorCommandInput;
|
|
41
|
+
output: ValidateCloudConnectorCommandOutput;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
}
|
|
@@ -5,6 +5,7 @@ export * from "./CancelMaintenanceWindowExecutionCommand";
|
|
|
5
5
|
export * from "./CreateActivationCommand";
|
|
6
6
|
export * from "./CreateAssociationBatchCommand";
|
|
7
7
|
export * from "./CreateAssociationCommand";
|
|
8
|
+
export * from "./CreateCloudConnectorCommand";
|
|
8
9
|
export * from "./CreateDocumentCommand";
|
|
9
10
|
export * from "./CreateMaintenanceWindowCommand";
|
|
10
11
|
export * from "./CreateOpsItemCommand";
|
|
@@ -13,6 +14,7 @@ export * from "./CreatePatchBaselineCommand";
|
|
|
13
14
|
export * from "./CreateResourceDataSyncCommand";
|
|
14
15
|
export * from "./DeleteActivationCommand";
|
|
15
16
|
export * from "./DeleteAssociationCommand";
|
|
17
|
+
export * from "./DeleteCloudConnectorCommand";
|
|
16
18
|
export * from "./DeleteDocumentCommand";
|
|
17
19
|
export * from "./DeleteInventoryCommand";
|
|
18
20
|
export * from "./DeleteMaintenanceWindowCommand";
|
|
@@ -64,6 +66,7 @@ export * from "./DisassociateOpsItemRelatedItemCommand";
|
|
|
64
66
|
export * from "./GetAccessTokenCommand";
|
|
65
67
|
export * from "./GetAutomationExecutionCommand";
|
|
66
68
|
export * from "./GetCalendarStateCommand";
|
|
69
|
+
export * from "./GetCloudConnectorCommand";
|
|
67
70
|
export * from "./GetCommandInvocationCommand";
|
|
68
71
|
export * from "./GetConnectionStatusCommand";
|
|
69
72
|
export * from "./GetDefaultPatchBaselineCommand";
|
|
@@ -91,6 +94,7 @@ export * from "./GetServiceSettingCommand";
|
|
|
91
94
|
export * from "./LabelParameterVersionCommand";
|
|
92
95
|
export * from "./ListAssociationVersionsCommand";
|
|
93
96
|
export * from "./ListAssociationsCommand";
|
|
97
|
+
export * from "./ListCloudConnectorsCommand";
|
|
94
98
|
export * from "./ListCommandInvocationsCommand";
|
|
95
99
|
export * from "./ListCommandsCommand";
|
|
96
100
|
export * from "./ListComplianceItemsCommand";
|
|
@@ -132,6 +136,7 @@ export * from "./TerminateSessionCommand";
|
|
|
132
136
|
export * from "./UnlabelParameterVersionCommand";
|
|
133
137
|
export * from "./UpdateAssociationCommand";
|
|
134
138
|
export * from "./UpdateAssociationStatusCommand";
|
|
139
|
+
export * from "./UpdateCloudConnectorCommand";
|
|
135
140
|
export * from "./UpdateDocumentCommand";
|
|
136
141
|
export * from "./UpdateDocumentDefaultVersionCommand";
|
|
137
142
|
export * from "./UpdateDocumentMetadataCommand";
|
|
@@ -144,3 +149,4 @@ export * from "./UpdateOpsMetadataCommand";
|
|
|
144
149
|
export * from "./UpdatePatchBaselineCommand";
|
|
145
150
|
export * from "./UpdateResourceDataSyncCommand";
|
|
146
151
|
export * from "./UpdateServiceSettingCommand";
|
|
152
|
+
export * from "./ValidateCloudConnectorCommand";
|
|
@@ -15,6 +15,7 @@ export type AccessType = (typeof AccessType)[keyof typeof AccessType];
|
|
|
15
15
|
export declare const ResourceTypeForTagging: {
|
|
16
16
|
readonly ASSOCIATION: "Association";
|
|
17
17
|
readonly AUTOMATION: "Automation";
|
|
18
|
+
readonly CLOUD_CONNECTOR: "CloudConnector";
|
|
18
19
|
readonly DOCUMENT: "Document";
|
|
19
20
|
readonly MAINTENANCE_WINDOW: "MaintenanceWindow";
|
|
20
21
|
readonly MANAGED_INSTANCE: "ManagedInstance";
|
|
@@ -344,6 +345,7 @@ export declare const SourceType: {
|
|
|
344
345
|
readonly AWS_EC2_INSTANCE: "AWS::EC2::Instance";
|
|
345
346
|
readonly AWS_IOT_THING: "AWS::IoT::Thing";
|
|
346
347
|
readonly AWS_SSM_MANAGEDINSTANCE: "AWS::SSM::ManagedInstance";
|
|
348
|
+
readonly AZURE_INSTANCE: "Microsoft.Compute/virtualMachines";
|
|
347
349
|
};
|
|
348
350
|
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
349
351
|
export declare const PatchComplianceDataState: {
|
|
@@ -654,6 +656,7 @@ export type OpsFilterOperatorType =
|
|
|
654
656
|
export declare const AssociationFilterKey: {
|
|
655
657
|
readonly AssociationId: "AssociationId";
|
|
656
658
|
readonly AssociationName: "AssociationName";
|
|
659
|
+
readonly CloudConnectorId: "CloudConnectorId";
|
|
657
660
|
readonly InstanceId: "InstanceId";
|
|
658
661
|
readonly LastExecutedAfter: "LastExecutedAfter";
|
|
659
662
|
readonly LastExecutedBefore: "LastExecutedBefore";
|
|
@@ -663,6 +666,12 @@ export declare const AssociationFilterKey: {
|
|
|
663
666
|
};
|
|
664
667
|
export type AssociationFilterKey =
|
|
665
668
|
(typeof AssociationFilterKey)[keyof typeof AssociationFilterKey];
|
|
669
|
+
export declare const CloudConnectorFilterKey: {
|
|
670
|
+
readonly SubscriptionId: "SubscriptionId";
|
|
671
|
+
readonly TenantId: "TenantId";
|
|
672
|
+
};
|
|
673
|
+
export type CloudConnectorFilterKey =
|
|
674
|
+
(typeof CloudConnectorFilterKey)[keyof typeof CloudConnectorFilterKey];
|
|
666
675
|
export declare const CommandFilterKey: {
|
|
667
676
|
readonly DOCUMENT_NAME: "DocumentName";
|
|
668
677
|
readonly EXECUTION_STAGE: "ExecutionStage";
|
|
@@ -739,6 +748,8 @@ export declare const NodeFilterKey: {
|
|
|
739
748
|
readonly ACCOUNT_ID: "AccountId";
|
|
740
749
|
readonly AGENT_TYPE: "AgentType";
|
|
741
750
|
readonly AGENT_VERSION: "AgentVersion";
|
|
751
|
+
readonly AVAILABILITY_ZONE: "AvailabilityZone";
|
|
752
|
+
readonly AVAILABILITY_ZONE_ID: "AvailabilityZoneId";
|
|
742
753
|
readonly COMPUTER_NAME: "ComputerName";
|
|
743
754
|
readonly INSTANCE_ID: "InstanceId";
|
|
744
755
|
readonly INSTANCE_STATUS: "InstanceStatus";
|
|
@@ -751,6 +762,9 @@ export declare const NodeFilterKey: {
|
|
|
751
762
|
readonly PLATFORM_VERSION: "PlatformVersion";
|
|
752
763
|
readonly REGION: "Region";
|
|
753
764
|
readonly RESOURCE_TYPE: "ResourceType";
|
|
765
|
+
readonly SOURCE_ID: "SourceId";
|
|
766
|
+
readonly SOURCE_LOCATION: "SourceLocation";
|
|
767
|
+
readonly SOURCE_TYPE: "SourceType";
|
|
754
768
|
};
|
|
755
769
|
export type NodeFilterKey = (typeof NodeFilterKey)[keyof typeof NodeFilterKey];
|
|
756
770
|
export declare const NodeFilterOperatorType: {
|
|
@@ -773,11 +787,13 @@ export type NodeAggregatorType =
|
|
|
773
787
|
(typeof NodeAggregatorType)[keyof typeof NodeAggregatorType];
|
|
774
788
|
export declare const NodeAttributeName: {
|
|
775
789
|
readonly AGENT_VERSION: "AgentVersion";
|
|
790
|
+
readonly AVAILABILITY_ZONE: "AvailabilityZone";
|
|
776
791
|
readonly PLATFORM_NAME: "PlatformName";
|
|
777
792
|
readonly PLATFORM_TYPE: "PlatformType";
|
|
778
793
|
readonly PLATFORM_VERSION: "PlatformVersion";
|
|
779
794
|
readonly REGION: "Region";
|
|
780
795
|
readonly RESOURCE_TYPE: "ResourceType";
|
|
796
|
+
readonly SOURCE_TYPE: "SourceType";
|
|
781
797
|
};
|
|
782
798
|
export type NodeAttributeName =
|
|
783
799
|
(typeof NodeAttributeName)[keyof typeof NodeAttributeName];
|
|
@@ -842,3 +858,29 @@ export declare const DocumentReviewAction: {
|
|
|
842
858
|
};
|
|
843
859
|
export type DocumentReviewAction =
|
|
844
860
|
(typeof DocumentReviewAction)[keyof typeof DocumentReviewAction];
|
|
861
|
+
export declare const ValidationFindingCode: {
|
|
862
|
+
readonly AWS_ROLE_ASSUMPTION_FAILED: "AwsRoleAssumptionFailed";
|
|
863
|
+
readonly OUTBOUND_WEB_IDENTITY_FEDERATION_DISABLED: "OutboundWebIdentityFederationDisabled";
|
|
864
|
+
readonly PROVIDER_CREDENTIAL_CREATION_FAILED: "ProviderCredentialCreationFailed";
|
|
865
|
+
readonly SUBSCRIPTION_ACCESSIBLE: "SubscriptionAccessible";
|
|
866
|
+
readonly TARGET_INACCESSIBLE: "TargetInaccessible";
|
|
867
|
+
readonly TARGET_STATE_WARNING: "TargetStateWarning";
|
|
868
|
+
readonly TARGET_UNUSABLE: "TargetUnusable";
|
|
869
|
+
readonly TENANT_SUMMARY: "TenantSummary";
|
|
870
|
+
readonly WEB_IDENTITY_TOKEN_FAILED: "WebIdentityTokenFailed";
|
|
871
|
+
};
|
|
872
|
+
export type ValidationFindingCode =
|
|
873
|
+
(typeof ValidationFindingCode)[keyof typeof ValidationFindingCode];
|
|
874
|
+
export declare const ValidationFindingScopeType: {
|
|
875
|
+
readonly AZURE_SUBSCRIPTION: "azure:subscription";
|
|
876
|
+
readonly AZURE_TENANT: "azure:tenant";
|
|
877
|
+
};
|
|
878
|
+
export type ValidationFindingScopeType =
|
|
879
|
+
(typeof ValidationFindingScopeType)[keyof typeof ValidationFindingScopeType];
|
|
880
|
+
export declare const ValidationFindingType: {
|
|
881
|
+
readonly ERROR: "ERROR";
|
|
882
|
+
readonly INFO: "INFO";
|
|
883
|
+
readonly WARN: "WARN";
|
|
884
|
+
};
|
|
885
|
+
export type ValidationFindingType =
|
|
886
|
+
(typeof ValidationFindingType)[keyof typeof ValidationFindingType];
|
|
@@ -198,6 +198,24 @@ export declare class UnsupportedPlatformType extends __BaseException {
|
|
|
198
198
|
opts: __ExceptionOptionType<UnsupportedPlatformType, __BaseException>
|
|
199
199
|
);
|
|
200
200
|
}
|
|
201
|
+
export declare class ConflictException extends __BaseException {
|
|
202
|
+
readonly name: "ConflictException";
|
|
203
|
+
readonly $fault: "client";
|
|
204
|
+
Message?: string | undefined;
|
|
205
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
206
|
+
}
|
|
207
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
208
|
+
readonly name: "ServiceQuotaExceededException";
|
|
209
|
+
readonly $fault: "client";
|
|
210
|
+
Message: string | undefined;
|
|
211
|
+
ResourceId?: string | undefined;
|
|
212
|
+
ResourceType?: string | undefined;
|
|
213
|
+
QuotaCode: string | undefined;
|
|
214
|
+
ServiceCode: string | undefined;
|
|
215
|
+
constructor(
|
|
216
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
217
|
+
);
|
|
218
|
+
}
|
|
201
219
|
export declare class DocumentAlreadyExists extends __BaseException {
|
|
202
220
|
readonly name: "DocumentAlreadyExists";
|
|
203
221
|
readonly $fault: "client";
|
|
@@ -374,6 +392,14 @@ export declare class AssociationDoesNotExist extends __BaseException {
|
|
|
374
392
|
opts: __ExceptionOptionType<AssociationDoesNotExist, __BaseException>
|
|
375
393
|
);
|
|
376
394
|
}
|
|
395
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
396
|
+
readonly name: "ResourceNotFoundException";
|
|
397
|
+
readonly $fault: "client";
|
|
398
|
+
Message?: string | undefined;
|
|
399
|
+
constructor(
|
|
400
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
401
|
+
);
|
|
402
|
+
}
|
|
377
403
|
export declare class AssociatedInstances extends __BaseException {
|
|
378
404
|
readonly name: "AssociatedInstances";
|
|
379
405
|
readonly $fault: "client";
|
|
@@ -471,14 +497,6 @@ export declare class MalformedResourcePolicyDocumentException extends __BaseExce
|
|
|
471
497
|
>
|
|
472
498
|
);
|
|
473
499
|
}
|
|
474
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
475
|
-
readonly name: "ResourceNotFoundException";
|
|
476
|
-
readonly $fault: "client";
|
|
477
|
-
Message?: string | undefined;
|
|
478
|
-
constructor(
|
|
479
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
480
|
-
);
|
|
481
|
-
}
|
|
482
500
|
export declare class ResourcePolicyConflictException extends __BaseException {
|
|
483
501
|
readonly name: "ResourcePolicyConflictException";
|
|
484
502
|
readonly $fault: "client";
|
|
@@ -1032,18 +1050,6 @@ export declare class InvalidRole extends __BaseException {
|
|
|
1032
1050
|
Message?: string | undefined;
|
|
1033
1051
|
constructor(opts: __ExceptionOptionType<InvalidRole, __BaseException>);
|
|
1034
1052
|
}
|
|
1035
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
1036
|
-
readonly name: "ServiceQuotaExceededException";
|
|
1037
|
-
readonly $fault: "client";
|
|
1038
|
-
Message: string | undefined;
|
|
1039
|
-
ResourceId?: string | undefined;
|
|
1040
|
-
ResourceType?: string | undefined;
|
|
1041
|
-
QuotaCode: string | undefined;
|
|
1042
|
-
ServiceCode: string | undefined;
|
|
1043
|
-
constructor(
|
|
1044
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
1045
|
-
);
|
|
1046
|
-
}
|
|
1047
1053
|
export declare class InvalidAssociation extends __BaseException {
|
|
1048
1054
|
readonly name: "InvalidAssociation";
|
|
1049
1055
|
readonly $fault: "client";
|
|
@@ -277,6 +277,62 @@ export interface CreateAssociationBatchResult {
|
|
|
277
277
|
Successful?: AssociationDescription[] | undefined;
|
|
278
278
|
Failed?: FailedCreateAssociation[] | undefined;
|
|
279
279
|
}
|
|
280
|
+
export interface AzureSubscription {
|
|
281
|
+
Id: string | undefined;
|
|
282
|
+
DisplayName?: string | undefined;
|
|
283
|
+
}
|
|
284
|
+
export type ConfigurationTargets =
|
|
285
|
+
| ConfigurationTargets.SubscriptionsMember
|
|
286
|
+
| ConfigurationTargets.$UnknownMember;
|
|
287
|
+
export declare namespace ConfigurationTargets {
|
|
288
|
+
interface SubscriptionsMember {
|
|
289
|
+
Subscriptions: AzureSubscription[];
|
|
290
|
+
$unknown?: never;
|
|
291
|
+
}
|
|
292
|
+
interface $UnknownMember {
|
|
293
|
+
Subscriptions?: never;
|
|
294
|
+
$unknown: [string, any];
|
|
295
|
+
}
|
|
296
|
+
interface Visitor<T> {
|
|
297
|
+
Subscriptions: (value: AzureSubscription[]) => T;
|
|
298
|
+
_: (name: string, value: any) => T;
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
export interface AzureConfiguration {
|
|
302
|
+
TenantId: string | undefined;
|
|
303
|
+
TenantDisplayName?: string | undefined;
|
|
304
|
+
ApplicationId: string | undefined;
|
|
305
|
+
ApplicationDisplayName?: string | undefined;
|
|
306
|
+
Targets?: ConfigurationTargets | undefined;
|
|
307
|
+
}
|
|
308
|
+
export type CloudConnectorConfiguration =
|
|
309
|
+
| CloudConnectorConfiguration.AzureConfigurationMember
|
|
310
|
+
| CloudConnectorConfiguration.$UnknownMember;
|
|
311
|
+
export declare namespace CloudConnectorConfiguration {
|
|
312
|
+
interface AzureConfigurationMember {
|
|
313
|
+
AzureConfiguration: AzureConfiguration;
|
|
314
|
+
$unknown?: never;
|
|
315
|
+
}
|
|
316
|
+
interface $UnknownMember {
|
|
317
|
+
AzureConfiguration?: never;
|
|
318
|
+
$unknown: [string, any];
|
|
319
|
+
}
|
|
320
|
+
interface Visitor<T> {
|
|
321
|
+
AzureConfiguration: (value: AzureConfiguration) => T;
|
|
322
|
+
_: (name: string, value: any) => T;
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
export interface CreateCloudConnectorRequest {
|
|
326
|
+
DisplayName: string | undefined;
|
|
327
|
+
RoleArn: string | undefined;
|
|
328
|
+
Description?: string | undefined;
|
|
329
|
+
Configuration: CloudConnectorConfiguration | undefined;
|
|
330
|
+
ConfigConnectorArn: string | undefined;
|
|
331
|
+
Tags?: Tag[] | undefined;
|
|
332
|
+
}
|
|
333
|
+
export interface CreateCloudConnectorResult {
|
|
334
|
+
CloudConnectorId?: string | undefined;
|
|
335
|
+
}
|
|
280
336
|
export interface AttachmentsSource {
|
|
281
337
|
Key?: AttachmentsSourceKey | undefined;
|
|
282
338
|
Values?: string[] | undefined;
|
|
@@ -492,6 +548,12 @@ export interface DeleteAssociationRequest {
|
|
|
492
548
|
AssociationId?: string | undefined;
|
|
493
549
|
}
|
|
494
550
|
export interface DeleteAssociationResult {}
|
|
551
|
+
export interface DeleteCloudConnectorRequest {
|
|
552
|
+
CloudConnectorId: string | undefined;
|
|
553
|
+
}
|
|
554
|
+
export interface DeleteCloudConnectorResult {
|
|
555
|
+
CloudConnectorId?: string | undefined;
|
|
556
|
+
}
|
|
495
557
|
export interface DeleteDocumentRequest {
|
|
496
558
|
Name: string | undefined;
|
|
497
559
|
DocumentVersion?: string | undefined;
|
|
@@ -943,6 +1005,7 @@ export interface InstanceInformation {
|
|
|
943
1005
|
AssociationOverview?: InstanceAggregatedAssociationOverview | undefined;
|
|
944
1006
|
SourceId?: string | undefined;
|
|
945
1007
|
SourceType?: SourceType | undefined;
|
|
1008
|
+
SourceLocation?: string | undefined;
|
|
946
1009
|
}
|
|
947
1010
|
export interface DescribeInstanceInformationResult {
|
|
948
1011
|
InstanceInformationList?: InstanceInformation[] | undefined;
|
|
@@ -1058,6 +1121,8 @@ export interface InstanceProperty {
|
|
|
1058
1121
|
AssociationOverview?: InstanceAggregatedAssociationOverview | undefined;
|
|
1059
1122
|
SourceId?: string | undefined;
|
|
1060
1123
|
SourceType?: SourceType | undefined;
|
|
1124
|
+
SourceLocation?: string | undefined;
|
|
1125
|
+
AvailabilityZone?: string | undefined;
|
|
1061
1126
|
}
|
|
1062
1127
|
export interface DescribeInstancePropertiesResult {
|
|
1063
1128
|
InstanceProperties?: InstanceProperty[] | undefined;
|
|
@@ -1503,6 +1568,19 @@ export interface GetCalendarStateResponse {
|
|
|
1503
1568
|
AtTime?: string | undefined;
|
|
1504
1569
|
NextTransitionTime?: string | undefined;
|
|
1505
1570
|
}
|
|
1571
|
+
export interface GetCloudConnectorRequest {
|
|
1572
|
+
CloudConnectorId: string | undefined;
|
|
1573
|
+
}
|
|
1574
|
+
export interface GetCloudConnectorResult {
|
|
1575
|
+
CloudConnectorArn?: string | undefined;
|
|
1576
|
+
DisplayName?: string | undefined;
|
|
1577
|
+
Description?: string | undefined;
|
|
1578
|
+
RoleArn?: string | undefined;
|
|
1579
|
+
Configuration?: CloudConnectorConfiguration | undefined;
|
|
1580
|
+
ConfigConnectorArn?: string | undefined;
|
|
1581
|
+
CreatedAt?: Date | undefined;
|
|
1582
|
+
UpdatedAt?: Date | undefined;
|
|
1583
|
+
}
|
|
1506
1584
|
export interface GetCommandInvocationRequest {
|
|
1507
1585
|
CommandId: string | undefined;
|
|
1508
1586
|
InstanceId: string | undefined;
|
|
@@ -1930,62 +2008,3 @@ export interface GetParametersResult {
|
|
|
1930
2008
|
Parameters?: Parameter[] | undefined;
|
|
1931
2009
|
InvalidParameters?: string[] | undefined;
|
|
1932
2010
|
}
|
|
1933
|
-
export interface GetParametersByPathRequest {
|
|
1934
|
-
Path: string | undefined;
|
|
1935
|
-
Recursive?: boolean | undefined;
|
|
1936
|
-
ParameterFilters?: ParameterStringFilter[] | undefined;
|
|
1937
|
-
WithDecryption?: boolean | undefined;
|
|
1938
|
-
MaxResults?: number | undefined;
|
|
1939
|
-
NextToken?: string | undefined;
|
|
1940
|
-
}
|
|
1941
|
-
export interface GetParametersByPathResult {
|
|
1942
|
-
Parameters?: Parameter[] | undefined;
|
|
1943
|
-
NextToken?: string | undefined;
|
|
1944
|
-
}
|
|
1945
|
-
export interface GetPatchBaselineRequest {
|
|
1946
|
-
BaselineId: string | undefined;
|
|
1947
|
-
}
|
|
1948
|
-
export interface GetPatchBaselineResult {
|
|
1949
|
-
BaselineId?: string | undefined;
|
|
1950
|
-
Name?: string | undefined;
|
|
1951
|
-
OperatingSystem?: OperatingSystem | undefined;
|
|
1952
|
-
GlobalFilters?: PatchFilterGroup | undefined;
|
|
1953
|
-
ApprovalRules?: PatchRuleGroup | undefined;
|
|
1954
|
-
ApprovedPatches?: string[] | undefined;
|
|
1955
|
-
ApprovedPatchesComplianceLevel?: PatchComplianceLevel | undefined;
|
|
1956
|
-
ApprovedPatchesEnableNonSecurity?: boolean | undefined;
|
|
1957
|
-
RejectedPatches?: string[] | undefined;
|
|
1958
|
-
RejectedPatchesAction?: PatchAction | undefined;
|
|
1959
|
-
PatchGroups?: string[] | undefined;
|
|
1960
|
-
CreatedDate?: Date | undefined;
|
|
1961
|
-
ModifiedDate?: Date | undefined;
|
|
1962
|
-
Description?: string | undefined;
|
|
1963
|
-
Sources?: PatchSource[] | undefined;
|
|
1964
|
-
AvailableSecurityUpdatesComplianceStatus?: PatchComplianceStatus | undefined;
|
|
1965
|
-
}
|
|
1966
|
-
export interface GetPatchBaselineForPatchGroupRequest {
|
|
1967
|
-
PatchGroup: string | undefined;
|
|
1968
|
-
OperatingSystem?: OperatingSystem | undefined;
|
|
1969
|
-
}
|
|
1970
|
-
export interface GetPatchBaselineForPatchGroupResult {
|
|
1971
|
-
BaselineId?: string | undefined;
|
|
1972
|
-
PatchGroup?: string | undefined;
|
|
1973
|
-
OperatingSystem?: OperatingSystem | undefined;
|
|
1974
|
-
}
|
|
1975
|
-
export interface GetResourcePoliciesRequest {
|
|
1976
|
-
ResourceArn: string | undefined;
|
|
1977
|
-
NextToken?: string | undefined;
|
|
1978
|
-
MaxResults?: number | undefined;
|
|
1979
|
-
}
|
|
1980
|
-
export interface GetResourcePoliciesResponseEntry {
|
|
1981
|
-
PolicyId?: string | undefined;
|
|
1982
|
-
PolicyHash?: string | undefined;
|
|
1983
|
-
Policy?: string | undefined;
|
|
1984
|
-
}
|
|
1985
|
-
export interface GetResourcePoliciesResponse {
|
|
1986
|
-
NextToken?: string | undefined;
|
|
1987
|
-
Policies?: GetResourcePoliciesResponseEntry[] | undefined;
|
|
1988
|
-
}
|
|
1989
|
-
export interface GetServiceSettingRequest {
|
|
1990
|
-
SettingId: string | undefined;
|
|
1991
|
-
}
|