@aws-sdk/client-synthetics 3.168.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 (45) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Synthetics.d.ts +382 -110
  3. package/dist-types/ts3.4/SyntheticsClient.d.ts +255 -94
  4. package/dist-types/ts3.4/commands/AssociateResourceCommand.d.ts +38 -17
  5. package/dist-types/ts3.4/commands/CreateCanaryCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/DeleteCanaryCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +34 -17
  9. package/dist-types/ts3.4/commands/DescribeCanariesCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/DescribeCanariesLastRunCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/DescribeRuntimeVersionsCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/DisassociateResourceCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/GetCanaryCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/GetCanaryRunsCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/ListAssociatedGroupsCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/ListGroupResourcesCommand.d.ts +38 -17
  18. package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +34 -17
  19. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  20. package/dist-types/ts3.4/commands/StartCanaryCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/StopCanaryCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  23. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  24. package/dist-types/ts3.4/commands/UpdateCanaryCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/index.d.ts +21 -21
  26. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  27. package/dist-types/ts3.4/index.d.ts +6 -6
  28. package/dist-types/ts3.4/models/SyntheticsServiceException.d.ts +8 -6
  29. package/dist-types/ts3.4/models/index.d.ts +1 -1
  30. package/dist-types/ts3.4/models/models_0.d.ts +804 -732
  31. package/dist-types/ts3.4/pagination/DescribeCanariesLastRunPaginator.d.ts +11 -4
  32. package/dist-types/ts3.4/pagination/DescribeCanariesPaginator.d.ts +11 -4
  33. package/dist-types/ts3.4/pagination/DescribeRuntimeVersionsPaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/GetCanaryRunsPaginator.d.ts +11 -4
  35. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  36. package/dist-types/ts3.4/pagination/ListAssociatedGroupsPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/ListGroupResourcesPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/index.d.ts +8 -8
  40. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +257 -65
  41. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  42. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  43. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  44. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  45. 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 { DescribeCanariesRequest, DescribeCanariesResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
5
- export interface DescribeCanariesCommandInput extends DescribeCanariesRequest {
6
- }
7
- export interface DescribeCanariesCommandOutput extends DescribeCanariesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeCanariesCommand extends $Command<DescribeCanariesCommandInput, DescribeCanariesCommandOutput, SyntheticsClientResolvedConfig> {
11
- readonly input: DescribeCanariesCommandInput;
12
- constructor(input: DescribeCanariesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SyntheticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeCanariesCommandInput, DescribeCanariesCommandOutput>;
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
+ DescribeCanariesRequest,
10
+ DescribeCanariesResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SyntheticsClientResolvedConfig,
16
+ } from "../SyntheticsClient";
17
+ export interface DescribeCanariesCommandInput extends DescribeCanariesRequest {}
18
+ export interface DescribeCanariesCommandOutput
19
+ extends DescribeCanariesResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DescribeCanariesCommand extends $Command<
23
+ DescribeCanariesCommandInput,
24
+ DescribeCanariesCommandOutput,
25
+ SyntheticsClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeCanariesCommandInput;
28
+ constructor(input: DescribeCanariesCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SyntheticsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DescribeCanariesCommandInput, DescribeCanariesCommandOutput>;
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 { DescribeCanariesLastRunRequest, DescribeCanariesLastRunResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
5
- export interface DescribeCanariesLastRunCommandInput extends DescribeCanariesLastRunRequest {
6
- }
7
- export interface DescribeCanariesLastRunCommandOutput extends DescribeCanariesLastRunResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeCanariesLastRunCommand extends $Command<DescribeCanariesLastRunCommandInput, DescribeCanariesLastRunCommandOutput, SyntheticsClientResolvedConfig> {
11
- readonly input: DescribeCanariesLastRunCommandInput;
12
- constructor(input: DescribeCanariesLastRunCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SyntheticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeCanariesLastRunCommandInput, DescribeCanariesLastRunCommandOutput>;
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
+ DescribeCanariesLastRunRequest,
10
+ DescribeCanariesLastRunResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SyntheticsClientResolvedConfig,
16
+ } from "../SyntheticsClient";
17
+ export interface DescribeCanariesLastRunCommandInput
18
+ extends DescribeCanariesLastRunRequest {}
19
+ export interface DescribeCanariesLastRunCommandOutput
20
+ extends DescribeCanariesLastRunResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeCanariesLastRunCommand extends $Command<
24
+ DescribeCanariesLastRunCommandInput,
25
+ DescribeCanariesLastRunCommandOutput,
26
+ SyntheticsClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeCanariesLastRunCommandInput;
29
+ constructor(input: DescribeCanariesLastRunCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SyntheticsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeCanariesLastRunCommandInput,
37
+ DescribeCanariesLastRunCommandOutput
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 { DescribeRuntimeVersionsRequest, DescribeRuntimeVersionsResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
5
- export interface DescribeRuntimeVersionsCommandInput extends DescribeRuntimeVersionsRequest {
6
- }
7
- export interface DescribeRuntimeVersionsCommandOutput extends DescribeRuntimeVersionsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeRuntimeVersionsCommand extends $Command<DescribeRuntimeVersionsCommandInput, DescribeRuntimeVersionsCommandOutput, SyntheticsClientResolvedConfig> {
11
- readonly input: DescribeRuntimeVersionsCommandInput;
12
- constructor(input: DescribeRuntimeVersionsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SyntheticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeRuntimeVersionsCommandInput, DescribeRuntimeVersionsCommandOutput>;
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
+ DescribeRuntimeVersionsRequest,
10
+ DescribeRuntimeVersionsResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SyntheticsClientResolvedConfig,
16
+ } from "../SyntheticsClient";
17
+ export interface DescribeRuntimeVersionsCommandInput
18
+ extends DescribeRuntimeVersionsRequest {}
19
+ export interface DescribeRuntimeVersionsCommandOutput
20
+ extends DescribeRuntimeVersionsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeRuntimeVersionsCommand extends $Command<
24
+ DescribeRuntimeVersionsCommandInput,
25
+ DescribeRuntimeVersionsCommandOutput,
26
+ SyntheticsClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeRuntimeVersionsCommandInput;
29
+ constructor(input: DescribeRuntimeVersionsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SyntheticsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeRuntimeVersionsCommandInput,
37
+ DescribeRuntimeVersionsCommandOutput
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 { DisassociateResourceRequest, DisassociateResourceResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
5
- export interface DisassociateResourceCommandInput extends DisassociateResourceRequest {
6
- }
7
- export interface DisassociateResourceCommandOutput extends DisassociateResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DisassociateResourceCommand extends $Command<DisassociateResourceCommandInput, DisassociateResourceCommandOutput, SyntheticsClientResolvedConfig> {
11
- readonly input: DisassociateResourceCommandInput;
12
- constructor(input: DisassociateResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SyntheticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateResourceCommandInput, DisassociateResourceCommandOutput>;
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
+ DisassociateResourceRequest,
10
+ DisassociateResourceResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SyntheticsClientResolvedConfig,
16
+ } from "../SyntheticsClient";
17
+ export interface DisassociateResourceCommandInput
18
+ extends DisassociateResourceRequest {}
19
+ export interface DisassociateResourceCommandOutput
20
+ extends DisassociateResourceResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DisassociateResourceCommand extends $Command<
24
+ DisassociateResourceCommandInput,
25
+ DisassociateResourceCommandOutput,
26
+ SyntheticsClientResolvedConfig
27
+ > {
28
+ readonly input: DisassociateResourceCommandInput;
29
+ constructor(input: DisassociateResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SyntheticsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DisassociateResourceCommandInput,
37
+ DisassociateResourceCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,34 @@
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 { GetCanaryRequest, GetCanaryResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
5
- export interface GetCanaryCommandInput extends GetCanaryRequest {
6
- }
7
- export interface GetCanaryCommandOutput extends GetCanaryResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetCanaryCommand extends $Command<GetCanaryCommandInput, GetCanaryCommandOutput, SyntheticsClientResolvedConfig> {
11
- readonly input: GetCanaryCommandInput;
12
- constructor(input: GetCanaryCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SyntheticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCanaryCommandInput, GetCanaryCommandOutput>;
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 { GetCanaryRequest, GetCanaryResponse } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SyntheticsClientResolvedConfig,
13
+ } from "../SyntheticsClient";
14
+ export interface GetCanaryCommandInput extends GetCanaryRequest {}
15
+ export interface GetCanaryCommandOutput
16
+ extends GetCanaryResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetCanaryCommand extends $Command<
20
+ GetCanaryCommandInput,
21
+ GetCanaryCommandOutput,
22
+ SyntheticsClientResolvedConfig
23
+ > {
24
+ readonly input: GetCanaryCommandInput;
25
+ constructor(input: GetCanaryCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SyntheticsClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetCanaryCommandInput, GetCanaryCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
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 { GetCanaryRunsRequest, GetCanaryRunsResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
5
- export interface GetCanaryRunsCommandInput extends GetCanaryRunsRequest {
6
- }
7
- export interface GetCanaryRunsCommandOutput extends GetCanaryRunsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetCanaryRunsCommand extends $Command<GetCanaryRunsCommandInput, GetCanaryRunsCommandOutput, SyntheticsClientResolvedConfig> {
11
- readonly input: GetCanaryRunsCommandInput;
12
- constructor(input: GetCanaryRunsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SyntheticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCanaryRunsCommandInput, GetCanaryRunsCommandOutput>;
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
+ GetCanaryRunsRequest,
10
+ GetCanaryRunsResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SyntheticsClientResolvedConfig,
16
+ } from "../SyntheticsClient";
17
+ export interface GetCanaryRunsCommandInput extends GetCanaryRunsRequest {}
18
+ export interface GetCanaryRunsCommandOutput
19
+ extends GetCanaryRunsResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetCanaryRunsCommand extends $Command<
23
+ GetCanaryRunsCommandInput,
24
+ GetCanaryRunsCommandOutput,
25
+ SyntheticsClientResolvedConfig
26
+ > {
27
+ readonly input: GetCanaryRunsCommandInput;
28
+ constructor(input: GetCanaryRunsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SyntheticsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetCanaryRunsCommandInput, GetCanaryRunsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,34 @@
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 { GetGroupRequest, GetGroupResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
5
- export interface GetGroupCommandInput extends GetGroupRequest {
6
- }
7
- export interface GetGroupCommandOutput extends GetGroupResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetGroupCommand extends $Command<GetGroupCommandInput, GetGroupCommandOutput, SyntheticsClientResolvedConfig> {
11
- readonly input: GetGroupCommandInput;
12
- constructor(input: GetGroupCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SyntheticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetGroupCommandInput, GetGroupCommandOutput>;
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 { GetGroupRequest, GetGroupResponse } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SyntheticsClientResolvedConfig,
13
+ } from "../SyntheticsClient";
14
+ export interface GetGroupCommandInput extends GetGroupRequest {}
15
+ export interface GetGroupCommandOutput
16
+ extends GetGroupResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetGroupCommand extends $Command<
20
+ GetGroupCommandInput,
21
+ GetGroupCommandOutput,
22
+ SyntheticsClientResolvedConfig
23
+ > {
24
+ readonly input: GetGroupCommandInput;
25
+ constructor(input: GetGroupCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SyntheticsClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetGroupCommandInput, GetGroupCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -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 { ListAssociatedGroupsRequest, ListAssociatedGroupsResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
5
- export interface ListAssociatedGroupsCommandInput extends ListAssociatedGroupsRequest {
6
- }
7
- export interface ListAssociatedGroupsCommandOutput extends ListAssociatedGroupsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListAssociatedGroupsCommand extends $Command<ListAssociatedGroupsCommandInput, ListAssociatedGroupsCommandOutput, SyntheticsClientResolvedConfig> {
11
- readonly input: ListAssociatedGroupsCommandInput;
12
- constructor(input: ListAssociatedGroupsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SyntheticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAssociatedGroupsCommandInput, ListAssociatedGroupsCommandOutput>;
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
+ ListAssociatedGroupsRequest,
10
+ ListAssociatedGroupsResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SyntheticsClientResolvedConfig,
16
+ } from "../SyntheticsClient";
17
+ export interface ListAssociatedGroupsCommandInput
18
+ extends ListAssociatedGroupsRequest {}
19
+ export interface ListAssociatedGroupsCommandOutput
20
+ extends ListAssociatedGroupsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListAssociatedGroupsCommand extends $Command<
24
+ ListAssociatedGroupsCommandInput,
25
+ ListAssociatedGroupsCommandOutput,
26
+ SyntheticsClientResolvedConfig
27
+ > {
28
+ readonly input: ListAssociatedGroupsCommandInput;
29
+ constructor(input: ListAssociatedGroupsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SyntheticsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListAssociatedGroupsCommandInput,
37
+ ListAssociatedGroupsCommandOutput
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 { ListGroupResourcesRequest, ListGroupResourcesResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
5
- export interface ListGroupResourcesCommandInput extends ListGroupResourcesRequest {
6
- }
7
- export interface ListGroupResourcesCommandOutput extends ListGroupResourcesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListGroupResourcesCommand extends $Command<ListGroupResourcesCommandInput, ListGroupResourcesCommandOutput, SyntheticsClientResolvedConfig> {
11
- readonly input: ListGroupResourcesCommandInput;
12
- constructor(input: ListGroupResourcesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SyntheticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListGroupResourcesCommandInput, ListGroupResourcesCommandOutput>;
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
+ ListGroupResourcesRequest,
10
+ ListGroupResourcesResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SyntheticsClientResolvedConfig,
16
+ } from "../SyntheticsClient";
17
+ export interface ListGroupResourcesCommandInput
18
+ extends ListGroupResourcesRequest {}
19
+ export interface ListGroupResourcesCommandOutput
20
+ extends ListGroupResourcesResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListGroupResourcesCommand extends $Command<
24
+ ListGroupResourcesCommandInput,
25
+ ListGroupResourcesCommandOutput,
26
+ SyntheticsClientResolvedConfig
27
+ > {
28
+ readonly input: ListGroupResourcesCommandInput;
29
+ constructor(input: ListGroupResourcesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SyntheticsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListGroupResourcesCommandInput, ListGroupResourcesCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,34 @@
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 { ListGroupsRequest, ListGroupsResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
5
- export interface ListGroupsCommandInput extends ListGroupsRequest {
6
- }
7
- export interface ListGroupsCommandOutput extends ListGroupsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListGroupsCommand extends $Command<ListGroupsCommandInput, ListGroupsCommandOutput, SyntheticsClientResolvedConfig> {
11
- readonly input: ListGroupsCommandInput;
12
- constructor(input: ListGroupsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SyntheticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListGroupsCommandInput, ListGroupsCommandOutput>;
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 { ListGroupsRequest, ListGroupsResponse } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SyntheticsClientResolvedConfig,
13
+ } from "../SyntheticsClient";
14
+ export interface ListGroupsCommandInput extends ListGroupsRequest {}
15
+ export interface ListGroupsCommandOutput
16
+ extends ListGroupsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListGroupsCommand extends $Command<
20
+ ListGroupsCommandInput,
21
+ ListGroupsCommandOutput,
22
+ SyntheticsClientResolvedConfig
23
+ > {
24
+ readonly input: ListGroupsCommandInput;
25
+ constructor(input: ListGroupsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SyntheticsClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListGroupsCommandInput, ListGroupsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -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 { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
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, SyntheticsClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SyntheticsClientResolvedConfig, 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
+ ListTagsForResourceRequest,
10
+ ListTagsForResourceResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SyntheticsClientResolvedConfig,
16
+ } from "../SyntheticsClient";
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
+ SyntheticsClientResolvedConfig
27
+ > {
28
+ readonly input: ListTagsForResourceCommandInput;
29
+ constructor(input: ListTagsForResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SyntheticsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }