@aws-sdk/client-greengrassv2 3.1086.0 → 3.1088.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.
Files changed (49) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/GreengrassV2.d.ts +96 -125
  3. package/dist-types/ts3.4/GreengrassV2Client.d.ts +7 -20
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
  5. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
  6. package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
  7. package/dist-types/ts3.4/commands/AssociateServiceRoleToAccountCommand.d.ts +4 -6
  8. package/dist-types/ts3.4/commands/BatchAssociateClientDeviceWithCoreDeviceCommand.d.ts +4 -6
  9. package/dist-types/ts3.4/commands/BatchDisassociateClientDeviceFromCoreDeviceCommand.d.ts +4 -6
  10. package/dist-types/ts3.4/commands/CancelDeploymentCommand.d.ts +4 -9
  11. package/dist-types/ts3.4/commands/CreateComponentVersionCommand.d.ts +4 -9
  12. package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +4 -9
  13. package/dist-types/ts3.4/commands/DeleteComponentCommand.d.ts +2 -2
  14. package/dist-types/ts3.4/commands/DeleteCoreDeviceCommand.d.ts +2 -2
  15. package/dist-types/ts3.4/commands/DeleteDeploymentCommand.d.ts +2 -2
  16. package/dist-types/ts3.4/commands/DescribeComponentCommand.d.ts +5 -10
  17. package/dist-types/ts3.4/commands/DisassociateServiceRoleFromAccountCommand.d.ts +3 -5
  18. package/dist-types/ts3.4/commands/GetComponentCommand.d.ts +3 -5
  19. package/dist-types/ts3.4/commands/GetComponentVersionArtifactCommand.d.ts +4 -6
  20. package/dist-types/ts3.4/commands/GetConnectivityInfoCommand.d.ts +5 -10
  21. package/dist-types/ts3.4/commands/GetCoreDeviceCommand.d.ts +4 -9
  22. package/dist-types/ts3.4/commands/GetDeploymentCommand.d.ts +4 -9
  23. package/dist-types/ts3.4/commands/GetServiceRoleForAccountCommand.d.ts +3 -5
  24. package/dist-types/ts3.4/commands/ListClientDevicesAssociatedWithCoreDeviceCommand.d.ts +4 -6
  25. package/dist-types/ts3.4/commands/ListComponentVersionsCommand.d.ts +5 -10
  26. package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +3 -8
  27. package/dist-types/ts3.4/commands/ListCoreDevicesCommand.d.ts +3 -8
  28. package/dist-types/ts3.4/commands/ListDeploymentsCommand.d.ts +3 -8
  29. package/dist-types/ts3.4/commands/ListEffectiveDeploymentsCommand.d.ts +4 -6
  30. package/dist-types/ts3.4/commands/ListInstalledComponentsCommand.d.ts +4 -6
  31. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
  32. package/dist-types/ts3.4/commands/ResolveComponentCandidatesCommand.d.ts +3 -5
  33. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
  34. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
  35. package/dist-types/ts3.4/commands/UpdateConnectivityInfoCommand.d.ts +5 -10
  36. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  37. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  38. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  39. package/dist-types/ts3.4/models/enums.d.ts +9 -18
  40. package/dist-types/ts3.4/models/errors.d.ts +7 -24
  41. package/dist-types/ts3.4/models/models_0.d.ts +2 -6
  42. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  43. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  44. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  45. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  46. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  47. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  48. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
  49. package/package.json +39 -39
@@ -7,17 +7,10 @@ import { GreengrassV2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
7
  export interface HttpAuthExtensionConfiguration {
8
8
  setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
9
  httpAuthSchemes(): HttpAuthScheme[];
10
- setHttpAuthSchemeProvider(
11
- httpAuthSchemeProvider: GreengrassV2HttpAuthSchemeProvider
12
- ): void;
10
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: GreengrassV2HttpAuthSchemeProvider): void;
13
11
  httpAuthSchemeProvider(): GreengrassV2HttpAuthSchemeProvider;
14
- setCredentials(
15
- credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
- ): void;
17
- credentials():
18
- | AwsCredentialIdentity
19
- | AwsCredentialIdentityProvider
20
- | undefined;
12
+ setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
13
+ credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
21
14
  }
22
15
  export type HttpAuthRuntimeConfig = Partial<{
23
16
  httpAuthSchemes: HttpAuthScheme[];
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
25
18
  credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
19
  }>;
27
20
  export declare const getHttpAuthExtensionConfiguration: (
28
- runtimeConfig: HttpAuthRuntimeConfig
21
+ runtimeConfig: HttpAuthRuntimeConfig,
29
22
  ) => HttpAuthExtensionConfiguration;
30
23
  export declare const resolveHttpAuthRuntimeConfig: (
31
- config: HttpAuthExtensionConfiguration
24
+ config: HttpAuthExtensionConfiguration,
32
25
  ) => HttpAuthRuntimeConfig;
@@ -12,36 +12,32 @@ import {
12
12
  Provider,
13
13
  } from "@smithy/types";
14
14
  import { GreengrassV2ClientResolvedConfig } from "../GreengrassV2Client";
15
- export interface GreengrassV2HttpAuthSchemeParameters
16
- extends HttpAuthSchemeParameters {
15
+ export interface GreengrassV2HttpAuthSchemeParameters extends HttpAuthSchemeParameters {
17
16
  region?: string;
18
17
  }
19
- export interface GreengrassV2HttpAuthSchemeParametersProvider
20
- extends HttpAuthSchemeParametersProvider<
21
- GreengrassV2ClientResolvedConfig,
22
- HandlerExecutionContext,
23
- GreengrassV2HttpAuthSchemeParameters,
24
- object
25
- > {}
18
+ export interface GreengrassV2HttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
19
+ GreengrassV2ClientResolvedConfig,
20
+ HandlerExecutionContext,
21
+ GreengrassV2HttpAuthSchemeParameters,
22
+ object
23
+ > {}
26
24
  export declare const defaultGreengrassV2HttpAuthSchemeParametersProvider: (
27
25
  config: GreengrassV2ClientResolvedConfig,
28
26
  context: HandlerExecutionContext,
29
- input: object
27
+ input: object,
30
28
  ) => Promise<GreengrassV2HttpAuthSchemeParameters>;
31
- export interface GreengrassV2HttpAuthSchemeProvider
32
- extends HttpAuthSchemeProvider<GreengrassV2HttpAuthSchemeParameters> {}
29
+ export interface GreengrassV2HttpAuthSchemeProvider extends HttpAuthSchemeProvider<GreengrassV2HttpAuthSchemeParameters> {}
33
30
  export declare const defaultGreengrassV2HttpAuthSchemeProvider: GreengrassV2HttpAuthSchemeProvider;
34
31
  export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
32
  authSchemePreference?: string[] | Provider<string[]>;
36
33
  httpAuthSchemes?: HttpAuthScheme[];
37
34
  httpAuthSchemeProvider?: GreengrassV2HttpAuthSchemeProvider;
38
35
  }
39
- export interface HttpAuthSchemeResolvedConfig
40
- extends AwsSdkSigV4AuthResolvedConfig {
36
+ export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
41
37
  readonly authSchemePreference: Provider<string[]>;
42
38
  readonly httpAuthSchemes: HttpAuthScheme[];
43
39
  readonly httpAuthSchemeProvider: GreengrassV2HttpAuthSchemeProvider;
44
40
  }
45
41
  export declare const resolveHttpAuthSchemeConfig: <T>(
46
- config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
42
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
47
43
  ) => T & HttpAuthSchemeResolvedConfig;
@@ -4,22 +4,21 @@ import {
4
4
  ServiceInputTypes,
5
5
  ServiceOutputTypes,
6
6
  } from "./GreengrassV2Client";
7
- export declare const command: <
8
- I extends ServiceInputTypes,
9
- O extends ServiceOutputTypes
10
- >(
7
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
11
8
  added: EndpointParameterInstructions,
12
9
  plugins: (
13
10
  CommandCtor: any,
14
11
  clientStack: any,
15
12
  config: any,
16
- options: any
13
+ options: any,
17
14
  ) => import("@smithy/types").Pluggable<any, any>[],
18
15
  op: string,
19
16
  $: import("@smithy/types").StaticOperationSchema,
20
- smithyContext?: Record<string, unknown>
17
+ smithyContext?: Record<string, unknown>,
21
18
  ) => {
22
- new (input: I): import("@smithy/core/client").CommandImpl<
19
+ new (
20
+ input: I,
21
+ ): import("@smithy/core/client").CommandImpl<
23
22
  I,
24
23
  O,
25
24
  GreengrassV2ClientResolvedConfig,
@@ -38,9 +37,4 @@ export declare const command: <
38
37
  getEndpointParameterInstructions(): EndpointParameterInstructions;
39
38
  };
