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