@aws-sdk/client-mwaa 3.529.1 → 3.535.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 (35) hide show
  1. package/dist-types/MWAA.d.ts +2 -1
  2. package/dist-types/MWAAClient.d.ts +1 -1
  3. package/dist-types/commands/CreateCliTokenCommand.d.ts +2 -1
  4. package/dist-types/commands/CreateEnvironmentCommand.d.ts +2 -1
  5. package/dist-types/commands/CreateWebLoginTokenCommand.d.ts +2 -1
  6. package/dist-types/commands/DeleteEnvironmentCommand.d.ts +2 -1
  7. package/dist-types/commands/GetEnvironmentCommand.d.ts +2 -1
  8. package/dist-types/commands/ListEnvironmentsCommand.d.ts +2 -1
  9. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  10. package/dist-types/commands/PublishMetricsCommand.d.ts +3 -3
  11. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  12. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  13. package/dist-types/commands/UpdateEnvironmentCommand.d.ts +2 -1
  14. package/dist-types/models/models_0.d.ts +156 -159
  15. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  16. package/dist-types/runtimeConfig.d.ts +2 -2
  17. package/dist-types/runtimeConfig.native.d.ts +2 -2
  18. package/dist-types/runtimeConfig.shared.d.ts +2 -2
  19. package/dist-types/ts3.4/MWAA.d.ts +1 -0
  20. package/dist-types/ts3.4/commands/CreateCliTokenCommand.d.ts +9 -0
  21. package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +9 -0
  22. package/dist-types/ts3.4/commands/CreateWebLoginTokenCommand.d.ts +9 -0
  23. package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +9 -0
  24. package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +9 -0
  25. package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +9 -0
  26. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
  27. package/dist-types/ts3.4/commands/PublishMetricsCommand.d.ts +9 -0
  28. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
  29. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
  30. package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +9 -0
  31. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
  35. package/package.json +40 -40
