@aws-sdk/client-ssm-sap 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 (45) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/SsmSap.d.ts +92 -104
  3. package/dist-types/ts3.4/SsmSapClient.d.ts +17 -33
  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 +8 -18
  7. package/dist-types/ts3.4/commands/DeleteResourcePermissionCommand.d.ts +5 -10
  8. package/dist-types/ts3.4/commands/DeregisterApplicationCommand.d.ts +5 -10
  9. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +2 -4
  10. package/dist-types/ts3.4/commands/GetComponentCommand.d.ts +3 -5
  11. package/dist-types/ts3.4/commands/GetConfigurationCheckOperationCommand.d.ts +4 -6
  12. package/dist-types/ts3.4/commands/GetDatabaseCommand.d.ts +2 -4
  13. package/dist-types/ts3.4/commands/GetOperationCommand.d.ts +3 -5
  14. package/dist-types/ts3.4/commands/GetResourcePermissionCommand.d.ts +5 -10
  15. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +3 -8
  16. package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +2 -4
  17. package/dist-types/ts3.4/commands/ListConfigurationCheckDefinitionsCommand.d.ts +3 -5
  18. package/dist-types/ts3.4/commands/ListConfigurationCheckOperationsCommand.d.ts +4 -6
  19. package/dist-types/ts3.4/commands/ListDatabasesCommand.d.ts +2 -4
  20. package/dist-types/ts3.4/commands/ListOperationEventsCommand.d.ts +5 -10
  21. package/dist-types/ts3.4/commands/ListOperationsCommand.d.ts +3 -5
  22. package/dist-types/ts3.4/commands/ListSubCheckResultsCommand.d.ts +5 -10
  23. package/dist-types/ts3.4/commands/ListSubCheckRuleResultsCommand.d.ts +5 -10
  24. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
  25. package/dist-types/ts3.4/commands/PutResourcePermissionCommand.d.ts +5 -10
  26. package/dist-types/ts3.4/commands/RegisterApplicationCommand.d.ts +5 -10
  27. package/dist-types/ts3.4/commands/StartApplicationCommand.d.ts +4 -9
  28. package/dist-types/ts3.4/commands/StartApplicationRefreshCommand.d.ts +5 -10
  29. package/dist-types/ts3.4/commands/StartConfigurationChecksCommand.d.ts +5 -10
  30. package/dist-types/ts3.4/commands/StopApplicationCommand.d.ts +4 -9
  31. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
  32. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
  33. package/dist-types/ts3.4/commands/UpdateApplicationSettingsCommand.d.ts +4 -6
  34. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  35. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  36. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  37. package/dist-types/ts3.4/models/enums.d.ts +13 -26
  38. package/dist-types/ts3.4/models/errors.d.ts +4 -12
  39. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  40. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  41. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  42. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  43. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  44. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
  45. package/package.json +39 -39
@@ -7,17 +7,10 @@ import { SsmSapHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
7
  export interface HttpAuthExtensionConfiguration {
8
8
  setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
9
  httpAuthSchemes(): HttpAuthScheme[];
10
- setHttpAuthSchemeProvider(
11
- httpAuthSchemeProvider: SsmSapHttpAuthSchemeProvider
12
- ): void;
10
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: SsmSapHttpAuthSchemeProvider): void;
13
11
  httpAuthSchemeProvider(): SsmSapHttpAuthSchemeProvider;
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 { SsmSapClientResolvedConfig } from "../SsmSapClient";
15
- export interface SsmSapHttpAuthSchemeParameters
16
- extends HttpAuthSchemeParameters {
15
+ export interface SsmSapHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
17
16
  region?: string;
18
17
  }
19
- export interface SsmSapHttpAuthSchemeParametersProvider
20
- extends HttpAuthSchemeParametersProvider<
21
- SsmSapClientResolvedConfig,
22
- HandlerExecutionContext,
23
- SsmSapHttpAuthSchemeParameters,
24
- object
25
- > {}
18
+ export interface SsmSapHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
19
+ SsmSapClientResolvedConfig,
20
+ HandlerExecutionContext,
21
+ SsmSapHttpAuthSchemeParameters,
22
+ object
23
+ > {}
26
24
  export declare const defaultSsmSapHttpAuthSchemeParametersProvider: (
27
25
  config: SsmSapClientResolvedConfig,
28
26
  context: HandlerExecutionContext,
29
- input: object
27
+ input: object,
30
28
  ) => Promise<SsmSapHttpAuthSchemeParameters>;
31
- export interface SsmSapHttpAuthSchemeProvider
32
- extends HttpAuthSchemeProvider<SsmSapHttpAuthSchemeParameters> {}
29
+ export interface SsmSapHttpAuthSchemeProvider extends HttpAuthSchemeProvider<SsmSapHttpAuthSchemeParameters> {}
33
30
  export declare const defaultSsmSapHttpAuthSchemeProvider: SsmSapHttpAuthSchemeProvider;
34
31
  export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
32
  authSchemePreference?: string[] | Provider<string[]>;
36
33
  httpAuthSchemes?: HttpAuthScheme[];
37
34
  httpAuthSchemeProvider?: SsmSapHttpAuthSchemeProvider;
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: SsmSapHttpAuthSchemeProvider;
44
40
  }
