@aws-sdk/client-ssm-contacts 3.948.0 → 3.953.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/dist-cjs/index.js +493 -327
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/AcceptPageCommand.js +2 -2
- package/dist-es/commands/ActivateContactChannelCommand.js +2 -2
- package/dist-es/commands/CreateContactChannelCommand.js +2 -2
- package/dist-es/commands/CreateContactCommand.js +2 -2
- package/dist-es/commands/CreateRotationCommand.js +2 -2
- package/dist-es/commands/CreateRotationOverrideCommand.js +2 -2
- package/dist-es/commands/DeactivateContactChannelCommand.js +2 -2
- package/dist-es/commands/DeleteContactChannelCommand.js +2 -2
- package/dist-es/commands/DeleteContactCommand.js +2 -2
- package/dist-es/commands/DeleteRotationCommand.js +2 -2
- package/dist-es/commands/DeleteRotationOverrideCommand.js +2 -2
- package/dist-es/commands/DescribeEngagementCommand.js +2 -2
- package/dist-es/commands/DescribePageCommand.js +2 -2
- package/dist-es/commands/GetContactChannelCommand.js +2 -2
- package/dist-es/commands/GetContactCommand.js +2 -2
- package/dist-es/commands/GetContactPolicyCommand.js +2 -2
- package/dist-es/commands/GetRotationCommand.js +2 -2
- package/dist-es/commands/GetRotationOverrideCommand.js +2 -2
- package/dist-es/commands/ListContactChannelsCommand.js +2 -2
- package/dist-es/commands/ListContactsCommand.js +2 -2
- package/dist-es/commands/ListEngagementsCommand.js +2 -2
- package/dist-es/commands/ListPageReceiptsCommand.js +2 -2
- package/dist-es/commands/ListPageResolutionsCommand.js +2 -2
- package/dist-es/commands/ListPagesByContactCommand.js +2 -2
- package/dist-es/commands/ListPagesByEngagementCommand.js +2 -2
- package/dist-es/commands/ListPreviewRotationShiftsCommand.js +2 -2
- package/dist-es/commands/ListRotationOverridesCommand.js +2 -2
- package/dist-es/commands/ListRotationShiftsCommand.js +2 -2
- package/dist-es/commands/ListRotationsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutContactPolicyCommand.js +2 -2
- package/dist-es/commands/SendActivationCodeCommand.js +2 -2
- package/dist-es/commands/StartEngagementCommand.js +2 -2
- package/dist-es/commands/StopEngagementCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateContactChannelCommand.js +2 -2
- package/dist-es/commands/UpdateContactCommand.js +2 -2
- package/dist-es/commands/UpdateRotationCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +284 -270
- package/dist-types/SSMContactsClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +153 -179
- package/dist-types/ts3.4/SSMContactsClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +152 -180
- package/package.json +34 -34
|
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.ssmcontacts",
|
|
32
|
+
version: "2021-05-03",
|
|
33
|
+
serviceTarget: "SSMContacts",
|
|
34
|
+
},
|
|
35
35
|
serviceId: config?.serviceId ?? "SSM Contacts",
|
|
36
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AcceptPage } from "../schemas/schemas_0";
|
|
4
|
+
import { AcceptPage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AcceptPageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AcceptPageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "AcceptPage", {})
|
|
13
13
|
.n("SSMContactsClient", "AcceptPageCommand")
|
|
14
|
-
.sc(AcceptPage)
|
|
14
|
+
.sc(AcceptPage$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ActivateContactChannel } from "../schemas/schemas_0";
|
|
4
|
+
import { ActivateContactChannel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ActivateContactChannelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ActivateContactChannelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "ActivateContactChannel", {})
|
|
13
13
|
.n("SSMContactsClient", "ActivateContactChannelCommand")
|
|
14
|
-
.sc(ActivateContactChannel)
|
|
14
|
+
.sc(ActivateContactChannel$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateContactChannel } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateContactChannel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateContactChannelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateContactChannelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "CreateContactChannel", {})
|
|
13
13
|
.n("SSMContactsClient", "CreateContactChannelCommand")
|
|
14
|
-
.sc(CreateContactChannel)
|
|
14
|
+
.sc(CreateContactChannel$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateContact } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateContact$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateContactCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateContactCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "CreateContact", {})
|
|
13
13
|
.n("SSMContactsClient", "CreateContactCommand")
|
|
14
|
-
.sc(CreateContact)
|
|
14
|
+
.sc(CreateContact$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateRotation } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateRotation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateRotationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateRotationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "CreateRotation", {})
|
|
13
13
|
.n("SSMContactsClient", "CreateRotationCommand")
|
|
14
|
-
.sc(CreateRotation)
|
|
14
|
+
.sc(CreateRotation$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateRotationOverride } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateRotationOverride$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateRotationOverrideCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateRotationOverrideCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "CreateRotationOverride", {})
|
|
13
13
|
.n("SSMContactsClient", "CreateRotationOverrideCommand")
|
|
14
|
-
.sc(CreateRotationOverride)
|
|
14
|
+
.sc(CreateRotationOverride$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeactivateContactChannel } from "../schemas/schemas_0";
|
|
4
|
+
import { DeactivateContactChannel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeactivateContactChannelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeactivateContactChannelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "DeactivateContactChannel", {})
|
|
13
13
|
.n("SSMContactsClient", "DeactivateContactChannelCommand")
|
|
14
|
-
.sc(DeactivateContactChannel)
|
|
14
|
+
.sc(DeactivateContactChannel$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteContactChannel } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteContactChannel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteContactChannelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteContactChannelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "DeleteContactChannel", {})
|
|
13
13
|
.n("SSMContactsClient", "DeleteContactChannelCommand")
|
|
14
|
-
.sc(DeleteContactChannel)
|
|
14
|
+
.sc(DeleteContactChannel$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteContact } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteContact$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteContactCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteContactCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "DeleteContact", {})
|
|
13
13
|
.n("SSMContactsClient", "DeleteContactCommand")
|
|
14
|
-
.sc(DeleteContact)
|
|
14
|
+
.sc(DeleteContact$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteRotation } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteRotation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteRotationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteRotationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "DeleteRotation", {})
|
|
13
13
|
.n("SSMContactsClient", "DeleteRotationCommand")
|
|
14
|
-
.sc(DeleteRotation)
|
|
14
|
+
.sc(DeleteRotation$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteRotationOverride } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteRotationOverride$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteRotationOverrideCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteRotationOverrideCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "DeleteRotationOverride", {})
|
|
13
13
|
.n("SSMContactsClient", "DeleteRotationOverrideCommand")
|
|
14
|
-
.sc(DeleteRotationOverride)
|
|
14
|
+
.sc(DeleteRotationOverride$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeEngagement } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeEngagement$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeEngagementCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeEngagementCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "DescribeEngagement", {})
|
|
13
13
|
.n("SSMContactsClient", "DescribeEngagementCommand")
|
|
14
|
-
.sc(DescribeEngagement)
|
|
14
|
+
.sc(DescribeEngagement$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribePage } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribePage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribePageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribePageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "DescribePage", {})
|
|
13
13
|
.n("SSMContactsClient", "DescribePageCommand")
|
|
14
|
-
.sc(DescribePage)
|
|
14
|
+
.sc(DescribePage$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetContactChannel } from "../schemas/schemas_0";
|
|
4
|
+
import { GetContactChannel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetContactChannelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetContactChannelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "GetContactChannel", {})
|
|
13
13
|
.n("SSMContactsClient", "GetContactChannelCommand")
|
|
14
|
-
.sc(GetContactChannel)
|
|
14
|
+
.sc(GetContactChannel$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetContact } from "../schemas/schemas_0";
|
|
4
|
+
import { GetContact$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetContactCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetContactCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "GetContact", {})
|
|
13
13
|
.n("SSMContactsClient", "GetContactCommand")
|
|
14
|
-
.sc(GetContact)
|
|
14
|
+
.sc(GetContact$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetContactPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { GetContactPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetContactPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetContactPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "GetContactPolicy", {})
|
|
13
13
|
.n("SSMContactsClient", "GetContactPolicyCommand")
|
|
14
|
-
.sc(GetContactPolicy)
|
|
14
|
+
.sc(GetContactPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetRotation } from "../schemas/schemas_0";
|
|
4
|
+
import { GetRotation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetRotationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetRotationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "GetRotation", {})
|
|
13
13
|
.n("SSMContactsClient", "GetRotationCommand")
|
|
14
|
-
.sc(GetRotation)
|
|
14
|
+
.sc(GetRotation$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetRotationOverride } from "../schemas/schemas_0";
|
|
4
|
+
import { GetRotationOverride$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetRotationOverrideCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetRotationOverrideCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "GetRotationOverride", {})
|
|
13
13
|
.n("SSMContactsClient", "GetRotationOverrideCommand")
|
|
14
|
-
.sc(GetRotationOverride)
|
|
14
|
+
.sc(GetRotationOverride$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListContactChannels } from "../schemas/schemas_0";
|
|
4
|
+
import { ListContactChannels$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListContactChannelsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListContactChannelsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "ListContactChannels", {})
|
|
13
13
|
.n("SSMContactsClient", "ListContactChannelsCommand")
|
|
14
|
-
.sc(ListContactChannels)
|
|
14
|
+
.sc(ListContactChannels$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListContacts } from "../schemas/schemas_0";
|
|
4
|
+
import { ListContacts$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListContactsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListContactsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "ListContacts", {})
|
|
13
13
|
.n("SSMContactsClient", "ListContactsCommand")
|
|
14
|
-
.sc(ListContacts)
|
|
14
|
+
.sc(ListContacts$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListEngagements } from "../schemas/schemas_0";
|
|
4
|
+
import { ListEngagements$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListEngagementsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListEngagementsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "ListEngagements", {})
|
|
13
13
|
.n("SSMContactsClient", "ListEngagementsCommand")
|
|
14
|
-
.sc(ListEngagements)
|
|
14
|
+
.sc(ListEngagements$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListPageReceipts } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPageReceipts$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPageReceiptsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPageReceiptsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "ListPageReceipts", {})
|
|
13
13
|
.n("SSMContactsClient", "ListPageReceiptsCommand")
|
|
14
|
-
.sc(ListPageReceipts)
|
|
14
|
+
.sc(ListPageReceipts$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListPageResolutions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPageResolutions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPageResolutionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPageResolutionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "ListPageResolutions", {})
|
|
13
13
|
.n("SSMContactsClient", "ListPageResolutionsCommand")
|
|
14
|
-
.sc(ListPageResolutions)
|
|
14
|
+
.sc(ListPageResolutions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListPagesByContact } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPagesByContact$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPagesByContactCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPagesByContactCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "ListPagesByContact", {})
|
|
13
13
|
.n("SSMContactsClient", "ListPagesByContactCommand")
|
|
14
|
-
.sc(ListPagesByContact)
|
|
14
|
+
.sc(ListPagesByContact$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListPagesByEngagement } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPagesByEngagement$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPagesByEngagementCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPagesByEngagementCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "ListPagesByEngagement", {})
|
|
13
13
|
.n("SSMContactsClient", "ListPagesByEngagementCommand")
|
|
14
|
-
.sc(ListPagesByEngagement)
|
|
14
|
+
.sc(ListPagesByEngagement$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListPreviewRotationShifts } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPreviewRotationShifts$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPreviewRotationShiftsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPreviewRotationShiftsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "ListPreviewRotationShifts", {})
|
|
13
13
|
.n("SSMContactsClient", "ListPreviewRotationShiftsCommand")
|
|
14
|
-
.sc(ListPreviewRotationShifts)
|
|
14
|
+
.sc(ListPreviewRotationShifts$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListRotationOverrides } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRotationOverrides$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRotationOverridesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRotationOverridesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "ListRotationOverrides", {})
|
|
13
13
|
.n("SSMContactsClient", "ListRotationOverridesCommand")
|
|
14
|
-
.sc(ListRotationOverrides)
|
|
14
|
+
.sc(ListRotationOverrides$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListRotationShifts } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRotationShifts$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRotationShiftsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRotationShiftsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "ListRotationShifts", {})
|
|
13
13
|
.n("SSMContactsClient", "ListRotationShiftsCommand")
|
|
14
|
-
.sc(ListRotationShifts)
|
|
14
|
+
.sc(ListRotationShifts$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListRotations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRotations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRotationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRotationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "ListRotations", {})
|
|
13
13
|
.n("SSMContactsClient", "ListRotationsCommand")
|
|
14
|
-
.sc(ListRotations)
|
|
14
|
+
.sc(ListRotations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "ListTagsForResource", {})
|
|
13
13
|
.n("SSMContactsClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutContactPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { PutContactPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutContactPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutContactPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "PutContactPolicy", {})
|
|
13
13
|
.n("SSMContactsClient", "PutContactPolicyCommand")
|
|
14
|
-
.sc(PutContactPolicy)
|
|
14
|
+
.sc(PutContactPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SendActivationCode } from "../schemas/schemas_0";
|
|
4
|
+
import { SendActivationCode$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SendActivationCodeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SendActivationCodeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "SendActivationCode", {})
|
|
13
13
|
.n("SSMContactsClient", "SendActivationCodeCommand")
|
|
14
|
-
.sc(SendActivationCode)
|
|
14
|
+
.sc(SendActivationCode$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartEngagement } from "../schemas/schemas_0";
|
|
4
|
+
import { StartEngagement$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartEngagementCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartEngagementCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "StartEngagement", {})
|
|
13
13
|
.n("SSMContactsClient", "StartEngagementCommand")
|
|
14
|
-
.sc(StartEngagement)
|
|
14
|
+
.sc(StartEngagement$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StopEngagement } from "../schemas/schemas_0";
|
|
4
|
+
import { StopEngagement$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopEngagementCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopEngagementCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "StopEngagement", {})
|
|
13
13
|
.n("SSMContactsClient", "StopEngagementCommand")
|
|
14
|
-
.sc(StopEngagement)
|
|
14
|
+
.sc(StopEngagement$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SSMContacts", "TagResource", {})
|
|
13
13
|
.n("SSMContactsClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|