@aws-sdk/client-ssm-guiconnect 3.1077.0 → 3.1078.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 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 } = require("@smithy/core");
3
- const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
4
- exports.$Command = Command;
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");
@@ -68,7 +69,7 @@ const commonParams = {
68
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
69
70
  };
70
71
 
71
- var version = "3.1076.0";
72
+ var version = "3.1077.0";
72
73
  var packageInfo = {
73
74
  version: version};
74
75
 
@@ -503,40 +504,17 @@ class SSMGuiConnectClient extends Client {
503
504
  }
504
505
  }
505
506
 
506
- class DeleteConnectionRecordingPreferencesCommand extends Command
507
- .classBuilder()
508
- .ep(commonParams)
509
- .m(function (Command, cs, config, o) {
510
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
511
- })
512
- .s("SSMGuiConnect", "DeleteConnectionRecordingPreferences", {})
513
- .n("SSMGuiConnectClient", "DeleteConnectionRecordingPreferencesCommand")
514
- .sc(DeleteConnectionRecordingPreferences$)
515
- .build() {
507
+ const command = makeBuilder(commonParams, "SSMGuiConnect", "SSMGuiConnectClient", getEndpointPlugin);
508
+ const _ep0 = {};
509
+ const _mw0 = (Command, cs, config, o) => [];
510
+
511
+ class DeleteConnectionRecordingPreferencesCommand extends command(_ep0, _mw0, "DeleteConnectionRecordingPreferences", DeleteConnectionRecordingPreferences$) {
516
512
  }
517
513
 
518
- class GetConnectionRecordingPreferencesCommand extends Command
519
- .classBuilder()
520
- .ep(commonParams)
521
- .m(function (Command, cs, config, o) {
522
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
523
- })
524
- .s("SSMGuiConnect", "GetConnectionRecordingPreferences", {})
525
- .n("SSMGuiConnectClient", "GetConnectionRecordingPreferencesCommand")
526
- .sc(GetConnectionRecordingPreferences$)
527
- .build() {
514
+ class GetConnectionRecordingPreferencesCommand extends command(_ep0, _mw0, "GetConnectionRecordingPreferences", GetConnectionRecordingPreferences$) {
528
515
  }
529
516
 
530
- class UpdateConnectionRecordingPreferencesCommand extends Command
531
- .classBuilder()
532
- .ep(commonParams)
533
- .m(function (Command, cs, config, o) {
534
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
535
- })
536
- .s("SSMGuiConnect", "UpdateConnectionRecordingPreferences", {})
537
- .n("SSMGuiConnectClient", "UpdateConnectionRecordingPreferencesCommand")
538
- .sc(UpdateConnectionRecordingPreferences$)
539
- .build() {
517
+ class UpdateConnectionRecordingPreferencesCommand extends command(_ep0, _mw0, "UpdateConnectionRecordingPreferences", UpdateConnectionRecordingPreferences$) {
540
518
  }
541
519
 
542
520
  const commands = {
@@ -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, "SSMGuiConnect", "SSMGuiConnectClient", getEndpointPlugin);
5
+ export const _ep0 = {};
6
+ export const _mw0 = (Command, cs, config, o) => [];
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { DeleteConnectionRecordingPreferences$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class DeleteConnectionRecordingPreferencesCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("SSMGuiConnect", "DeleteConnectionRecordingPreferences", {})
13
- .n("SSMGuiConnectClient", "DeleteConnectionRecordingPreferencesCommand")
14
- .sc(DeleteConnectionRecordingPreferences$)
15
- .build() {
3
+ export class DeleteConnectionRecordingPreferencesCommand extends command(_ep0, _mw0, "DeleteConnectionRecordingPreferences", DeleteConnectionRecordingPreferences$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetConnectionRecordingPreferences$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetConnectionRecordingPreferencesCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("SSMGuiConnect", "GetConnectionRecordingPreferences", {})
13
- .n("SSMGuiConnectClient", "GetConnectionRecordingPreferencesCommand")
14
- .sc(GetConnectionRecordingPreferences$)
15
- .build() {
3
+ export class GetConnectionRecordingPreferencesCommand extends command(_ep0, _mw0, "GetConnectionRecordingPreferences", GetConnectionRecordingPreferences$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { UpdateConnectionRecordingPreferences$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class UpdateConnectionRecordingPreferencesCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("SSMGuiConnect", "UpdateConnectionRecordingPreferences", {})
13
- .n("SSMGuiConnectClient", "UpdateConnectionRecordingPreferencesCommand")
14
- .sc(UpdateConnectionRecordingPreferences$)
15
- .build() {
3
+ export class UpdateConnectionRecordingPreferencesCommand extends command(_ep0, _mw0, "UpdateConnectionRecordingPreferences", UpdateConnectionRecordingPreferences$) {
16
4
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./SSMGuiConnectClient";
2
2
  export * from "./SSMGuiConnect";
3
3
  export * from "./commands";
4
+ export { Command as $Command } from "@smithy/core/client";
4
5
  export * from "./schemas/schemas_0";
5
6
  export * from "./models/errors";
6
7
  export * from "./models/models_0";
@@ -0,0 +1,18 @@
1
+ import type { EndpointParameterInstructions } from "@smithy/types";
2
+ import type { ServiceInputTypes, ServiceOutputTypes, SSMGuiConnectClientResolvedConfig } from "./SSMGuiConnectClient";
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, SSMGuiConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
8
+ new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, SSMGuiConnectClientResolvedConfig, 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 { DeleteConnectionRecordingPreferencesRequest, DeleteConnectionRecordingPreferencesResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SSMGuiConnectClientResolvedConfig } from "../SSMGuiConnectClient";
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 DeleteConnectionRecordingPreferencesCommandInput extends Delete
22
19
  export interface DeleteConnectionRecordingPreferencesCommandOutput extends DeleteConnectionRecordingPreferencesResponse, __MetadataBearer {
23
20
  }
24
21
  declare const DeleteConnectionRecordingPreferencesCommand_base: {
25
- new (input: DeleteConnectionRecordingPreferencesCommandInput): import("@smithy/core/client").CommandImpl<DeleteConnectionRecordingPreferencesCommandInput, DeleteConnectionRecordingPreferencesCommandOutput, SSMGuiConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [DeleteConnectionRecordingPreferencesCommandInput]): import("@smithy/core/client").CommandImpl<DeleteConnectionRecordingPreferencesCommandInput, DeleteConnectionRecordingPreferencesCommandOutput, SSMGuiConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeleteConnectionRecordingPreferencesCommandInput): import("@smithy/core/client").CommandImpl<DeleteConnectionRecordingPreferencesCommandInput, DeleteConnectionRecordingPreferencesCommandOutput, import("..").SSMGuiConnectClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [DeleteConnectionRecordingPreferencesCommandInput]): import("@smithy/core/client").CommandImpl<DeleteConnectionRecordingPreferencesCommandInput, DeleteConnectionRecordingPreferencesCommandOutput, import("..").SSMGuiConnectClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Deletes the preferences for recording RDP connections.</p>
@@ -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 { GetConnectionRecordingPreferencesResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SSMGuiConnectClientResolvedConfig } from "../SSMGuiConnectClient";
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 GetConnectionRecordingPreferencesCommandInput {
22
19
  export interface GetConnectionRecordingPreferencesCommandOutput extends GetConnectionRecordingPreferencesResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GetConnectionRecordingPreferencesCommand_base: {
25
- new (input: GetConnectionRecordingPreferencesCommandInput): import("@smithy/core/client").CommandImpl<GetConnectionRecordingPreferencesCommandInput, GetConnectionRecordingPreferencesCommandOutput, SSMGuiConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [GetConnectionRecordingPreferencesCommandInput]): import("@smithy/core/client").CommandImpl<GetConnectionRecordingPreferencesCommandInput, GetConnectionRecordingPreferencesCommandOutput, SSMGuiConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetConnectionRecordingPreferencesCommandInput): import("@smithy/core/client").CommandImpl<GetConnectionRecordingPreferencesCommandInput, GetConnectionRecordingPreferencesCommandOutput, import("..").SSMGuiConnectClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [GetConnectionRecordingPreferencesCommandInput]): import("@smithy/core/client").CommandImpl<GetConnectionRecordingPreferencesCommandInput, GetConnectionRecordingPreferencesCommandOutput, import("..").SSMGuiConnectClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns the preferences specified for recording RDP connections in the requesting Amazon Web Services account and Amazon Web Services Region.</p>
@@ -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 { UpdateConnectionRecordingPreferencesRequest, UpdateConnectionRecordingPreferencesResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SSMGuiConnectClientResolvedConfig } from "../SSMGuiConnectClient";
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 UpdateConnectionRecordingPreferencesCommandInput extends Update
22
19
  export interface UpdateConnectionRecordingPreferencesCommandOutput extends UpdateConnectionRecordingPreferencesResponse, __MetadataBearer {
23
20
  }
24
21
  declare const UpdateConnectionRecordingPreferencesCommand_base: {
25
- new (input: UpdateConnectionRecordingPreferencesCommandInput): import("@smithy/core/client").CommandImpl<UpdateConnectionRecordingPreferencesCommandInput, UpdateConnectionRecordingPreferencesCommandOutput, SSMGuiConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UpdateConnectionRecordingPreferencesCommandInput): import("@smithy/core/client").CommandImpl<UpdateConnectionRecordingPreferencesCommandInput, UpdateConnectionRecordingPreferencesCommandOutput, SSMGuiConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UpdateConnectionRecordingPreferencesCommandInput): import("@smithy/core/client").CommandImpl<UpdateConnectionRecordingPreferencesCommandInput, UpdateConnectionRecordingPreferencesCommandOutput, import("..").SSMGuiConnectClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UpdateConnectionRecordingPreferencesCommandInput): import("@smithy/core/client").CommandImpl<UpdateConnectionRecordingPreferencesCommandInput, UpdateConnectionRecordingPreferencesCommandOutput, import("..").SSMGuiConnectClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Updates the preferences for recording RDP connections.</p>
@@ -32,6 +32,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
32
32
  export type { RuntimeExtension } from "./runtimeExtensions";
33
33
  export type { SSMGuiConnectExtensionConfiguration } from "./extensionConfiguration";
34
34
  export * from "./commands";
35
+ export { Command as $Command } from "@smithy/core/client";
35
36
  export * from "./schemas/schemas_0";
36
37
  export * from "./models/errors";
37
38
  export * from "./models/models_0";
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ ServiceInputTypes,
4
+ ServiceOutputTypes,
5
+ SSMGuiConnectClientResolvedConfig,
6
+ } from "./SSMGuiConnectClient";
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
+ SSMGuiConnectClientResolvedConfig,
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
+ SSMGuiConnectClientResolvedConfig,
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
  DeleteConnectionRecordingPreferencesRequest,
5
4
  DeleteConnectionRecordingPreferencesResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- SSMGuiConnectClientResolvedConfig,
11
- } from "../SSMGuiConnectClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface DeleteConnectionRecordingPreferencesCommandInput
15
8
  extends DeleteConnectionRecordingPreferencesRequest {}
16
9
  export interface DeleteConnectionRecordingPreferencesCommandOutput
@@ -22,22 +15,20 @@ declare const DeleteConnectionRecordingPreferencesCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  DeleteConnectionRecordingPreferencesCommandInput,
24
17
  DeleteConnectionRecordingPreferencesCommandOutput,
25
- SSMGuiConnectClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").SSMGuiConnectClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  ...[input]: [] | [DeleteConnectionRecordingPreferencesCommandInput]
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  DeleteConnectionRecordingPreferencesCommandInput,
33
26
  DeleteConnectionRecordingPreferencesCommandOutput,
34
- SSMGuiConnectClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").SSMGuiConnectClientResolvedConfig,
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 DeleteConnectionRecordingPreferencesCommand extends DeleteConnectionRecordingPreferencesCommand_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 { GetConnectionRecordingPreferencesResponse } from "../models/models_0";
4
- import {
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- SSMGuiConnectClientResolvedConfig,
8
- } from "../SSMGuiConnectClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface GetConnectionRecordingPreferencesCommandInput {}
12
5
  export interface GetConnectionRecordingPreferencesCommandOutput
13
6
  extends GetConnectionRecordingPreferencesResponse,
@@ -18,22 +11,20 @@ declare const GetConnectionRecordingPreferencesCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  GetConnectionRecordingPreferencesCommandInput,
20
13
  GetConnectionRecordingPreferencesCommandOutput,
21
- SSMGuiConnectClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").SSMGuiConnectClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  ...[input]: [] | [GetConnectionRecordingPreferencesCommandInput]
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  GetConnectionRecordingPreferencesCommandInput,
29
22
  GetConnectionRecordingPreferencesCommandOutput,
30
- SSMGuiConnectClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").SSMGuiConnectClientResolvedConfig,
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 GetConnectionRecordingPreferencesCommand extends GetConnectionRecordingPreferencesCommand_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
  UpdateConnectionRecordingPreferencesRequest,
5
4
  UpdateConnectionRecordingPreferencesResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- SSMGuiConnectClientResolvedConfig,
11
- } from "../SSMGuiConnectClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface UpdateConnectionRecordingPreferencesCommandInput
15
8
  extends UpdateConnectionRecordingPreferencesRequest {}
16
9
  export interface UpdateConnectionRecordingPreferencesCommandOutput
@@ -22,22 +15,20 @@ declare const UpdateConnectionRecordingPreferencesCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  UpdateConnectionRecordingPreferencesCommandInput,
24
17
  UpdateConnectionRecordingPreferencesCommandOutput,
25
- SSMGuiConnectClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").SSMGuiConnectClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: UpdateConnectionRecordingPreferencesCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  UpdateConnectionRecordingPreferencesCommandInput,
33
26
  UpdateConnectionRecordingPreferencesCommandOutput,
34
- SSMGuiConnectClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").SSMGuiConnectClientResolvedConfig,
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 UpdateConnectionRecordingPreferencesCommand extends UpdateConnectionRecordingPreferencesCommand_base {
43
34
  protected static __types: {
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { SSMGuiConnectExtensionConfiguration } 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 "./models/errors";
9
10
  export * from "./models/models_0";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ssm-guiconnect",
3
3
  "description": "AWS SDK for JavaScript Ssm Guiconnect Client for Node.js, Browser and React Native",
4
- "version": "3.1077.0",
4
+ "version": "3.1078.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.25",
23
- "@aws-sdk/credential-provider-node": "^3.972.60",
24
- "@aws-sdk/types": "^3.973.14",
25
- "@smithy/core": "^3.28.0",
26
- "@smithy/fetch-http-handler": "^5.6.1",
27
- "@smithy/node-http-handler": "^4.9.1",
28
- "@smithy/types": "^4.15.0",
22
+ "@aws-sdk/core": "^3.974.26",
23
+ "@aws-sdk/credential-provider-node": "^3.972.61",
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": {