@aws-sdk/client-greengrassv2 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/GreengrassV2.d.ts +550 -150
- package/dist-types/ts3.4/GreengrassV2Client.d.ts +304 -102
- package/dist-types/ts3.4/commands/AssociateServiceRoleToAccountCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/BatchAssociateClientDeviceWithCoreDeviceCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/BatchDisassociateClientDeviceFromCoreDeviceCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CancelDeploymentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateComponentVersionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteComponentCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteCoreDeviceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteDeploymentCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeComponentCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DisassociateServiceRoleFromAccountCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetComponentCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetComponentVersionArtifactCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetConnectivityInfoCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetCoreDeviceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetDeploymentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetServiceRoleForAccountCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListClientDevicesAssociatedWithCoreDeviceCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListComponentVersionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListCoreDevicesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListDeploymentsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListEffectiveDeploymentsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListInstalledComponentsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ResolveComponentCandidatesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateConnectivityInfoCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +29 -29
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/GreengrassV2ServiceException.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 +1246 -1137
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListClientDevicesAssociatedWithCoreDevicePaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListComponentVersionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListComponentsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListCoreDevicesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListDeploymentsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListEffectiveDeploymentsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListInstalledComponentsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +8 -8
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +353 -89
- 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/package.json +34 -34
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
GreengrassV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../GreengrassV2Client";
|
|
13
|
+
import {
|
|
14
|
+
GetDeploymentRequest,
|
|
15
|
+
GetDeploymentResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetDeploymentCommandInput extends GetDeploymentRequest {}
|
|
18
|
+
export interface GetDeploymentCommandOutput
|
|
19
|
+
extends GetDeploymentResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class GetDeploymentCommand extends $Command<
|
|
23
|
+
GetDeploymentCommandInput,
|
|
24
|
+
GetDeploymentCommandOutput,
|
|
25
|
+
GreengrassV2ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetDeploymentCommandInput;
|
|
28
|
+
constructor(input: GetDeploymentCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: GreengrassV2ClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<GetDeploymentCommandInput, GetDeploymentCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -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
|
+
GreengrassV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../GreengrassV2Client";
|
|
13
|
+
import {
|
|
14
|
+
GetServiceRoleForAccountRequest,
|
|
15
|
+
GetServiceRoleForAccountResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetServiceRoleForAccountCommandInput
|
|
18
|
+
extends GetServiceRoleForAccountRequest {}
|
|
19
|
+
export interface GetServiceRoleForAccountCommandOutput
|
|
20
|
+
extends GetServiceRoleForAccountResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetServiceRoleForAccountCommand extends $Command<
|
|
24
|
+
GetServiceRoleForAccountCommandInput,
|
|
25
|
+
GetServiceRoleForAccountCommandOutput,
|
|
26
|
+
GreengrassV2ClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetServiceRoleForAccountCommandInput;
|
|
29
|
+
constructor(input: GetServiceRoleForAccountCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: GreengrassV2ClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetServiceRoleForAccountCommandInput,
|
|
37
|
+
GetServiceRoleForAccountCommandOutput
|
|
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
|
+
GreengrassV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../GreengrassV2Client";
|
|
13
|
+
import {
|
|
14
|
+
ListClientDevicesAssociatedWithCoreDeviceRequest,
|
|
15
|
+
ListClientDevicesAssociatedWithCoreDeviceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListClientDevicesAssociatedWithCoreDeviceCommandInput
|
|
18
|
+
extends ListClientDevicesAssociatedWithCoreDeviceRequest {}
|
|
19
|
+
export interface ListClientDevicesAssociatedWithCoreDeviceCommandOutput
|
|
20
|
+
extends ListClientDevicesAssociatedWithCoreDeviceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListClientDevicesAssociatedWithCoreDeviceCommand extends $Command<
|
|
24
|
+
ListClientDevicesAssociatedWithCoreDeviceCommandInput,
|
|
25
|
+
ListClientDevicesAssociatedWithCoreDeviceCommandOutput,
|
|
26
|
+
GreengrassV2ClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListClientDevicesAssociatedWithCoreDeviceCommandInput;
|
|
29
|
+
constructor(input: ListClientDevicesAssociatedWithCoreDeviceCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: GreengrassV2ClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListClientDevicesAssociatedWithCoreDeviceCommandInput,
|
|
37
|
+
ListClientDevicesAssociatedWithCoreDeviceCommandOutput
|
|
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
|
+
GreengrassV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../GreengrassV2Client";
|
|
13
|
+
import {
|
|
14
|
+
ListComponentVersionsRequest,
|
|
15
|
+
ListComponentVersionsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListComponentVersionsCommandInput
|
|
18
|
+
extends ListComponentVersionsRequest {}
|
|
19
|
+
export interface ListComponentVersionsCommandOutput
|
|
20
|
+
extends ListComponentVersionsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListComponentVersionsCommand extends $Command<
|
|
24
|
+
ListComponentVersionsCommandInput,
|
|
25
|
+
ListComponentVersionsCommandOutput,
|
|
26
|
+
GreengrassV2ClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListComponentVersionsCommandInput;
|
|
29
|
+
constructor(input: ListComponentVersionsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: GreengrassV2ClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListComponentVersionsCommandInput,
|
|
37
|
+
ListComponentVersionsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
GreengrassV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../GreengrassV2Client";
|
|
13
|
+
import {
|
|
14
|
+
ListComponentsRequest,
|
|
15
|
+
ListComponentsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListComponentsCommandInput extends ListComponentsRequest {}
|
|
18
|
+
export interface ListComponentsCommandOutput
|
|
19
|
+
extends ListComponentsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class ListComponentsCommand extends $Command<
|
|
23
|
+
ListComponentsCommandInput,
|
|
24
|
+
ListComponentsCommandOutput,
|
|
25
|
+
GreengrassV2ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListComponentsCommandInput;
|
|
28
|
+
constructor(input: ListComponentsCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: GreengrassV2ClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListComponentsCommandInput, ListComponentsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
GreengrassV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../GreengrassV2Client";
|
|
13
|
+
import {
|
|
14
|
+
ListCoreDevicesRequest,
|
|
15
|
+
ListCoreDevicesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListCoreDevicesCommandInput extends ListCoreDevicesRequest {}
|
|
18
|
+
export interface ListCoreDevicesCommandOutput
|
|
19
|
+
extends ListCoreDevicesResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class ListCoreDevicesCommand extends $Command<
|
|
23
|
+
ListCoreDevicesCommandInput,
|
|
24
|
+
ListCoreDevicesCommandOutput,
|
|
25
|
+
GreengrassV2ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListCoreDevicesCommandInput;
|
|
28
|
+
constructor(input: ListCoreDevicesCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: GreengrassV2ClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListCoreDevicesCommandInput, ListCoreDevicesCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
GreengrassV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../GreengrassV2Client";
|
|
13
|
+
import {
|
|
14
|
+
ListDeploymentsRequest,
|
|
15
|
+
ListDeploymentsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListDeploymentsCommandInput extends ListDeploymentsRequest {}
|
|
18
|
+
export interface ListDeploymentsCommandOutput
|
|
19
|
+
extends ListDeploymentsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class ListDeploymentsCommand extends $Command<
|
|
23
|
+
ListDeploymentsCommandInput,
|
|
24
|
+
ListDeploymentsCommandOutput,
|
|
25
|
+
GreengrassV2ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListDeploymentsCommandInput;
|
|
28
|
+
constructor(input: ListDeploymentsCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: GreengrassV2ClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListDeploymentsCommandInput, ListDeploymentsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -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
|
+
GreengrassV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../GreengrassV2Client";
|
|
13
|
+
import {
|
|
14
|
+
ListEffectiveDeploymentsRequest,
|
|
15
|
+
ListEffectiveDeploymentsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListEffectiveDeploymentsCommandInput
|
|
18
|
+
extends ListEffectiveDeploymentsRequest {}
|
|
19
|
+
export interface ListEffectiveDeploymentsCommandOutput
|
|
20
|
+
extends ListEffectiveDeploymentsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListEffectiveDeploymentsCommand extends $Command<
|
|
24
|
+
ListEffectiveDeploymentsCommandInput,
|
|
25
|
+
ListEffectiveDeploymentsCommandOutput,
|
|
26
|
+
GreengrassV2ClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListEffectiveDeploymentsCommandInput;
|
|
29
|
+
constructor(input: ListEffectiveDeploymentsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: GreengrassV2ClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListEffectiveDeploymentsCommandInput,
|
|
37
|
+
ListEffectiveDeploymentsCommandOutput
|
|
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
|
+
GreengrassV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../GreengrassV2Client";
|
|
13
|
+
import {
|
|
14
|
+
ListInstalledComponentsRequest,
|
|
15
|
+
ListInstalledComponentsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListInstalledComponentsCommandInput
|
|
18
|
+
extends ListInstalledComponentsRequest {}
|
|
19
|
+
export interface ListInstalledComponentsCommandOutput
|
|
20
|
+
extends ListInstalledComponentsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListInstalledComponentsCommand extends $Command<
|
|
24
|
+
ListInstalledComponentsCommandInput,
|
|
25
|
+
ListInstalledComponentsCommandOutput,
|
|
26
|
+
GreengrassV2ClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListInstalledComponentsCommandInput;
|
|
29
|
+
constructor(input: ListInstalledComponentsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: GreengrassV2ClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListInstalledComponentsCommandInput,
|
|
37
|
+
ListInstalledComponentsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
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
|
+
GreengrassV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../GreengrassV2Client";
|
|
13
|
+
import {
|
|
14
|
+
ListTagsForResourceRequest,
|
|
15
|
+
ListTagsForResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
24
|
+
ListTagsForResourceCommandInput,
|
|
25
|
+
ListTagsForResourceCommandOutput,
|
|
26
|
+
GreengrassV2ClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: GreengrassV2ClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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
|
+
GreengrassV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../GreengrassV2Client";
|
|
13
|
+
import {
|
|
14
|
+
ResolveComponentCandidatesRequest,
|
|
15
|
+
ResolveComponentCandidatesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ResolveComponentCandidatesCommandInput
|
|
18
|
+
extends ResolveComponentCandidatesRequest {}
|
|
19
|
+
export interface ResolveComponentCandidatesCommandOutput
|
|
20
|
+
extends ResolveComponentCandidatesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ResolveComponentCandidatesCommand extends $Command<
|
|
24
|
+
ResolveComponentCandidatesCommandInput,
|
|
25
|
+
ResolveComponentCandidatesCommandOutput,
|
|
26
|
+
GreengrassV2ClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ResolveComponentCandidatesCommandInput;
|
|
29
|
+
constructor(input: ResolveComponentCandidatesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: GreengrassV2ClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ResolveComponentCandidatesCommandInput,
|
|
37
|
+
ResolveComponentCandidatesCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|