@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
package/dist-es/SSM.js
CHANGED
|
@@ -6,6 +6,7 @@ import { CancelMaintenanceWindowExecutionCommand, } from "./commands/CancelMaint
|
|
|
6
6
|
import { CreateActivationCommand, } from "./commands/CreateActivationCommand";
|
|
7
7
|
import { CreateAssociationBatchCommand, } from "./commands/CreateAssociationBatchCommand";
|
|
8
8
|
import { CreateAssociationCommand, } from "./commands/CreateAssociationCommand";
|
|
9
|
+
import { CreateCloudConnectorCommand, } from "./commands/CreateCloudConnectorCommand";
|
|
9
10
|
import { CreateDocumentCommand, } from "./commands/CreateDocumentCommand";
|
|
10
11
|
import { CreateMaintenanceWindowCommand, } from "./commands/CreateMaintenanceWindowCommand";
|
|
11
12
|
import { CreateOpsItemCommand, } from "./commands/CreateOpsItemCommand";
|
|
@@ -14,6 +15,7 @@ import { CreatePatchBaselineCommand, } from "./commands/CreatePatchBaselineComma
|
|
|
14
15
|
import { CreateResourceDataSyncCommand, } from "./commands/CreateResourceDataSyncCommand";
|
|
15
16
|
import { DeleteActivationCommand, } from "./commands/DeleteActivationCommand";
|
|
16
17
|
import { DeleteAssociationCommand, } from "./commands/DeleteAssociationCommand";
|
|
18
|
+
import { DeleteCloudConnectorCommand, } from "./commands/DeleteCloudConnectorCommand";
|
|
17
19
|
import { DeleteDocumentCommand, } from "./commands/DeleteDocumentCommand";
|
|
18
20
|
import { DeleteInventoryCommand, } from "./commands/DeleteInventoryCommand";
|
|
19
21
|
import { DeleteMaintenanceWindowCommand, } from "./commands/DeleteMaintenanceWindowCommand";
|
|
@@ -65,6 +67,7 @@ import { DisassociateOpsItemRelatedItemCommand, } from "./commands/DisassociateO
|
|
|
65
67
|
import { GetAccessTokenCommand, } from "./commands/GetAccessTokenCommand";
|
|
66
68
|
import { GetAutomationExecutionCommand, } from "./commands/GetAutomationExecutionCommand";
|
|
67
69
|
import { GetCalendarStateCommand, } from "./commands/GetCalendarStateCommand";
|
|
70
|
+
import { GetCloudConnectorCommand, } from "./commands/GetCloudConnectorCommand";
|
|
68
71
|
import { GetCommandInvocationCommand, } from "./commands/GetCommandInvocationCommand";
|
|
69
72
|
import { GetConnectionStatusCommand, } from "./commands/GetConnectionStatusCommand";
|
|
70
73
|
import { GetDefaultPatchBaselineCommand, } from "./commands/GetDefaultPatchBaselineCommand";
|
|
@@ -92,6 +95,7 @@ import { GetServiceSettingCommand, } from "./commands/GetServiceSettingCommand";
|
|
|
92
95
|
import { LabelParameterVersionCommand, } from "./commands/LabelParameterVersionCommand";
|
|
93
96
|
import { ListAssociationsCommand, } from "./commands/ListAssociationsCommand";
|
|
94
97
|
import { ListAssociationVersionsCommand, } from "./commands/ListAssociationVersionsCommand";
|
|
98
|
+
import { ListCloudConnectorsCommand, } from "./commands/ListCloudConnectorsCommand";
|
|
95
99
|
import { ListCommandInvocationsCommand, } from "./commands/ListCommandInvocationsCommand";
|
|
96
100
|
import { ListCommandsCommand, } from "./commands/ListCommandsCommand";
|
|
97
101
|
import { ListComplianceItemsCommand, } from "./commands/ListComplianceItemsCommand";
|
|
@@ -133,6 +137,7 @@ import { TerminateSessionCommand, } from "./commands/TerminateSessionCommand";
|
|
|
133
137
|
import { UnlabelParameterVersionCommand, } from "./commands/UnlabelParameterVersionCommand";
|
|
134
138
|
import { UpdateAssociationCommand, } from "./commands/UpdateAssociationCommand";
|
|
135
139
|
import { UpdateAssociationStatusCommand, } from "./commands/UpdateAssociationStatusCommand";
|
|
140
|
+
import { UpdateCloudConnectorCommand, } from "./commands/UpdateCloudConnectorCommand";
|
|
136
141
|
import { UpdateDocumentCommand, } from "./commands/UpdateDocumentCommand";
|
|
137
142
|
import { UpdateDocumentDefaultVersionCommand, } from "./commands/UpdateDocumentDefaultVersionCommand";
|
|
138
143
|
import { UpdateDocumentMetadataCommand, } from "./commands/UpdateDocumentMetadataCommand";
|
|
@@ -145,6 +150,7 @@ import { UpdateOpsMetadataCommand, } from "./commands/UpdateOpsMetadataCommand";
|
|
|
145
150
|
import { UpdatePatchBaselineCommand, } from "./commands/UpdatePatchBaselineCommand";
|
|
146
151
|
import { UpdateResourceDataSyncCommand, } from "./commands/UpdateResourceDataSyncCommand";
|
|
147
152
|
import { UpdateServiceSettingCommand, } from "./commands/UpdateServiceSettingCommand";
|
|
153
|
+
import { ValidateCloudConnectorCommand, } from "./commands/ValidateCloudConnectorCommand";
|
|
148
154
|
import { paginateDescribeActivations } from "./pagination/DescribeActivationsPaginator";
|
|
149
155
|
import { paginateDescribeAssociationExecutions } from "./pagination/DescribeAssociationExecutionsPaginator";
|
|
150
156
|
import { paginateDescribeAssociationExecutionTargets } from "./pagination/DescribeAssociationExecutionTargetsPaginator";
|
|
@@ -182,6 +188,7 @@ import { paginateGetParametersByPath } from "./pagination/GetParametersByPathPag
|
|
|
182
188
|
import { paginateGetResourcePolicies } from "./pagination/GetResourcePoliciesPaginator";
|
|
183
189
|
import { paginateListAssociations } from "./pagination/ListAssociationsPaginator";
|
|
184
190
|
import { paginateListAssociationVersions } from "./pagination/ListAssociationVersionsPaginator";
|
|
191
|
+
import { paginateListCloudConnectors } from "./pagination/ListCloudConnectorsPaginator";
|
|
185
192
|
import { paginateListCommandInvocations } from "./pagination/ListCommandInvocationsPaginator";
|
|
186
193
|
import { paginateListCommands } from "./pagination/ListCommandsPaginator";
|
|
187
194
|
import { paginateListComplianceItems } from "./pagination/ListComplianceItemsPaginator";
|
|
@@ -195,6 +202,7 @@ import { paginateListOpsItemRelatedItems } from "./pagination/ListOpsItemRelated
|
|
|
195
202
|
import { paginateListOpsMetadata } from "./pagination/ListOpsMetadataPaginator";
|
|
196
203
|
import { paginateListResourceComplianceSummaries } from "./pagination/ListResourceComplianceSummariesPaginator";
|
|
197
204
|
import { paginateListResourceDataSync } from "./pagination/ListResourceDataSyncPaginator";
|
|
205
|
+
import { paginateValidateCloudConnector } from "./pagination/ValidateCloudConnectorPaginator";
|
|
198
206
|
import { SSMClient } from "./SSMClient";
|
|
199
207
|
import { waitUntilCommandExecuted } from "./waiters/waitForCommandExecuted";
|
|
200
208
|
const commands = {
|
|
@@ -205,6 +213,7 @@ const commands = {
|
|
|
205
213
|
CreateActivationCommand,
|
|
206
214
|
CreateAssociationCommand,
|
|
207
215
|
CreateAssociationBatchCommand,
|
|
216
|
+
CreateCloudConnectorCommand,
|
|
208
217
|
CreateDocumentCommand,
|
|
209
218
|
CreateMaintenanceWindowCommand,
|
|
210
219
|
CreateOpsItemCommand,
|
|
@@ -213,6 +222,7 @@ const commands = {
|
|
|
213
222
|
CreateResourceDataSyncCommand,
|
|
214
223
|
DeleteActivationCommand,
|
|
215
224
|
DeleteAssociationCommand,
|
|
225
|
+
DeleteCloudConnectorCommand,
|
|
216
226
|
DeleteDocumentCommand,
|
|
217
227
|
DeleteInventoryCommand,
|
|
218
228
|
DeleteMaintenanceWindowCommand,
|
|
@@ -264,6 +274,7 @@ const commands = {
|
|
|
264
274
|
GetAccessTokenCommand,
|
|
265
275
|
GetAutomationExecutionCommand,
|
|
266
276
|
GetCalendarStateCommand,
|
|
277
|
+
GetCloudConnectorCommand,
|
|
267
278
|
GetCommandInvocationCommand,
|
|
268
279
|
GetConnectionStatusCommand,
|
|
269
280
|
GetDefaultPatchBaselineCommand,
|
|
@@ -291,6 +302,7 @@ const commands = {
|
|
|
291
302
|
LabelParameterVersionCommand,
|
|
292
303
|
ListAssociationsCommand,
|
|
293
304
|
ListAssociationVersionsCommand,
|
|
305
|
+
ListCloudConnectorsCommand,
|
|
294
306
|
ListCommandInvocationsCommand,
|
|
295
307
|
ListCommandsCommand,
|
|
296
308
|
ListComplianceItemsCommand,
|
|
@@ -332,6 +344,7 @@ const commands = {
|
|
|
332
344
|
UnlabelParameterVersionCommand,
|
|
333
345
|
UpdateAssociationCommand,
|
|
334
346
|
UpdateAssociationStatusCommand,
|
|
347
|
+
UpdateCloudConnectorCommand,
|
|
335
348
|
UpdateDocumentCommand,
|
|
336
349
|
UpdateDocumentDefaultVersionCommand,
|
|
337
350
|
UpdateDocumentMetadataCommand,
|
|
@@ -344,6 +357,7 @@ const commands = {
|
|
|
344
357
|
UpdatePatchBaselineCommand,
|
|
345
358
|
UpdateResourceDataSyncCommand,
|
|
346
359
|
UpdateServiceSettingCommand,
|
|
360
|
+
ValidateCloudConnectorCommand,
|
|
347
361
|
};
|
|
348
362
|
const paginators = {
|
|
349
363
|
paginateDescribeActivations,
|
|
@@ -383,6 +397,7 @@ const paginators = {
|
|
|
383
397
|
paginateGetResourcePolicies,
|
|
384
398
|
paginateListAssociations,
|
|
385
399
|
paginateListAssociationVersions,
|
|
400
|
+
paginateListCloudConnectors,
|
|
386
401
|
paginateListCommandInvocations,
|
|
387
402
|
paginateListCommands,
|
|
388
403
|
paginateListComplianceItems,
|
|
@@ -396,6 +411,7 @@ const paginators = {
|
|
|
396
411
|
paginateListOpsMetadata,
|
|
397
412
|
paginateListResourceComplianceSummaries,
|
|
398
413
|
paginateListResourceDataSync,
|
|
414
|
+
paginateValidateCloudConnector,
|
|
399
415
|
};
|
|
400
416
|
const waiters = {
|
|
401
417
|
waitUntilCommandExecuted,
|
|
@@ -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";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -12,6 +12,7 @@ export const AccessType = {
|
|
|
12
12
|
export const ResourceTypeForTagging = {
|
|
13
13
|
ASSOCIATION: "Association",
|
|
14
14
|
AUTOMATION: "Automation",
|
|
15
|
+
CLOUD_CONNECTOR: "CloudConnector",
|
|
15
16
|
DOCUMENT: "Document",
|
|
16
17
|
MAINTENANCE_WINDOW: "MaintenanceWindow",
|
|
17
18
|
MANAGED_INSTANCE: "ManagedInstance",
|
|
@@ -275,6 +276,7 @@ export const SourceType = {
|
|
|
275
276
|
AWS_EC2_INSTANCE: "AWS::EC2::Instance",
|
|
276
277
|
AWS_IOT_THING: "AWS::IoT::Thing",
|
|
277
278
|
AWS_SSM_MANAGEDINSTANCE: "AWS::SSM::ManagedInstance",
|
|
279
|
+
AZURE_INSTANCE: "Microsoft.Compute/virtualMachines",
|
|
278
280
|
};
|
|
279
281
|
export const PatchComplianceDataState = {
|
|
280
282
|
AvailableSecurityUpdate: "AVAILABLE_SECURITY_UPDATE",
|
|
@@ -528,6 +530,7 @@ export const OpsFilterOperatorType = {
|
|
|
528
530
|
export const AssociationFilterKey = {
|
|
529
531
|
AssociationId: "AssociationId",
|
|
530
532
|
AssociationName: "AssociationName",
|
|
533
|
+
CloudConnectorId: "CloudConnectorId",
|
|
531
534
|
InstanceId: "InstanceId",
|
|
532
535
|
LastExecutedAfter: "LastExecutedAfter",
|
|
533
536
|
LastExecutedBefore: "LastExecutedBefore",
|
|
@@ -535,6 +538,10 @@ export const AssociationFilterKey = {
|
|
|
535
538
|
ResourceGroupName: "ResourceGroupName",
|
|
536
539
|
Status: "AssociationStatusName",
|
|
537
540
|
};
|
|
541
|
+
export const CloudConnectorFilterKey = {
|
|
542
|
+
SubscriptionId: "SubscriptionId",
|
|
543
|
+
TenantId: "TenantId",
|
|
544
|
+
};
|
|
538
545
|
export const CommandFilterKey = {
|
|
539
546
|
DOCUMENT_NAME: "DocumentName",
|
|
540
547
|
EXECUTION_STAGE: "ExecutionStage",
|
|
@@ -594,6 +601,8 @@ export const NodeFilterKey = {
|
|
|
594
601
|
ACCOUNT_ID: "AccountId",
|
|
595
602
|
AGENT_TYPE: "AgentType",
|
|
596
603
|
AGENT_VERSION: "AgentVersion",
|
|
604
|
+
AVAILABILITY_ZONE: "AvailabilityZone",
|
|
605
|
+
AVAILABILITY_ZONE_ID: "AvailabilityZoneId",
|
|
597
606
|
COMPUTER_NAME: "ComputerName",
|
|
598
607
|
INSTANCE_ID: "InstanceId",
|
|
599
608
|
INSTANCE_STATUS: "InstanceStatus",
|
|
@@ -606,6 +615,9 @@ export const NodeFilterKey = {
|
|
|
606
615
|
PLATFORM_VERSION: "PlatformVersion",
|
|
607
616
|
REGION: "Region",
|
|
608
617
|
RESOURCE_TYPE: "ResourceType",
|
|
618
|
+
SOURCE_ID: "SourceId",
|
|
619
|
+
SOURCE_LOCATION: "SourceLocation",
|
|
620
|
+
SOURCE_TYPE: "SourceType",
|
|
609
621
|
};
|
|
610
622
|
export const NodeFilterOperatorType = {
|
|
611
623
|
BEGIN_WITH: "BeginWith",
|
|
@@ -622,11 +634,13 @@ export const NodeAggregatorType = {
|
|
|
622
634
|
};
|
|
623
635
|
export const NodeAttributeName = {
|
|
624
636
|
AGENT_VERSION: "AgentVersion",
|
|
637
|
+
AVAILABILITY_ZONE: "AvailabilityZone",
|
|
625
638
|
PLATFORM_NAME: "PlatformName",
|
|
626
639
|
PLATFORM_TYPE: "PlatformType",
|
|
627
640
|
PLATFORM_VERSION: "PlatformVersion",
|
|
628
641
|
REGION: "Region",
|
|
629
642
|
RESOURCE_TYPE: "ResourceType",
|
|
643
|
+
SOURCE_TYPE: "SourceType",
|
|
630
644
|
};
|
|
631
645
|
export const NodeTypeName = {
|
|
632
646
|
INSTANCE: "Instance",
|
|
@@ -672,3 +686,23 @@ export const DocumentReviewAction = {
|
|
|
672
686
|
SendForReview: "SendForReview",
|
|
673
687
|
UpdateReview: "UpdateReview",
|
|
674
688
|
};
|
|
689
|
+
export const ValidationFindingCode = {
|
|
690
|
+
AWS_ROLE_ASSUMPTION_FAILED: "AwsRoleAssumptionFailed",
|
|
691
|
+
OUTBOUND_WEB_IDENTITY_FEDERATION_DISABLED: "OutboundWebIdentityFederationDisabled",
|
|
692
|
+
PROVIDER_CREDENTIAL_CREATION_FAILED: "ProviderCredentialCreationFailed",
|
|
693
|
+
SUBSCRIPTION_ACCESSIBLE: "SubscriptionAccessible",
|
|
694
|
+
TARGET_INACCESSIBLE: "TargetInaccessible",
|
|
695
|
+
TARGET_STATE_WARNING: "TargetStateWarning",
|
|
696
|
+
TARGET_UNUSABLE: "TargetUnusable",
|
|
697
|
+
TENANT_SUMMARY: "TenantSummary",
|
|
698
|
+
WEB_IDENTITY_TOKEN_FAILED: "WebIdentityTokenFailed",
|
|
699
|
+
};
|
|
700
|
+
export const ValidationFindingScopeType = {
|
|
701
|
+
AZURE_SUBSCRIPTION: "azure:subscription",
|
|
702
|
+
AZURE_TENANT: "azure:tenant",
|
|
703
|
+
};
|
|
704
|
+
export const ValidationFindingType = {
|
|
705
|
+
ERROR: "ERROR",
|
|
706
|
+
INFO: "INFO",
|
|
707
|
+
WARN: "WARN",
|
|
708
|
+
};
|
package/dist-es/models/errors.js
CHANGED
|
@@ -373,6 +373,42 @@ export class UnsupportedPlatformType extends __BaseException {
|
|
|
373
373
|
this.Message = opts.Message;
|
|
374
374
|
}
|
|
375
375
|
}
|
|
376
|
+
export class ConflictException extends __BaseException {
|
|
377
|
+
name = "ConflictException";
|
|
378
|
+
$fault = "client";
|
|
379
|
+
Message;
|
|
380
|
+
constructor(opts) {
|
|
381
|
+
super({
|
|
382
|
+
name: "ConflictException",
|
|
383
|
+
$fault: "client",
|
|
384
|
+
...opts,
|
|
385
|
+
});
|
|
386
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
387
|
+
this.Message = opts.Message;
|
|
388
|
+
}
|
|
389
|
+
}
|
|
390
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
391
|
+
name = "ServiceQuotaExceededException";
|
|
392
|
+
$fault = "client";
|
|
393
|
+
Message;
|
|
394
|
+
ResourceId;
|
|
395
|
+
ResourceType;
|
|
396
|
+
QuotaCode;
|
|
397
|
+
ServiceCode;
|
|
398
|
+
constructor(opts) {
|
|
399
|
+
super({
|
|
400
|
+
name: "ServiceQuotaExceededException",
|
|
401
|
+
$fault: "client",
|
|
402
|
+
...opts,
|
|
403
|
+
});
|
|
404
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
405
|
+
this.Message = opts.Message;
|
|
406
|
+
this.ResourceId = opts.ResourceId;
|
|
407
|
+
this.ResourceType = opts.ResourceType;
|
|
408
|
+
this.QuotaCode = opts.QuotaCode;
|
|
409
|
+
this.ServiceCode = opts.ServiceCode;
|
|
410
|
+
}
|
|
411
|
+
}
|
|
376
412
|
export class DocumentAlreadyExists extends __BaseException {
|
|
377
413
|
name = "DocumentAlreadyExists";
|
|
378
414
|
$fault = "client";
|
|
@@ -647,6 +683,20 @@ export class AssociationDoesNotExist extends __BaseException {
|
|
|
647
683
|
this.Message = opts.Message;
|
|
648
684
|
}
|
|
649
685
|
}
|
|
686
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
687
|
+
name = "ResourceNotFoundException";
|
|
688
|
+
$fault = "client";
|
|
689
|
+
Message;
|
|
690
|
+
constructor(opts) {
|
|
691
|
+
super({
|
|
692
|
+
name: "ResourceNotFoundException",
|
|
693
|
+
$fault: "client",
|
|
694
|
+
...opts,
|
|
695
|
+
});
|
|
696
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
697
|
+
this.Message = opts.Message;
|
|
698
|
+
}
|
|
699
|
+
}
|
|
650
700
|
export class AssociatedInstances extends __BaseException {
|
|
651
701
|
name = "AssociatedInstances";
|
|
652
702
|
$fault = "client";
|
|
@@ -799,20 +849,6 @@ export class MalformedResourcePolicyDocumentException extends __BaseException {
|
|
|
799
849
|
this.Message = opts.Message;
|
|
800
850
|
}
|
|
801
851
|
}
|
|
802
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
803
|
-
name = "ResourceNotFoundException";
|
|
804
|
-
$fault = "client";
|
|
805
|
-
Message;
|
|
806
|
-
constructor(opts) {
|
|
807
|
-
super({
|
|
808
|
-
name: "ResourceNotFoundException",
|
|
809
|
-
$fault: "client",
|
|
810
|
-
...opts,
|
|
811
|
-
});
|
|
812
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
813
|
-
this.Message = opts.Message;
|
|
814
|
-
}
|
|
815
|
-
}
|
|
816
852
|
export class ResourcePolicyConflictException extends __BaseException {
|
|
817
853
|
name = "ResourcePolicyConflictException";
|
|
818
854
|
$fault = "client";
|
|
@@ -1671,28 +1707,6 @@ export class InvalidRole extends __BaseException {
|
|
|
1671
1707
|
this.Message = opts.Message;
|
|
1672
1708
|
}
|
|
1673
1709
|
}
|
|
1674
|
-
export class ServiceQuotaExceededException extends __BaseException {
|
|
1675
|
-
name = "ServiceQuotaExceededException";
|
|
1676
|
-
$fault = "client";
|
|
1677
|
-
Message;
|
|
1678
|
-
ResourceId;
|
|
1679
|
-
ResourceType;
|
|
1680
|
-
QuotaCode;
|
|
1681
|
-
ServiceCode;
|
|
1682
|
-
constructor(opts) {
|
|
1683
|
-
super({
|
|
1684
|
-
name: "ServiceQuotaExceededException",
|
|
1685
|
-
$fault: "client",
|
|
1686
|
-
...opts,
|
|
1687
|
-
});
|
|
1688
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
1689
|
-
this.Message = opts.Message;
|
|
1690
|
-
this.ResourceId = opts.ResourceId;
|
|
1691
|
-
this.ResourceType = opts.ResourceType;
|
|
1692
|
-
this.QuotaCode = opts.QuotaCode;
|
|
1693
|
-
this.ServiceCode = opts.ServiceCode;
|
|
1694
|
-
}
|
|
1695
|
-
}
|
|
1696
1710
|
export class InvalidAssociation extends __BaseException {
|
|
1697
1711
|
name = "InvalidAssociation";
|
|
1698
1712
|
$fault = "client";
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListCloudConnectorsCommand, } from "../commands/ListCloudConnectorsCommand";
|
|
3
|
+
import { SSMClient } from "../SSMClient";
|
|
4
|
+
export const paginateListCloudConnectors = createPaginator(SSMClient, ListCloudConnectorsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ValidateCloudConnectorCommand, } from "../commands/ValidateCloudConnectorCommand";
|
|
3
|
+
import { SSMClient } from "../SSMClient";
|
|
4
|
+
export const paginateValidateCloudConnector = createPaginator(SSMClient, ValidateCloudConnectorCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -36,6 +36,7 @@ export * from "./GetParametersByPathPaginator";
|
|
|
36
36
|
export * from "./GetResourcePoliciesPaginator";
|
|
37
37
|
export * from "./ListAssociationsPaginator";
|
|
38
38
|
export * from "./ListAssociationVersionsPaginator";
|
|
39
|
+
export * from "./ListCloudConnectorsPaginator";
|
|
39
40
|
export * from "./ListCommandInvocationsPaginator";
|
|
40
41
|
export * from "./ListCommandsPaginator";
|
|
41
42
|
export * from "./ListComplianceItemsPaginator";
|
|
@@ -49,3 +50,4 @@ export * from "./ListOpsItemRelatedItemsPaginator";
|
|
|
49
50
|
export * from "./ListOpsMetadataPaginator";
|
|
50
51
|
export * from "./ListResourceComplianceSummariesPaginator";
|
|
51
52
|
export * from "./ListResourceDataSyncPaginator";
|
|
53
|
+
export * from "./ValidateCloudConnectorPaginator";
|