@aws-sdk/client-grafana 3.1087.0 → 3.1089.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 (43) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/Grafana.d.ts +81 -102
  3. package/dist-types/ts3.4/GrafanaClient.d.ts +16 -29
  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/AssociateLicenseCommand.d.ts +4 -9
  8. package/dist-types/ts3.4/commands/CreateWorkspaceApiKeyCommand.d.ts +5 -10
  9. package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +4 -9
  10. package/dist-types/ts3.4/commands/CreateWorkspaceServiceAccountCommand.d.ts +4 -6
  11. package/dist-types/ts3.4/commands/CreateWorkspaceServiceAccountTokenCommand.d.ts +4 -6
  12. package/dist-types/ts3.4/commands/DeleteWorkspaceApiKeyCommand.d.ts +5 -10
  13. package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +4 -9
  14. package/dist-types/ts3.4/commands/DeleteWorkspaceServiceAccountCommand.d.ts +4 -6
  15. package/dist-types/ts3.4/commands/DeleteWorkspaceServiceAccountTokenCommand.d.ts +4 -6
  16. package/dist-types/ts3.4/commands/DescribeWorkspaceAuthenticationCommand.d.ts +4 -6
  17. package/dist-types/ts3.4/commands/DescribeWorkspaceCommand.d.ts +5 -10
  18. package/dist-types/ts3.4/commands/DescribeWorkspaceConfigurationCommand.d.ts +4 -6
  19. package/dist-types/ts3.4/commands/DisassociateLicenseCommand.d.ts +5 -10
  20. package/dist-types/ts3.4/commands/ListPermissionsCommand.d.ts +4 -9
  21. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
  22. package/dist-types/ts3.4/commands/ListVersionsCommand.d.ts +2 -4
  23. package/dist-types/ts3.4/commands/ListWorkspaceServiceAccountTokensCommand.d.ts +4 -6
  24. package/dist-types/ts3.4/commands/ListWorkspaceServiceAccountsCommand.d.ts +4 -6
  25. package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +3 -8
  26. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
  27. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
  28. package/dist-types/ts3.4/commands/UpdatePermissionsCommand.d.ts +5 -10
  29. package/dist-types/ts3.4/commands/UpdateWorkspaceAuthenticationCommand.d.ts +4 -6
  30. package/dist-types/ts3.4/commands/UpdateWorkspaceCommand.d.ts +4 -9
  31. package/dist-types/ts3.4/commands/UpdateWorkspaceConfigurationCommand.d.ts +4 -6
  32. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  33. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  34. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  35. package/dist-types/ts3.4/models/enums.d.ts +4 -8
  36. package/dist-types/ts3.4/models/errors.d.ts +6 -18
  37. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  41. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  42. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  43. package/package.json +38 -38
@@ -4,22 +4,21 @@ import {
4
4
  ServiceInputTypes,
5
5
  ServiceOutputTypes,
6
6
  } from "./GrafanaClient";
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
  GrafanaClientResolvedConfig,
