@aws-sdk/client-supportauthz 3.1077.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 (112) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +258 -0
  3. package/dist-cjs/index.js +984 -0
  4. package/dist-es/SupportAuthZ.js +37 -0
  5. package/dist-es/SupportAuthZClient.js +47 -0
  6. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  7. package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
  8. package/dist-es/commands/CreateSupportPermitCommand.js +16 -0
  9. package/dist-es/commands/DeleteSupportPermitCommand.js +16 -0
  10. package/dist-es/commands/GetActionCommand.js +16 -0
  11. package/dist-es/commands/GetSupportPermitCommand.js +16 -0
  12. package/dist-es/commands/ListActionsCommand.js +16 -0
  13. package/dist-es/commands/ListSupportPermitRequestsCommand.js +16 -0
  14. package/dist-es/commands/ListSupportPermitsCommand.js +16 -0
  15. package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
  16. package/dist-es/commands/RejectSupportPermitRequestCommand.js +16 -0
  17. package/dist-es/commands/TagResourceCommand.js +16 -0
  18. package/dist-es/commands/UntagResourceCommand.js +16 -0
  19. package/dist-es/commands/index.js +11 -0
  20. package/dist-es/endpoint/EndpointParameters.js +11 -0
  21. package/dist-es/endpoint/bdd.js +29 -0
  22. package/dist-es/endpoint/endpointResolver.js +14 -0
  23. package/dist-es/extensionConfiguration.js +1 -0
  24. package/dist-es/index.js +9 -0
  25. package/dist-es/models/SupportAuthZServiceException.js +8 -0
  26. package/dist-es/models/enums.js +11 -0
  27. package/dist-es/models/errors.js +111 -0
  28. package/dist-es/models/models_0.js +1 -0
  29. package/dist-es/pagination/Interfaces.js +1 -0
  30. package/dist-es/pagination/ListActionsPaginator.js +4 -0
  31. package/dist-es/pagination/ListSupportPermitRequestsPaginator.js +4 -0
  32. package/dist-es/pagination/ListSupportPermitsPaginator.js +4 -0
  33. package/dist-es/pagination/index.js +4 -0
  34. package/dist-es/runtimeConfig.browser.js +29 -0
  35. package/dist-es/runtimeConfig.js +43 -0
  36. package/dist-es/runtimeConfig.native.js +9 -0
  37. package/dist-es/runtimeConfig.shared.js +40 -0
  38. package/dist-es/runtimeExtensions.js +9 -0
  39. package/dist-es/schemas/schemas_0.js +365 -0
  40. package/dist-types/SupportAuthZ.d.ts +110 -0
  41. package/dist-types/SupportAuthZClient.d.ts +197 -0
  42. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  43. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  44. package/dist-types/commands/CreateSupportPermitCommand.d.ts +154 -0
  45. package/dist-types/commands/DeleteSupportPermitCommand.d.ts +119 -0
  46. package/dist-types/commands/GetActionCommand.d.ts +93 -0
  47. package/dist-types/commands/GetSupportPermitCommand.d.ts +122 -0
  48. package/dist-types/commands/ListActionsCommand.d.ts +97 -0
  49. package/dist-types/commands/ListSupportPermitRequestsCommand.d.ts +119 -0
  50. package/dist-types/commands/ListSupportPermitsCommand.d.ts +124 -0
  51. package/dist-types/commands/ListTagsForResourceCommand.d.ts +93 -0
  52. package/dist-types/commands/RejectSupportPermitRequestCommand.d.ts +94 -0
  53. package/dist-types/commands/TagResourceCommand.d.ts +92 -0
  54. package/dist-types/commands/UntagResourceCommand.d.ts +92 -0
  55. package/dist-types/commands/index.d.ts +11 -0
  56. package/dist-types/endpoint/EndpointParameters.d.ts +44 -0
  57. package/dist-types/endpoint/bdd.d.ts +2 -0
  58. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  59. package/dist-types/extensionConfiguration.d.ts +9 -0
  60. package/dist-types/index.d.ts +17 -0
  61. package/dist-types/models/SupportAuthZServiceException.d.ts +14 -0
  62. package/dist-types/models/enums.d.ts +48 -0
  63. package/dist-types/models/errors.d.ts +146 -0
  64. package/dist-types/models/models_0.d.ts +729 -0
  65. package/dist-types/pagination/Interfaces.d.ts +8 -0
  66. package/dist-types/pagination/ListActionsPaginator.d.ts +7 -0
  67. package/dist-types/pagination/ListSupportPermitRequestsPaginator.d.ts +7 -0
  68. package/dist-types/pagination/ListSupportPermitsPaginator.d.ts +7 -0
  69. package/dist-types/pagination/index.d.ts +4 -0
  70. package/dist-types/runtimeConfig.browser.d.ts +55 -0
  71. package/dist-types/runtimeConfig.d.ts +55 -0
  72. package/dist-types/runtimeConfig.native.d.ts +54 -0
  73. package/dist-types/runtimeConfig.shared.d.ts +28 -0
  74. package/dist-types/runtimeExtensions.d.ts +17 -0
  75. package/dist-types/schemas/schemas_0.d.ts +58 -0
  76. package/dist-types/ts3.4/SupportAuthZ.d.ts +221 -0
  77. package/dist-types/ts3.4/SupportAuthZClient.d.ts +177 -0
  78. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  79. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  80. package/dist-types/ts3.4/commands/CreateSupportPermitCommand.d.ts +53 -0
  81. package/dist-types/ts3.4/commands/DeleteSupportPermitCommand.d.ts +53 -0
  82. package/dist-types/ts3.4/commands/GetActionCommand.d.ts +45 -0
  83. package/dist-types/ts3.4/commands/GetSupportPermitCommand.d.ts +52 -0
  84. package/dist-types/ts3.4/commands/ListActionsCommand.d.ts +49 -0
  85. package/dist-types/ts3.4/commands/ListSupportPermitRequestsCommand.d.ts +53 -0
  86. package/dist-types/ts3.4/commands/ListSupportPermitsCommand.d.ts +53 -0
  87. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +53 -0
  88. package/dist-types/ts3.4/commands/RejectSupportPermitRequestCommand.d.ts +53 -0
  89. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +49 -0
  90. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +49 -0
  91. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  92. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  93. package/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
  94. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  95. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  96. package/dist-types/ts3.4/index.d.ts +12 -0
  97. package/dist-types/ts3.4/models/SupportAuthZServiceException.d.ts +9 -0
  98. package/dist-types/ts3.4/models/enums.d.ts +15 -0
  99. package/dist-types/ts3.4/models/errors.d.ts +65 -0
  100. package/dist-types/ts3.4/models/models_0.d.ts +232 -0
  101. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  102. package/dist-types/ts3.4/pagination/ListActionsPaginator.d.ts +11 -0
  103. package/dist-types/ts3.4/pagination/ListSupportPermitRequestsPaginator.d.ts +11 -0
  104. package/dist-types/ts3.4/pagination/ListSupportPermitsPaginator.d.ts +11 -0
  105. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  106. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +106 -0
  107. package/dist-types/ts3.4/runtimeConfig.d.ts +101 -0
  108. package/dist-types/ts3.4/runtimeConfig.native.d.ts +110 -0
  109. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +31 -0
  110. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  111. package/dist-types/ts3.4/schemas/schemas_0.d.ts +58 -0
  112. package/package.json +69 -0
