@aws-sdk/client-m2 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 +548 -370
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CancelBatchJobExecutionCommand.js +2 -2
- package/dist-es/commands/CreateApplicationCommand.js +2 -2
- package/dist-es/commands/CreateDataSetExportTaskCommand.js +2 -2
- package/dist-es/commands/CreateDataSetImportTaskCommand.js +2 -2
- package/dist-es/commands/CreateDeploymentCommand.js +2 -2
- package/dist-es/commands/CreateEnvironmentCommand.js +2 -2
- package/dist-es/commands/DeleteApplicationCommand.js +2 -2
- package/dist-es/commands/DeleteApplicationFromEnvironmentCommand.js +2 -2
- package/dist-es/commands/DeleteEnvironmentCommand.js +2 -2
- package/dist-es/commands/GetApplicationCommand.js +2 -2
- package/dist-es/commands/GetApplicationVersionCommand.js +2 -2
- package/dist-es/commands/GetBatchJobExecutionCommand.js +2 -2
- package/dist-es/commands/GetDataSetDetailsCommand.js +2 -2
- package/dist-es/commands/GetDataSetExportTaskCommand.js +2 -2
- package/dist-es/commands/GetDataSetImportTaskCommand.js +2 -2
- package/dist-es/commands/GetDeploymentCommand.js +2 -2
- package/dist-es/commands/GetEnvironmentCommand.js +2 -2
- package/dist-es/commands/GetSignedBluinsightsUrlCommand.js +2 -2
- package/dist-es/commands/ListApplicationVersionsCommand.js +2 -2
- package/dist-es/commands/ListApplicationsCommand.js +2 -2
- package/dist-es/commands/ListBatchJobDefinitionsCommand.js +2 -2
- package/dist-es/commands/ListBatchJobExecutionsCommand.js +2 -2
- package/dist-es/commands/ListBatchJobRestartPointsCommand.js +2 -2
- package/dist-es/commands/ListDataSetExportHistoryCommand.js +2 -2
- package/dist-es/commands/ListDataSetImportHistoryCommand.js +2 -2
- package/dist-es/commands/ListDataSetsCommand.js +2 -2
- package/dist-es/commands/ListDeploymentsCommand.js +2 -2
- package/dist-es/commands/ListEngineVersionsCommand.js +2 -2
- package/dist-es/commands/ListEnvironmentsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/StartApplicationCommand.js +2 -2
- package/dist-es/commands/StartBatchJobCommand.js +2 -2
- package/dist-es/commands/StopApplicationCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateApplicationCommand.js +2 -2
- package/dist-es/commands/UpdateEnvironmentCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +323 -316
- package/dist-types/M2Client.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 +172 -199
- package/dist-types/ts3.4/M2Client.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 +171 -199
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.m2",
|
|
32
|
+
version: "2021-04-28",
|
|
33
|
+
serviceTarget: "AwsSupernovaControlPlaneService",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "m2",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
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 { CancelBatchJobExecution } from "../schemas/schemas_0";
|
|
4
|
+
import { CancelBatchJobExecution$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CancelBatchJobExecutionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CancelBatchJobExecutionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "CancelBatchJobExecution", {})
|
|
13
13
|
.n("M2Client", "CancelBatchJobExecutionCommand")
|
|
14
|
-
.sc(CancelBatchJobExecution)
|
|
14
|
+
.sc(CancelBatchJobExecution$)
|
|
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 { CreateApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "CreateApplication", {})
|
|
13
13
|
.n("M2Client", "CreateApplicationCommand")
|
|
14
|
-
.sc(CreateApplication)
|
|
14
|
+
.sc(CreateApplication$)
|
|
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 { CreateDataSetExportTask } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateDataSetExportTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateDataSetExportTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateDataSetExportTaskCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "CreateDataSetExportTask", {})
|
|
13
13
|
.n("M2Client", "CreateDataSetExportTaskCommand")
|
|
14
|
-
.sc(CreateDataSetExportTask)
|
|
14
|
+
.sc(CreateDataSetExportTask$)
|
|
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 { CreateDataSetImportTask } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateDataSetImportTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateDataSetImportTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateDataSetImportTaskCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "CreateDataSetImportTask", {})
|
|
13
13
|
.n("M2Client", "CreateDataSetImportTaskCommand")
|
|
14
|
-
.sc(CreateDataSetImportTask)
|
|
14
|
+
.sc(CreateDataSetImportTask$)
|
|
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 { CreateDeployment } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateDeployment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateDeploymentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateDeploymentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "CreateDeployment", {})
|
|
13
13
|
.n("M2Client", "CreateDeploymentCommand")
|
|
14
|
-
.sc(CreateDeployment)
|
|
14
|
+
.sc(CreateDeployment$)
|
|
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 { CreateEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "CreateEnvironment", {})
|
|
13
13
|
.n("M2Client", "CreateEnvironmentCommand")
|
|
14
|
-
.sc(CreateEnvironment)
|
|
14
|
+
.sc(CreateEnvironment$)
|
|
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 { DeleteApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "DeleteApplication", {})
|
|
13
13
|
.n("M2Client", "DeleteApplicationCommand")
|
|
14
|
-
.sc(DeleteApplication)
|
|
14
|
+
.sc(DeleteApplication$)
|
|
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 { DeleteApplicationFromEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteApplicationFromEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteApplicationFromEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteApplicationFromEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "DeleteApplicationFromEnvironment", {})
|
|
13
13
|
.n("M2Client", "DeleteApplicationFromEnvironmentCommand")
|
|
14
|
-
.sc(DeleteApplicationFromEnvironment)
|
|
14
|
+
.sc(DeleteApplicationFromEnvironment$)
|
|
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 { DeleteEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "DeleteEnvironment", {})
|
|
13
13
|
.n("M2Client", "DeleteEnvironmentCommand")
|
|
14
|
-
.sc(DeleteEnvironment)
|
|
14
|
+
.sc(DeleteEnvironment$)
|
|
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 { GetApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { GetApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "GetApplication", {})
|
|
13
13
|
.n("M2Client", "GetApplicationCommand")
|
|
14
|
-
.sc(GetApplication)
|
|
14
|
+
.sc(GetApplication$)
|
|
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 { GetApplicationVersion } from "../schemas/schemas_0";
|
|
4
|
+
import { GetApplicationVersion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetApplicationVersionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetApplicationVersionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "GetApplicationVersion", {})
|
|
13
13
|
.n("M2Client", "GetApplicationVersionCommand")
|
|
14
|
-
.sc(GetApplicationVersion)
|
|
14
|
+
.sc(GetApplicationVersion$)
|
|
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 { GetBatchJobExecution } from "../schemas/schemas_0";
|
|
4
|
+
import { GetBatchJobExecution$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetBatchJobExecutionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetBatchJobExecutionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "GetBatchJobExecution", {})
|
|
13
13
|
.n("M2Client", "GetBatchJobExecutionCommand")
|
|
14
|
-
.sc(GetBatchJobExecution)
|
|
14
|
+
.sc(GetBatchJobExecution$)
|
|
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 { GetDataSetDetails } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDataSetDetails$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDataSetDetailsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDataSetDetailsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "GetDataSetDetails", {})
|
|
13
13
|
.n("M2Client", "GetDataSetDetailsCommand")
|
|
14
|
-
.sc(GetDataSetDetails)
|
|
14
|
+
.sc(GetDataSetDetails$)
|
|
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 { GetDataSetExportTask } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDataSetExportTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDataSetExportTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDataSetExportTaskCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "GetDataSetExportTask", {})
|
|
13
13
|
.n("M2Client", "GetDataSetExportTaskCommand")
|
|
14
|
-
.sc(GetDataSetExportTask)
|
|
14
|
+
.sc(GetDataSetExportTask$)
|
|
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 { GetDataSetImportTask } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDataSetImportTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDataSetImportTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDataSetImportTaskCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "GetDataSetImportTask", {})
|
|
13
13
|
.n("M2Client", "GetDataSetImportTaskCommand")
|
|
14
|
-
.sc(GetDataSetImportTask)
|
|
14
|
+
.sc(GetDataSetImportTask$)
|
|
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 { GetDeployment } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDeployment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDeploymentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDeploymentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "GetDeployment", {})
|
|
13
13
|
.n("M2Client", "GetDeploymentCommand")
|
|
14
|
-
.sc(GetDeployment)
|
|
14
|
+
.sc(GetDeployment$)
|
|
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 { GetEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { GetEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "GetEnvironment", {})
|
|
13
13
|
.n("M2Client", "GetEnvironmentCommand")
|
|
14
|
-
.sc(GetEnvironment)
|
|
14
|
+
.sc(GetEnvironment$)
|
|
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 { GetSignedBluinsightsUrl } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSignedBluinsightsUrl$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSignedBluinsightsUrlCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSignedBluinsightsUrlCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "GetSignedBluinsightsUrl", {})
|
|
13
13
|
.n("M2Client", "GetSignedBluinsightsUrlCommand")
|
|
14
|
-
.sc(GetSignedBluinsightsUrl)
|
|
14
|
+
.sc(GetSignedBluinsightsUrl$)
|
|
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 { ListApplicationVersions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListApplicationVersions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListApplicationVersionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListApplicationVersionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "ListApplicationVersions", {})
|
|
13
13
|
.n("M2Client", "ListApplicationVersionsCommand")
|
|
14
|
-
.sc(ListApplicationVersions)
|
|
14
|
+
.sc(ListApplicationVersions$)
|
|
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 { ListApplications } from "../schemas/schemas_0";
|
|
4
|
+
import { ListApplications$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListApplicationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListApplicationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "ListApplications", {})
|
|
13
13
|
.n("M2Client", "ListApplicationsCommand")
|
|
14
|
-
.sc(ListApplications)
|
|
14
|
+
.sc(ListApplications$)
|
|
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 { ListBatchJobDefinitions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListBatchJobDefinitions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListBatchJobDefinitionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListBatchJobDefinitionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "ListBatchJobDefinitions", {})
|
|
13
13
|
.n("M2Client", "ListBatchJobDefinitionsCommand")
|
|
14
|
-
.sc(ListBatchJobDefinitions)
|
|
14
|
+
.sc(ListBatchJobDefinitions$)
|
|
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 { ListBatchJobExecutions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListBatchJobExecutions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListBatchJobExecutionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListBatchJobExecutionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "ListBatchJobExecutions", {})
|
|
13
13
|
.n("M2Client", "ListBatchJobExecutionsCommand")
|
|
14
|
-
.sc(ListBatchJobExecutions)
|
|
14
|
+
.sc(ListBatchJobExecutions$)
|
|
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 { ListBatchJobRestartPoints } from "../schemas/schemas_0";
|
|
4
|
+
import { ListBatchJobRestartPoints$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListBatchJobRestartPointsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListBatchJobRestartPointsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "ListBatchJobRestartPoints", {})
|
|
13
13
|
.n("M2Client", "ListBatchJobRestartPointsCommand")
|
|
14
|
-
.sc(ListBatchJobRestartPoints)
|
|
14
|
+
.sc(ListBatchJobRestartPoints$)
|
|
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 { ListDataSetExportHistory } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDataSetExportHistory$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDataSetExportHistoryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDataSetExportHistoryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "ListDataSetExportHistory", {})
|
|
13
13
|
.n("M2Client", "ListDataSetExportHistoryCommand")
|
|
14
|
-
.sc(ListDataSetExportHistory)
|
|
14
|
+
.sc(ListDataSetExportHistory$)
|
|
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 { ListDataSetImportHistory } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDataSetImportHistory$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDataSetImportHistoryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDataSetImportHistoryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "ListDataSetImportHistory", {})
|
|
13
13
|
.n("M2Client", "ListDataSetImportHistoryCommand")
|
|
14
|
-
.sc(ListDataSetImportHistory)
|
|
14
|
+
.sc(ListDataSetImportHistory$)
|
|
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 { ListDataSets } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDataSets$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDataSetsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDataSetsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "ListDataSets", {})
|
|
13
13
|
.n("M2Client", "ListDataSetsCommand")
|
|
14
|
-
.sc(ListDataSets)
|
|
14
|
+
.sc(ListDataSets$)
|
|
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 { ListDeployments } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDeployments$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDeploymentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDeploymentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "ListDeployments", {})
|
|
13
13
|
.n("M2Client", "ListDeploymentsCommand")
|
|
14
|
-
.sc(ListDeployments)
|
|
14
|
+
.sc(ListDeployments$)
|
|
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 { ListEngineVersions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListEngineVersions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListEngineVersionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListEngineVersionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "ListEngineVersions", {})
|
|
13
13
|
.n("M2Client", "ListEngineVersionsCommand")
|
|
14
|
-
.sc(ListEngineVersions)
|
|
14
|
+
.sc(ListEngineVersions$)
|
|
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 { ListEnvironments } from "../schemas/schemas_0";
|
|
4
|
+
import { ListEnvironments$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListEnvironmentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListEnvironmentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "ListEnvironments", {})
|
|
13
13
|
.n("M2Client", "ListEnvironmentsCommand")
|
|
14
|
-
.sc(ListEnvironments)
|
|
14
|
+
.sc(ListEnvironments$)
|
|
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("AwsSupernovaControlPlaneService", "ListTagsForResource", {})
|
|
13
13
|
.n("M2Client", "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 { StartApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { StartApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "StartApplication", {})
|
|
13
13
|
.n("M2Client", "StartApplicationCommand")
|
|
14
|
-
.sc(StartApplication)
|
|
14
|
+
.sc(StartApplication$)
|
|
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 { StartBatchJob } from "../schemas/schemas_0";
|
|
4
|
+
import { StartBatchJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartBatchJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartBatchJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "StartBatchJob", {})
|
|
13
13
|
.n("M2Client", "StartBatchJobCommand")
|
|
14
|
-
.sc(StartBatchJob)
|
|
14
|
+
.sc(StartBatchJob$)
|
|
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 { StopApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { StopApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "StopApplication", {})
|
|
13
13
|
.n("M2Client", "StopApplicationCommand")
|
|
14
|
-
.sc(StopApplication)
|
|
14
|
+
.sc(StopApplication$)
|
|
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("AwsSupernovaControlPlaneService", "TagResource", {})
|
|
13
13
|
.n("M2Client", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
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 { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AwsSupernovaControlPlaneService", "UntagResource", {})
|
|
13
13
|
.n("M2Client", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|