40
39
  export declare const _ep0: EndpointParameterInstructions;
41
- export declare const _mw0: (
42
- Command: any,
43
- cs: any,
44
- config: any,
45
- o: any
46
- ) => never[];
40
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -4,14 +4,12 @@ import {
4
4
  AssociateServiceRoleToAccountResponse,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface AssociateServiceRoleToAccountCommandInput
8
- extends AssociateServiceRoleToAccountRequest {}
7
+ export interface AssociateServiceRoleToAccountCommandInput extends AssociateServiceRoleToAccountRequest {}
9
8
  export interface AssociateServiceRoleToAccountCommandOutput
10
- extends AssociateServiceRoleToAccountResponse,
11
- __MetadataBearer {}
9
+ extends AssociateServiceRoleToAccountResponse, __MetadataBearer {}
12
10
  declare const AssociateServiceRoleToAccountCommand_base: {
13
11
  new (
14
- input: AssociateServiceRoleToAccountCommandInput
12
+ input: AssociateServiceRoleToAccountCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  AssociateServiceRoleToAccountCommandInput,
17
15
  AssociateServiceRoleToAccountCommandOutput,
@@ -20,7 +18,7 @@ declare const AssociateServiceRoleToAccountCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: AssociateServiceRoleToAccountCommandInput
21
+ input: AssociateServiceRoleToAccountCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  AssociateServiceRoleToAccountCommandInput,
26
24
  AssociateServiceRoleToAccountCommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  BatchAssociateClientDeviceWithCoreDeviceResponse,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface BatchAssociateClientDeviceWithCoreDeviceCommandInput
8
- extends BatchAssociateClientDeviceWithCoreDeviceRequest {}
7
+ export interface BatchAssociateClientDeviceWithCoreDeviceCommandInput extends BatchAssociateClientDeviceWithCoreDeviceRequest {}
9
8
  export interface BatchAssociateClientDeviceWithCoreDeviceCommandOutput
10
- extends BatchAssociateClientDeviceWithCoreDeviceResponse,
11
- __MetadataBearer {}
9
+ extends BatchAssociateClientDeviceWithCoreDeviceResponse, __MetadataBearer {}
12
10
  declare const BatchAssociateClientDeviceWithCoreDeviceCommand_base: {
13
11
  new (
14
- input: BatchAssociateClientDeviceWithCoreDeviceCommandInput
12
+ input: BatchAssociateClientDeviceWithCoreDeviceCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  BatchAssociateClientDeviceWithCoreDeviceCommandInput,
17
15
  BatchAssociateClientDeviceWithCoreDeviceCommandOutput,
@@ -20,7 +18,7 @@ declare const BatchAssociateClientDeviceWithCoreDeviceCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: BatchAssociateClientDeviceWithCoreDeviceCommandInput
21
+ input: BatchAssociateClientDeviceWithCoreDeviceCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  BatchAssociateClientDeviceWithCoreDeviceCommandInput,
26
24
  BatchAssociateClientDeviceWithCoreDeviceCommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  BatchDisassociateClientDeviceFromCoreDeviceResponse,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface BatchDisassociateClientDeviceFromCoreDeviceCommandInput
8
- extends BatchDisassociateClientDeviceFromCoreDeviceRequest {}
7
+ export interface BatchDisassociateClientDeviceFromCoreDeviceCommandInput extends BatchDisassociateClientDeviceFromCoreDeviceRequest {}
9
8
  export interface BatchDisassociateClientDeviceFromCoreDeviceCommandOutput
10
- extends BatchDisassociateClientDeviceFromCoreDeviceResponse,
11
- __MetadataBearer {}
9
+ extends BatchDisassociateClientDeviceFromCoreDeviceResponse, __MetadataBearer {}
12
10
  declare const BatchDisassociateClientDeviceFromCoreDeviceCommand_base: {
13
11
  new (
14
- input: BatchDisassociateClientDeviceFromCoreDeviceCommandInput
12
+ input: BatchDisassociateClientDeviceFromCoreDeviceCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  BatchDisassociateClientDeviceFromCoreDeviceCommandInput,
17
15
  BatchDisassociateClientDeviceFromCoreDeviceCommandOutput,
@@ -20,7 +18,7 @@ declare const BatchDisassociateClientDeviceFromCoreDeviceCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: BatchDisassociateClientDeviceFromCoreDeviceCommandInput
21
+ input: BatchDisassociateClientDeviceFromCoreDeviceCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  BatchDisassociateClientDeviceFromCoreDeviceCommandInput,
26
24
  BatchDisassociateClientDeviceFromCoreDeviceCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- CancelDeploymentRequest,
4
- CancelDeploymentResponse,
5
- } from "../models/models_0";
2
+ import { CancelDeploymentRequest, CancelDeploymentResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface CancelDeploymentCommandInput extends CancelDeploymentRequest {}
8
- export interface CancelDeploymentCommandOutput
9
- extends CancelDeploymentResponse,
10
- __MetadataBearer {}
5
+ export interface CancelDeploymentCommandOutput extends CancelDeploymentResponse, __MetadataBearer {}
11
6
  declare const CancelDeploymentCommand_base: {
12
7
  new (
13
- input: CancelDeploymentCommandInput
8
+ input: CancelDeploymentCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  CancelDeploymentCommandInput,
16
11
  CancelDeploymentCommandOutput,
@@ -19,7 +14,7 @@ declare const CancelDeploymentCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: CancelDeploymentCommandInput
17
+ input: CancelDeploymentCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  CancelDeploymentCommandInput,
25
20
  CancelDeploymentCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- CreateComponentVersionRequest,
4
- CreateComponentVersionResponse,
5
- } from "../models/models_0";
2
+ import { CreateComponentVersionRequest, CreateComponentVersionResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface CreateComponentVersionCommandInput
8
- extends CreateComponentVersionRequest {}
4
+ export interface CreateComponentVersionCommandInput extends CreateComponentVersionRequest {}
9
5
  export interface CreateComponentVersionCommandOutput
10
- extends CreateComponentVersionResponse,
11
- __MetadataBearer {}
6
+ extends CreateComponentVersionResponse, __MetadataBearer {}
12
7
  declare const CreateComponentVersionCommand_base: {
13
8
  new (
14
- input: CreateComponentVersionCommandInput
9
+ input: CreateComponentVersionCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  CreateComponentVersionCommandInput,
17
12
  CreateComponentVersionCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- CreateDeploymentRequest,
4
- CreateDeploymentResponse,
5
- } from "../models/models_0";
2
+ import { CreateDeploymentRequest, CreateDeploymentResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface CreateDeploymentCommandInput extends CreateDeploymentRequest {}
8
- export interface CreateDeploymentCommandOutput
9
- extends CreateDeploymentResponse,
10
- __MetadataBearer {}
5
+ export interface CreateDeploymentCommandOutput extends CreateDeploymentResponse, __MetadataBearer {}
11
6
  declare const CreateDeploymentCommand_base: {
12
7
  new (
13
- input: CreateDeploymentCommandInput
8
+ input: CreateDeploymentCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  CreateDeploymentCommandInput,
16
11
  CreateDeploymentCommandOutput,
@@ -19,7 +14,7 @@ declare const CreateDeploymentCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: CreateDeploymentCommandInput
17
+ input: CreateDeploymentCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  CreateDeploymentCommandInput,
25
20
  CreateDeploymentCommandOutput,
@@ -5,7 +5,7 @@ export interface DeleteComponentCommandInput extends DeleteComponentRequest {}
5
5
  export interface DeleteComponentCommandOutput extends __MetadataBearer {}
6
6
  declare const DeleteComponentCommand_base: {
7
7
  new (
8
- input: DeleteComponentCommandInput
8
+ input: DeleteComponentCommandInput,
9
9
  ): import("@smithy/core/client").CommandImpl<
10
10
  DeleteComponentCommandInput,
11
11
  DeleteComponentCommandOutput,
@@ -14,7 +14,7 @@ declare const DeleteComponentCommand_base: {
14
14
  import("..").ServiceOutputTypes
15
15
  >;
16
16
  new (
17
- input: DeleteComponentCommandInput
17
+ input: DeleteComponentCommandInput,
18
18
  ): import("@smithy/core/client").CommandImpl<
19
19
  DeleteComponentCommandInput,
20
20
  DeleteComponentCommandOutput,
@@ -5,7 +5,7 @@ export interface DeleteCoreDeviceCommandInput extends DeleteCoreDeviceRequest {}
5
5
  export interface DeleteCoreDeviceCommandOutput extends __MetadataBearer {}
6
6
  declare const DeleteCoreDeviceCommand_base: {
7
7
  new (
8
- input: DeleteCoreDeviceCommandInput
8
+ input: DeleteCoreDeviceCommandInput,
9
9
  ): import("@smithy/core/client").CommandImpl<
10
10
  DeleteCoreDeviceCommandInput,
11
11
  DeleteCoreDeviceCommandOutput,
@@ -14,7 +14,7 @@ declare const DeleteCoreDeviceCommand_base: {
14
14
  import("..").ServiceOutputTypes
15
15
  >;
16
16
  new (
17
- input: DeleteCoreDeviceCommandInput
17
+ input: DeleteCoreDeviceCommandInput,
18
18
  ): import("@smithy/core/client").CommandImpl<
19
19
  DeleteCoreDeviceCommandInput,
20
20
  DeleteCoreDeviceCommandOutput,
@@ -5,7 +5,7 @@ export interface DeleteDeploymentCommandInput extends DeleteDeploymentRequest {}
5
5
  export interface DeleteDeploymentCommandOutput extends __MetadataBearer {}
6
6
  declare const DeleteDeploymentCommand_base: {
7
7
  new (
8
- input: DeleteDeploymentCommandInput
8
+ input: DeleteDeploymentCommandInput,
9
9
  ): import("@smithy/core/client").CommandImpl<
10
10
  DeleteDeploymentCommandInput,
11
11
  DeleteDeploymentCommandOutput,
@@ -14,7 +14,7 @@ declare const DeleteDeploymentCommand_base: {
14
14
  import("..").ServiceOutputTypes
15
15
  >;
16
16
  new (
17
- input: DeleteDeploymentCommandInput
17
+ input: DeleteDeploymentCommandInput,
18
18
  ): import("@smithy/core/client").CommandImpl<
19
19
  DeleteDeploymentCommandInput,
20
20
  DeleteDeploymentCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- DescribeComponentRequest,
4
- DescribeComponentResponse,
5
- } from "../models/models_0";
2
+ import { DescribeComponentRequest, DescribeComponentResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface DescribeComponentCommandInput
8
- extends DescribeComponentRequest {}
4
+ export interface DescribeComponentCommandInput extends DescribeComponentRequest {}
9
5
  export interface DescribeComponentCommandOutput
10
- extends DescribeComponentResponse,
11
- __MetadataBearer {}
6
+ extends DescribeComponentResponse, __MetadataBearer {}
12
7
  declare const DescribeComponentCommand_base: {
13
8
  new (
14
- input: DescribeComponentCommandInput
9
+ input: DescribeComponentCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  DescribeComponentCommandInput,
17
12
  DescribeComponentCommandOutput,
@@ -20,7 +15,7 @@ declare const DescribeComponentCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: DescribeComponentCommandInput
18
+ input: DescribeComponentCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  DescribeComponentCommandInput,
26
21
  DescribeComponentCommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  DisassociateServiceRoleFromAccountResponse,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface DisassociateServiceRoleFromAccountCommandInput
8
- extends DisassociateServiceRoleFromAccountRequest {}
7
+ export interface DisassociateServiceRoleFromAccountCommandInput extends DisassociateServiceRoleFromAccountRequest {}
9
8
  export interface DisassociateServiceRoleFromAccountCommandOutput
10
- extends DisassociateServiceRoleFromAccountResponse,
11
- __MetadataBearer {}
9
+ extends DisassociateServiceRoleFromAccountResponse, __MetadataBearer {}
12
10
  declare const DisassociateServiceRoleFromAccountCommand_base: {
13
11
  new (
14
- input: DisassociateServiceRoleFromAccountCommandInput
12
+ input: DisassociateServiceRoleFromAccountCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  DisassociateServiceRoleFromAccountCommandInput,
17
15
  DisassociateServiceRoleFromAccountCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { GetComponentRequest, GetComponentResponse } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface GetComponentCommandInput extends GetComponentRequest {}
5
- export interface GetComponentCommandOutput
6
- extends GetComponentResponse,
7
- __MetadataBearer {}
5
+ export interface GetComponentCommandOutput extends GetComponentResponse, __MetadataBearer {}
8
6
  declare const GetComponentCommand_base: {
9
7
  new (
10
- input: GetComponentCommandInput
8
+ input: GetComponentCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  GetComponentCommandInput,
13
11
  GetComponentCommandOutput,
@@ -16,7 +14,7 @@ declare const GetComponentCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: GetComponentCommandInput
17
+ input: GetComponentCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  GetComponentCommandInput,
22
20
  GetComponentCommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  GetComponentVersionArtifactResponse,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface GetComponentVersionArtifactCommandInput
8
- extends GetComponentVersionArtifactRequest {}
7
+ export interface GetComponentVersionArtifactCommandInput extends GetComponentVersionArtifactRequest {}
9
8
  export interface GetComponentVersionArtifactCommandOutput
10
- extends GetComponentVersionArtifactResponse,
11
- __MetadataBearer {}
9
+ extends GetComponentVersionArtifactResponse, __MetadataBearer {}
12
10
  declare const GetComponentVersionArtifactCommand_base: {
13
11
  new (
14
- input: GetComponentVersionArtifactCommandInput
12
+ input: GetComponentVersionArtifactCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  GetComponentVersionArtifactCommandInput,
17
15
  GetComponentVersionArtifactCommandOutput,
@@ -20,7 +18,7 @@ declare const GetComponentVersionArtifactCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: GetComponentVersionArtifactCommandInput
21
+ input: GetComponentVersionArtifactCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  GetComponentVersionArtifactCommandInput,
26
24
  GetComponentVersionArtifactCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- GetConnectivityInfoRequest,
4
- GetConnectivityInfoResponse,
5
- } from "../models/models_0";
2
+ import { GetConnectivityInfoRequest, GetConnectivityInfoResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface GetConnectivityInfoCommandInput
8
- extends GetConnectivityInfoRequest {}
4
+ export interface GetConnectivityInfoCommandInput extends GetConnectivityInfoRequest {}
9
5
  export interface GetConnectivityInfoCommandOutput
10
- extends GetConnectivityInfoResponse,
11
- __MetadataBearer {}
6
+ extends GetConnectivityInfoResponse, __MetadataBearer {}
12
7
  declare const GetConnectivityInfoCommand_base: {
13
8
  new (
14
- input: GetConnectivityInfoCommandInput
9
+ input: GetConnectivityInfoCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  GetConnectivityInfoCommandInput,
17
12
  GetConnectivityInfoCommandOutput,
@@ -20,7 +15,7 @@ declare const GetConnectivityInfoCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: GetConnectivityInfoCommandInput
18
+ input: GetConnectivityInfoCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  GetConnectivityInfoCommandInput,
26
21
  GetConnectivityInfoCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- GetCoreDeviceRequest,
4
- GetCoreDeviceResponse,
5
- } from "../models/models_0";
2
+ import { GetCoreDeviceRequest, GetCoreDeviceResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface GetCoreDeviceCommandInput extends GetCoreDeviceRequest {}
8
- export interface GetCoreDeviceCommandOutput
9
- extends GetCoreDeviceResponse,
10
- __MetadataBearer {}
5
+ export interface GetCoreDeviceCommandOutput extends GetCoreDeviceResponse, __MetadataBearer {}
11
6
  declare const GetCoreDeviceCommand_base: {
12
7
  new (
13
- input: GetCoreDeviceCommandInput
8
+ input: GetCoreDeviceCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  GetCoreDeviceCommandInput,
16
11
  GetCoreDeviceCommandOutput,
@@ -19,7 +14,7 @@ declare const GetCoreDeviceCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: GetCoreDeviceCommandInput
17
+ input: GetCoreDeviceCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  GetCoreDeviceCommandInput,
25
20
  GetCoreDeviceCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- GetDeploymentRequest,
4
- GetDeploymentResponse,
5
- } from "../models/models_0";
2
+ import { GetDeploymentRequest, GetDeploymentResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface GetDeploymentCommandInput extends GetDeploymentRequest {}
8
- export interface GetDeploymentCommandOutput
9
- extends GetDeploymentResponse,
10
- __MetadataBearer {}
5
+ export interface GetDeploymentCommandOutput extends GetDeploymentResponse, __MetadataBearer {}
11
6
  declare const GetDeploymentCommand_base: {
12
7
  new (
13
- input: GetDeploymentCommandInput
8
+ input: GetDeploymentCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  GetDeploymentCommandInput,
16
11
  GetDeploymentCommandOutput,
@@ -19,7 +14,7 @@ declare const GetDeploymentCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: GetDeploymentCommandInput
17
+ input: GetDeploymentCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  GetDeploymentCommandInput,
25
20
  GetDeploymentCommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  GetServiceRoleForAccountResponse,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface GetServiceRoleForAccountCommandInput
8
- extends GetServiceRoleForAccountRequest {}
7
+ export interface GetServiceRoleForAccountCommandInput extends GetServiceRoleForAccountRequest {}
9
8
  export interface GetServiceRoleForAccountCommandOutput
10
- extends GetServiceRoleForAccountResponse,
11
- __MetadataBearer {}
9
+ extends GetServiceRoleForAccountResponse, __MetadataBearer {}
12
10
  declare const GetServiceRoleForAccountCommand_base: {
13
11
  new (
14
- input: GetServiceRoleForAccountCommandInput
12
+ input: GetServiceRoleForAccountCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  GetServiceRoleForAccountCommandInput,
17
15
  GetServiceRoleForAccountCommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  ListClientDevicesAssociatedWithCoreDeviceResponse,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface ListClientDevicesAssociatedWithCoreDeviceCommandInput
8
- extends ListClientDevicesAssociatedWithCoreDeviceRequest {}
7
+ export interface ListClientDevicesAssociatedWithCoreDeviceCommandInput extends ListClientDevicesAssociatedWithCoreDeviceRequest {}
9
8
  export interface ListClientDevicesAssociatedWithCoreDeviceCommandOutput
10
- extends ListClientDevicesAssociatedWithCoreDeviceResponse,
11
- __MetadataBearer {}
9
+ extends ListClientDevicesAssociatedWithCoreDeviceResponse, __MetadataBearer {}
12
10
  declare const ListClientDevicesAssociatedWithCoreDeviceCommand_base: {
13
11
  new (
14
- input: ListClientDevicesAssociatedWithCoreDeviceCommandInput
12
+ input: ListClientDevicesAssociatedWithCoreDeviceCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  ListClientDevicesAssociatedWithCoreDeviceCommandInput,
17
15
  ListClientDevicesAssociatedWithCoreDeviceCommandOutput,
@@ -20,7 +18,7 @@ declare const ListClientDevicesAssociatedWithCoreDeviceCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: ListClientDevicesAssociatedWithCoreDeviceCommandInput
21
+ input: ListClientDevicesAssociatedWithCoreDeviceCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  ListClientDevicesAssociatedWithCoreDeviceCommandInput,
26
24
  ListClientDevicesAssociatedWithCoreDeviceCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- ListComponentVersionsRequest,
4
- ListComponentVersionsResponse,
5
- } from "../models/models_0";
2
+ import { ListComponentVersionsRequest, ListComponentVersionsResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface ListComponentVersionsCommandInput
8
- extends ListComponentVersionsRequest {}
4
+ export interface ListComponentVersionsCommandInput extends ListComponentVersionsRequest {}
9
5
  export interface ListComponentVersionsCommandOutput
10
- extends ListComponentVersionsResponse,
11
- __MetadataBearer {}
6
+ extends ListComponentVersionsResponse, __MetadataBearer {}
12
7
  declare const ListComponentVersionsCommand_base: {
13
8
  new (
14
- input: ListComponentVersionsCommandInput
9
+ input: ListComponentVersionsCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  ListComponentVersionsCommandInput,
17
12
  ListComponentVersionsCommandOutput,
@@ -20,7 +15,7 @@ declare const ListComponentVersionsCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: ListComponentVersionsCommandInput
18
+ input: ListComponentVersionsCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  ListComponentVersionsCommandInput,
26
21
  ListComponentVersionsCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- ListComponentsRequest,
4
- ListComponentsResponse,
5
- } from "../models/models_0";
2
+ import { ListComponentsRequest, ListComponentsResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface ListComponentsCommandInput extends ListComponentsRequest {}
8
- export interface ListComponentsCommandOutput
9
- extends ListComponentsResponse,
10
- __MetadataBearer {}
5
+ export interface ListComponentsCommandOutput extends ListComponentsResponse, __MetadataBearer {}
11
6
  declare const ListComponentsCommand_base: {
12
7
  new (
13
- input: ListComponentsCommandInput
8
+ input: ListComponentsCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  ListComponentsCommandInput,
16
11
  ListComponentsCommandOutput,