@aws-sdk/client-uxc 3.1077.0 → 3.1079.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 +11 -33
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/GetAccountCustomizationsCommand.js +2 -14
- package/dist-es/commands/ListServicesCommand.js +2 -14
- package/dist-es/commands/UpdateAccountCustomizationsCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/GetAccountCustomizationsCommand.d.ts +3 -8
- package/dist-types/commands/ListServicesCommand.d.ts +3 -8
- package/dist-types/commands/UpdateAccountCustomizationsCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/GetAccountCustomizationsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateAccountCustomizationsCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +8 -8
package/dist-cjs/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
2
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
3
|
-
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client,
|
|
4
|
-
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
|
|
4
|
+
const { Command: $Command } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = $Command;
|
|
5
6
|
exports.__Client = Client;
|
|
6
7
|
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
8
|
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
@@ -66,7 +67,7 @@ const commonParams = {
|
|
|
66
67
|
Region: { type: "builtInParams", name: "region" },
|
|
67
68
|
};
|
|
68
69
|
|
|
69
|
-
var version = "3.
|
|
70
|
+
var version = "3.1078.0";
|
|
70
71
|
var packageInfo = {
|
|
71
72
|
version: version};
|
|
72
73
|
|
|
@@ -427,40 +428,17 @@ class UxcClient extends Client {
|
|
|
427
428
|
}
|
|
428
429
|
}
|
|
429
430
|
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
})
|
|
436
|
-
.s("AWSAccountUXSetting", "GetAccountCustomizations", {})
|
|
437
|
-
.n("UxcClient", "GetAccountCustomizationsCommand")
|
|
438
|
-
.sc(GetAccountCustomizations$)
|
|
439
|
-
.build() {
|
|
431
|
+
const command = makeBuilder(commonParams, "AWSAccountUXSetting", "UxcClient", getEndpointPlugin);
|
|
432
|
+
const _ep0 = {};
|
|
433
|
+
const _mw0 = (Command, cs, config, o) => [];
|
|
434
|
+
|
|
435
|
+
class GetAccountCustomizationsCommand extends command(_ep0, _mw0, "GetAccountCustomizations", GetAccountCustomizations$) {
|
|
440
436
|
}
|
|
441
437
|
|
|
442
|
-
class ListServicesCommand extends
|
|
443
|
-
.classBuilder()
|
|
444
|
-
.ep(commonParams)
|
|
445
|
-
.m(function (Command, cs, config, o) {
|
|
446
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
447
|
-
})
|
|
448
|
-
.s("AWSAccountUXSetting", "ListServices", {})
|
|
449
|
-
.n("UxcClient", "ListServicesCommand")
|
|
450
|
-
.sc(ListServices$)
|
|
451
|
-
.build() {
|
|
438
|
+
class ListServicesCommand extends command(_ep0, _mw0, "ListServices", ListServices$) {
|
|
452
439
|
}
|
|
453
440
|
|
|
454
|
-
class UpdateAccountCustomizationsCommand extends
|
|
455
|
-
.classBuilder()
|
|
456
|
-
.ep(commonParams)
|
|
457
|
-
.m(function (Command, cs, config, o) {
|
|
458
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
459
|
-
})
|
|
460
|
-
.s("AWSAccountUXSetting", "UpdateAccountCustomizations", {})
|
|
461
|
-
.n("UxcClient", "UpdateAccountCustomizationsCommand")
|
|
462
|
-
.sc(UpdateAccountCustomizations$)
|
|
463
|
-
.build() {
|
|
441
|
+
class UpdateAccountCustomizationsCommand extends command(_ep0, _mw0, "UpdateAccountCustomizations", UpdateAccountCustomizations$) {
|
|
464
442
|
}
|
|
465
443
|
|
|
466
444
|
const paginateListServices = createPaginator(UxcClient, ListServicesCommand, "nextToken", "nextToken", "");
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { makeBuilder } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "./endpoint/EndpointParameters";
|
|
4
|
+
export const command = makeBuilder(commonParams, "AWSAccountUXSetting", "UxcClient", getEndpointPlugin);
|
|
5
|
+
export const _ep0 = {};
|
|
6
|
+
export const _mw0 = (Command, cs, config, o) => [];
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { GetAccountCustomizations$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class GetAccountCustomizationsCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSAccountUXSetting", "GetAccountCustomizations", {})
|
|
13
|
-
.n("UxcClient", "GetAccountCustomizationsCommand")
|
|
14
|
-
.sc(GetAccountCustomizations$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class GetAccountCustomizationsCommand extends command(_ep0, _mw0, "GetAccountCustomizations", GetAccountCustomizations$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { ListServices$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class ListServicesCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSAccountUXSetting", "ListServices", {})
|
|
13
|
-
.n("UxcClient", "ListServicesCommand")
|
|
14
|
-
.sc(ListServices$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class ListServicesCommand extends command(_ep0, _mw0, "ListServices", ListServices$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { UpdateAccountCustomizations$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class UpdateAccountCustomizationsCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSAccountUXSetting", "UpdateAccountCustomizations", {})
|
|
13
|
-
.n("UxcClient", "UpdateAccountCustomizationsCommand")
|
|
14
|
-
.sc(UpdateAccountCustomizations$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class UpdateAccountCustomizationsCommand extends command(_ep0, _mw0, "UpdateAccountCustomizations", UpdateAccountCustomizations$) {
|
|
16
4
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import type { ServiceInputTypes, ServiceOutputTypes, UxcClientResolvedConfig } from "./UxcClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
|
|
7
|
+
new (input: I): import("@smithy/core/client").CommandImpl<I, O, UxcClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
8
|
+
new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, UxcClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
9
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
15
|
+
/**
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { GetAccountCustomizationsInput, GetAccountCustomizationsOutput } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, UxcClientResolvedConfig } from "../UxcClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetAccountCustomizationsCommandInput extends GetAccountCustomiz
|
|
|
22
19
|
export interface GetAccountCustomizationsCommandOutput extends GetAccountCustomizationsOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetAccountCustomizationsCommand_base: {
|
|
25
|
-
new (input: GetAccountCustomizationsCommandInput): import("@smithy/core/client").CommandImpl<GetAccountCustomizationsCommandInput, GetAccountCustomizationsCommandOutput, UxcClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [GetAccountCustomizationsCommandInput]): import("@smithy/core/client").CommandImpl<GetAccountCustomizationsCommandInput, GetAccountCustomizationsCommandOutput, UxcClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetAccountCustomizationsCommandInput): import("@smithy/core/client").CommandImpl<GetAccountCustomizationsCommandInput, GetAccountCustomizationsCommandOutput, import("..").UxcClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [GetAccountCustomizationsCommandInput]): import("@smithy/core/client").CommandImpl<GetAccountCustomizationsCommandInput, GetAccountCustomizationsCommandOutput, import("..").UxcClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns the current account customization settings, including account color, visible services, and visible Regions. Settings that you have not configured return their default values: visible Regions and visible services return `null`, and account color returns `none`.</p> <note> <p>The <code>visibleServices</code> and <code>visibleRegions</code> settings control only the appearance of services and Regions in the Amazon Web Services Management Console. They do not restrict access through the CLI, SDKs, or other APIs.</p> </note>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListServicesInput, ListServicesOutput } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, UxcClientResolvedConfig } from "../UxcClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListServicesCommandInput extends ListServicesInput {
|
|
|
22
19
|
export interface ListServicesCommandOutput extends ListServicesOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListServicesCommand_base: {
|
|
25
|
-
new (input: ListServicesCommandInput): import("@smithy/core/client").CommandImpl<ListServicesCommandInput, ListServicesCommandOutput, UxcClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [ListServicesCommandInput]): import("@smithy/core/client").CommandImpl<ListServicesCommandInput, ListServicesCommandOutput, UxcClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListServicesCommandInput): import("@smithy/core/client").CommandImpl<ListServicesCommandInput, ListServicesCommandOutput, import("..").UxcClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListServicesCommandInput]): import("@smithy/core/client").CommandImpl<ListServicesCommandInput, ListServicesCommandOutput, import("..").UxcClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns a paginated list of Amazon Web Services service identifiers that you can use as values for the <code>visibleServices</code> setting in <a href="https://docs.aws.amazon.com/awsconsolehelpdocs/latest/APIReference/API_UpdateAccountCustomizations.html">UpdateAccountCustomizations</a>. The available services vary by Amazon Web Services partition. Use pagination to retrieve all results.</p> <note> <p>The <code>visibleServices</code> setting controls only the appearance of services in the Amazon Web Services Management Console. It does not restrict access through the CLI, SDKs, or other APIs.</p> </note>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { UpdateAccountCustomizationsInput, UpdateAccountCustomizationsOutput } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, UxcClientResolvedConfig } from "../UxcClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface UpdateAccountCustomizationsCommandInput extends UpdateAccountCu
|
|
|
22
19
|
export interface UpdateAccountCustomizationsCommandOutput extends UpdateAccountCustomizationsOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const UpdateAccountCustomizationsCommand_base: {
|
|
25
|
-
new (input: UpdateAccountCustomizationsCommandInput): import("@smithy/core/client").CommandImpl<UpdateAccountCustomizationsCommandInput, UpdateAccountCustomizationsCommandOutput, UxcClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [UpdateAccountCustomizationsCommandInput]): import("@smithy/core/client").CommandImpl<UpdateAccountCustomizationsCommandInput, UpdateAccountCustomizationsCommandOutput, UxcClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: UpdateAccountCustomizationsCommandInput): import("@smithy/core/client").CommandImpl<UpdateAccountCustomizationsCommandInput, UpdateAccountCustomizationsCommandOutput, import("..").UxcClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [UpdateAccountCustomizationsCommandInput]): import("@smithy/core/client").CommandImpl<UpdateAccountCustomizationsCommandInput, UpdateAccountCustomizationsCommandOutput, import("..").UxcClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Updates one or more account customization settings. You can update account color, visible services, and visible Regions in a single request. Only the settings that you include in the request body are modified. Omitted settings remain unchanged. To reset a setting to its default behavior, set the value to <code>null</code> for visible Regions and visible services, or <code>none</code> for account color. This operation is idempotent.</p> <note> <p>The <code>visibleServices</code> and <code>visibleRegions</code> settings control only the appearance of services and Regions in the Amazon Web Services Management Console. They do not restrict access through the CLI, SDKs, or other APIs.</p> </note>
|
package/dist-types/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
|
|
|
9
9
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
10
10
|
export type { UxcExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
12
13
|
export * from "./schemas/schemas_0";
|
|
13
14
|
export * from "./pagination";
|
|
14
15
|
export * from "./models/enums";
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ServiceInputTypes,
|
|
4
|
+
ServiceOutputTypes,
|
|
5
|
+
UxcClientResolvedConfig,
|
|
6
|
+
} from "./UxcClient";
|
|
7
|
+
export declare const command: <
|
|
8
|
+
I extends ServiceInputTypes,
|
|
9
|
+
O extends ServiceOutputTypes
|
|
10
|
+
>(
|
|
11
|
+
added: EndpointParameterInstructions,
|
|
12
|
+
plugins: (
|
|
13
|
+
CommandCtor: any,
|
|
14
|
+
clientStack: any,
|
|
15
|
+
config: any,
|
|
16
|
+
options: any
|
|
17
|
+
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
|
+
op: string,
|
|
19
|
+
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
+
smithyContext?: Record<string, unknown>
|
|
21
|
+
) => {
|
|
22
|
+
new (input: I): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
I,
|
|
24
|
+
O,
|
|
25
|
+
UxcClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: import("@smithy/types").OptionalParameter<I>
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
I,
|
|
33
|
+
O,
|
|
34
|
+
UxcClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
+
export declare const _mw0: (
|
|
42
|
+
Command: any,
|
|
43
|
+
cs: any,
|
|
44
|
+
config: any,
|
|
45
|
+
o: any
|
|
46
|
+
) => never[];
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
GetAccountCustomizationsInput,
|
|
5
4
|
GetAccountCustomizationsOutput,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
UxcClientResolvedConfig,
|
|
11
|
-
} from "../UxcClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetAccountCustomizationsCommandInput
|
|
15
8
|
extends GetAccountCustomizationsInput {}
|
|
16
9
|
export interface GetAccountCustomizationsCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const GetAccountCustomizationsCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
GetAccountCustomizationsCommandInput,
|
|
24
17
|
GetAccountCustomizationsCommandOutput,
|
|
25
|
-
UxcClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").UxcClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
...[input]: [] | [GetAccountCustomizationsCommandInput]
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
GetAccountCustomizationsCommandInput,
|
|
33
26
|
GetAccountCustomizationsCommandOutput,
|
|
34
|
-
UxcClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").UxcClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class GetAccountCustomizationsCommand extends GetAccountCustomizationsCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { ListServicesInput, ListServicesOutput } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
UxcClientResolvedConfig,
|
|
8
|
-
} from "../UxcClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface ListServicesCommandInput extends ListServicesInput {}
|
|
12
5
|
export interface ListServicesCommandOutput
|
|
13
6
|
extends ListServicesOutput,
|
|
@@ -18,22 +11,20 @@ declare const ListServicesCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
ListServicesCommandInput,
|
|
20
13
|
ListServicesCommandOutput,
|
|
21
|
-
UxcClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").UxcClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
...[input]: [] | [ListServicesCommandInput]
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
ListServicesCommandInput,
|
|
29
22
|
ListServicesCommandOutput,
|
|
30
|
-
UxcClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").UxcClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class ListServicesCommand extends ListServicesCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
UpdateAccountCustomizationsInput,
|
|
5
4
|
UpdateAccountCustomizationsOutput,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
UxcClientResolvedConfig,
|
|
11
|
-
} from "../UxcClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface UpdateAccountCustomizationsCommandInput
|
|
15
8
|
extends UpdateAccountCustomizationsInput {}
|
|
16
9
|
export interface UpdateAccountCustomizationsCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const UpdateAccountCustomizationsCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
UpdateAccountCustomizationsCommandInput,
|
|
24
17
|
UpdateAccountCustomizationsCommandOutput,
|
|
25
|
-
UxcClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").UxcClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
...[input]: [] | [UpdateAccountCustomizationsCommandInput]
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
UpdateAccountCustomizationsCommandInput,
|
|
33
26
|
UpdateAccountCustomizationsCommandOutput,
|
|
34
|
-
UxcClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").UxcClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class UpdateAccountCustomizationsCommand extends UpdateAccountCustomizationsCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { UxcExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
7
8
|
export * from "./schemas/schemas_0";
|
|
8
9
|
export * from "./pagination";
|
|
9
10
|
export * from "./models/enums";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-uxc",
|
|
3
3
|
"description": "AWS SDK for JavaScript Uxc Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1079.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"module": "./dist-es/index.js",
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@aws-sdk/core": "^3.974.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
-
"@aws-sdk/types": "^3.973.
|
|
25
|
-
"@smithy/core": "^3.
|
|
26
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
27
|
-
"@smithy/node-http-handler": "^4.9.
|
|
28
|
-
"@smithy/types": "^4.15.
|
|
22
|
+
"@aws-sdk/core": "^3.974.27",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "^3.972.62",
|
|
24
|
+
"@aws-sdk/types": "^3.973.15",
|
|
25
|
+
"@smithy/core": "^3.29.0",
|
|
26
|
+
"@smithy/fetch-http-handler": "^5.6.2",
|
|
27
|
+
"@smithy/node-http-handler": "^4.9.2",
|
|
28
|
+
"@smithy/types": "^4.15.1",
|
|
29
29
|
"tslib": "^2.6.2"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|