@aws-sdk/client-cloudcontrol 3.169.0 → 3.170.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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/CloudControl.d.ts +148 -45
- package/dist-types/ts3.4/CloudControlClient.d.ts +178 -81
- package/dist-types/ts3.4/commands/CancelResourceRequestCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetResourceRequestStatusCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListResourceRequestsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListResourcesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +8 -8
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +7 -7
- package/dist-types/ts3.4/models/CloudControlServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +460 -393
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListResourceRequestsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListResourcesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +101 -26
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/dist-types/ts3.4/waiters/index.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForResourceRequestSuccess.d.ts +13 -7
- package/package.json +35 -35
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CloudControlClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudControlClient";
|
|
13
|
+
import { GetResourceInput, GetResourceOutput } from "../models/models_0";
|
|
14
|
+
export interface GetResourceCommandInput extends GetResourceInput {}
|
|
15
|
+
export interface GetResourceCommandOutput
|
|
16
|
+
extends GetResourceOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetResourceCommand extends $Command<
|
|
20
|
+
GetResourceCommandInput,
|
|
21
|
+
GetResourceCommandOutput,
|
|
22
|
+
CloudControlClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetResourceCommandInput;
|
|
25
|
+
constructor(input: GetResourceCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: CloudControlClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetResourceCommandInput, GetResourceCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CloudControlClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudControlClient";
|
|
13
|
+
import {
|
|
14
|
+
GetResourceRequestStatusInput,
|
|
15
|
+
GetResourceRequestStatusOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetResourceRequestStatusCommandInput
|
|
18
|
+
extends GetResourceRequestStatusInput {}
|
|
19
|
+
export interface GetResourceRequestStatusCommandOutput
|
|
20
|
+
extends GetResourceRequestStatusOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetResourceRequestStatusCommand extends $Command<
|
|
24
|
+
GetResourceRequestStatusCommandInput,
|
|
25
|
+
GetResourceRequestStatusCommandOutput,
|
|
26
|
+
CloudControlClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetResourceRequestStatusCommandInput;
|
|
29
|
+
constructor(input: GetResourceRequestStatusCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: CloudControlClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetResourceRequestStatusCommandInput,
|
|
37
|
+
GetResourceRequestStatusCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CloudControlClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudControlClient";
|
|
13
|
+
import {
|
|
14
|
+
ListResourceRequestsInput,
|
|
15
|
+
ListResourceRequestsOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListResourceRequestsCommandInput
|
|
18
|
+
extends ListResourceRequestsInput {}
|
|
19
|
+
export interface ListResourceRequestsCommandOutput
|
|
20
|
+
extends ListResourceRequestsOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListResourceRequestsCommand extends $Command<
|
|
24
|
+
ListResourceRequestsCommandInput,
|
|
25
|
+
ListResourceRequestsCommandOutput,
|
|
26
|
+
CloudControlClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListResourceRequestsCommandInput;
|
|
29
|
+
constructor(input: ListResourceRequestsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: CloudControlClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListResourceRequestsCommandInput,
|
|
37
|
+
ListResourceRequestsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CloudControlClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudControlClient";
|
|
13
|
+
import { ListResourcesInput, ListResourcesOutput } from "../models/models_0";
|
|
14
|
+
export interface ListResourcesCommandInput extends ListResourcesInput {}
|
|
15
|
+
export interface ListResourcesCommandOutput
|
|
16
|
+
extends ListResourcesOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListResourcesCommand extends $Command<
|
|
20
|
+
ListResourcesCommandInput,
|
|
21
|
+
ListResourcesCommandOutput,
|
|
22
|
+
CloudControlClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListResourcesCommandInput;
|
|
25
|
+
constructor(input: ListResourcesCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: CloudControlClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListResourcesCommandInput, ListResourcesCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CloudControlClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudControlClient";
|
|
13
|
+
import { UpdateResourceInput, UpdateResourceOutput } from "../models/models_0";
|
|
14
|
+
export interface UpdateResourceCommandInput extends UpdateResourceInput {}
|
|
15
|
+
export interface UpdateResourceCommandOutput
|
|
16
|
+
extends UpdateResourceOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class UpdateResourceCommand extends $Command<
|
|
20
|
+
UpdateResourceCommandInput,
|
|
21
|
+
UpdateResourceCommandOutput,
|
|
22
|
+
CloudControlClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: UpdateResourceCommandInput;
|
|
25
|
+
constructor(input: UpdateResourceCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: CloudControlClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<UpdateResourceCommandInput, UpdateResourceCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export * from "./CancelResourceRequestCommand";
|
|
2
|
-
export * from "./CreateResourceCommand";
|
|
3
|
-
export * from "./DeleteResourceCommand";
|
|
4
|
-
export * from "./GetResourceCommand";
|
|
5
|
-
export * from "./GetResourceRequestStatusCommand";
|
|
6
|
-
export * from "./ListResourceRequestsCommand";
|
|
7
|
-
export * from "./ListResourcesCommand";
|
|
8
|
-
export * from "./UpdateResourceCommand";
|
|
1
|
+
export * from "./CancelResourceRequestCommand";
|
|
2
|
+
export * from "./CreateResourceCommand";
|
|
3
|
+
export * from "./DeleteResourceCommand";
|
|
4
|
+
export * from "./GetResourceCommand";
|
|
5
|
+
export * from "./GetResourceRequestStatusCommand";
|
|
6
|
+
export * from "./ListResourceRequestsCommand";
|
|
7
|
+
export * from "./ListResourcesCommand";
|
|
8
|
+
export * from "./UpdateResourceCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export * from "./CloudControl";
|
|
2
|
-
export * from "./CloudControlClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export * from "./waiters";
|
|
7
|
-
export { CloudControlServiceException } from "./models/CloudControlServiceException";
|
|
1
|
+
export * from "./CloudControl";
|
|
2
|
+
export * from "./CloudControlClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export * from "./waiters";
|
|
7
|
+
export { CloudControlServiceException } from "./models/CloudControlServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class CloudControlServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|