@@ -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[];
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- AssociateLicenseRequest,
4
- AssociateLicenseResponse,
5
- } from "../models/models_0";
2
+ import { AssociateLicenseRequest, AssociateLicenseResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface AssociateLicenseCommandInput extends AssociateLicenseRequest {}
8
- export interface AssociateLicenseCommandOutput
9
- extends AssociateLicenseResponse,
10
- __MetadataBearer {}
5
+ export interface AssociateLicenseCommandOutput extends AssociateLicenseResponse, __MetadataBearer {}
11
6
  declare const AssociateLicenseCommand_base: {
12
7
  new (
13
- input: AssociateLicenseCommandInput
8
+ input: AssociateLicenseCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  AssociateLicenseCommandInput,
16
11
  AssociateLicenseCommandOutput,
@@ -19,7 +14,7 @@ declare const AssociateLicenseCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: AssociateLicenseCommandInput
17
+ input: AssociateLicenseCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  AssociateLicenseCommandInput,
25
20
  AssociateLicenseCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- CreateWorkspaceApiKeyRequest,
4
- CreateWorkspaceApiKeyResponse,
5
- } from "../models/models_0";
2
+ import { CreateWorkspaceApiKeyRequest, CreateWorkspaceApiKeyResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface CreateWorkspaceApiKeyCommandInput
8
- extends CreateWorkspaceApiKeyRequest {}
4
+ export interface CreateWorkspaceApiKeyCommandInput extends CreateWorkspaceApiKeyRequest {}
9
5
  export interface CreateWorkspaceApiKeyCommandOutput
10
- extends CreateWorkspaceApiKeyResponse,
11
- __MetadataBearer {}
6
+ extends CreateWorkspaceApiKeyResponse, __MetadataBearer {}
12
7
  declare const CreateWorkspaceApiKeyCommand_base: {
13
8
  new (
14
- input: CreateWorkspaceApiKeyCommandInput
9
+ input: CreateWorkspaceApiKeyCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  CreateWorkspaceApiKeyCommandInput,
17
12
  CreateWorkspaceApiKeyCommandOutput,
@@ -20,7 +15,7 @@ declare const CreateWorkspaceApiKeyCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: CreateWorkspaceApiKeyCommandInput
18
+ input: CreateWorkspaceApiKeyCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  CreateWorkspaceApiKeyCommandInput,
26
21
  CreateWorkspaceApiKeyCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- CreateWorkspaceRequest,
4
- CreateWorkspaceResponse,
5
- } from "../models/models_0";
2
+ import { CreateWorkspaceRequest, CreateWorkspaceResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface CreateWorkspaceCommandInput extends CreateWorkspaceRequest {}
8
- export interface CreateWorkspaceCommandOutput
9
- extends CreateWorkspaceResponse,
10
- __MetadataBearer {}
5
+ export interface CreateWorkspaceCommandOutput extends CreateWorkspaceResponse, __MetadataBearer {}
11
6
  declare const CreateWorkspaceCommand_base: {
12
7
  new (
13
- input: CreateWorkspaceCommandInput
8
+ input: CreateWorkspaceCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  CreateWorkspaceCommandInput,
16
11
  CreateWorkspaceCommandOutput,
@@ -19,7 +14,7 @@ declare const CreateWorkspaceCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: CreateWorkspaceCommandInput
17
+ input: CreateWorkspaceCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  CreateWorkspaceCommandInput,
25
20
  CreateWorkspaceCommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  CreateWorkspaceServiceAccountResponse,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface CreateWorkspaceServiceAccountCommandInput
8
- extends CreateWorkspaceServiceAccountRequest {}
7
+ export interface CreateWorkspaceServiceAccountCommandInput extends CreateWorkspaceServiceAccountRequest {}
9
8
  export interface CreateWorkspaceServiceAccountCommandOutput
10
- extends CreateWorkspaceServiceAccountResponse,
11
- __MetadataBearer {}
9
+ extends CreateWorkspaceServiceAccountResponse, __MetadataBearer {}
12
10
  declare const CreateWorkspaceServiceAccountCommand_base: {
13
11
  new (
14
- input: CreateWorkspaceServiceAccountCommandInput
12
+ input: CreateWorkspaceServiceAccountCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  CreateWorkspaceServiceAccountCommandInput,
17
15
  CreateWorkspaceServiceAccountCommandOutput,
@@ -20,7 +18,7 @@ declare const CreateWorkspaceServiceAccountCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: CreateWorkspaceServiceAccountCommandInput
21
+ input: CreateWorkspaceServiceAccountCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  CreateWorkspaceServiceAccountCommandInput,
26
24
  CreateWorkspaceServiceAccountCommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  CreateWorkspaceServiceAccountTokenResponse,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface CreateWorkspaceServiceAccountTokenCommandInput
8
- extends CreateWorkspaceServiceAccountTokenRequest {}
7
+ export interface CreateWorkspaceServiceAccountTokenCommandInput extends CreateWorkspaceServiceAccountTokenRequest {}
9
8
  export interface CreateWorkspaceServiceAccountTokenCommandOutput
10
- extends CreateWorkspaceServiceAccountTokenResponse,
11
- __MetadataBearer {}
9
+ extends CreateWorkspaceServiceAccountTokenResponse, __MetadataBearer {}
12
10
  declare const CreateWorkspaceServiceAccountTokenCommand_base: {
13
11
  new (
14
- input: CreateWorkspaceServiceAccountTokenCommandInput
12
+ input: CreateWorkspaceServiceAccountTokenCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  CreateWorkspaceServiceAccountTokenCommandInput,
17
15
  CreateWorkspaceServiceAccountTokenCommandOutput,
@@ -20,7 +18,7 @@ declare const CreateWorkspaceServiceAccountTokenCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: CreateWorkspaceServiceAccountTokenCommandInput
21
+ input: CreateWorkspaceServiceAccountTokenCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  CreateWorkspaceServiceAccountTokenCommandInput,
26
24
  CreateWorkspaceServiceAccountTokenCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- DeleteWorkspaceApiKeyRequest,
4
- DeleteWorkspaceApiKeyResponse,
5
- } from "../models/models_0";
2
+ import { DeleteWorkspaceApiKeyRequest, DeleteWorkspaceApiKeyResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface DeleteWorkspaceApiKeyCommandInput
8
- extends DeleteWorkspaceApiKeyRequest {}
4
+ export interface DeleteWorkspaceApiKeyCommandInput extends DeleteWorkspaceApiKeyRequest {}
9
5
  export interface DeleteWorkspaceApiKeyCommandOutput
10
- extends DeleteWorkspaceApiKeyResponse,
11
- __MetadataBearer {}
6
+ extends DeleteWorkspaceApiKeyResponse, __MetadataBearer {}
12
7
  declare const DeleteWorkspaceApiKeyCommand_base: {
13
8
  new (
14
- input: DeleteWorkspaceApiKeyCommandInput
9
+ input: DeleteWorkspaceApiKeyCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  DeleteWorkspaceApiKeyCommandInput,
17
12
  DeleteWorkspaceApiKeyCommandOutput,
@@ -20,7 +15,7 @@ declare const DeleteWorkspaceApiKeyCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: DeleteWorkspaceApiKeyCommandInput
18
+ input: DeleteWorkspaceApiKeyCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  DeleteWorkspaceApiKeyCommandInput,
26
21
  DeleteWorkspaceApiKeyCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- DeleteWorkspaceRequest,
4
- DeleteWorkspaceResponse,
5
- } from "../models/models_0";
2
+ import { DeleteWorkspaceRequest, DeleteWorkspaceResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface DeleteWorkspaceCommandInput extends DeleteWorkspaceRequest {}
8
- export interface DeleteWorkspaceCommandOutput
9
- extends DeleteWorkspaceResponse,
10
- __MetadataBearer {}
5
+ export interface DeleteWorkspaceCommandOutput extends DeleteWorkspaceResponse, __MetadataBearer {}
11
6
  declare const DeleteWorkspaceCommand_base: {
12
7
  new (
13
- input: DeleteWorkspaceCommandInput
8
+ input: DeleteWorkspaceCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  DeleteWorkspaceCommandInput,
16
11
  DeleteWorkspaceCommandOutput,
@@ -19,7 +14,7 @@ declare const DeleteWorkspaceCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: DeleteWorkspaceCommandInput
17
+ input: DeleteWorkspaceCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  DeleteWorkspaceCommandInput,
25
20
  DeleteWorkspaceCommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  DeleteWorkspaceServiceAccountResponse,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface DeleteWorkspaceServiceAccountCommandInput
8
- extends DeleteWorkspaceServiceAccountRequest {}
7
+ export interface DeleteWorkspaceServiceAccountCommandInput extends DeleteWorkspaceServiceAccountRequest {}
9
8
  export interface DeleteWorkspaceServiceAccountCommandOutput
10
- extends DeleteWorkspaceServiceAccountResponse,
11
- __MetadataBearer {}
9
+ extends DeleteWorkspaceServiceAccountResponse, __MetadataBearer {}
12
10
  declare const DeleteWorkspaceServiceAccountCommand_base: {
13
11
  new (
14
- input: DeleteWorkspaceServiceAccountCommandInput
12
+ input: DeleteWorkspaceServiceAccountCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  DeleteWorkspaceServiceAccountCommandInput,
17
15
  DeleteWorkspaceServiceAccountCommandOutput,
@@ -20,7 +18,7 @@ declare const DeleteWorkspaceServiceAccountCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: DeleteWorkspaceServiceAccountCommandInput
21
+ input: DeleteWorkspaceServiceAccountCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  DeleteWorkspaceServiceAccountCommandInput,
26
24
  DeleteWorkspaceServiceAccountCommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  DeleteWorkspaceServiceAccountTokenResponse,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface DeleteWorkspaceServiceAccountTokenCommandInput
8
- extends DeleteWorkspaceServiceAccountTokenRequest {}
7
+ export interface DeleteWorkspaceServiceAccountTokenCommandInput extends DeleteWorkspaceServiceAccountTokenRequest {}
9
8
  export interface DeleteWorkspaceServiceAccountTokenCommandOutput
10
- extends DeleteWorkspaceServiceAccountTokenResponse,
11
- __MetadataBearer {}
9
+ extends DeleteWorkspaceServiceAccountTokenResponse, __MetadataBearer {}
12
10
  declare const DeleteWorkspaceServiceAccountTokenCommand_base: {
13
11
  new (
14
- input: DeleteWorkspaceServiceAccountTokenCommandInput
12
+ input: DeleteWorkspaceServiceAccountTokenCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  DeleteWorkspaceServiceAccountTokenCommandInput,
17
15
  DeleteWorkspaceServiceAccountTokenCommandOutput,
@@ -20,7 +18,7 @@ declare const DeleteWorkspaceServiceAccountTokenCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: DeleteWorkspaceServiceAccountTokenCommandInput
21
+ input: DeleteWorkspaceServiceAccountTokenCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  DeleteWorkspaceServiceAccountTokenCommandInput,
26
24
  DeleteWorkspaceServiceAccountTokenCommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  DescribeWorkspaceAuthenticationResponse,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface DescribeWorkspaceAuthenticationCommandInput
8
- extends DescribeWorkspaceAuthenticationRequest {}
7
+ export interface DescribeWorkspaceAuthenticationCommandInput extends DescribeWorkspaceAuthenticationRequest {}
9
8
  export interface DescribeWorkspaceAuthenticationCommandOutput
10
- extends DescribeWorkspaceAuthenticationResponse,
11
- __MetadataBearer {}
9
+ extends DescribeWorkspaceAuthenticationResponse, __MetadataBearer {}
12
10
  declare const DescribeWorkspaceAuthenticationCommand_base: {
13
11
  new (
14
- input: DescribeWorkspaceAuthenticationCommandInput
12
+ input: DescribeWorkspaceAuthenticationCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  DescribeWorkspaceAuthenticationCommandInput,
17
15
  DescribeWorkspaceAuthenticationCommandOutput,
@@ -20,7 +18,7 @@ declare const DescribeWorkspaceAuthenticationCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: DescribeWorkspaceAuthenticationCommandInput
21
+ input: DescribeWorkspaceAuthenticationCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  DescribeWorkspaceAuthenticationCommandInput,
26
24
  DescribeWorkspaceAuthenticationCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- DescribeWorkspaceRequest,
4
- DescribeWorkspaceResponse,
5
- } from "../models/models_0";
2
+ import { DescribeWorkspaceRequest, DescribeWorkspaceResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface DescribeWorkspaceCommandInput
8
- extends DescribeWorkspaceRequest {}
4
+ export interface DescribeWorkspaceCommandInput extends DescribeWorkspaceRequest {}
9
5
  export interface DescribeWorkspaceCommandOutput
10
- extends DescribeWorkspaceResponse,
11
- __MetadataBearer {}
6
+ extends DescribeWorkspaceResponse, __MetadataBearer {}
12
7
  declare const DescribeWorkspaceCommand_base: {
13
8
  new (
14
- input: DescribeWorkspaceCommandInput
9
+ input: DescribeWorkspaceCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  DescribeWorkspaceCommandInput,
17
12
  DescribeWorkspaceCommandOutput,
@@ -20,7 +15,7 @@ declare const DescribeWorkspaceCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: DescribeWorkspaceCommandInput
18
+ input: DescribeWorkspaceCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  DescribeWorkspaceCommandInput,
26
21
  DescribeWorkspaceCommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  DescribeWorkspaceConfigurationResponse,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface DescribeWorkspaceConfigurationCommandInput
8
- extends DescribeWorkspaceConfigurationRequest {}
7
+ export interface DescribeWorkspaceConfigurationCommandInput extends DescribeWorkspaceConfigurationRequest {}
9
8
  export interface DescribeWorkspaceConfigurationCommandOutput
10
- extends DescribeWorkspaceConfigurationResponse,
11
- __MetadataBearer {}
9
+ extends DescribeWorkspaceConfigurationResponse, __MetadataBearer {}
12
10
  declare const DescribeWorkspaceConfigurationCommand_base: {
13
11
  new (
14
- input: DescribeWorkspaceConfigurationCommandInput
12
+ input: DescribeWorkspaceConfigurationCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  DescribeWorkspaceConfigurationCommandInput,
17
15
  DescribeWorkspaceConfigurationCommandOutput,
@@ -20,7 +18,7 @@ declare const DescribeWorkspaceConfigurationCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: DescribeWorkspaceConfigurationCommandInput
21
+ input: DescribeWorkspaceConfigurationCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  DescribeWorkspaceConfigurationCommandInput,
26
24
  DescribeWorkspaceConfigurationCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- DisassociateLicenseRequest,
4
- DisassociateLicenseResponse,
5
- } from "../models/models_0";
2
+ import { DisassociateLicenseRequest, DisassociateLicenseResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface DisassociateLicenseCommandInput
8
- extends DisassociateLicenseRequest {}
4
+ export interface DisassociateLicenseCommandInput extends DisassociateLicenseRequest {}
9
5
  export interface DisassociateLicenseCommandOutput
10
- extends DisassociateLicenseResponse,
11
- __MetadataBearer {}
6
+ extends DisassociateLicenseResponse, __MetadataBearer {}
12
7
  declare const DisassociateLicenseCommand_base: {
13
8
  new (
14
- input: DisassociateLicenseCommandInput
9
+ input: DisassociateLicenseCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  DisassociateLicenseCommandInput,
17
12
  DisassociateLicenseCommandOutput,
@@ -20,7 +15,7 @@ declare const DisassociateLicenseCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: DisassociateLicenseCommandInput
18
+ input: DisassociateLicenseCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  DisassociateLicenseCommandInput,
26
21
  DisassociateLicenseCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- ListPermissionsRequest,
4
- ListPermissionsResponse,
5
- } from "../models/models_0";
2
+ import { ListPermissionsRequest, ListPermissionsResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface ListPermissionsCommandInput extends ListPermissionsRequest {}
8
- export interface ListPermissionsCommandOutput
9
- extends ListPermissionsResponse,
10
- __MetadataBearer {}
5
+ export interface ListPermissionsCommandOutput extends ListPermissionsResponse, __MetadataBearer {}
11
6
  declare const ListPermissionsCommand_base: {
12
7
  new (
13
- input: ListPermissionsCommandInput
8
+ input: ListPermissionsCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  ListPermissionsCommandInput,
16
11
  ListPermissionsCommandOutput,
@@ -19,7 +14,7 @@ declare const ListPermissionsCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: ListPermissionsCommandInput
17
+ input: ListPermissionsCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  ListPermissionsCommandInput,
25
20
  ListPermissionsCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- ListTagsForResourceRequest,
4
- ListTagsForResourceResponse,
5
- } from "../models/models_0";
2
+ import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface ListTagsForResourceCommandInput
8
- extends ListTagsForResourceRequest {}
4
+ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
9
5
  export interface ListTagsForResourceCommandOutput
10
- extends ListTagsForResourceResponse,
11
- __MetadataBearer {}
6
+ extends ListTagsForResourceResponse, __MetadataBearer {}
12
7
  declare const ListTagsForResourceCommand_base: {
13
8
  new (
14
- input: ListTagsForResourceCommandInput
9
+ input: ListTagsForResourceCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  ListTagsForResourceCommandInput,
17
12
  ListTagsForResourceCommandOutput,
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: ListTagsForResourceCommandInput
18
+ input: ListTagsForResourceCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  ListTagsForResourceCommandInput,
26
21
  ListTagsForResourceCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { ListVersionsRequest, ListVersionsResponse } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface ListVersionsCommandInput extends ListVersionsRequest {}
5
- export interface ListVersionsCommandOutput
6
- extends ListVersionsResponse,
7
- __MetadataBearer {}
5
+ export interface ListVersionsCommandOutput extends ListVersionsResponse, __MetadataBearer {}
8
6
  declare const ListVersionsCommand_base: {
9
7
  new (
10
- input: ListVersionsCommandInput
8
+ input: ListVersionsCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  ListVersionsCommandInput,
13
11
  ListVersionsCommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  ListWorkspaceServiceAccountTokensResponse,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface ListWorkspaceServiceAccountTokensCommandInput
8
- extends ListWorkspaceServiceAccountTokensRequest {}
7
+ export interface ListWorkspaceServiceAccountTokensCommandInput extends ListWorkspaceServiceAccountTokensRequest {}
9
8
  export interface ListWorkspaceServiceAccountTokensCommandOutput
10
- extends ListWorkspaceServiceAccountTokensResponse,
11
- __MetadataBearer {}
9
+ extends ListWorkspaceServiceAccountTokensResponse, __MetadataBearer {}
12
10
  declare const ListWorkspaceServiceAccountTokensCommand_base: {
13
11
  new (
14
- input: ListWorkspaceServiceAccountTokensCommandInput
12
+ input: ListWorkspaceServiceAccountTokensCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  ListWorkspaceServiceAccountTokensCommandInput,
17
15
  ListWorkspaceServiceAccountTokensCommandOutput,
@@ -20,7 +18,7 @@ declare const ListWorkspaceServiceAccountTokensCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: ListWorkspaceServiceAccountTokensCommandInput
21
+ input: ListWorkspaceServiceAccountTokensCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  ListWorkspaceServiceAccountTokensCommandInput,
26
24
  ListWorkspaceServiceAccountTokensCommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  ListWorkspaceServiceAccountsResponse,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface ListWorkspaceServiceAccountsCommandInput
8
- extends ListWorkspaceServiceAccountsRequest {}
7
+ export interface ListWorkspaceServiceAccountsCommandInput extends ListWorkspaceServiceAccountsRequest {}
9
8
  export interface ListWorkspaceServiceAccountsCommandOutput
10
- extends ListWorkspaceServiceAccountsResponse,
11
- __MetadataBearer {}
9
+ extends ListWorkspaceServiceAccountsResponse, __MetadataBearer {}
12
10
  declare const ListWorkspaceServiceAccountsCommand_base: {
13
11
  new (
14
- input: ListWorkspaceServiceAccountsCommandInput
12
+ input: ListWorkspaceServiceAccountsCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  ListWorkspaceServiceAccountsCommandInput,
17
15
  ListWorkspaceServiceAccountsCommandOutput,
@@ -20,7 +18,7 @@ declare const ListWorkspaceServiceAccountsCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: ListWorkspaceServiceAccountsCommandInput
21
+ input: ListWorkspaceServiceAccountsCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  ListWorkspaceServiceAccountsCommandInput,
26
24
  ListWorkspaceServiceAccountsCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- ListWorkspacesRequest,
4
- ListWorkspacesResponse,
5
- } from "../models/models_0";
2
+ import { ListWorkspacesRequest, ListWorkspacesResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface ListWorkspacesCommandInput extends ListWorkspacesRequest {}
8
- export interface ListWorkspacesCommandOutput
9
- extends ListWorkspacesResponse,
10
- __MetadataBearer {}
5
+ export interface ListWorkspacesCommandOutput extends ListWorkspacesResponse, __MetadataBearer {}
11
6
  declare const ListWorkspacesCommand_base: {
12
7
  new (
13
- input: ListWorkspacesCommandInput
8
+ input: ListWorkspacesCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  ListWorkspacesCommandInput,
16
11
  ListWorkspacesCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface TagResourceCommandInput extends TagResourceRequest {}
5
- export interface TagResourceCommandOutput
6
- extends TagResourceResponse,
7
- __MetadataBearer {}
5
+ export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
8
6
  declare const TagResourceCommand_base: {
9
7
  new (
10
- input: TagResourceCommandInput
8
+ input: TagResourceCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  TagResourceCommandInput,
13
11
  TagResourceCommandOutput,
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: TagResourceCommandInput
17
+ input: TagResourceCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  TagResourceCommandInput,
22
20
  TagResourceCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- UntagResourceRequest,
4
- UntagResourceResponse,
5
- } from "../models/models_0";
2
+ import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface UntagResourceCommandInput extends UntagResourceRequest {}
8
- export interface UntagResourceCommandOutput
9
- extends UntagResourceResponse,
10
- __MetadataBearer {}
5
+ export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
11
6
  declare const UntagResourceCommand_base: {
12
7
  new (
13
- input: UntagResourceCommandInput
8
+ input: UntagResourceCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  UntagResourceCommandInput,
16
11
  UntagResourceCommandOutput,
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: UntagResourceCommandInput
17
+ input: UntagResourceCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  UntagResourceCommandInput,
25
20
  UntagResourceCommandOutput,