@aws-sdk/client-ssm 3.1080.0 → 3.1082.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 +8 -8
|
@@ -16,6 +16,7 @@ export declare var AutomationExecutionLimitExceededException$: StaticErrorSchema
|
|
|
16
16
|
export declare var AutomationExecutionNotFoundException$: StaticErrorSchema;
|
|
17
17
|
export declare var AutomationStepNotFoundException$: StaticErrorSchema;
|
|
18
18
|
export declare var ComplianceTypeCountLimitExceededException$: StaticErrorSchema;
|
|
19
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
19
20
|
export declare var CustomSchemaCountLimitExceededException$: StaticErrorSchema;
|
|
20
21
|
export declare var DocumentAlreadyExists$: StaticErrorSchema;
|
|
21
22
|
export declare var DocumentLimitExceeded$: StaticErrorSchema;
|
|
@@ -173,11 +174,15 @@ export declare var AutomationExecutionFilter$: StaticStructureSchema;
|
|
|
173
174
|
export declare var AutomationExecutionInputs$: StaticStructureSchema;
|
|
174
175
|
export declare var AutomationExecutionMetadata$: StaticStructureSchema;
|
|
175
176
|
export declare var AutomationExecutionPreview$: StaticStructureSchema;
|
|
177
|
+
export declare var AzureConfiguration$: StaticStructureSchema;
|
|
178
|
+
export declare var AzureSubscription$: StaticStructureSchema;
|
|
176
179
|
export declare var BaselineOverride$: StaticStructureSchema;
|
|
177
180
|
export declare var CancelCommandRequest$: StaticStructureSchema;
|
|
178
181
|
export declare var CancelCommandResult$: StaticStructureSchema;
|
|
179
182
|
export declare var CancelMaintenanceWindowExecutionRequest$: StaticStructureSchema;
|
|
180
183
|
export declare var CancelMaintenanceWindowExecutionResult$: StaticStructureSchema;
|
|
184
|
+
export declare var CloudConnectorFilter$: StaticStructureSchema;
|
|
185
|
+
export declare var CloudConnectorSummary$: StaticStructureSchema;
|
|
181
186
|
export declare var CloudWatchOutputConfig$: StaticStructureSchema;
|
|
182
187
|
export declare var Command$: StaticStructureSchema;
|
|
183
188
|
export declare var CommandFilter$: StaticStructureSchema;
|
|
@@ -196,6 +201,8 @@ export declare var CreateAssociationBatchRequestEntry$: StaticStructureSchema;
|
|
|
196
201
|
export declare var CreateAssociationBatchResult$: StaticStructureSchema;
|
|
197
202
|
export declare var CreateAssociationRequest$: StaticStructureSchema;
|
|
198
203
|
export declare var CreateAssociationResult$: StaticStructureSchema;
|
|
204
|
+
export declare var CreateCloudConnectorRequest$: StaticStructureSchema;
|
|
205
|
+
export declare var CreateCloudConnectorResult$: StaticStructureSchema;
|
|
199
206
|
export declare var CreateDocumentRequest$: StaticStructureSchema;
|
|
200
207
|
export declare var CreateDocumentResult$: StaticStructureSchema;
|
|
201
208
|
export declare var CreateMaintenanceWindowRequest$: StaticStructureSchema;
|
|
@@ -213,6 +220,8 @@ export declare var DeleteActivationRequest$: StaticStructureSchema;
|
|
|
213
220
|
export declare var DeleteActivationResult$: StaticStructureSchema;
|
|
214
221
|
export declare var DeleteAssociationRequest$: StaticStructureSchema;
|
|
215
222
|
export declare var DeleteAssociationResult$: StaticStructureSchema;
|
|
223
|
+
export declare var DeleteCloudConnectorRequest$: StaticStructureSchema;
|
|
224
|
+
export declare var DeleteCloudConnectorResult$: StaticStructureSchema;
|
|
216
225
|
export declare var DeleteDocumentRequest$: StaticStructureSchema;
|
|
217
226
|
export declare var DeleteDocumentResult$: StaticStructureSchema;
|
|
218
227
|
export declare var DeleteInventoryRequest$: StaticStructureSchema;
|
|
@@ -331,6 +340,8 @@ export declare var GetAutomationExecutionRequest$: StaticStructureSchema;
|
|
|
331
340
|
export declare var GetAutomationExecutionResult$: StaticStructureSchema;
|
|
332
341
|
export declare var GetCalendarStateRequest$: StaticStructureSchema;
|
|
333
342
|
export declare var GetCalendarStateResponse$: StaticStructureSchema;
|
|
343
|
+
export declare var GetCloudConnectorRequest$: StaticStructureSchema;
|
|
344
|
+
export declare var GetCloudConnectorResult$: StaticStructureSchema;
|
|
334
345
|
export declare var GetCommandInvocationRequest$: StaticStructureSchema;
|
|
335
346
|
export declare var GetCommandInvocationResult$: StaticStructureSchema;
|
|
336
347
|
export declare var GetConnectionStatusRequest$: StaticStructureSchema;
|
|
@@ -411,6 +422,8 @@ export declare var ListAssociationsRequest$: StaticStructureSchema;
|
|
|
411
422
|
export declare var ListAssociationsResult$: StaticStructureSchema;
|
|
412
423
|
export declare var ListAssociationVersionsRequest$: StaticStructureSchema;
|
|
413
424
|
export declare var ListAssociationVersionsResult$: StaticStructureSchema;
|
|
425
|
+
export declare var ListCloudConnectorsRequest$: StaticStructureSchema;
|
|
426
|
+
export declare var ListCloudConnectorsResult$: StaticStructureSchema;
|
|
414
427
|
export declare var ListCommandInvocationsRequest$: StaticStructureSchema;
|
|
415
428
|
export declare var ListCommandInvocationsResult$: StaticStructureSchema;
|
|
416
429
|
export declare var ListCommandsRequest$: StaticStructureSchema;
|
|
@@ -580,6 +593,8 @@ export declare var UpdateAssociationRequest$: StaticStructureSchema;
|
|
|
580
593
|
export declare var UpdateAssociationResult$: StaticStructureSchema;
|
|
581
594
|
export declare var UpdateAssociationStatusRequest$: StaticStructureSchema;
|
|
582
595
|
export declare var UpdateAssociationStatusResult$: StaticStructureSchema;
|
|
596
|
+
export declare var UpdateCloudConnectorRequest$: StaticStructureSchema;
|
|
597
|
+
export declare var UpdateCloudConnectorResult$: StaticStructureSchema;
|
|
583
598
|
export declare var UpdateDocumentDefaultVersionRequest$: StaticStructureSchema;
|
|
584
599
|
export declare var UpdateDocumentDefaultVersionResult$: StaticStructureSchema;
|
|
585
600
|
export declare var UpdateDocumentMetadataRequest$: StaticStructureSchema;
|
|
@@ -604,6 +619,12 @@ export declare var UpdateResourceDataSyncRequest$: StaticStructureSchema;
|
|
|
604
619
|
export declare var UpdateResourceDataSyncResult$: StaticStructureSchema;
|
|
605
620
|
export declare var UpdateServiceSettingRequest$: StaticStructureSchema;
|
|
606
621
|
export declare var UpdateServiceSettingResult$: StaticStructureSchema;
|
|
622
|
+
export declare var ValidateCloudConnectorRequest$: StaticStructureSchema;
|
|
623
|
+
export declare var ValidateCloudConnectorResult$: StaticStructureSchema;
|
|
624
|
+
export declare var ValidationFinding$: StaticStructureSchema;
|
|
625
|
+
export declare var ValidationFindingScope$: StaticStructureSchema;
|
|
626
|
+
export declare var CloudConnectorConfiguration$: StaticUnionSchema;
|
|
627
|
+
export declare var ConfigurationTargets$: StaticUnionSchema;
|
|
607
628
|
export declare var ExecutionInputs$: StaticUnionSchema;
|
|
608
629
|
export declare var ExecutionPreview$: StaticUnionSchema;
|
|
609
630
|
export declare var NodeType$: StaticUnionSchema;
|
|
@@ -614,6 +635,7 @@ export declare var CancelMaintenanceWindowExecution$: StaticOperationSchema;
|
|
|
614
635
|
export declare var CreateActivation$: StaticOperationSchema;
|
|
615
636
|
export declare var CreateAssociation$: StaticOperationSchema;
|
|
616
637
|
export declare var CreateAssociationBatch$: StaticOperationSchema;
|
|
638
|
+
export declare var CreateCloudConnector$: StaticOperationSchema;
|
|
617
639
|
export declare var CreateDocument$: StaticOperationSchema;
|
|
618
640
|
export declare var CreateMaintenanceWindow$: StaticOperationSchema;
|
|
619
641
|
export declare var CreateOpsItem$: StaticOperationSchema;
|
|
@@ -622,6 +644,7 @@ export declare var CreatePatchBaseline$: StaticOperationSchema;
|
|
|
622
644
|
export declare var CreateResourceDataSync$: StaticOperationSchema;
|
|
623
645
|
export declare var DeleteActivation$: StaticOperationSchema;
|
|
624
646
|
export declare var DeleteAssociation$: StaticOperationSchema;
|
|
647
|
+
export declare var DeleteCloudConnector$: StaticOperationSchema;
|
|
625
648
|
export declare var DeleteDocument$: StaticOperationSchema;
|
|
626
649
|
export declare var DeleteInventory$: StaticOperationSchema;
|
|
627
650
|
export declare var DeleteMaintenanceWindow$: StaticOperationSchema;
|
|
@@ -673,6 +696,7 @@ export declare var DisassociateOpsItemRelatedItem$: StaticOperationSchema;
|
|
|
673
696
|
export declare var GetAccessToken$: StaticOperationSchema;
|
|
674
697
|
export declare var GetAutomationExecution$: StaticOperationSchema;
|
|
675
698
|
export declare var GetCalendarState$: StaticOperationSchema;
|
|
699
|
+
export declare var GetCloudConnector$: StaticOperationSchema;
|
|
676
700
|
export declare var GetCommandInvocation$: StaticOperationSchema;
|
|
677
701
|
export declare var GetConnectionStatus$: StaticOperationSchema;
|
|
678
702
|
export declare var GetDefaultPatchBaseline$: StaticOperationSchema;
|
|
@@ -700,6 +724,7 @@ export declare var GetServiceSetting$: StaticOperationSchema;
|
|
|
700
724
|
export declare var LabelParameterVersion$: StaticOperationSchema;
|
|
701
725
|
export declare var ListAssociations$: StaticOperationSchema;
|
|
702
726
|
export declare var ListAssociationVersions$: StaticOperationSchema;
|
|
727
|
+
export declare var ListCloudConnectors$: StaticOperationSchema;
|
|
703
728
|
export declare var ListCommandInvocations$: StaticOperationSchema;
|
|
704
729
|
export declare var ListCommands$: StaticOperationSchema;
|
|
705
730
|
export declare var ListComplianceItems$: StaticOperationSchema;
|
|
@@ -741,6 +766,7 @@ export declare var TerminateSession$: StaticOperationSchema;
|
|
|
741
766
|
export declare var UnlabelParameterVersion$: StaticOperationSchema;
|
|
742
767
|
export declare var UpdateAssociation$: StaticOperationSchema;
|
|
743
768
|
export declare var UpdateAssociationStatus$: StaticOperationSchema;
|
|
769
|
+
export declare var UpdateCloudConnector$: StaticOperationSchema;
|
|
744
770
|
export declare var UpdateDocument$: StaticOperationSchema;
|
|
745
771
|
export declare var UpdateDocumentDefaultVersion$: StaticOperationSchema;
|
|
746
772
|
export declare var UpdateDocumentMetadata$: StaticOperationSchema;
|
|
@@ -753,3 +779,4 @@ export declare var UpdateOpsMetadata$: StaticOperationSchema;
|
|
|
753
779
|
export declare var UpdatePatchBaseline$: StaticOperationSchema;
|
|
754
780
|
export declare var UpdateResourceDataSync$: StaticOperationSchema;
|
|
755
781
|
export declare var UpdateServiceSetting$: StaticOperationSchema;
|
|
782
|
+
export declare var ValidateCloudConnector$: StaticOperationSchema;
|
|
@@ -33,6 +33,10 @@ import {
|
|
|
33
33
|
CreateAssociationCommandInput,
|
|
34
34
|
CreateAssociationCommandOutput,
|
|
35
35
|
} from "./commands/CreateAssociationCommand";
|
|
36
|
+
import {
|
|
37
|
+
CreateCloudConnectorCommandInput,
|
|
38
|
+
CreateCloudConnectorCommandOutput,
|
|
39
|
+
} from "./commands/CreateCloudConnectorCommand";
|
|
36
40
|
import {
|
|
37
41
|
CreateDocumentCommandInput,
|
|
38
42
|
CreateDocumentCommandOutput,
|
|
@@ -65,6 +69,10 @@ import {
|
|
|
65
69
|
DeleteAssociationCommandInput,
|
|
66
70
|
DeleteAssociationCommandOutput,
|
|
67
71
|
} from "./commands/DeleteAssociationCommand";
|
|
72
|
+
import {
|
|
73
|
+
DeleteCloudConnectorCommandInput,
|
|
74
|
+
DeleteCloudConnectorCommandOutput,
|
|
75
|
+
} from "./commands/DeleteCloudConnectorCommand";
|
|
68
76
|
import {
|
|
69
77
|
DeleteDocumentCommandInput,
|
|
70
78
|
DeleteDocumentCommandOutput,
|
|
@@ -269,6 +277,10 @@ import {
|
|
|
269
277
|
GetCalendarStateCommandInput,
|
|
270
278
|
GetCalendarStateCommandOutput,
|
|
271
279
|
} from "./commands/GetCalendarStateCommand";
|
|
280
|
+
import {
|
|
281
|
+
GetCloudConnectorCommandInput,
|
|
282
|
+
GetCloudConnectorCommandOutput,
|
|
283
|
+
} from "./commands/GetCloudConnectorCommand";
|
|
272
284
|
import {
|
|
273
285
|
GetCommandInvocationCommandInput,
|
|
274
286
|
GetCommandInvocationCommandOutput,
|
|
@@ -377,6 +389,10 @@ import {
|
|
|
377
389
|
ListAssociationVersionsCommandInput,
|
|
378
390
|
ListAssociationVersionsCommandOutput,
|
|
379
391
|
} from "./commands/ListAssociationVersionsCommand";
|
|
392
|
+
import {
|
|
393
|
+
ListCloudConnectorsCommandInput,
|
|
394
|
+
ListCloudConnectorsCommandOutput,
|
|
395
|
+
} from "./commands/ListCloudConnectorsCommand";
|
|
380
396
|
import {
|
|
381
397
|
ListCommandInvocationsCommandInput,
|
|
382
398
|
ListCommandInvocationsCommandOutput,
|
|
@@ -541,6 +557,10 @@ import {
|
|
|
541
557
|
UpdateAssociationStatusCommandInput,
|
|
542
558
|
UpdateAssociationStatusCommandOutput,
|
|
543
559
|
} from "./commands/UpdateAssociationStatusCommand";
|
|
560
|
+
import {
|
|
561
|
+
UpdateCloudConnectorCommandInput,
|
|
562
|
+
UpdateCloudConnectorCommandOutput,
|
|
563
|
+
} from "./commands/UpdateCloudConnectorCommand";
|
|
544
564
|
import {
|
|
545
565
|
UpdateDocumentCommandInput,
|
|
546
566
|
UpdateDocumentCommandOutput,
|
|
@@ -589,6 +609,10 @@ import {
|
|
|
589
609
|
UpdateServiceSettingCommandInput,
|
|
590
610
|
UpdateServiceSettingCommandOutput,
|
|
591
611
|
} from "./commands/UpdateServiceSettingCommand";
|
|
612
|
+
import {
|
|
613
|
+
ValidateCloudConnectorCommandInput,
|
|
614
|
+
ValidateCloudConnectorCommandOutput,
|
|
615
|
+
} from "./commands/ValidateCloudConnectorCommand";
|
|
592
616
|
import { SSMClient } from "./SSMClient";
|
|
593
617
|
export interface SSM {
|
|
594
618
|
addTagsToResource(
|
|
@@ -682,6 +706,19 @@ export interface SSM {
|
|
|
682
706
|
options: __HttpHandlerOptions,
|
|
683
707
|
cb: (err: any, data?: CreateAssociationBatchCommandOutput) => void
|
|
684
708
|
): void;
|
|
709
|
+
createCloudConnector(
|
|
710
|
+
args: CreateCloudConnectorCommandInput,
|
|
711
|
+
options?: __HttpHandlerOptions
|
|
712
|
+
): Promise<CreateCloudConnectorCommandOutput>;
|
|
713
|
+
createCloudConnector(
|
|
714
|
+
args: CreateCloudConnectorCommandInput,
|
|
715
|
+
cb: (err: any, data?: CreateCloudConnectorCommandOutput) => void
|
|
716
|
+
): void;
|
|
717
|
+
createCloudConnector(
|
|
718
|
+
args: CreateCloudConnectorCommandInput,
|
|
719
|
+
options: __HttpHandlerOptions,
|
|
720
|
+
cb: (err: any, data?: CreateCloudConnectorCommandOutput) => void
|
|
721
|
+
): void;
|
|
685
722
|
createDocument(
|
|
686
723
|
args: CreateDocumentCommandInput,
|
|
687
724
|
options?: __HttpHandlerOptions
|
|
@@ -787,6 +824,19 @@ export interface SSM {
|
|
|
787
824
|
options: __HttpHandlerOptions,
|
|
788
825
|
cb: (err: any, data?: DeleteAssociationCommandOutput) => void
|
|
789
826
|
): void;
|
|
827
|
+
deleteCloudConnector(
|
|
828
|
+
args: DeleteCloudConnectorCommandInput,
|
|
829
|
+
options?: __HttpHandlerOptions
|
|
830
|
+
): Promise<DeleteCloudConnectorCommandOutput>;
|
|
831
|
+
deleteCloudConnector(
|
|
832
|
+
args: DeleteCloudConnectorCommandInput,
|
|
833
|
+
cb: (err: any, data?: DeleteCloudConnectorCommandOutput) => void
|
|
834
|
+
): void;
|
|
835
|
+
deleteCloudConnector(
|
|
836
|
+
args: DeleteCloudConnectorCommandInput,
|
|
837
|
+
options: __HttpHandlerOptions,
|
|
838
|
+
cb: (err: any, data?: DeleteCloudConnectorCommandOutput) => void
|
|
839
|
+
): void;
|
|
790
840
|
deleteDocument(
|
|
791
841
|
args: DeleteDocumentCommandInput,
|
|
792
842
|
options?: __HttpHandlerOptions
|
|
@@ -1541,6 +1591,19 @@ export interface SSM {
|
|
|
1541
1591
|
options: __HttpHandlerOptions,
|
|
1542
1592
|
cb: (err: any, data?: GetCalendarStateCommandOutput) => void
|
|
1543
1593
|
): void;
|
|
1594
|
+
getCloudConnector(
|
|
1595
|
+
args: GetCloudConnectorCommandInput,
|
|
1596
|
+
options?: __HttpHandlerOptions
|
|
1597
|
+
): Promise<GetCloudConnectorCommandOutput>;
|
|
1598
|
+
getCloudConnector(
|
|
1599
|
+
args: GetCloudConnectorCommandInput,
|
|
1600
|
+
cb: (err: any, data?: GetCloudConnectorCommandOutput) => void
|
|
1601
|
+
): void;
|
|
1602
|
+
getCloudConnector(
|
|
1603
|
+
args: GetCloudConnectorCommandInput,
|
|
1604
|
+
options: __HttpHandlerOptions,
|
|
1605
|
+
cb: (err: any, data?: GetCloudConnectorCommandOutput) => void
|
|
1606
|
+
): void;
|
|
1544
1607
|
getCommandInvocation(
|
|
1545
1608
|
args: GetCommandInvocationCommandInput,
|
|
1546
1609
|
options?: __HttpHandlerOptions
|
|
@@ -1915,6 +1978,20 @@ export interface SSM {
|
|
|
1915
1978
|
options: __HttpHandlerOptions,
|
|
1916
1979
|
cb: (err: any, data?: ListAssociationVersionsCommandOutput) => void
|
|
1917
1980
|
): void;
|
|
1981
|
+
listCloudConnectors(): Promise<ListCloudConnectorsCommandOutput>;
|
|
1982
|
+
listCloudConnectors(
|
|
1983
|
+
args: ListCloudConnectorsCommandInput,
|
|
1984
|
+
options?: __HttpHandlerOptions
|
|
1985
|
+
): Promise<ListCloudConnectorsCommandOutput>;
|
|
1986
|
+
listCloudConnectors(
|
|
1987
|
+
args: ListCloudConnectorsCommandInput,
|
|
1988
|
+
cb: (err: any, data?: ListCloudConnectorsCommandOutput) => void
|
|
1989
|
+
): void;
|
|
1990
|
+
listCloudConnectors(
|
|
1991
|
+
args: ListCloudConnectorsCommandInput,
|
|
1992
|
+
options: __HttpHandlerOptions,
|
|
1993
|
+
cb: (err: any, data?: ListCloudConnectorsCommandOutput) => void
|
|
1994
|
+
): void;
|
|
1918
1995
|
listCommandInvocations(): Promise<ListCommandInvocationsCommandOutput>;
|
|
1919
1996
|
listCommandInvocations(
|
|
1920
1997
|
args: ListCommandInvocationsCommandInput,
|
|
@@ -2477,6 +2554,19 @@ export interface SSM {
|
|
|
2477
2554
|
options: __HttpHandlerOptions,
|
|
2478
2555
|
cb: (err: any, data?: UpdateAssociationStatusCommandOutput) => void
|
|
2479
2556
|
): void;
|
|
2557
|
+
updateCloudConnector(
|
|
2558
|
+
args: UpdateCloudConnectorCommandInput,
|
|
2559
|
+
options?: __HttpHandlerOptions
|
|
2560
|
+
): Promise<UpdateCloudConnectorCommandOutput>;
|
|
2561
|
+
updateCloudConnector(
|
|
2562
|
+
args: UpdateCloudConnectorCommandInput,
|
|
2563
|
+
cb: (err: any, data?: UpdateCloudConnectorCommandOutput) => void
|
|
2564
|
+
): void;
|
|
2565
|
+
updateCloudConnector(
|
|
2566
|
+
args: UpdateCloudConnectorCommandInput,
|
|
2567
|
+
options: __HttpHandlerOptions,
|
|
2568
|
+
cb: (err: any, data?: UpdateCloudConnectorCommandOutput) => void
|
|
2569
|
+
): void;
|
|
2480
2570
|
updateDocument(
|
|
2481
2571
|
args: UpdateDocumentCommandInput,
|
|
2482
2572
|
options?: __HttpHandlerOptions
|
|
@@ -2633,6 +2723,19 @@ export interface SSM {
|
|
|
2633
2723
|
options: __HttpHandlerOptions,
|
|
2634
2724
|
cb: (err: any, data?: UpdateServiceSettingCommandOutput) => void
|
|
2635
2725
|
): void;
|
|
2726
|
+
validateCloudConnector(
|
|
2727
|
+
args: ValidateCloudConnectorCommandInput,
|
|
2728
|
+
options?: __HttpHandlerOptions
|
|
2729
|
+
): Promise<ValidateCloudConnectorCommandOutput>;
|
|
2730
|
+
validateCloudConnector(
|
|
2731
|
+
args: ValidateCloudConnectorCommandInput,
|
|
2732
|
+
cb: (err: any, data?: ValidateCloudConnectorCommandOutput) => void
|
|
2733
|
+
): void;
|
|
2734
|
+
validateCloudConnector(
|
|
2735
|
+
args: ValidateCloudConnectorCommandInput,
|
|
2736
|
+
options: __HttpHandlerOptions,
|
|
2737
|
+
cb: (err: any, data?: ValidateCloudConnectorCommandOutput) => void
|
|
2738
|
+
): void;
|
|
2636
2739
|
paginateDescribeActivations(
|
|
2637
2740
|
args?: DescribeActivationsCommandInput,
|
|
2638
2741
|
paginationConfig?: Pick<
|
|
@@ -2892,6 +2995,13 @@ export interface SSM {
|
|
|
2892
2995
|
Exclude<keyof PaginationConfiguration, "client">
|
|
2893
2996
|
>
|
|
2894
2997
|
): Paginator<ListAssociationVersionsCommandOutput>;
|
|
2998
|
+
paginateListCloudConnectors(
|
|
2999
|
+
args?: ListCloudConnectorsCommandInput,
|
|
3000
|
+
paginationConfig?: Pick<
|
|
3001
|
+
PaginationConfiguration,
|
|
3002
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3003
|
+
>
|
|
3004
|
+
): Paginator<ListCloudConnectorsCommandOutput>;
|
|
2895
3005
|
paginateListCommandInvocations(
|
|
2896
3006
|
args?: ListCommandInvocationsCommandInput,
|
|
2897
3007
|
paginationConfig?: Pick<
|
|
@@ -2983,6 +3093,13 @@ export interface SSM {
|
|
|
2983
3093
|
Exclude<keyof PaginationConfiguration, "client">
|
|
2984
3094
|
>
|
|
2985
3095
|
): Paginator<ListResourceDataSyncCommandOutput>;
|
|
3096
|
+
paginateValidateCloudConnector(
|
|
3097
|
+
args: ValidateCloudConnectorCommandInput,
|
|
3098
|
+
paginationConfig?: Pick<
|
|
3099
|
+
PaginationConfiguration,
|
|
3100
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3101
|
+
>
|
|
3102
|
+
): Paginator<ValidateCloudConnectorCommandOutput>;
|
|
2986
3103
|
waitUntilCommandExecuted(
|
|
2987
3104
|
args: GetCommandInvocationCommandInput,
|
|
2988
3105
|
waiterConfig:
|
|
@@ -64,6 +64,10 @@ import {
|
|
|
64
64
|
CreateAssociationCommandInput,
|
|
65
65
|
CreateAssociationCommandOutput,
|
|
66
66
|
} from "./commands/CreateAssociationCommand";
|
|
67
|
+
import {
|
|
68
|
+
CreateCloudConnectorCommandInput,
|
|
69
|
+
CreateCloudConnectorCommandOutput,
|
|
70
|
+
} from "./commands/CreateCloudConnectorCommand";
|
|
67
71
|
import {
|
|
68
72
|
CreateDocumentCommandInput,
|
|
69
73
|
CreateDocumentCommandOutput,
|
|
@@ -96,6 +100,10 @@ import {
|
|
|
96
100
|
DeleteAssociationCommandInput,
|
|
97
101
|
DeleteAssociationCommandOutput,
|
|
98
102
|
} from "./commands/DeleteAssociationCommand";
|
|
103
|
+
import {
|
|
104
|
+
DeleteCloudConnectorCommandInput,
|
|
105
|
+
DeleteCloudConnectorCommandOutput,
|
|
106
|
+
} from "./commands/DeleteCloudConnectorCommand";
|
|
99
107
|
import {
|
|
100
108
|
DeleteDocumentCommandInput,
|
|
101
109
|
DeleteDocumentCommandOutput,
|
|
@@ -300,6 +308,10 @@ import {
|
|
|
300
308
|
GetCalendarStateCommandInput,
|
|
301
309
|
GetCalendarStateCommandOutput,
|
|
302
310
|
} from "./commands/GetCalendarStateCommand";
|
|
311
|
+
import {
|
|
312
|
+
GetCloudConnectorCommandInput,
|
|
313
|
+
GetCloudConnectorCommandOutput,
|
|
314
|
+
} from "./commands/GetCloudConnectorCommand";
|
|
303
315
|
import {
|
|
304
316
|
GetCommandInvocationCommandInput,
|
|
305
317
|
GetCommandInvocationCommandOutput,
|
|
@@ -408,6 +420,10 @@ import {
|
|
|
408
420
|
ListAssociationVersionsCommandInput,
|
|
409
421
|
ListAssociationVersionsCommandOutput,
|
|
410
422
|
} from "./commands/ListAssociationVersionsCommand";
|
|
423
|
+
import {
|
|
424
|
+
ListCloudConnectorsCommandInput,
|
|
425
|
+
ListCloudConnectorsCommandOutput,
|
|
426
|
+
} from "./commands/ListCloudConnectorsCommand";
|
|
411
427
|
import {
|
|
412
428
|
ListCommandInvocationsCommandInput,
|
|
413
429
|
ListCommandInvocationsCommandOutput,
|
|
@@ -572,6 +588,10 @@ import {
|
|
|
572
588
|
UpdateAssociationStatusCommandInput,
|
|
573
589
|
UpdateAssociationStatusCommandOutput,
|
|
574
590
|
} from "./commands/UpdateAssociationStatusCommand";
|
|
591
|
+
import {
|
|
592
|
+
UpdateCloudConnectorCommandInput,
|
|
593
|
+
UpdateCloudConnectorCommandOutput,
|
|
594
|
+
} from "./commands/UpdateCloudConnectorCommand";
|
|
575
595
|
import {
|
|
576
596
|
UpdateDocumentCommandInput,
|
|
577
597
|
UpdateDocumentCommandOutput,
|
|
@@ -620,6 +640,10 @@ import {
|
|
|
620
640
|
UpdateServiceSettingCommandInput,
|
|
621
641
|
UpdateServiceSettingCommandOutput,
|
|
622
642
|
} from "./commands/UpdateServiceSettingCommand";
|
|
643
|
+
import {
|
|
644
|
+
ValidateCloudConnectorCommandInput,
|
|
645
|
+
ValidateCloudConnectorCommandOutput,
|
|
646
|
+
} from "./commands/ValidateCloudConnectorCommand";
|
|
623
647
|
import {
|
|
624
648
|
ClientInputEndpointParameters,
|
|
625
649
|
ClientResolvedEndpointParameters,
|
|
@@ -635,6 +659,7 @@ export type ServiceInputTypes =
|
|
|
635
659
|
| CreateActivationCommandInput
|
|
636
660
|
| CreateAssociationBatchCommandInput
|
|
637
661
|
| CreateAssociationCommandInput
|
|
662
|
+
| CreateCloudConnectorCommandInput
|
|
638
663
|
| CreateDocumentCommandInput
|
|
639
664
|
| CreateMaintenanceWindowCommandInput
|
|
640
665
|
| CreateOpsItemCommandInput
|
|
@@ -643,6 +668,7 @@ export type ServiceInputTypes =
|
|
|
643
668
|
| CreateResourceDataSyncCommandInput
|
|
644
669
|
| DeleteActivationCommandInput
|
|
645
670
|
| DeleteAssociationCommandInput
|
|
671
|
+
| DeleteCloudConnectorCommandInput
|
|
646
672
|
| DeleteDocumentCommandInput
|
|
647
673
|
| DeleteInventoryCommandInput
|
|
648
674
|
| DeleteMaintenanceWindowCommandInput
|
|
@@ -694,6 +720,7 @@ export type ServiceInputTypes =
|
|
|
694
720
|
| GetAccessTokenCommandInput
|
|
695
721
|
| GetAutomationExecutionCommandInput
|
|
696
722
|
| GetCalendarStateCommandInput
|
|
723
|
+
| GetCloudConnectorCommandInput
|
|
697
724
|
| GetCommandInvocationCommandInput
|
|
698
725
|
| GetConnectionStatusCommandInput
|
|
699
726
|
| GetDefaultPatchBaselineCommandInput
|
|
@@ -721,6 +748,7 @@ export type ServiceInputTypes =
|
|
|
721
748
|
| LabelParameterVersionCommandInput
|
|
722
749
|
| ListAssociationVersionsCommandInput
|
|
723
750
|
| ListAssociationsCommandInput
|
|
751
|
+
| ListCloudConnectorsCommandInput
|
|
724
752
|
| ListCommandInvocationsCommandInput
|
|
725
753
|
| ListCommandsCommandInput
|
|
726
754
|
| ListComplianceItemsCommandInput
|
|
@@ -762,6 +790,7 @@ export type ServiceInputTypes =
|
|
|
762
790
|
| UnlabelParameterVersionCommandInput
|
|
763
791
|
| UpdateAssociationCommandInput
|
|
764
792
|
| UpdateAssociationStatusCommandInput
|
|
793
|
+
| UpdateCloudConnectorCommandInput
|
|
765
794
|
| UpdateDocumentCommandInput
|
|
766
795
|
| UpdateDocumentDefaultVersionCommandInput
|
|
767
796
|
| UpdateDocumentMetadataCommandInput
|
|
@@ -773,7 +802,8 @@ export type ServiceInputTypes =
|
|
|
773
802
|
| UpdateOpsMetadataCommandInput
|
|
774
803
|
| UpdatePatchBaselineCommandInput
|
|
775
804
|
| UpdateResourceDataSyncCommandInput
|
|
776
|
-
| UpdateServiceSettingCommandInput
|
|
805
|
+
| UpdateServiceSettingCommandInput
|
|
806
|
+
| ValidateCloudConnectorCommandInput;
|
|
777
807
|
export type ServiceOutputTypes =
|
|
778
808
|
| AddTagsToResourceCommandOutput
|
|
779
809
|
| AssociateOpsItemRelatedItemCommandOutput
|
|
@@ -782,6 +812,7 @@ export type ServiceOutputTypes =
|
|
|
782
812
|
| CreateActivationCommandOutput
|
|
783
813
|
| CreateAssociationBatchCommandOutput
|
|
784
814
|
| CreateAssociationCommandOutput
|
|
815
|
+
| CreateCloudConnectorCommandOutput
|
|
785
816
|
| CreateDocumentCommandOutput
|
|
786
817
|
| CreateMaintenanceWindowCommandOutput
|
|
787
818
|
| CreateOpsItemCommandOutput
|
|
@@ -790,6 +821,7 @@ export type ServiceOutputTypes =
|
|
|
790
821
|
| CreateResourceDataSyncCommandOutput
|
|
791
822
|
| DeleteActivationCommandOutput
|
|
792
823
|
| DeleteAssociationCommandOutput
|
|
824
|
+
| DeleteCloudConnectorCommandOutput
|
|
793
825
|
| DeleteDocumentCommandOutput
|
|
794
826
|
| DeleteInventoryCommandOutput
|
|
795
827
|
| DeleteMaintenanceWindowCommandOutput
|
|
@@ -841,6 +873,7 @@ export type ServiceOutputTypes =
|
|
|
841
873
|
| GetAccessTokenCommandOutput
|
|
842
874
|
| GetAutomationExecutionCommandOutput
|
|
843
875
|
| GetCalendarStateCommandOutput
|
|
876
|
+
| GetCloudConnectorCommandOutput
|
|
844
877
|
| GetCommandInvocationCommandOutput
|
|
845
878
|
| GetConnectionStatusCommandOutput
|
|
846
879
|
| GetDefaultPatchBaselineCommandOutput
|
|
@@ -868,6 +901,7 @@ export type ServiceOutputTypes =
|
|
|
868
901
|
| LabelParameterVersionCommandOutput
|
|
869
902
|
| ListAssociationVersionsCommandOutput
|
|
870
903
|
| ListAssociationsCommandOutput
|
|
904
|
+
| ListCloudConnectorsCommandOutput
|
|
871
905
|
| ListCommandInvocationsCommandOutput
|
|
872
906
|
| ListCommandsCommandOutput
|
|
873
907
|
| ListComplianceItemsCommandOutput
|
|
@@ -909,6 +943,7 @@ export type ServiceOutputTypes =
|
|
|
909
943
|
| UnlabelParameterVersionCommandOutput
|
|
910
944
|
| UpdateAssociationCommandOutput
|
|
911
945
|
| UpdateAssociationStatusCommandOutput
|
|
946
|
+
| UpdateCloudConnectorCommandOutput
|
|
912
947
|
| UpdateDocumentCommandOutput
|
|
913
948
|
| UpdateDocumentDefaultVersionCommandOutput
|
|
914
949
|
| UpdateDocumentMetadataCommandOutput
|
|
@@ -920,7 +955,8 @@ export type ServiceOutputTypes =
|
|
|
920
955
|
| UpdateOpsMetadataCommandOutput
|
|
921
956
|
| UpdatePatchBaselineCommandOutput
|
|
922
957
|
| UpdateResourceDataSyncCommandOutput
|
|
923
|
-
| UpdateServiceSettingCommandOutput
|
|
958
|
+
| UpdateServiceSettingCommandOutput
|
|
959
|
+
| ValidateCloudConnectorCommandOutput;
|
|
924
960
|
export interface ClientDefaults
|
|
925
961
|
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
926
962
|
requestHandler?: __HttpHandlerUserInput;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
CreateCloudConnectorRequest,
|
|
4
|
+
CreateCloudConnectorResult,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface CreateCloudConnectorCommandInput
|
|
8
|
+
extends CreateCloudConnectorRequest {}
|
|
9
|
+
export interface CreateCloudConnectorCommandOutput
|
|
10
|
+
extends CreateCloudConnectorResult,
|
|
11
|
+
__MetadataBearer {}
|
|
12
|
+
declare const CreateCloudConnectorCommand_base: {
|
|
13
|
+
new (
|
|
14
|
+
input: CreateCloudConnectorCommandInput
|
|
15
|
+
): import("@smithy/core/client").CommandImpl<
|
|
16
|
+
CreateCloudConnectorCommandInput,
|
|
17
|
+
CreateCloudConnectorCommandOutput,
|
|
18
|
+
import("..").SSMClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
21
|
+
>;
|
|
22
|
+
new (
|
|
23
|
+
input: CreateCloudConnectorCommandInput
|
|
24
|
+
): import("@smithy/core/client").CommandImpl<
|
|
25
|
+
CreateCloudConnectorCommandInput,
|
|
26
|
+
CreateCloudConnectorCommandOutput,
|
|
27
|
+
import("..").SSMClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
30
|
+
>;
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
32
|
+
};
|
|
33
|
+
export declare class CreateCloudConnectorCommand extends CreateCloudConnectorCommand_base {
|
|
34
|
+
protected static __types: {
|
|
35
|
+
api: {
|
|
36
|
+
input: CreateCloudConnectorRequest;
|
|
37
|
+
output: CreateCloudConnectorResult;
|
|
38
|
+
};
|
|
39
|
+
sdk: {
|
|
40
|
+
input: CreateCloudConnectorCommandInput;
|
|
41
|
+
output: CreateCloudConnectorCommandOutput;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DeleteCloudConnectorRequest,
|
|
4
|
+
DeleteCloudConnectorResult,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface DeleteCloudConnectorCommandInput
|
|
8
|
+
extends DeleteCloudConnectorRequest {}
|
|
9
|
+
export interface DeleteCloudConnectorCommandOutput
|
|
10
|
+
extends DeleteCloudConnectorResult,
|
|
11
|
+
__MetadataBearer {}
|
|
12
|
+
declare const DeleteCloudConnectorCommand_base: {
|
|
13
|
+
new (
|
|
14
|
+
input: DeleteCloudConnectorCommandInput
|
|
15
|
+
): import("@smithy/core/client").CommandImpl<
|
|
16
|
+
DeleteCloudConnectorCommandInput,
|
|
17
|
+
DeleteCloudConnectorCommandOutput,
|
|
18
|
+
import("..").SSMClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
21
|
+
>;
|
|
22
|
+
new (
|
|
23
|
+
input: DeleteCloudConnectorCommandInput
|
|
24
|
+
): import("@smithy/core/client").CommandImpl<
|
|
25
|
+
DeleteCloudConnectorCommandInput,
|
|
26
|
+
DeleteCloudConnectorCommandOutput,
|
|
27
|
+
import("..").SSMClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
30
|
+
>;
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
32
|
+
};
|
|
33
|
+
export declare class DeleteCloudConnectorCommand extends DeleteCloudConnectorCommand_base {
|
|
34
|
+
protected static __types: {
|
|
35
|
+
api: {
|
|
36
|
+
input: DeleteCloudConnectorRequest;
|
|
37
|
+
output: DeleteCloudConnectorResult;
|
|
38
|
+
};
|
|
39
|
+
sdk: {
|
|
40
|
+
input: DeleteCloudConnectorCommandInput;
|
|
41
|
+
output: DeleteCloudConnectorCommandOutput;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
GetCloudConnectorRequest,
|
|
4
|
+
GetCloudConnectorResult,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface GetCloudConnectorCommandInput
|
|
8
|
+
extends GetCloudConnectorRequest {}
|
|
9
|
+
export interface GetCloudConnectorCommandOutput
|
|
10
|
+
extends GetCloudConnectorResult,
|
|
11
|
+
__MetadataBearer {}
|
|
12
|
+
declare const GetCloudConnectorCommand_base: {
|
|
13
|
+
new (
|
|
14
|
+
input: GetCloudConnectorCommandInput
|
|
15
|
+
): import("@smithy/core/client").CommandImpl<
|
|
16
|
+
GetCloudConnectorCommandInput,
|
|
17
|
+
GetCloudConnectorCommandOutput,
|
|
18
|
+
import("..").SSMClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
21
|
+
>;
|
|
22
|
+
new (
|
|
23
|
+
input: GetCloudConnectorCommandInput
|
|
24
|
+
): import("@smithy/core/client").CommandImpl<
|
|
25
|
+
GetCloudConnectorCommandInput,
|
|
26
|
+
GetCloudConnectorCommandOutput,
|
|
27
|
+
import("..").SSMClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
30
|
+
>;
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
32
|
+
};
|
|
33
|
+
export declare class GetCloudConnectorCommand extends GetCloudConnectorCommand_base {
|
|
34
|
+
protected static __types: {
|
|
35
|
+
api: {
|
|
36
|
+
input: GetCloudConnectorRequest;
|
|
37
|
+
output: GetCloudConnectorResult;
|
|
38
|
+
};
|
|
39
|
+
sdk: {
|
|
40
|
+
input: GetCloudConnectorCommandInput;
|
|
41
|
+
output: GetCloudConnectorCommandOutput;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
}
|
|
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import {
|
|
3
3
|
GetParametersByPathRequest,
|
|
4
4
|
GetParametersByPathResult,
|
|
5
|
-
} from "../models/
|
|
5
|
+
} from "../models/models_1";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
7
|
export interface GetParametersByPathCommandInput
|
|
8
8
|
extends GetParametersByPathRequest {}
|
|
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import {
|
|
3
3
|
GetPatchBaselineRequest,
|
|
4
4
|
GetPatchBaselineResult,
|
|
5
|
-
} from "../models/
|
|
5
|
+
} from "../models/models_1";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
7
|
export interface GetPatchBaselineCommandInput extends GetPatchBaselineRequest {}
|
|
8
8
|
export interface GetPatchBaselineCommandOutput
|
|
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import {
|
|
3
3
|
GetPatchBaselineForPatchGroupRequest,
|
|
4
4
|
GetPatchBaselineForPatchGroupResult,
|
|
5
|
-
} from "../models/
|
|
5
|
+
} from "../models/models_1";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
7
|
export interface GetPatchBaselineForPatchGroupCommandInput
|
|
8
8
|
extends GetPatchBaselineForPatchGroupRequest {}
|
|
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import {
|
|
3
3
|
GetResourcePoliciesRequest,
|
|
4
4
|
GetResourcePoliciesResponse,
|
|
5
|
-
} from "../models/
|
|
5
|
+
} from "../models/models_1";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
7
|
export interface GetResourcePoliciesCommandInput
|
|
8
8
|
extends GetResourcePoliciesRequest {}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
2
|
+
import {
|
|
3
|
+
GetServiceSettingRequest,
|
|
4
|
+
GetServiceSettingResult,
|
|
5
|
+
} from "../models/models_1";
|
|
4
6
|
export { __MetadataBearer };
|
|
5
7
|
export interface GetServiceSettingCommandInput
|
|
6
8
|
extends GetServiceSettingRequest {}
|