@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,106 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { SupportAuthZClientConfig } from "./SupportAuthZClient";
3
+ export declare const getRuntimeConfig: (config: SupportAuthZClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/core/client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
+ credentialDefaultProvider:
10
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
+ | ((
12
+ _: unknown
13
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
14
+ defaultUserAgentProvider: (
15
+ config?: import("@aws-sdk/core/client").PreviouslyResolved
16
+ ) => Promise<import("@smithy/types").UserAgent>;
17
+ maxAttempts: number | import("@smithy/types").Provider<number>;
18
+ region: string | import("@smithy/types").Provider<any>;
19
+ requestHandler:
20
+ | import("@smithy/core/protocols").HttpHandler<any>
21
+ | RequestHandler;
22
+ retryMode: string | import("@smithy/types").Provider<string>;
23
+ streamCollector: (
24
+ stream:
25
+ | import("stream").Readable
26
+ | import("stream/web").ReadableStream
27
+ | ReadableStream
28
+ | Blob
29
+ ) => Promise<Uint8Array>;
30
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
31
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
32
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
33
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
34
+ cacheMiddleware?: boolean | undefined;
35
+ protocol:
36
+ | import("@smithy/types").ClientProtocol<any, any>
37
+ | import("@smithy/types").ClientProtocolCtor<any, any>
38
+ | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
39
+ protocolSettings: {
40
+ defaultNamespace?: string;
41
+ [setting: string]: unknown;
42
+ };
43
+ apiVersion: string;
44
+ sha256: import("@smithy/types").HashConstructor;
45
+ urlParser: import("@smithy/types").UrlParser;
46
+ base64Decoder: import("@smithy/types").Decoder;
47
+ base64Encoder: (_input: Uint8Array | string) => string;
48
+ utf8Decoder: import("@smithy/types").Decoder;
49
+ utf8Encoder: (input: Uint8Array | string) => string;
50
+ disableHostPrefix: boolean;
51
+ serviceId: string;
52
+ profile?: string;
53
+ logger: import("@smithy/types").Logger;
54
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
55
+ customUserAgent?: string | import("@smithy/types").UserAgent;
56
+ userAgentAppId?:
57
+ | string
58
+ | undefined
59
+ | import("@smithy/types").Provider<string | undefined>;
60
+ retryStrategy?:
61
+ | import("@smithy/types").RetryStrategy
62
+ | import("@smithy/types").RetryStrategyV2;
63
+ endpoint?:
64
+ | ((
65
+ | string
66
+ | import("@smithy/types").Endpoint
67
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
68
+ | import("@smithy/types").EndpointV2
69
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
70
+ ) &
71
+ (
72
+ | string
73
+ | import("@smithy/types").Provider<string>
74
+ | import("@smithy/types").Endpoint
75
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
76
+ | import("@smithy/types").EndpointV2
77
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
78
+ ))
79
+ | undefined;
80
+ endpointProvider: (
81
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
82
+ context?: {
83
+ logger?: import("@smithy/types").Logger;
84
+ }
85
+ ) => import("@smithy/types").EndpointV2;
86
+ tls?: boolean;
87
+ serviceConfiguredEndpoint?: never;
88
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
89
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
90
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SupportAuthZHttpAuthSchemeProvider;
91
+ credentials?:
92
+ | import("@smithy/types").AwsCredentialIdentity
93
+ | import("@smithy/types").AwsCredentialIdentityProvider;
94
+ signer?:
95
+ | import("@smithy/types").RequestSigner
96
+ | ((
97
+ authScheme?: import("@smithy/types").AuthScheme
98
+ ) => Promise<import("@smithy/types").RequestSigner>);
99
+ signingEscapePath?: boolean;
100
+ systemClockOffset?: number;
101
+ signingRegion?: string;
102
+ signerConstructor?: new (
103
+ options: import("@smithy/signature-v4").SignatureV4Init &
104
+ import("@smithy/signature-v4").SignatureV4CryptoInit
105
+ ) => import("@smithy/types").RequestSigner;
106
+ };
@@ -0,0 +1,101 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { SupportAuthZClientConfig } from "./SupportAuthZClient";
3
+ export declare const getRuntimeConfig: (config: SupportAuthZClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/core/client").ResolvedDefaultsMode
7
+ >;
8
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider:
11
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
12
+ | ((
13
+ init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
14
+ ) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
15
+ defaultUserAgentProvider: (
16
+ config?: import("@aws-sdk/core/client").PreviouslyResolved
17
+ ) => Promise<import("@smithy/types").UserAgent>;
18
+ maxAttempts: number | import("@smithy/types").Provider<number>;
19
+ region: string | import("@smithy/types").Provider<string>;
20
+ requestHandler:
21
+ | RequestHandler
22
+ | import("@smithy/core/protocols").HttpHandler<any>;
23
+ retryMode: string | import("@smithy/types").Provider<string>;
24
+ streamCollector: (
25
+ stream:
26
+ | import("stream").Readable
27
+ | import("stream/web").ReadableStream
28
+ | ReadableStream
29
+ | Blob
30
+ ) => Promise<Uint8Array>;
31
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
32
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
33
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
34
+ cacheMiddleware?: boolean | undefined;
35
+ protocol:
36
+ | import("@smithy/types").ClientProtocol<any, any>
37
+ | import("@smithy/types").ClientProtocolCtor<any, any>
38
+ | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
39
+ protocolSettings: {
40
+ defaultNamespace?: string;
41
+ [setting: string]: unknown;
42
+ };
43
+ apiVersion: string;
44
+ sha256: import("@smithy/types").HashConstructor;
45
+ urlParser: import("@smithy/types").UrlParser;
46
+ base64Decoder: import("@smithy/types").Decoder;
47
+ base64Encoder: (_input: Uint8Array | string) => string;
48
+ utf8Decoder: import("@smithy/types").Decoder;
49
+ utf8Encoder: (input: Uint8Array | string) => string;
50
+ disableHostPrefix: boolean;
51
+ serviceId: string;
52
+ profile?: string;
53
+ logger: import("@smithy/types").Logger;
54
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
55
+ customUserAgent?: string | import("@smithy/types").UserAgent;
56
+ retryStrategy?:
57
+ | import("@smithy/types").RetryStrategy
58
+ | import("@smithy/types").RetryStrategyV2;
59
+ endpoint?:
60
+ | ((
61
+ | string
62
+ | import("@smithy/types").Endpoint
63
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
64
+ | import("@smithy/types").EndpointV2
65
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
66
+ ) &
67
+ (
68
+ | string
69
+ | import("@smithy/types").Provider<string>
70
+ | import("@smithy/types").Endpoint
71
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
72
+ | import("@smithy/types").EndpointV2
73
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
74
+ ))
75
+ | undefined;
76
+ endpointProvider: (
77
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
78
+ context?: {
79
+ logger?: import("@smithy/types").Logger;
80
+ }
81
+ ) => import("@smithy/types").EndpointV2;
82
+ tls?: boolean;
83
+ serviceConfiguredEndpoint?: never;
84
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
85
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SupportAuthZHttpAuthSchemeProvider;
86
+ credentials?:
87
+ | import("@smithy/types").AwsCredentialIdentity
88
+ | import("@smithy/types").AwsCredentialIdentityProvider;
89
+ signer?:
90
+ | import("@smithy/types").RequestSigner
91
+ | ((
92
+ authScheme?: import("@smithy/types").AuthScheme
93
+ ) => Promise<import("@smithy/types").RequestSigner>);
94
+ signingEscapePath?: boolean;
95
+ systemClockOffset?: number;
96
+ signingRegion?: string;
97
+ signerConstructor?: new (
98
+ options: import("@smithy/signature-v4").SignatureV4Init &
99
+ import("@smithy/signature-v4").SignatureV4CryptoInit
100
+ ) => import("@smithy/types").RequestSigner;
101
+ };
@@ -0,0 +1,110 @@
1
+ import { SupportAuthZClientConfig } from "./SupportAuthZClient";
2
+ export declare const getRuntimeConfig: (config: SupportAuthZClientConfig) => {
3
+ runtime: string;
4
+ requestHandler:
5
+ | import("@smithy/types").NodeHttpHandlerOptions
6
+ | import("@smithy/types").FetchHttpHandlerOptions
7
+ | Record<string, unknown>
8
+ | import("@smithy/core/protocols").HttpHandler<any>
9
+ | import("@smithy/fetch-http-handler").FetchHttpHandler;
10
+ cacheMiddleware?: boolean;
11
+ protocol:
12
+ | import("@smithy/types").ClientProtocol<any, any>
13
+ | import("@smithy/types").ClientProtocolCtor<any, any>
14
+ | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
15
+ protocolSettings: {
16
+ defaultNamespace?: string;
17
+ [setting: string]: unknown;
18
+ };
19
+ apiVersion: string;
20
+ sha256: import("@smithy/types").HashConstructor;
21
+ urlParser: import("@smithy/types").UrlParser;
22
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
23
+ streamCollector: (
24
+ stream:
25
+ | import("stream").Readable
26
+ | import("stream/web").ReadableStream
27
+ | ReadableStream
28
+ | Blob
29
+ ) => Promise<Uint8Array>;
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
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
37
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
38
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
39
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
40
+ region: string | import("@smithy/types").Provider<any>;
41
+ profile?: string;
42
+ defaultUserAgentProvider: (
43
+ config?: import("@aws-sdk/core/client").PreviouslyResolved
44
+ ) => Promise<import("@smithy/types").UserAgent>;
45
+ credentialDefaultProvider:
46
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
47
+ | ((
48
+ _: unknown
49
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
50
+ maxAttempts: number | import("@smithy/types").Provider<number>;
51
+ retryMode: string | import("@smithy/types").Provider<string>;
52
+ logger: import("@smithy/types").Logger;
53
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
54
+ defaultsMode:
55
+ | import("@smithy/core/client").DefaultsMode
56
+ | import("@smithy/types").Provider<
57
+ import("@smithy/core/client").DefaultsMode
58
+ >;
59
+ customUserAgent?: string | import("@smithy/types").UserAgent;
60
+ userAgentAppId?:
61
+ | string
62
+ | undefined
63
+ | import("@smithy/types").Provider<string | undefined>;
64
+ retryStrategy?:
65
+ | import("@smithy/types").RetryStrategy
66
+ | import("@smithy/types").RetryStrategyV2;
67
+ endpoint?:
68
+ | ((
69
+ | string
70
+ | import("@smithy/types").Endpoint
71
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
72
+ | import("@smithy/types").EndpointV2
73
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
74
+ ) &
75
+ (
76
+ | string
77
+ | import("@smithy/types").Provider<string>
78
+ | import("@smithy/types").Endpoint
79
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
80
+ | import("@smithy/types").EndpointV2
81
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
82
+ ))
83
+ | undefined;
84
+ endpointProvider: (
85
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
86
+ context?: {
87
+ logger?: import("@smithy/types").Logger;
88
+ }
89
+ ) => import("@smithy/types").EndpointV2;
90
+ tls?: boolean;
91
+ serviceConfiguredEndpoint?: never;
92
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
93
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
94
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SupportAuthZHttpAuthSchemeProvider;
95
+ credentials?:
96
+ | import("@smithy/types").AwsCredentialIdentity
97
+ | import("@smithy/types").AwsCredentialIdentityProvider;
98
+ signer?:
99
+ | import("@smithy/types").RequestSigner
100
+ | ((
101
+ authScheme?: import("@smithy/types").AuthScheme
102
+ ) => Promise<import("@smithy/types").RequestSigner>);
103
+ signingEscapePath?: boolean;
104
+ systemClockOffset?: number;
105
+ signingRegion?: string;
106
+ signerConstructor?: new (
107
+ options: import("@smithy/signature-v4").SignatureV4Init &
108
+ import("@smithy/signature-v4").SignatureV4CryptoInit
109
+ ) => import("@smithy/types").RequestSigner;
110
+ };
@@ -0,0 +1,31 @@
1
+ import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
2
+ import { SupportAuthZClientConfig } from "./SupportAuthZClient";
3
+ export declare const getRuntimeConfig: (config: SupportAuthZClientConfig) => {
4
+ apiVersion: string;
5
+ base64Decoder: import("@smithy/types").Decoder;
6
+ base64Encoder: (_input: Uint8Array | string) => string;
7
+ disableHostPrefix: boolean;
8
+ endpointProvider: (
9
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
10
+ context?: {
11
+ logger?: import("@smithy/types").Logger;
12
+ }
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:
19
+ | import("@smithy/types").ClientProtocol<any, any>
20
+ | import("@smithy/types").ClientProtocolCtor<any, any>
21
+ | typeof AwsRestJsonProtocol;
22
+ protocolSettings: {
23
+ [setting: string]: unknown;
24
+ defaultNamespace?: string;
25
+ };
26
+ serviceId: string;
27
+ sha256: import("@smithy/types").HashConstructor;
28
+ urlParser: import("@smithy/types").UrlParser;
29
+ utf8Decoder: import("@smithy/types").Decoder;
30
+ utf8Encoder: (input: Uint8Array | string) => string;
31
+ };
@@ -0,0 +1,11 @@
1
+ import { SupportAuthZExtensionConfiguration } from "./extensionConfiguration";
2
+ export interface RuntimeExtension {
3
+ configure(extensionConfiguration: SupportAuthZExtensionConfiguration): void;
4
+ }
5
+ export interface RuntimeExtensionsConfig {
6
+ extensions: RuntimeExtension[];
7
+ }
8
+ export declare const resolveRuntimeExtensions: (
9
+ runtimeConfig: any,
10
+ extensions: RuntimeExtension[]
11
+ ) => any;
@@ -0,0 +1,58 @@
1
+ import { TypeRegistry } from "@smithy/core/schema";
2
+ import {
3
+ StaticErrorSchema,
4
+ StaticOperationSchema,
5
+ StaticStructureSchema,
6
+ StaticUnionSchema,
7
+ } from "@smithy/types";
8
+ export declare var SupportAuthZServiceException$: StaticErrorSchema;
9
+ export declare var AccessDeniedException$: StaticErrorSchema;
10
+ export declare var ConflictException$: StaticErrorSchema;
11
+ export declare var InternalServerException$: StaticErrorSchema;
12
+ export declare var ResourceNotFoundException$: StaticErrorSchema;
13
+ export declare var ServiceQuotaExceededException$: StaticErrorSchema;
14
+ export declare var ThrottlingException$: StaticErrorSchema;
15
+ export declare var ValidationException$: StaticErrorSchema;
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;
package/package.json ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "@aws-sdk/client-supportauthz",
3
+ "description": "AWS SDK for JavaScript Supportauthz Client for Node.js, Browser and React Native",
4
+ "version": "3.1077.0",
5
+ "scripts": {
6
+ "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
+ "build:cjs": "node ../../scripts/compilation/inline",
8
+ "build:es": "premove dist-es && tsc -p tsconfig.es.json",
9
+ "build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
10
+ "build:types": "premove dist-types && tsc -p tsconfig.types.json",
11
+ "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
12
+ "clean": "premove dist-cjs dist-es dist-types",
13
+ "extract:docs": "api-extractor run --local",
14
+ "generate:client": "node ../../scripts/generate-clients/single-service",
15
+ "test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
16
+ },
17
+ "main": "./dist-cjs/index.js",
18
+ "types": "./dist-types/index.d.ts",
19
+ "module": "./dist-es/index.js",
20
+ "sideEffects": false,
21
+ "dependencies": {
22
+ "@aws-sdk/core": "^3.974.25",
23
+ "@aws-sdk/credential-provider-node": "^3.972.60",
24
+ "@aws-sdk/types": "^3.973.14",
25
+ "@smithy/core": "^3.28.0",
26
+ "@smithy/fetch-http-handler": "^5.6.1",
27
+ "@smithy/node-http-handler": "^4.9.1",
28
+ "@smithy/types": "^4.15.0",
29
+ "tslib": "^2.6.2"
30
+ },
31
+ "devDependencies": {
32
+ "@tsconfig/node20": "20.1.8",
33
+ "@types/node": "^20.14.8",
34
+ "concurrently": "7.0.0",
35
+ "downlevel-dts": "0.10.1",
36
+ "premove": "4.0.0",
37
+ "typescript": "~5.8.3"
38
+ },
39
+ "engines": {
40
+ "node": ">=20.0.0"
41
+ },
42
+ "typesVersions": {
43
+ "<4.5": {
44
+ "dist-types/*": [
45
+ "dist-types/ts3.4/*"
46
+ ]
47
+ }
48
+ },
49
+ "files": [
50
+ "dist-*/**"
51
+ ],
52
+ "author": {
53
+ "name": "AWS SDK for JavaScript Team",
54
+ "url": "https://aws.amazon.com/sdk-for-javascript/"
55
+ },
56
+ "license": "Apache-2.0",
57
+ "browser": {
58
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
59
+ },
60
+ "react-native": {
61
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
62
+ },
63
+ "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-supportauthz",
64
+ "repository": {
65
+ "type": "git",
66
+ "url": "https://github.com/aws/aws-sdk-js-v3.git",
67
+ "directory": "clients/client-supportauthz"
68
+ }
69
+ }