@@ -0,0 +1,8 @@
1
+ import type { PaginationConfiguration } from "@smithy/types";
2
+ import { SupportAuthZClient } from "../SupportAuthZClient";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface SupportAuthZPaginationConfiguration extends PaginationConfiguration {
7
+ client: SupportAuthZClient;
8
+ }
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListActionsCommandInput, ListActionsCommandOutput } from "../commands/ListActionsCommand";
3
+ import type { SupportAuthZPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListActions: (config: SupportAuthZPaginationConfiguration, input: ListActionsCommandInput, ...rest: any[]) => Paginator<ListActionsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListSupportPermitRequestsCommandInput, ListSupportPermitRequestsCommandOutput } from "../commands/ListSupportPermitRequestsCommand";
3
+ import type { SupportAuthZPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListSupportPermitRequests: (config: SupportAuthZPaginationConfiguration, input: ListSupportPermitRequestsCommandInput, ...rest: any[]) => Paginator<ListSupportPermitRequestsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListSupportPermitsCommandInput, ListSupportPermitsCommandOutput } from "../commands/ListSupportPermitsCommand";
3
+ import type { SupportAuthZPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListSupportPermits: (config: SupportAuthZPaginationConfiguration, input: ListSupportPermitsCommandInput, ...rest: any[]) => Paginator<ListSupportPermitsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListActionsPaginator";
3
+ export * from "./ListSupportPermitRequestsPaginator";
4
+ export * from "./ListSupportPermitsPaginator";
@@ -0,0 +1,55 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import type { SupportAuthZClientConfig } from "./SupportAuthZClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: SupportAuthZClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<any>;
14
+ requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
17
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
18
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
19
+ cacheMiddleware?: boolean | undefined;
20
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
21
+ protocolSettings: {
22
+ defaultNamespace?: string;
23
+ [setting: string]: unknown;
24
+ };
25
+ apiVersion: string;
26
+ sha256: import("@smithy/types").HashConstructor;
27
+ urlParser: import("@smithy/types").UrlParser;
28
+ base64Decoder: import("@smithy/types").Decoder;
29
+ base64Encoder: (_input: Uint8Array | string) => string;
30
+ utf8Decoder: import("@smithy/types").Decoder;
31
+ utf8Encoder: (input: Uint8Array | string) => string;
32
+ disableHostPrefix: boolean;
33
+ serviceId: string;
34
+ profile?: string;
35
+ logger: import("@smithy/types").Logger;
36
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
37
+ customUserAgent?: string | import("@smithy/types").UserAgent;
38
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
39
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
40
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
41
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
42
+ logger?: import("@smithy/types").Logger;
43
+ }) => import("@smithy/types").EndpointV2;
44
+ tls?: boolean;
45
+ serviceConfiguredEndpoint?: never;
46
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
47
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
48
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SupportAuthZHttpAuthSchemeProvider;
49
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
50
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
51
+ signingEscapePath?: boolean;
52
+ systemClockOffset?: number;
53
+ signingRegion?: string;
54
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
55
+ };
@@ -0,0 +1,55 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import type { SupportAuthZClientConfig } from "./SupportAuthZClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: SupportAuthZClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
9
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
10
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
12
+ defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
13
+ maxAttempts: number | import("@smithy/types").Provider<number>;
14
+ region: string | import("@smithy/types").Provider<string>;
15
+ requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
16
+ retryMode: string | import("@smithy/types").Provider<string>;
17
+ streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
21
+ cacheMiddleware?: boolean | undefined;
22
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
23
+ protocolSettings: {
24
+ defaultNamespace?: string;
25
+ [setting: string]: unknown;
26
+ };
27
+ apiVersion: string;
28
+ sha256: import("@smithy/types").HashConstructor;
29
+ urlParser: import("@smithy/types").UrlParser;
30
+ base64Decoder: import("@smithy/types").Decoder;
31
+ base64Encoder: (_input: Uint8Array | string) => string;
32
+ utf8Decoder: import("@smithy/types").Decoder;
33
+ utf8Encoder: (input: Uint8Array | string) => string;
34
+ disableHostPrefix: boolean;
35
+ serviceId: string;
36
+ profile?: string;
37
+ logger: import("@smithy/types").Logger;
38
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
39
+ customUserAgent?: string | import("@smithy/types").UserAgent;
40
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
41
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
42
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
43
+ logger?: import("@smithy/types").Logger;
44
+ }) => import("@smithy/types").EndpointV2;
45
+ tls?: boolean;
46
+ serviceConfiguredEndpoint?: never;
47
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
48
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SupportAuthZHttpAuthSchemeProvider;
49
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
50
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
51
+ signingEscapePath?: boolean;
52
+ systemClockOffset?: number;
53
+ signingRegion?: string;
54
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
55
+ };
@@ -0,0 +1,54 @@
1
+ import type { SupportAuthZClientConfig } from "./SupportAuthZClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: SupportAuthZClientConfig) => {
6
+ runtime: string;
7
+ requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
8
+ cacheMiddleware?: boolean;
9
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
10
+ protocolSettings: {
11
+ defaultNamespace?: string;
12
+ [setting: string]: unknown;
13
+ };
14
+ apiVersion: string;
15
+ sha256: import("@smithy/types").HashConstructor;
16
+ urlParser: import("@smithy/types").UrlParser;
17
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
18
+ streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
19
+ base64Decoder: import("@smithy/types").Decoder;
20
+ base64Encoder: (_input: Uint8Array | string) => string;
21
+ utf8Decoder: import("@smithy/types").Decoder;
22
+ utf8Encoder: (input: Uint8Array | string) => string;
23
+ disableHostPrefix: boolean;
24
+ serviceId: string;
25
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
26
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
27
+ region: string | import("@smithy/types").Provider<any>;
28
+ profile?: string;
29
+ defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
30
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
31
+ maxAttempts: number | import("@smithy/types").Provider<number>;
32
+ retryMode: string | import("@smithy/types").Provider<string>;
33
+ logger: import("@smithy/types").Logger;
34
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
35
+ defaultsMode: import("@smithy/core/client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
36
+ customUserAgent?: string | import("@smithy/types").UserAgent;
37
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
38
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
39
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
40
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
41
+ logger?: import("@smithy/types").Logger;
42
+ }) => import("@smithy/types").EndpointV2;
43
+ tls?: boolean;
44
+ serviceConfiguredEndpoint?: never;
45
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
46
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
47
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SupportAuthZHttpAuthSchemeProvider;
48
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
49
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
50
+ signingEscapePath?: boolean;
51
+ systemClockOffset?: number;
52
+ signingRegion?: string;
53
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
54
+ };
@@ -0,0 +1,28 @@
1
+ import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
2
+ import type { SupportAuthZClientConfig } from "./SupportAuthZClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: SupportAuthZClientConfig) => {
7
+ apiVersion: string;
8
+ base64Decoder: import("@smithy/types").Decoder;
9
+ base64Encoder: (_input: Uint8Array | string) => string;
10
+ disableHostPrefix: boolean;
11
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
12
+ logger?: import("@smithy/types").Logger;
13
+ }) => import("@smithy/types").EndpointV2;
14
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
15
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SupportAuthZHttpAuthSchemeProvider;
16
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
17
+ logger: import("@smithy/types").Logger;
18
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
19
+ protocolSettings: {
20
+ [setting: string]: unknown;
21
+ defaultNamespace?: string;
22
+ };
23
+ serviceId: string;
24
+ sha256: import("@smithy/types").HashConstructor;
25
+ urlParser: import("@smithy/types").UrlParser;
26
+ utf8Decoder: import("@smithy/types").Decoder;
27
+ utf8Encoder: (input: Uint8Array | string) => string;
28
+ };
@@ -0,0 +1,17 @@
1
+ import type { SupportAuthZExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(extensionConfiguration: SupportAuthZExtensionConfiguration): void;
7
+ }
8
+ /**
9
+ * @public
10
+ */
11
+ export interface RuntimeExtensionsConfig {
12
+ extensions: RuntimeExtension[];
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
@@ -0,0 +1,58 @@
1
+ import { TypeRegistry } from "@smithy/core/schema";
2
+ import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, StaticUnionSchema } from "@smithy/types";
3
+ export declare var SupportAuthZServiceException$: StaticErrorSchema;
4
+ export declare var AccessDeniedException$: StaticErrorSchema;
5
+ export declare var ConflictException$: StaticErrorSchema;
6
+ export declare var InternalServerException$: StaticErrorSchema;
7
+ export declare var ResourceNotFoundException$: StaticErrorSchema;
8
+ export declare var ServiceQuotaExceededException$: StaticErrorSchema;
9
+ export declare var ThrottlingException$: StaticErrorSchema;
10
+ export declare var ValidationException$: StaticErrorSchema;
11
+ /**
12
+ * TypeRegistry instances containing modeled errors.
13
+ * @internal
14
+ *
15
+ */
16
+ export declare const errorTypeRegistries: TypeRegistry[];
17
+ export declare var ActionSummary$: StaticStructureSchema;
18
+ export declare var CreateSupportPermitInput$: StaticStructureSchema;
19
+ export declare var CreateSupportPermitOutput$: StaticStructureSchema;
20
+ export declare var DeleteSupportPermitInput$: StaticStructureSchema;
21
+ export declare var DeleteSupportPermitOutput$: StaticStructureSchema;
22
+ export declare var GetActionInput$: StaticStructureSchema;
23
+ export declare var GetActionOutput$: StaticStructureSchema;
24
+ export declare var GetSupportPermitInput$: StaticStructureSchema;
25
+ export declare var GetSupportPermitOutput$: StaticStructureSchema;
26
+ export declare var ListActionsInput$: StaticStructureSchema;
27
+ export declare var ListActionsOutput$: StaticStructureSchema;
28
+ export declare var ListSupportPermitRequestsInput$: StaticStructureSchema;
29
+ export declare var ListSupportPermitRequestsOutput$: StaticStructureSchema;
30
+ export declare var ListSupportPermitsInput$: StaticStructureSchema;
31
+ export declare var ListSupportPermitsOutput$: StaticStructureSchema;
32
+ export declare var ListTagsForResourceInput$: StaticStructureSchema;
33
+ export declare var ListTagsForResourceOutput$: StaticStructureSchema;
34
+ export declare var Permit$: StaticStructureSchema;
35
+ export declare var RejectSupportPermitRequestInput$: StaticStructureSchema;
36
+ export declare var RejectSupportPermitRequestOutput$: StaticStructureSchema;
37
+ export declare var SupportPermitRequest$: StaticStructureSchema;
38
+ export declare var SupportPermitSummary$: StaticStructureSchema;
39
+ export declare var TagResourceInput$: StaticStructureSchema;
40
+ export declare var TagResourceOutput$: StaticStructureSchema;
41
+ export declare var UntagResourceInput$: StaticStructureSchema;
42
+ export declare var UntagResourceOutput$: StaticStructureSchema;
43
+ export declare var ValidationExceptionField$: StaticStructureSchema;
44
+ export declare var ActionSet$: StaticUnionSchema;
45
+ export declare var Condition$: StaticUnionSchema;
46
+ export declare var ResourceSet$: StaticUnionSchema;
47
+ export declare var SigningKeyInfo$: StaticUnionSchema;
48
+ export declare var CreateSupportPermit$: StaticOperationSchema;
49
+ export declare var DeleteSupportPermit$: StaticOperationSchema;
50
+ export declare var GetAction$: StaticOperationSchema;
51
+ export declare var GetSupportPermit$: StaticOperationSchema;
52
+ export declare var ListActions$: StaticOperationSchema;
53
+ export declare var ListSupportPermitRequests$: StaticOperationSchema;
54
+ export declare var ListSupportPermits$: StaticOperationSchema;
55
+ export declare var ListTagsForResource$: StaticOperationSchema;
56
+ export declare var RejectSupportPermitRequest$: StaticOperationSchema;
57
+ export declare var TagResource$: StaticOperationSchema;
58
+ export declare var UntagResource$: StaticOperationSchema;
@@ -0,0 +1,221 @@
1
+ import {
2
+ HttpHandlerOptions as __HttpHandlerOptions,
3
+ PaginationConfiguration,
4
+ Paginator,
5
+ } from "@smithy/types";
6
+ import {
7
+ CreateSupportPermitCommandInput,
8
+ CreateSupportPermitCommandOutput,
9
+ } from "./commands/CreateSupportPermitCommand";
10
+ import {
11
+ DeleteSupportPermitCommandInput,
12
+ DeleteSupportPermitCommandOutput,
13
+ } from "./commands/DeleteSupportPermitCommand";
14
+ import {
15
+ GetActionCommandInput,
16
+ GetActionCommandOutput,
17
+ } from "./commands/GetActionCommand";
18
+ import {
19
+ GetSupportPermitCommandInput,
20
+ GetSupportPermitCommandOutput,
21
+ } from "./commands/GetSupportPermitCommand";
22
+ import {
23
+ ListActionsCommandInput,
24
+ ListActionsCommandOutput,
25
+ } from "./commands/ListActionsCommand";
26
+ import {
27
+ ListSupportPermitRequestsCommandInput,
28
+ ListSupportPermitRequestsCommandOutput,
29
+ } from "./commands/ListSupportPermitRequestsCommand";
30
+ import {
31
+ ListSupportPermitsCommandInput,
32
+ ListSupportPermitsCommandOutput,
33
+ } from "./commands/ListSupportPermitsCommand";
34
+ import {
35
+ ListTagsForResourceCommandInput,
36
+ ListTagsForResourceCommandOutput,
37
+ } from "./commands/ListTagsForResourceCommand";
38
+ import {
39
+ RejectSupportPermitRequestCommandInput,
40
+ RejectSupportPermitRequestCommandOutput,
41
+ } from "./commands/RejectSupportPermitRequestCommand";
42
+ import {
43
+ TagResourceCommandInput,
44
+ TagResourceCommandOutput,
45
+ } from "./commands/TagResourceCommand";
46
+ import {
47
+ UntagResourceCommandInput,
48
+ UntagResourceCommandOutput,
49
+ } from "./commands/UntagResourceCommand";
50
+ import { SupportAuthZClient } from "./SupportAuthZClient";
51
+ export interface SupportAuthZ {
52
+ createSupportPermit(
53
+ args: CreateSupportPermitCommandInput,
54
+ options?: __HttpHandlerOptions
55
+ ): Promise<CreateSupportPermitCommandOutput>;
56
+ createSupportPermit(
57
+ args: CreateSupportPermitCommandInput,
58
+ cb: (err: any, data?: CreateSupportPermitCommandOutput) => void
59
+ ): void;
60
+ createSupportPermit(
61
+ args: CreateSupportPermitCommandInput,
62
+ options: __HttpHandlerOptions,
63
+ cb: (err: any, data?: CreateSupportPermitCommandOutput) => void
64
+ ): void;
65
+ deleteSupportPermit(
66
+ args: DeleteSupportPermitCommandInput,
67
+ options?: __HttpHandlerOptions
68
+ ): Promise<DeleteSupportPermitCommandOutput>;
69
+ deleteSupportPermit(
70
+ args: DeleteSupportPermitCommandInput,
71
+ cb: (err: any, data?: DeleteSupportPermitCommandOutput) => void
72
+ ): void;
73
+ deleteSupportPermit(
74
+ args: DeleteSupportPermitCommandInput,
75
+ options: __HttpHandlerOptions,
76
+ cb: (err: any, data?: DeleteSupportPermitCommandOutput) => void
77
+ ): void;
78
+ getAction(
79
+ args: GetActionCommandInput,
80
+ options?: __HttpHandlerOptions
81
+ ): Promise<GetActionCommandOutput>;
82
+ getAction(
83
+ args: GetActionCommandInput,
84
+ cb: (err: any, data?: GetActionCommandOutput) => void
85
+ ): void;
86
+ getAction(
87
+ args: GetActionCommandInput,
88
+ options: __HttpHandlerOptions,
89
+ cb: (err: any, data?: GetActionCommandOutput) => void
90
+ ): void;
91
+ getSupportPermit(
92
+ args: GetSupportPermitCommandInput,
93
+ options?: __HttpHandlerOptions
94
+ ): Promise<GetSupportPermitCommandOutput>;
95
+ getSupportPermit(
96
+ args: GetSupportPermitCommandInput,
97
+ cb: (err: any, data?: GetSupportPermitCommandOutput) => void
98
+ ): void;
99
+ getSupportPermit(
100
+ args: GetSupportPermitCommandInput,
101
+ options: __HttpHandlerOptions,
102
+ cb: (err: any, data?: GetSupportPermitCommandOutput) => void
103
+ ): void;
104
+ listActions(
105
+ args: ListActionsCommandInput,
106
+ options?: __HttpHandlerOptions
107
+ ): Promise<ListActionsCommandOutput>;
108
+ listActions(
109
+ args: ListActionsCommandInput,
110
+ cb: (err: any, data?: ListActionsCommandOutput) => void
111
+ ): void;
112
+ listActions(
113
+ args: ListActionsCommandInput,
114
+ options: __HttpHandlerOptions,
115
+ cb: (err: any, data?: ListActionsCommandOutput) => void
116
+ ): void;
117
+ listSupportPermitRequests(): Promise<ListSupportPermitRequestsCommandOutput>;
118
+ listSupportPermitRequests(
119
+ args: ListSupportPermitRequestsCommandInput,
120
+ options?: __HttpHandlerOptions
121
+ ): Promise<ListSupportPermitRequestsCommandOutput>;
122
+ listSupportPermitRequests(
123
+ args: ListSupportPermitRequestsCommandInput,
124
+ cb: (err: any, data?: ListSupportPermitRequestsCommandOutput) => void
125
+ ): void;
126
+ listSupportPermitRequests(
127
+ args: ListSupportPermitRequestsCommandInput,
128
+ options: __HttpHandlerOptions,
129
+ cb: (err: any, data?: ListSupportPermitRequestsCommandOutput) => void
130
+ ): void;
131
+ listSupportPermits(): Promise<ListSupportPermitsCommandOutput>;
132
+ listSupportPermits(
133
+ args: ListSupportPermitsCommandInput,
134
+ options?: __HttpHandlerOptions
135
+ ): Promise<ListSupportPermitsCommandOutput>;
136
+ listSupportPermits(
137
+ args: ListSupportPermitsCommandInput,
138
+ cb: (err: any, data?: ListSupportPermitsCommandOutput) => void
139
+ ): void;
140
+ listSupportPermits(
141
+ args: ListSupportPermitsCommandInput,
142
+ options: __HttpHandlerOptions,
143
+ cb: (err: any, data?: ListSupportPermitsCommandOutput) => void
144
+ ): void;
145
+ listTagsForResource(
146
+ args: ListTagsForResourceCommandInput,
147
+ options?: __HttpHandlerOptions
148
+ ): Promise<ListTagsForResourceCommandOutput>;
149
+ listTagsForResource(
150
+ args: ListTagsForResourceCommandInput,
151
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
152
+ ): void;
153
+ listTagsForResource(
154
+ args: ListTagsForResourceCommandInput,
155
+ options: __HttpHandlerOptions,
156
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
157
+ ): void;
158
+ rejectSupportPermitRequest(
159
+ args: RejectSupportPermitRequestCommandInput,
160
+ options?: __HttpHandlerOptions
161
+ ): Promise<RejectSupportPermitRequestCommandOutput>;
162
+ rejectSupportPermitRequest(
163
+ args: RejectSupportPermitRequestCommandInput,
164
+ cb: (err: any, data?: RejectSupportPermitRequestCommandOutput) => void
165
+ ): void;
166
+ rejectSupportPermitRequest(
167
+ args: RejectSupportPermitRequestCommandInput,
168
+ options: __HttpHandlerOptions,
169
+ cb: (err: any, data?: RejectSupportPermitRequestCommandOutput) => void
170
+ ): void;
171
+ tagResource(
172
+ args: TagResourceCommandInput,
173
+ options?: __HttpHandlerOptions
174
+ ): Promise<TagResourceCommandOutput>;
175
+ tagResource(
176
+ args: TagResourceCommandInput,
177
+ cb: (err: any, data?: TagResourceCommandOutput) => void
178
+ ): void;
179
+ tagResource(
180
+ args: TagResourceCommandInput,
181
+ options: __HttpHandlerOptions,
182
+ cb: (err: any, data?: TagResourceCommandOutput) => void
183
+ ): void;
184
+ untagResource(
185
+ args: UntagResourceCommandInput,
186
+ options?: __HttpHandlerOptions
187
+ ): Promise<UntagResourceCommandOutput>;
188
+ untagResource(
189
+ args: UntagResourceCommandInput,
190
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
191
+ ): void;
192
+ untagResource(
193
+ args: UntagResourceCommandInput,
194
+ options: __HttpHandlerOptions,
195
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
196
+ ): void;
197
+ paginateListActions(
198
+ args: ListActionsCommandInput,
199
+ paginationConfig?: Pick<
200
+ PaginationConfiguration,
201
+ Exclude<keyof PaginationConfiguration, "client">
202
+ >
203
+ ): Paginator<ListActionsCommandOutput>;
204
+ paginateListSupportPermitRequests(
205
+ args?: ListSupportPermitRequestsCommandInput,
206
+ paginationConfig?: Pick<
207
+ PaginationConfiguration,
208
+ Exclude<keyof PaginationConfiguration, "client">
209
+ >
210
+ ): Paginator<ListSupportPermitRequestsCommandOutput>;
211
+ paginateListSupportPermits(
212
+ args?: ListSupportPermitsCommandInput,
213
+ paginationConfig?: Pick<
214
+ PaginationConfiguration,
215
+ Exclude<keyof PaginationConfiguration, "client">
216
+ >
217
+ ): Paginator<ListSupportPermitsCommandOutput>;
218
+ }
219
+ export declare class SupportAuthZ
220
+ extends SupportAuthZClient
221
+ implements SupportAuthZ {}