@aws-sdk/client-nova-act 3.943.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 (137) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +333 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +1297 -0
  7. package/dist-cjs/runtimeConfig.browser.js +39 -0
  8. package/dist-cjs/runtimeConfig.js +56 -0
  9. package/dist-cjs/runtimeConfig.native.js +15 -0
  10. package/dist-cjs/runtimeConfig.shared.js +36 -0
  11. package/dist-es/NovaAct.js +39 -0
  12. package/dist-es/NovaActClient.js +50 -0
  13. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  14. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  15. package/dist-es/commands/CreateActCommand.js +16 -0
  16. package/dist-es/commands/CreateSessionCommand.js +16 -0
  17. package/dist-es/commands/CreateWorkflowDefinitionCommand.js +16 -0
  18. package/dist-es/commands/CreateWorkflowRunCommand.js +16 -0
  19. package/dist-es/commands/DeleteWorkflowDefinitionCommand.js +16 -0
  20. package/dist-es/commands/DeleteWorkflowRunCommand.js +16 -0
  21. package/dist-es/commands/GetWorkflowDefinitionCommand.js +16 -0
  22. package/dist-es/commands/GetWorkflowRunCommand.js +16 -0
  23. package/dist-es/commands/InvokeActStepCommand.js +16 -0
  24. package/dist-es/commands/ListActsCommand.js +16 -0
  25. package/dist-es/commands/ListModelsCommand.js +16 -0
  26. package/dist-es/commands/ListSessionsCommand.js +16 -0
  27. package/dist-es/commands/ListWorkflowDefinitionsCommand.js +16 -0
  28. package/dist-es/commands/ListWorkflowRunsCommand.js +16 -0
  29. package/dist-es/commands/UpdateActCommand.js +16 -0
  30. package/dist-es/commands/UpdateWorkflowRunCommand.js +16 -0
  31. package/dist-es/commands/index.js +16 -0
  32. package/dist-es/endpoint/EndpointParameters.js +13 -0
  33. package/dist-es/endpoint/endpointResolver.js +14 -0
  34. package/dist-es/endpoint/ruleset.js +4 -0
  35. package/dist-es/extensionConfiguration.js +1 -0
  36. package/dist-es/index.js +7 -0
  37. package/dist-es/models/NovaActServiceException.js +8 -0
  38. package/dist-es/models/enums.js +41 -0
  39. package/dist-es/models/errors.js +119 -0
  40. package/dist-es/models/models_0.js +1 -0
  41. package/dist-es/pagination/Interfaces.js +1 -0
  42. package/dist-es/pagination/ListActsPaginator.js +4 -0
  43. package/dist-es/pagination/ListSessionsPaginator.js +4 -0
  44. package/dist-es/pagination/ListWorkflowDefinitionsPaginator.js +4 -0
  45. package/dist-es/pagination/ListWorkflowRunsPaginator.js +4 -0
  46. package/dist-es/pagination/index.js +5 -0
  47. package/dist-es/runtimeConfig.browser.js +34 -0
  48. package/dist-es/runtimeConfig.js +51 -0
  49. package/dist-es/runtimeConfig.native.js +11 -0
  50. package/dist-es/runtimeConfig.shared.js +32 -0
  51. package/dist-es/runtimeExtensions.js +9 -0
  52. package/dist-es/schemas/schemas_0.js +753 -0
  53. package/dist-types/NovaAct.d.ts +123 -0
  54. package/dist-types/NovaActClient.d.ts +212 -0
  55. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  56. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  57. package/dist-types/commands/CreateActCommand.d.ts +109 -0
  58. package/dist-types/commands/CreateSessionCommand.d.ts +97 -0
  59. package/dist-types/commands/CreateWorkflowDefinitionCommand.d.ts +98 -0
  60. package/dist-types/commands/CreateWorkflowRunCommand.d.ts +100 -0
  61. package/dist-types/commands/DeleteWorkflowDefinitionCommand.d.ts +92 -0
  62. package/dist-types/commands/DeleteWorkflowRunCommand.d.ts +93 -0
  63. package/dist-types/commands/GetWorkflowDefinitionCommand.d.ts +97 -0
  64. package/dist-types/commands/GetWorkflowRunCommand.d.ts +99 -0
  65. package/dist-types/commands/InvokeActStepCommand.d.ts +116 -0
  66. package/dist-types/commands/ListActsCommand.d.ts +111 -0
  67. package/dist-types/commands/ListModelsCommand.d.ts +105 -0
  68. package/dist-types/commands/ListSessionsCommand.d.ts +101 -0
  69. package/dist-types/commands/ListWorkflowDefinitionsCommand.d.ts +96 -0
  70. package/dist-types/commands/ListWorkflowRunsCommand.d.ts +108 -0
  71. package/dist-types/commands/UpdateActCommand.d.ts +98 -0
  72. package/dist-types/commands/UpdateWorkflowRunCommand.d.ts +92 -0
  73. package/dist-types/commands/index.d.ts +16 -0
  74. package/dist-types/endpoint/EndpointParameters.d.ts +38 -0
  75. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  76. package/dist-types/endpoint/ruleset.d.ts +2 -0
  77. package/dist-types/extensionConfiguration.d.ts +9 -0
  78. package/dist-types/index.d.ts +16 -0
  79. package/dist-types/models/NovaActServiceException.d.ts +14 -0
  80. package/dist-types/models/enums.d.ts +105 -0
  81. package/dist-types/models/errors.d.ts +167 -0
  82. package/dist-types/models/models_0.d.ts +1014 -0
  83. package/dist-types/pagination/Interfaces.d.ts +8 -0
  84. package/dist-types/pagination/ListActsPaginator.d.ts +7 -0
  85. package/dist-types/pagination/ListSessionsPaginator.d.ts +7 -0
  86. package/dist-types/pagination/ListWorkflowDefinitionsPaginator.d.ts +7 -0
  87. package/dist-types/pagination/ListWorkflowRunsPaginator.d.ts +7 -0
  88. package/dist-types/pagination/index.d.ts +5 -0
  89. package/dist-types/runtimeConfig.browser.d.ts +51 -0
  90. package/dist-types/runtimeConfig.d.ts +51 -0
  91. package/dist-types/runtimeConfig.native.d.ts +50 -0
  92. package/dist-types/runtimeConfig.shared.d.ts +22 -0
  93. package/dist-types/runtimeExtensions.d.ts +17 -0
  94. package/dist-types/schemas/schemas_0.d.ts +93 -0
  95. package/dist-types/ts3.4/NovaAct.d.ts +278 -0
  96. package/dist-types/ts3.4/NovaActClient.d.ts +219 -0
  97. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  98. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  99. package/dist-types/ts3.4/commands/CreateActCommand.d.ts +47 -0
  100. package/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +50 -0
  101. package/dist-types/ts3.4/commands/CreateWorkflowDefinitionCommand.d.ts +51 -0
  102. package/dist-types/ts3.4/commands/CreateWorkflowRunCommand.d.ts +51 -0
  103. package/dist-types/ts3.4/commands/DeleteWorkflowDefinitionCommand.d.ts +51 -0
  104. package/dist-types/ts3.4/commands/DeleteWorkflowRunCommand.d.ts +51 -0
  105. package/dist-types/ts3.4/commands/GetWorkflowDefinitionCommand.d.ts +51 -0
  106. package/dist-types/ts3.4/commands/GetWorkflowRunCommand.d.ts +50 -0
  107. package/dist-types/ts3.4/commands/InvokeActStepCommand.d.ts +50 -0
  108. package/dist-types/ts3.4/commands/ListActsCommand.d.ts +47 -0
  109. package/dist-types/ts3.4/commands/ListModelsCommand.d.ts +47 -0
  110. package/dist-types/ts3.4/commands/ListSessionsCommand.d.ts +47 -0
  111. package/dist-types/ts3.4/commands/ListWorkflowDefinitionsCommand.d.ts +51 -0
  112. package/dist-types/ts3.4/commands/ListWorkflowRunsCommand.d.ts +50 -0
  113. package/dist-types/ts3.4/commands/UpdateActCommand.d.ts +47 -0
  114. package/dist-types/ts3.4/commands/UpdateWorkflowRunCommand.d.ts +51 -0
  115. package/dist-types/ts3.4/commands/index.d.ts +16 -0
  116. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  117. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  118. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  119. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  120. package/dist-types/ts3.4/index.d.ts +11 -0
  121. package/dist-types/ts3.4/models/NovaActServiceException.d.ts +9 -0
  122. package/dist-types/ts3.4/models/enums.d.ts +54 -0
  123. package/dist-types/ts3.4/models/errors.d.ts +73 -0
  124. package/dist-types/ts3.4/models/models_0.d.ts +275 -0
  125. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  126. package/dist-types/ts3.4/pagination/ListActsPaginator.d.ts +11 -0
  127. package/dist-types/ts3.4/pagination/ListSessionsPaginator.d.ts +11 -0
  128. package/dist-types/ts3.4/pagination/ListWorkflowDefinitionsPaginator.d.ts +11 -0
  129. package/dist-types/ts3.4/pagination/ListWorkflowRunsPaginator.d.ts +11 -0
  130. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  131. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +96 -0
  132. package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
  133. package/dist-types/ts3.4/runtimeConfig.native.d.ts +100 -0
  134. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +25 -0
  135. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  136. package/dist-types/ts3.4/schemas/schemas_0.d.ts +99 -0
  137. package/package.json +99 -0