45
41
  export declare const resolveHttpAuthSchemeConfig: <T>(
46
- config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
42
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
47
43
  ) => T & HttpAuthSchemeResolvedConfig;
@@ -1,25 +1,20 @@
1
1
  import { EndpointParameterInstructions } from "@smithy/types";
2
- import {
3
- ServiceInputTypes,
4
- ServiceOutputTypes,
5
- SsmSapClientResolvedConfig,
6
- } from "./SsmSapClient";
7
- export declare const command: <
8
- I extends ServiceInputTypes,
9
- O extends ServiceOutputTypes
10
- >(
2
+ import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "./SsmSapClient";
3
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
11
4
  added: EndpointParameterInstructions,
12
5
  plugins: (
13
6
  CommandCtor: any,
14
7
  clientStack: any,
15
8
  config: any,
16
- options: any
9
+ options: any,
17
10
  ) => import("@smithy/types").Pluggable<any, any>[],
18
11
  op: string,
19
12
  $: import("@smithy/types").StaticOperationSchema,
20
- smithyContext?: Record<string, unknown>
13
+ smithyContext?: Record<string, unknown>,
21
14
  ) => {
22
- new (input: I): import("@smithy/core/client").CommandImpl<
15
+ new (
16
+ input: I,
17
+ ): import("@smithy/core/client").CommandImpl<
23
18
  I,
24
19
  O,
25
20
  SsmSapClientResolvedConfig,
@@ -38,9 +33,4 @@ export declare const command: <
38
33
  getEndpointParameterInstructions(): EndpointParameterInstructions;
39
34
  };
40
35
  export declare const _ep0: EndpointParameterInstructions;