@@ -45,6 +45,7 @@ export interface MWAA {
45
45
  /**
46
46
  * @see {@link ListEnvironmentsCommand}
47
47
  */
48
+ listEnvironments(): Promise<ListEnvironmentsCommandOutput>;
48
49
  listEnvironments(args: ListEnvironmentsCommandInput, options?: __HttpHandlerOptions): Promise<ListEnvironmentsCommandOutput>;
49
50
  listEnvironments(args: ListEnvironmentsCommandInput, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
50
51
  listEnvironments(args: ListEnvironmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
@@ -80,7 +81,6 @@ export interface MWAA {
80
81
  updateEnvironment(args: UpdateEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void): void;
81
82
  }
82
83
  /**
83
- * @public
84
84
  * <fullname>Amazon Managed Workflows for Apache Airflow</fullname>
85
85
  * <p>This section contains the Amazon Managed Workflows for Apache Airflow (MWAA) API reference documentation. For more information, see <a href="https://docs.aws.amazon.com/mwaa/latest/userguide/what-is-mwaa.html">What is Amazon MWAA?</a>.</p>
86
86
  * <p>
@@ -154,6 +154,7 @@ export interface MWAA {
154
154
  * <b>Regions</b>
155
155
  * </p>
156
156
  * <p>For a list of supported regions, see <a href="https://docs.aws.amazon.com/general/latest/gr/mwaa.html">Amazon MWAA endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>.</p>
157
+ * @public
157
158
  */
158
159
  export declare class MWAA extends MWAAClient implements MWAA {
159
160
  }
@@ -162,7 +162,6 @@ export type MWAAClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpH
162
162
  export interface MWAAClientResolvedConfig extends MWAAClientResolvedConfigType {
163
163
  }
164
164
  /**
165
- * @public
166
165
  * <fullname>Amazon Managed Workflows for Apache Airflow</fullname>
167
166
  * <p>This section contains the Amazon Managed Workflows for Apache Airflow (MWAA) API reference documentation. For more information, see <a href="https://docs.aws.amazon.com/mwaa/latest/userguide/what-is-mwaa.html">What is Amazon MWAA?</a>.</p>
168
167
  * <p>
@@ -236,6 +235,7 @@ export interface MWAAClientResolvedConfig extends MWAAClientResolvedConfigType {
236
235
  * <b>Regions</b>
237
236
  * </p>
238
237
  * <p>For a list of supported regions, see <a href="https://docs.aws.amazon.com/general/latest/gr/mwaa.html">Amazon MWAA endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>.</p>
238
+ * @public
239
239
  */
240
240
  export declare class MWAAClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, MWAAClientResolvedConfig> {
241
241
  /**
@@ -22,10 +22,10 @@ export interface CreateCliTokenCommandOutput extends CreateCliTokenResponse, __M
22
22
  }
23
23
  declare const CreateCliTokenCommand_base: {
24
24
  new (input: CreateCliTokenCommandInput): import("@smithy/smithy-client").CommandImpl<CreateCliTokenCommandInput, CreateCliTokenCommandOutput, MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateCliTokenCommandInput): import("@smithy/smithy-client").CommandImpl<CreateCliTokenCommandInput, CreateCliTokenCommandOutput, MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a CLI token for the Airflow CLI. To learn more, see <a href="https://docs.aws.amazon.com/mwaa/latest/userguide/call-mwaa-apis-cli.html">Creating an Apache Airflow CLI token</a>.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -57,6 +57,7 @@ declare const CreateCliTokenCommand_base: {
57
57
  * @throws {@link MWAAServiceException}
58
58
  * <p>Base exception class for all service exceptions from MWAA service.</p>
59
59
  *
60
+ * @public
60
61
  */
61
62
  export declare class CreateCliTokenCommand extends CreateCliTokenCommand_base {
62
63
  }
@@ -22,10 +22,10 @@ export interface CreateEnvironmentCommandOutput extends CreateEnvironmentOutput,
22
22
  }
23
23
  declare const CreateEnvironmentCommand_base: {
24
24
  new (input: CreateEnvironmentCommandInput): import("@smithy/smithy-client").CommandImpl<CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput, MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateEnvironmentCommandInput): import("@smithy/smithy-client").CommandImpl<CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput, MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates an Amazon Managed Workflows for Apache Airflow (MWAA) environment.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -113,6 +113,7 @@ declare const CreateEnvironmentCommand_base: {
113
113
  * @throws {@link MWAAServiceException}
114
114
  * <p>Base exception class for all service exceptions from MWAA service.</p>
115
115
  *
116
+ * @public
116
117
  */
117
118
  export declare class CreateEnvironmentCommand extends CreateEnvironmentCommand_base {
118
119
  }
@@ -22,10 +22,10 @@ export interface CreateWebLoginTokenCommandOutput extends CreateWebLoginTokenRes
22
22
  }
23
23
  declare const CreateWebLoginTokenCommand_base: {
24
24
  new (input: CreateWebLoginTokenCommandInput): import("@smithy/smithy-client").CommandImpl<CreateWebLoginTokenCommandInput, CreateWebLoginTokenCommandOutput, MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateWebLoginTokenCommandInput): import("@smithy/smithy-client").CommandImpl<CreateWebLoginTokenCommandInput, CreateWebLoginTokenCommandOutput, MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a web login token for the Airflow Web UI. To learn more, see <a href="https://docs.aws.amazon.com/mwaa/latest/userguide/call-mwaa-apis-web.html">Creating an Apache Airflow web login token</a>.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -68,6 +68,7 @@ declare const CreateWebLoginTokenCommand_base: {
68
68
  * @throws {@link MWAAServiceException}
69
69
  * <p>Base exception class for all service exceptions from MWAA service.</p>
70
70
  *
71
+ * @public
71
72
  */
72
73
  export declare class CreateWebLoginTokenCommand extends CreateWebLoginTokenCommand_base {
73
74
  }
@@ -22,10 +22,10 @@ export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentOutput,
22
22
  }
23
23
  declare const DeleteEnvironmentCommand_base: {
24
24
  new (input: DeleteEnvironmentCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput, MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteEnvironmentCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput, MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes an Amazon Managed Workflows for Apache Airflow (MWAA) environment.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -60,6 +60,7 @@ declare const DeleteEnvironmentCommand_base: {
60
60
  * @throws {@link MWAAServiceException}
61
61
  * <p>Base exception class for all service exceptions from MWAA service.</p>
62
62
  *
63
+ * @public
63
64
  */
64
65
  export declare class DeleteEnvironmentCommand extends DeleteEnvironmentCommand_base {
65
66
  }
@@ -22,10 +22,10 @@ export interface GetEnvironmentCommandOutput extends GetEnvironmentOutput, __Met
22
22
  }
23
23
  declare const GetEnvironmentCommand_base: {
24
24
  new (input: GetEnvironmentCommandInput): import("@smithy/smithy-client").CommandImpl<GetEnvironmentCommandInput, GetEnvironmentCommandOutput, MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetEnvironmentCommandInput): import("@smithy/smithy-client").CommandImpl<GetEnvironmentCommandInput, GetEnvironmentCommandOutput, MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Describes an Amazon Managed Workflows for Apache Airflow (MWAA) environment.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -140,6 +140,7 @@ declare const GetEnvironmentCommand_base: {
140
140
  * @throws {@link MWAAServiceException}
141
141
  * <p>Base exception class for all service exceptions from MWAA service.</p>
142
142
  *
143
+ * @public
143
144
  */
144
145
  export declare class GetEnvironmentCommand extends GetEnvironmentCommand_base {
145
146
  }
@@ -22,10 +22,10 @@ export interface ListEnvironmentsCommandOutput extends ListEnvironmentsOutput, _
22
22
  }
23
23
  declare const ListEnvironmentsCommand_base: {
24
24
  new (input: ListEnvironmentsCommandInput): import("@smithy/smithy-client").CommandImpl<ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput, MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListEnvironmentsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput, MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists the Amazon Managed Workflows for Apache Airflow (MWAA) environments.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -63,6 +63,7 @@ declare const ListEnvironmentsCommand_base: {
63
63
  * @throws {@link MWAAServiceException}
64
64
  * <p>Base exception class for all service exceptions from MWAA service.</p>
65
65
  *
66
+ * @public
66
67
  */
67
68
  export declare class ListEnvironmentsCommand extends ListEnvironmentsCommand_base {
68
69
  }
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
22
22
  }
23
23
  declare const ListTagsForResourceCommand_base: {
24
24
  new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists the key-value tag pairs associated to the Amazon Managed Workflows for Apache Airflow (MWAA) environment. For example, <code>"Environment": "Staging"</code>. </p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -64,6 +64,7 @@ declare const ListTagsForResourceCommand_base: {
64
64
  * @throws {@link MWAAServiceException}
65
65
  * <p>Base exception class for all service exceptions from MWAA service.</p>
66
66
  *
67
+ * @public
67
68
  */
68
69
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
69
70
  }
@@ -22,12 +22,10 @@ export interface PublishMetricsCommandOutput extends PublishMetricsOutput, __Met
22
22
  }
23
23
  declare const PublishMetricsCommand_base: {
24
24
  new (input: PublishMetricsCommandInput): import("@smithy/smithy-client").CommandImpl<PublishMetricsCommandInput, PublishMetricsCommandOutput, MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: PublishMetricsCommandInput): import("@smithy/smithy-client").CommandImpl<PublishMetricsCommandInput, PublishMetricsCommandOutput, MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
- * @deprecated
30
- *
31
29
  * <p>
32
30
  * <b>Internal only</b>. Publishes environment health metrics to Amazon CloudWatch.</p>
33
31
  * @example
@@ -80,6 +78,8 @@ declare const PublishMetricsCommand_base: {
80
78
  * @throws {@link MWAAServiceException}
81
79
  * <p>Base exception class for all service exceptions from MWAA service.</p>
82
80
  *
81
+ * @public
82
+ * @deprecated This API is for internal use and not meant for public use, and is no longer available.
83
83
  */
84
84
  export declare class PublishMetricsCommand extends PublishMetricsCommand_base {
85
85
  }
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
22
22
  }
23
23
  declare const TagResourceCommand_base: {
24
24
  new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Associates key-value tag pairs to your Amazon Managed Workflows for Apache Airflow (MWAA) environment. </p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -63,6 +63,7 @@ declare const TagResourceCommand_base: {
63
63
  * @throws {@link MWAAServiceException}
64
64
  * <p>Base exception class for all service exceptions from MWAA service.</p>
65
65
  *
66
+ * @public
66
67
  */
67
68
  export declare class TagResourceCommand extends TagResourceCommand_base {
68
69
  }
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
22
22
  }
23
23
  declare const UntagResourceCommand_base: {
24
24
  new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Removes key-value tag pairs associated to your Amazon Managed Workflows for Apache Airflow (MWAA) environment. For example, <code>"Environment": "Staging"</code>.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -63,6 +63,7 @@ declare const UntagResourceCommand_base: {
63
63
  * @throws {@link MWAAServiceException}
64
64
  * <p>Base exception class for all service exceptions from MWAA service.</p>
65
65
  *
66
+ * @public
66
67
  */
67
68
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
68
69
  }
@@ -22,10 +22,10 @@ export interface UpdateEnvironmentCommandOutput extends UpdateEnvironmentOutput,
22
22
  }
23
23
  declare const UpdateEnvironmentCommand_base: {
24
24
  new (input: UpdateEnvironmentCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput, MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UpdateEnvironmentCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput, MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Updates an Amazon Managed Workflows for Apache Airflow (MWAA) environment.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -108,6 +108,7 @@ declare const UpdateEnvironmentCommand_base: {
108
108
  * @throws {@link MWAAServiceException}
109
109
  * <p>Base exception class for all service exceptions from MWAA service.</p>
110
110
  *
111
+ * @public
111
112
  */
112
113
  export declare class UpdateEnvironmentCommand extends UpdateEnvironmentCommand_base {
113
114
  }