@@ -0,0 +1,219 @@
1
+ import {
2
+ HostHeaderInputConfig,
3
+ HostHeaderResolvedConfig,
4
+ } from "@aws-sdk/middleware-host-header";
5
+ import {
6
+ UserAgentInputConfig,
7
+ UserAgentResolvedConfig,
8
+ } from "@aws-sdk/middleware-user-agent";
9
+ import {
10
+ RegionInputConfig,
11
+ RegionResolvedConfig,
12
+ } from "@smithy/config-resolver";
13
+ import {
14
+ EndpointInputConfig,
15
+ EndpointResolvedConfig,
16
+ } from "@smithy/middleware-endpoint";
17
+ import {
18
+ RetryInputConfig,
19
+ RetryResolvedConfig,
20
+ } from "@smithy/middleware-retry";
21
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
22
+ import {
23
+ Client as __Client,
24
+ DefaultsMode as __DefaultsMode,
25
+ SmithyConfiguration as __SmithyConfiguration,
26
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
27
+ } from "@smithy/smithy-client";
28
+ import {
29
+ AwsCredentialIdentityProvider,
30
+ BodyLengthCalculator as __BodyLengthCalculator,
31
+ CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
+ ChecksumConstructor as __ChecksumConstructor,
33
+ ClientProtocol,
34
+ Decoder as __Decoder,
35
+ Encoder as __Encoder,
36
+ HashConstructor as __HashConstructor,
37
+ HttpHandlerOptions as __HttpHandlerOptions,
38
+ HttpRequest,
39
+ HttpResponse,
40
+ Logger as __Logger,
41
+ Provider as __Provider,
42
+ Provider,
43
+ StreamCollector as __StreamCollector,
44
+ UrlParser as __UrlParser,
45
+ UserAgent as __UserAgent,
46
+ } from "@smithy/types";
47
+ import {
48
+ HttpAuthSchemeInputConfig,
49
+ HttpAuthSchemeResolvedConfig,
50
+ } from "./auth/httpAuthSchemeProvider";
51
+ import {
52
+ CreateActCommandInput,
53
+ CreateActCommandOutput,
54
+ } from "./commands/CreateActCommand";
55
+ import {
56
+ CreateSessionCommandInput,
57
+ CreateSessionCommandOutput,
58
+ } from "./commands/CreateSessionCommand";
59
+ import {
60
+ CreateWorkflowDefinitionCommandInput,
61
+ CreateWorkflowDefinitionCommandOutput,
62
+ } from "./commands/CreateWorkflowDefinitionCommand";
63
+ import {
64
+ CreateWorkflowRunCommandInput,
65
+ CreateWorkflowRunCommandOutput,
66
+ } from "./commands/CreateWorkflowRunCommand";
67
+ import {
68
+ DeleteWorkflowDefinitionCommandInput,
69
+ DeleteWorkflowDefinitionCommandOutput,
70
+ } from "./commands/DeleteWorkflowDefinitionCommand";
71
+ import {
72
+ DeleteWorkflowRunCommandInput,
73
+ DeleteWorkflowRunCommandOutput,
74
+ } from "./commands/DeleteWorkflowRunCommand";
75
+ import {
76
+ GetWorkflowDefinitionCommandInput,
77
+ GetWorkflowDefinitionCommandOutput,
78
+ } from "./commands/GetWorkflowDefinitionCommand";
79
+ import {
80
+ GetWorkflowRunCommandInput,
81
+ GetWorkflowRunCommandOutput,
82
+ } from "./commands/GetWorkflowRunCommand";
83
+ import {
84
+ InvokeActStepCommandInput,
85
+ InvokeActStepCommandOutput,
86
+ } from "./commands/InvokeActStepCommand";
87
+ import {
88
+ ListActsCommandInput,
89
+ ListActsCommandOutput,
90
+ } from "./commands/ListActsCommand";
91
+ import {
92
+ ListModelsCommandInput,
93
+ ListModelsCommandOutput,
94
+ } from "./commands/ListModelsCommand";
95
+ import {
96
+ ListSessionsCommandInput,
97
+ ListSessionsCommandOutput,
98
+ } from "./commands/ListSessionsCommand";
99
+ import {
100
+ ListWorkflowDefinitionsCommandInput,
101
+ ListWorkflowDefinitionsCommandOutput,
102
+ } from "./commands/ListWorkflowDefinitionsCommand";
103
+ import {
104
+ ListWorkflowRunsCommandInput,
105
+ ListWorkflowRunsCommandOutput,
106
+ } from "./commands/ListWorkflowRunsCommand";
107
+ import {
108
+ UpdateActCommandInput,
109
+ UpdateActCommandOutput,
110
+ } from "./commands/UpdateActCommand";
111
+ import {
112
+ UpdateWorkflowRunCommandInput,
113
+ UpdateWorkflowRunCommandOutput,
114
+ } from "./commands/UpdateWorkflowRunCommand";
115
+ import {
116
+ ClientInputEndpointParameters,
117
+ ClientResolvedEndpointParameters,
118
+ EndpointParameters,
119
+ } from "./endpoint/EndpointParameters";
120
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
121
+ export { __Client };
122
+ export type ServiceInputTypes =
123
+ | CreateActCommandInput
124
+ | CreateSessionCommandInput
125
+ | CreateWorkflowDefinitionCommandInput
126
+ | CreateWorkflowRunCommandInput
127
+ | DeleteWorkflowDefinitionCommandInput
128
+ | DeleteWorkflowRunCommandInput
129
+ | GetWorkflowDefinitionCommandInput
130
+ | GetWorkflowRunCommandInput
131
+ | InvokeActStepCommandInput
132
+ | ListActsCommandInput
133
+ | ListModelsCommandInput
134
+ | ListSessionsCommandInput
135
+ | ListWorkflowDefinitionsCommandInput
136
+ | ListWorkflowRunsCommandInput
137
+ | UpdateActCommandInput
138
+ | UpdateWorkflowRunCommandInput;
139
+ export type ServiceOutputTypes =
140
+ | CreateActCommandOutput
141
+ | CreateSessionCommandOutput
142
+ | CreateWorkflowDefinitionCommandOutput
143
+ | CreateWorkflowRunCommandOutput
144
+ | DeleteWorkflowDefinitionCommandOutput
145
+ | DeleteWorkflowRunCommandOutput
146
+ | GetWorkflowDefinitionCommandOutput
147
+ | GetWorkflowRunCommandOutput
148
+ | InvokeActStepCommandOutput
149
+ | ListActsCommandOutput
150
+ | ListModelsCommandOutput
151
+ | ListSessionsCommandOutput
152
+ | ListWorkflowDefinitionsCommandOutput
153
+ | ListWorkflowRunsCommandOutput
154
+ | UpdateActCommandOutput
155
+ | UpdateWorkflowRunCommandOutput;
156
+ export interface ClientDefaults
157
+ extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
158
+ requestHandler?: __HttpHandlerUserInput;
159
+ sha256?: __ChecksumConstructor | __HashConstructor;
160
+ urlParser?: __UrlParser;
161
+ bodyLengthChecker?: __BodyLengthCalculator;
162
+ streamCollector?: __StreamCollector;
163
+ base64Decoder?: __Decoder;
164
+ base64Encoder?: __Encoder;
165
+ utf8Decoder?: __Decoder;
166
+ utf8Encoder?: __Encoder;
167
+ runtime?: string;
168
+ disableHostPrefix?: boolean;
169
+ serviceId?: string;
170
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
171
+ useFipsEndpoint?: boolean | __Provider<boolean>;
172
+ region?: string | __Provider<string>;
173
+ profile?: string;
174
+ defaultUserAgentProvider?: Provider<__UserAgent>;
175
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
176
+ maxAttempts?: number | __Provider<number>;
177
+ retryMode?: string | __Provider<string>;
178
+ logger?: __Logger;
179
+ extensions?: RuntimeExtension[];
180
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
181
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
182
+ }
183
+ export type NovaActClientConfigType = Partial<
184
+ __SmithyConfiguration<__HttpHandlerOptions>
185
+ > &
186
+ ClientDefaults &
187
+ UserAgentInputConfig &
188
+ RetryInputConfig &
189
+ RegionInputConfig &
190
+ HostHeaderInputConfig &
191
+ EndpointInputConfig<EndpointParameters> &
192
+ HttpAuthSchemeInputConfig &
193
+ ClientInputEndpointParameters;
194
+ export interface NovaActClientConfig extends NovaActClientConfigType {}
195
+ export type NovaActClientResolvedConfigType =
196
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
197
+ Required<ClientDefaults> &
198
+ RuntimeExtensionsConfig &
199
+ UserAgentResolvedConfig &
200
+ RetryResolvedConfig &
201
+ RegionResolvedConfig &
202
+ HostHeaderResolvedConfig &
203
+ EndpointResolvedConfig<EndpointParameters> &
204
+ HttpAuthSchemeResolvedConfig &
205
+ ClientResolvedEndpointParameters;
206
+ export interface NovaActClientResolvedConfig
207
+ extends NovaActClientResolvedConfigType {}
208
+ export declare class NovaActClient extends __Client<
209
+ __HttpHandlerOptions,
210
+ ServiceInputTypes,
211
+ ServiceOutputTypes,
212
+ NovaActClientResolvedConfig
213
+ > {
214
+ readonly config: NovaActClientResolvedConfig;
215
+ constructor(
216
+ ...[configuration]: __CheckOptionalClientConfig<NovaActClientConfig>
217
+ );
218
+ destroy(): void;
219
+ }
@@ -0,0 +1,32 @@
1
+ import {
2
+ AwsCredentialIdentity,
3
+ AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
+ } from "@smithy/types";
6
+ import { NovaActHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
+ export interface HttpAuthExtensionConfiguration {
8
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
+ httpAuthSchemes(): HttpAuthScheme[];
10
+ setHttpAuthSchemeProvider(
11
+ httpAuthSchemeProvider: NovaActHttpAuthSchemeProvider
12
+ ): void;
13
+ httpAuthSchemeProvider(): NovaActHttpAuthSchemeProvider;
14
+ setCredentials(
15
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
+ ): void;
17
+ credentials():
18
+ | AwsCredentialIdentity
19
+ | AwsCredentialIdentityProvider
20
+ | undefined;
21
+ }
22
+ export type HttpAuthRuntimeConfig = Partial<{
23
+ httpAuthSchemes: HttpAuthScheme[];
24
+ httpAuthSchemeProvider: NovaActHttpAuthSchemeProvider;
25
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
+ }>;
27
+ export declare const getHttpAuthExtensionConfiguration: (
28
+ runtimeConfig: HttpAuthRuntimeConfig
29
+ ) => HttpAuthExtensionConfiguration;
30
+ export declare const resolveHttpAuthRuntimeConfig: (
31
+ config: HttpAuthExtensionConfiguration
32
+ ) => HttpAuthRuntimeConfig;
@@ -0,0 +1,47 @@
1
+ import {
2
+ AwsSdkSigV4AuthInputConfig,
3
+ AwsSdkSigV4AuthResolvedConfig,
4
+ AwsSdkSigV4PreviouslyResolved,
5
+ } from "@aws-sdk/core";
6
+ import {
7
+ HandlerExecutionContext,
8
+ HttpAuthScheme,
9
+ HttpAuthSchemeParameters,
10
+ HttpAuthSchemeParametersProvider,
11
+ HttpAuthSchemeProvider,
12
+ Provider,
13
+ } from "@smithy/types";
14
+ import { NovaActClientResolvedConfig } from "../NovaActClient";
15
+ export interface NovaActHttpAuthSchemeParameters
16
+ extends HttpAuthSchemeParameters {
17
+ region?: string;
18
+ }
19
+ export interface NovaActHttpAuthSchemeParametersProvider
20
+ extends HttpAuthSchemeParametersProvider<
21
+ NovaActClientResolvedConfig,
22
+ HandlerExecutionContext,
23
+ NovaActHttpAuthSchemeParameters,
24
+ object
25
+ > {}
26
+ export declare const defaultNovaActHttpAuthSchemeParametersProvider: (
27
+ config: NovaActClientResolvedConfig,
28
+ context: HandlerExecutionContext,
29
+ input: object
30
+ ) => Promise<NovaActHttpAuthSchemeParameters>;
31
+ export interface NovaActHttpAuthSchemeProvider
32
+ extends HttpAuthSchemeProvider<NovaActHttpAuthSchemeParameters> {}
33
+ export declare const defaultNovaActHttpAuthSchemeProvider: NovaActHttpAuthSchemeProvider;
34
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
+ authSchemePreference?: string[] | Provider<string[]>;
36
+ httpAuthSchemes?: HttpAuthScheme[];
37
+ httpAuthSchemeProvider?: NovaActHttpAuthSchemeProvider;
38
+ }
39
+ export interface HttpAuthSchemeResolvedConfig
40
+ extends AwsSdkSigV4AuthResolvedConfig {
41
+ readonly authSchemePreference: Provider<string[]>;
42
+ readonly httpAuthSchemes: HttpAuthScheme[];
43
+ readonly httpAuthSchemeProvider: NovaActHttpAuthSchemeProvider;
44
+ }
45
+ export declare const resolveHttpAuthSchemeConfig: <T>(
46
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
47
+ ) => T & HttpAuthSchemeResolvedConfig;
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { CreateActRequest, CreateActResponse } from "../models/models_0";
4
+ import {
5
+ NovaActClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../NovaActClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface CreateActCommandInput extends CreateActRequest {}
12
+ export interface CreateActCommandOutput
13
+ extends CreateActResponse,
14
+ __MetadataBearer {}
15
+ declare const CreateActCommand_base: {
16
+ new (
17
+ input: CreateActCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ CreateActCommandInput,
20
+ CreateActCommandOutput,
21
+ NovaActClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: CreateActCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ CreateActCommandInput,
29
+ CreateActCommandOutput,
30
+ NovaActClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class CreateActCommand extends CreateActCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: CreateActRequest;
40
+ output: CreateActResponse;
41
+ };
42
+ sdk: {
43
+ input: CreateActCommandInput;
44
+ output: CreateActCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateSessionRequest,
5
+ CreateSessionResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NovaActClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NovaActClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateSessionCommandInput extends CreateSessionRequest {}
15
+ export interface CreateSessionCommandOutput
16
+ extends CreateSessionResponse,
17
+ __MetadataBearer {}
18
+ declare const CreateSessionCommand_base: {
19
+ new (
20
+ input: CreateSessionCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateSessionCommandInput,
23
+ CreateSessionCommandOutput,
24
+ NovaActClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: CreateSessionCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateSessionCommandInput,
32
+ CreateSessionCommandOutput,
33
+ NovaActClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CreateSessionCommand extends CreateSessionCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: CreateSessionRequest;
43
+ output: CreateSessionResponse;
44
+ };
45
+ sdk: {
46
+ input: CreateSessionCommandInput;
47
+ output: CreateSessionCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateWorkflowDefinitionRequest,
5
+ CreateWorkflowDefinitionResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NovaActClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NovaActClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateWorkflowDefinitionCommandInput
15
+ extends CreateWorkflowDefinitionRequest {}
16
+ export interface CreateWorkflowDefinitionCommandOutput
17
+ extends CreateWorkflowDefinitionResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateWorkflowDefinitionCommand_base: {
20
+ new (
21
+ input: CreateWorkflowDefinitionCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateWorkflowDefinitionCommandInput,
24
+ CreateWorkflowDefinitionCommandOutput,
25
+ NovaActClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateWorkflowDefinitionCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateWorkflowDefinitionCommandInput,
33
+ CreateWorkflowDefinitionCommandOutput,
34
+ NovaActClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateWorkflowDefinitionCommand extends CreateWorkflowDefinitionCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateWorkflowDefinitionRequest;
44
+ output: CreateWorkflowDefinitionResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateWorkflowDefinitionCommandInput;
48
+ output: CreateWorkflowDefinitionCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateWorkflowRunRequest,
5
+ CreateWorkflowRunResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NovaActClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NovaActClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateWorkflowRunCommandInput
15
+ extends CreateWorkflowRunRequest {}
16
+ export interface CreateWorkflowRunCommandOutput
17
+ extends CreateWorkflowRunResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateWorkflowRunCommand_base: {
20
+ new (
21
+ input: CreateWorkflowRunCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateWorkflowRunCommandInput,
24
+ CreateWorkflowRunCommandOutput,
25
+ NovaActClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateWorkflowRunCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateWorkflowRunCommandInput,
33
+ CreateWorkflowRunCommandOutput,
34
+ NovaActClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateWorkflowRunCommand extends CreateWorkflowRunCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateWorkflowRunRequest;
44
+ output: CreateWorkflowRunResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateWorkflowRunCommandInput;
48
+ output: CreateWorkflowRunCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeleteWorkflowDefinitionRequest,
5
+ DeleteWorkflowDefinitionResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NovaActClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NovaActClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteWorkflowDefinitionCommandInput
15
+ extends DeleteWorkflowDefinitionRequest {}
16
+ export interface DeleteWorkflowDefinitionCommandOutput
17
+ extends DeleteWorkflowDefinitionResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteWorkflowDefinitionCommand_base: {
20
+ new (
21
+ input: DeleteWorkflowDefinitionCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteWorkflowDefinitionCommandInput,
24
+ DeleteWorkflowDefinitionCommandOutput,
25
+ NovaActClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DeleteWorkflowDefinitionCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteWorkflowDefinitionCommandInput,
33
+ DeleteWorkflowDefinitionCommandOutput,
34
+ NovaActClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteWorkflowDefinitionCommand extends DeleteWorkflowDefinitionCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteWorkflowDefinitionRequest;
44
+ output: DeleteWorkflowDefinitionResponse;
45
+ };
46
+ sdk: {
47
+ input: DeleteWorkflowDefinitionCommandInput;
48
+ output: DeleteWorkflowDefinitionCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeleteWorkflowRunRequest,
5
+ DeleteWorkflowRunResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NovaActClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NovaActClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteWorkflowRunCommandInput
15
+ extends DeleteWorkflowRunRequest {}
16
+ export interface DeleteWorkflowRunCommandOutput
17
+ extends DeleteWorkflowRunResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteWorkflowRunCommand_base: {
20
+ new (
21
+ input: DeleteWorkflowRunCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteWorkflowRunCommandInput,
24
+ DeleteWorkflowRunCommandOutput,
25
+ NovaActClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DeleteWorkflowRunCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteWorkflowRunCommandInput,
33
+ DeleteWorkflowRunCommandOutput,
34
+ NovaActClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteWorkflowRunCommand extends DeleteWorkflowRunCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteWorkflowRunRequest;
44
+ output: DeleteWorkflowRunResponse;
45
+ };
46
+ sdk: {
47
+ input: DeleteWorkflowRunCommandInput;
48
+ output: DeleteWorkflowRunCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetWorkflowDefinitionRequest,
5
+ GetWorkflowDefinitionResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NovaActClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NovaActClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetWorkflowDefinitionCommandInput
15
+ extends GetWorkflowDefinitionRequest {}
16
+ export interface GetWorkflowDefinitionCommandOutput
17
+ extends GetWorkflowDefinitionResponse,
18
+ __MetadataBearer {}
19
+ declare const GetWorkflowDefinitionCommand_base: {
20
+ new (
21
+ input: GetWorkflowDefinitionCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetWorkflowDefinitionCommandInput,
24
+ GetWorkflowDefinitionCommandOutput,
25
+ NovaActClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetWorkflowDefinitionCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetWorkflowDefinitionCommandInput,
33
+ GetWorkflowDefinitionCommandOutput,
34
+ NovaActClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetWorkflowDefinitionCommand extends GetWorkflowDefinitionCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetWorkflowDefinitionRequest;
44
+ output: GetWorkflowDefinitionResponse;
45
+ };
46
+ sdk: {
47
+ input: GetWorkflowDefinitionCommandInput;
48
+ output: GetWorkflowDefinitionCommandOutput;
49
+ };
50
+ };
51
+ }