41
- export declare const _mw0: (
42
- Command: any,
43
- cs: any,
44
- config: any,
45
- o: any
46
- ) => never[];
36
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- DeleteResourcePermissionInput,
4
- DeleteResourcePermissionOutput,
5
- } from "../models/models_0";
2
+ import { DeleteResourcePermissionInput, DeleteResourcePermissionOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface DeleteResourcePermissionCommandInput
8
- extends DeleteResourcePermissionInput {}
4
+ export interface DeleteResourcePermissionCommandInput extends DeleteResourcePermissionInput {}
9
5
  export interface DeleteResourcePermissionCommandOutput
10
- extends DeleteResourcePermissionOutput,
11
- __MetadataBearer {}
6
+ extends DeleteResourcePermissionOutput, __MetadataBearer {}
12
7
  declare const DeleteResourcePermissionCommand_base: {
13
8
  new (
14
- input: DeleteResourcePermissionCommandInput
9
+ input: DeleteResourcePermissionCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  DeleteResourcePermissionCommandInput,
17
12
  DeleteResourcePermissionCommandOutput,
@@ -20,7 +15,7 @@ declare const DeleteResourcePermissionCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: DeleteResourcePermissionCommandInput
18
+ input: DeleteResourcePermissionCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  DeleteResourcePermissionCommandInput,
26
21
  DeleteResourcePermissionCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- DeregisterApplicationInput,
4
- DeregisterApplicationOutput,
5
- } from "../models/models_0";
2
+ import { DeregisterApplicationInput, DeregisterApplicationOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface DeregisterApplicationCommandInput
8
- extends DeregisterApplicationInput {}
4
+ export interface DeregisterApplicationCommandInput extends DeregisterApplicationInput {}
9
5
  export interface DeregisterApplicationCommandOutput
10
- extends DeregisterApplicationOutput,
11
- __MetadataBearer {}
6
+ extends DeregisterApplicationOutput, __MetadataBearer {}
12
7
  declare const DeregisterApplicationCommand_base: {
13
8
  new (
14
- input: DeregisterApplicationCommandInput
9
+ input: DeregisterApplicationCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  DeregisterApplicationCommandInput,
17
12
  DeregisterApplicationCommandOutput,
@@ -20,7 +15,7 @@ declare const DeregisterApplicationCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: DeregisterApplicationCommandInput
18
+ input: DeregisterApplicationCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  DeregisterApplicationCommandInput,
26
21
  DeregisterApplicationCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { GetApplicationInput, GetApplicationOutput } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface GetApplicationCommandInput extends GetApplicationInput {}
5
- export interface GetApplicationCommandOutput
6
- extends GetApplicationOutput,
7
- __MetadataBearer {}
5
+ export interface GetApplicationCommandOutput extends GetApplicationOutput, __MetadataBearer {}
8
6
  declare const GetApplicationCommand_base: {
9
7
  new (
10
- input: GetApplicationCommandInput
8
+ input: GetApplicationCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  GetApplicationCommandInput,
13
11
  GetApplicationCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { GetComponentInput, GetComponentOutput } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface GetComponentCommandInput extends GetComponentInput {}
5
- export interface GetComponentCommandOutput
6
- extends GetComponentOutput,
7
- __MetadataBearer {}
5
+ export interface GetComponentCommandOutput extends GetComponentOutput, __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
  GetConfigurationCheckOperationOutput,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface GetConfigurationCheckOperationCommandInput
8
- extends GetConfigurationCheckOperationInput {}
7
+ export interface GetConfigurationCheckOperationCommandInput extends GetConfigurationCheckOperationInput {}
9
8
  export interface GetConfigurationCheckOperationCommandOutput
10
- extends GetConfigurationCheckOperationOutput,
11
- __MetadataBearer {}
9
+ extends GetConfigurationCheckOperationOutput, __MetadataBearer {}
12
10
  declare const GetConfigurationCheckOperationCommand_base: {
13
11
  new (
14
- input: GetConfigurationCheckOperationCommandInput
12
+ input: GetConfigurationCheckOperationCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  GetConfigurationCheckOperationCommandInput,
17
15
  GetConfigurationCheckOperationCommandOutput,
@@ -20,7 +18,7 @@ declare const GetConfigurationCheckOperationCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: GetConfigurationCheckOperationCommandInput
21
+ input: GetConfigurationCheckOperationCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  GetConfigurationCheckOperationCommandInput,
26
24
  GetConfigurationCheckOperationCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { GetDatabaseInput, GetDatabaseOutput } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface GetDatabaseCommandInput extends GetDatabaseInput {}
5
- export interface GetDatabaseCommandOutput
6
- extends GetDatabaseOutput,
7
- __MetadataBearer {}
5
+ export interface GetDatabaseCommandOutput extends GetDatabaseOutput, __MetadataBearer {}
8
6
  declare const GetDatabaseCommand_base: {
9
7
  new (
10
- input: GetDatabaseCommandInput
8
+ input: GetDatabaseCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  GetDatabaseCommandInput,
13
11
  GetDatabaseCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { GetOperationInput, GetOperationOutput } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface GetOperationCommandInput extends GetOperationInput {}
5
- export interface GetOperationCommandOutput
6
- extends GetOperationOutput,
7
- __MetadataBearer {}
5
+ export interface GetOperationCommandOutput extends GetOperationOutput, __MetadataBearer {}
8
6
  declare const GetOperationCommand_base: {
9
7
  new (
10
- input: GetOperationCommandInput
8
+ input: GetOperationCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  GetOperationCommandInput,
13
11
  GetOperationCommandOutput,
@@ -16,7 +14,7 @@ declare const GetOperationCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: GetOperationCommandInput
17
+ input: GetOperationCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  GetOperationCommandInput,
22
20
  GetOperationCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- GetResourcePermissionInput,
4
- GetResourcePermissionOutput,
5
- } from "../models/models_0";
2
+ import { GetResourcePermissionInput, GetResourcePermissionOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface GetResourcePermissionCommandInput
8
- extends GetResourcePermissionInput {}
4
+ export interface GetResourcePermissionCommandInput extends GetResourcePermissionInput {}
9
5
  export interface GetResourcePermissionCommandOutput
10
- extends GetResourcePermissionOutput,
11
- __MetadataBearer {}
6
+ extends GetResourcePermissionOutput, __MetadataBearer {}
12
7
  declare const GetResourcePermissionCommand_base: {
13
8
  new (
14
- input: GetResourcePermissionCommandInput
9
+ input: GetResourcePermissionCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  GetResourcePermissionCommandInput,
17
12
  GetResourcePermissionCommandOutput,
@@ -20,7 +15,7 @@ declare const GetResourcePermissionCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: GetResourcePermissionCommandInput
18
+ input: GetResourcePermissionCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  GetResourcePermissionCommandInput,
26
21
  GetResourcePermissionCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- ListApplicationsInput,
4
- ListApplicationsOutput,
5
- } from "../models/models_0";
2
+ import { ListApplicationsInput, ListApplicationsOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface ListApplicationsCommandInput extends ListApplicationsInput {}
8
- export interface ListApplicationsCommandOutput
9
- extends ListApplicationsOutput,
10
- __MetadataBearer {}
5
+ export interface ListApplicationsCommandOutput extends ListApplicationsOutput, __MetadataBearer {}
11
6
  declare const ListApplicationsCommand_base: {
12
7
  new (
13
- input: ListApplicationsCommandInput
8
+ input: ListApplicationsCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  ListApplicationsCommandInput,
16
11
  ListApplicationsCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { ListComponentsInput, ListComponentsOutput } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface ListComponentsCommandInput extends ListComponentsInput {}
5
- export interface ListComponentsCommandOutput
6
- extends ListComponentsOutput,
7
- __MetadataBearer {}
5
+ export interface ListComponentsCommandOutput extends ListComponentsOutput, __MetadataBearer {}
8
6
  declare const ListComponentsCommand_base: {
9
7
  new (
10
- input: ListComponentsCommandInput
8
+ input: ListComponentsCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  ListComponentsCommandInput,
13
11
  ListComponentsCommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  ListConfigurationCheckDefinitionsOutput,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface ListConfigurationCheckDefinitionsCommandInput
8
- extends ListConfigurationCheckDefinitionsInput {}
7
+ export interface ListConfigurationCheckDefinitionsCommandInput extends ListConfigurationCheckDefinitionsInput {}
9
8
  export interface ListConfigurationCheckDefinitionsCommandOutput
10
- extends ListConfigurationCheckDefinitionsOutput,
11
- __MetadataBearer {}
9
+ extends ListConfigurationCheckDefinitionsOutput, __MetadataBearer {}
12
10
  declare const ListConfigurationCheckDefinitionsCommand_base: {
13
11
  new (
14
- input: ListConfigurationCheckDefinitionsCommandInput
12
+ input: ListConfigurationCheckDefinitionsCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  ListConfigurationCheckDefinitionsCommandInput,
17
15
  ListConfigurationCheckDefinitionsCommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  ListConfigurationCheckOperationsOutput,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface ListConfigurationCheckOperationsCommandInput
8
- extends ListConfigurationCheckOperationsInput {}
7
+ export interface ListConfigurationCheckOperationsCommandInput extends ListConfigurationCheckOperationsInput {}
9
8
  export interface ListConfigurationCheckOperationsCommandOutput
10
- extends ListConfigurationCheckOperationsOutput,
11
- __MetadataBearer {}
9
+ extends ListConfigurationCheckOperationsOutput, __MetadataBearer {}
12
10
  declare const ListConfigurationCheckOperationsCommand_base: {
13
11
  new (
14
- input: ListConfigurationCheckOperationsCommandInput
12
+ input: ListConfigurationCheckOperationsCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  ListConfigurationCheckOperationsCommandInput,
17
15
  ListConfigurationCheckOperationsCommandOutput,
@@ -20,7 +18,7 @@ declare const ListConfigurationCheckOperationsCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: ListConfigurationCheckOperationsCommandInput
21
+ input: ListConfigurationCheckOperationsCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  ListConfigurationCheckOperationsCommandInput,
26
24
  ListConfigurationCheckOperationsCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { ListDatabasesInput, ListDatabasesOutput } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface ListDatabasesCommandInput extends ListDatabasesInput {}
5
- export interface ListDatabasesCommandOutput
6
- extends ListDatabasesOutput,
7
- __MetadataBearer {}
5
+ export interface ListDatabasesCommandOutput extends ListDatabasesOutput, __MetadataBearer {}
8
6
  declare const ListDatabasesCommand_base: {
9
7
  new (
10
- input: ListDatabasesCommandInput
8
+ input: ListDatabasesCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  ListDatabasesCommandInput,
13
11
  ListDatabasesCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- ListOperationEventsInput,
4
- ListOperationEventsOutput,
5
- } from "../models/models_0";
2
+ import { ListOperationEventsInput, ListOperationEventsOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface ListOperationEventsCommandInput
8
- extends ListOperationEventsInput {}
4
+ export interface ListOperationEventsCommandInput extends ListOperationEventsInput {}
9
5
  export interface ListOperationEventsCommandOutput
10
- extends ListOperationEventsOutput,
11
- __MetadataBearer {}
6
+ extends ListOperationEventsOutput, __MetadataBearer {}
12
7
  declare const ListOperationEventsCommand_base: {
13
8
  new (
14
- input: ListOperationEventsCommandInput
9
+ input: ListOperationEventsCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  ListOperationEventsCommandInput,
17
12
  ListOperationEventsCommandOutput,
@@ -20,7 +15,7 @@ declare const ListOperationEventsCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: ListOperationEventsCommandInput
18
+ input: ListOperationEventsCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  ListOperationEventsCommandInput,
26
21
  ListOperationEventsCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { ListOperationsInput, ListOperationsOutput } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface ListOperationsCommandInput extends ListOperationsInput {}
5
- export interface ListOperationsCommandOutput
6
- extends ListOperationsOutput,
7
- __MetadataBearer {}
5
+ export interface ListOperationsCommandOutput extends ListOperationsOutput, __MetadataBearer {}
8
6
  declare const ListOperationsCommand_base: {
9
7
  new (
10
- input: ListOperationsCommandInput
8
+ input: ListOperationsCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  ListOperationsCommandInput,
13
11
  ListOperationsCommandOutput,
@@ -16,7 +14,7 @@ declare const ListOperationsCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: ListOperationsCommandInput
17
+ input: ListOperationsCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  ListOperationsCommandInput,
22
20
  ListOperationsCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- ListSubCheckResultsInput,
4
- ListSubCheckResultsOutput,
5
- } from "../models/models_0";
2
+ import { ListSubCheckResultsInput, ListSubCheckResultsOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface ListSubCheckResultsCommandInput
8
- extends ListSubCheckResultsInput {}
4
+ export interface ListSubCheckResultsCommandInput extends ListSubCheckResultsInput {}
9
5
  export interface ListSubCheckResultsCommandOutput
10
- extends ListSubCheckResultsOutput,
11
- __MetadataBearer {}
6
+ extends ListSubCheckResultsOutput, __MetadataBearer {}
12
7
  declare const ListSubCheckResultsCommand_base: {
13
8
  new (
14
- input: ListSubCheckResultsCommandInput
9
+ input: ListSubCheckResultsCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  ListSubCheckResultsCommandInput,
17
12
  ListSubCheckResultsCommandOutput,
@@ -20,7 +15,7 @@ declare const ListSubCheckResultsCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: ListSubCheckResultsCommandInput
18
+ input: ListSubCheckResultsCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  ListSubCheckResultsCommandInput,
26
21
  ListSubCheckResultsCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- ListSubCheckRuleResultsInput,
4
- ListSubCheckRuleResultsOutput,
5
- } from "../models/models_0";
2
+ import { ListSubCheckRuleResultsInput, ListSubCheckRuleResultsOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface ListSubCheckRuleResultsCommandInput
8
- extends ListSubCheckRuleResultsInput {}
4
+ export interface ListSubCheckRuleResultsCommandInput extends ListSubCheckRuleResultsInput {}
9
5
  export interface ListSubCheckRuleResultsCommandOutput
10
- extends ListSubCheckRuleResultsOutput,
11
- __MetadataBearer {}
6
+ extends ListSubCheckRuleResultsOutput, __MetadataBearer {}
12
7
  declare const ListSubCheckRuleResultsCommand_base: {
13
8
  new (
14
- input: ListSubCheckRuleResultsCommandInput
9
+ input: ListSubCheckRuleResultsCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  ListSubCheckRuleResultsCommandInput,
17
12
  ListSubCheckRuleResultsCommandOutput,
@@ -20,7 +15,7 @@ declare const ListSubCheckRuleResultsCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: ListSubCheckRuleResultsCommandInput
18
+ input: ListSubCheckRuleResultsCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  ListSubCheckRuleResultsCommandInput,
26
21
  ListSubCheckRuleResultsCommandOutput,
@@ -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,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- PutResourcePermissionInput,
4
- PutResourcePermissionOutput,
5
- } from "../models/models_0";
2
+ import { PutResourcePermissionInput, PutResourcePermissionOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface PutResourcePermissionCommandInput
8
- extends PutResourcePermissionInput {}
4
+ export interface PutResourcePermissionCommandInput extends PutResourcePermissionInput {}
9
5
  export interface PutResourcePermissionCommandOutput
10
- extends PutResourcePermissionOutput,
11
- __MetadataBearer {}
6
+ extends PutResourcePermissionOutput, __MetadataBearer {}
12
7
  declare const PutResourcePermissionCommand_base: {
13
8
  new (
14
- input: PutResourcePermissionCommandInput
9
+ input: PutResourcePermissionCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  PutResourcePermissionCommandInput,
17
12
  PutResourcePermissionCommandOutput,
@@ -20,7 +15,7 @@ declare const PutResourcePermissionCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: PutResourcePermissionCommandInput
18
+ input: PutResourcePermissionCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  PutResourcePermissionCommandInput,
26
21
  PutResourcePermissionCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- RegisterApplicationInput,
4
- RegisterApplicationOutput,
5
- } from "../models/models_0";
2
+ import { RegisterApplicationInput, RegisterApplicationOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface RegisterApplicationCommandInput
8
- extends RegisterApplicationInput {}
4
+ export interface RegisterApplicationCommandInput extends RegisterApplicationInput {}
9
5
  export interface RegisterApplicationCommandOutput
10
- extends RegisterApplicationOutput,
11
- __MetadataBearer {}
6
+ extends RegisterApplicationOutput, __MetadataBearer {}
12
7
  declare const RegisterApplicationCommand_base: {
13
8
  new (
14
- input: RegisterApplicationCommandInput
9
+ input: RegisterApplicationCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  RegisterApplicationCommandInput,
17
12
  RegisterApplicationCommandOutput,
@@ -20,7 +15,7 @@ declare const RegisterApplicationCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: RegisterApplicationCommandInput
18
+ input: RegisterApplicationCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  RegisterApplicationCommandInput,
26
21
  RegisterApplicationCommandOutput,