@aws-sdk/client-synthetics 3.1087.0 → 3.1088.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/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/Synthetics.d.ts +82 -111
- package/dist-types/ts3.4/SyntheticsClient.d.ts +13 -46
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AssociateResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateCanaryCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteCanaryCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeCanariesCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/DescribeCanariesLastRunCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeRuntimeVersionsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DisassociateResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetCanaryCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetCanaryRunsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/ListAssociatedGroupsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListGroupResourcesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartCanaryCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/StartCanaryDryRunCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StopCanaryCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateCanaryCommand.d.ts +3 -5
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +5 -10
- package/dist-types/ts3.4/models/errors.d.ts +9 -27
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { SyntheticsClientResolvedConfig } from "../SyntheticsClient";
|
|
15
|
-
export interface SyntheticsHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface SyntheticsHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface SyntheticsHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface SyntheticsHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
SyntheticsClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
SyntheticsHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultSyntheticsHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: SyntheticsClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<SyntheticsHttpAuthSchemeParameters>;
|
|
31
|
-
export interface SyntheticsHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<SyntheticsHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface SyntheticsHttpAuthSchemeProvider extends HttpAuthSchemeProvider<SyntheticsHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultSyntheticsHttpAuthSchemeProvider: SyntheticsHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: SyntheticsHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: SyntheticsHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceOutputTypes,
|
|
5
5
|
SyntheticsClientResolvedConfig,
|
|
6
6
|
} from "./SyntheticsClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
SyntheticsClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
AssociateResourceRequest,
|
|
4
|
-
AssociateResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { AssociateResourceRequest, AssociateResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface AssociateResourceCommandInput
|
|
8
|
-
extends AssociateResourceRequest {}
|
|
4
|
+
export interface AssociateResourceCommandInput extends AssociateResourceRequest {}
|
|
9
5
|
export interface AssociateResourceCommandOutput
|
|
10
|
-
extends AssociateResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends AssociateResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const AssociateResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: AssociateResourceCommandInput
|
|
9
|
+
input: AssociateResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
AssociateResourceCommandInput,
|
|
17
12
|
AssociateResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const AssociateResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: AssociateResourceCommandInput
|
|
18
|
+
input: AssociateResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
AssociateResourceCommandInput,
|
|
26
21
|
AssociateResourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CreateCanaryRequest, CreateCanaryResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreateCanaryCommandInput extends CreateCanaryRequest {}
|
|
5
|
-
export interface CreateCanaryCommandOutput
|
|
6
|
-
extends CreateCanaryResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateCanaryCommandOutput extends CreateCanaryResponse, __MetadataBearer {}
|
|
8
6
|
declare const CreateCanaryCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CreateCanaryCommandInput
|
|
8
|
+
input: CreateCanaryCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CreateCanaryCommandInput,
|
|
13
11
|
CreateCanaryCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CreateCanaryCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CreateCanaryCommandInput
|
|
17
|
+
input: CreateCanaryCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CreateCanaryCommandInput,
|
|
22
20
|
CreateCanaryCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CreateGroupRequest, CreateGroupResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreateGroupCommandInput extends CreateGroupRequest {}
|
|
5
|
-
export interface CreateGroupCommandOutput
|
|
6
|
-
extends CreateGroupResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateGroupCommandOutput extends CreateGroupResponse, __MetadataBearer {}
|
|
8
6
|
declare const CreateGroupCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CreateGroupCommandInput
|
|
8
|
+
input: CreateGroupCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CreateGroupCommandInput,
|
|
13
11
|
CreateGroupCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CreateGroupCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CreateGroupCommandInput
|
|
17
|
+
input: CreateGroupCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CreateGroupCommandInput,
|
|
22
20
|
CreateGroupCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteCanaryRequest, DeleteCanaryResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteCanaryCommandInput extends DeleteCanaryRequest {}
|
|
5
|
-
export interface DeleteCanaryCommandOutput
|
|
6
|
-
extends DeleteCanaryResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteCanaryCommandOutput extends DeleteCanaryResponse, __MetadataBearer {}
|
|
8
6
|
declare const DeleteCanaryCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteCanaryCommandInput
|
|
8
|
+
input: DeleteCanaryCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteCanaryCommandInput,
|
|
13
11
|
DeleteCanaryCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteCanaryCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteCanaryCommandInput
|
|
17
|
+
input: DeleteCanaryCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteCanaryCommandInput,
|
|
22
20
|
DeleteCanaryCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteGroupRequest, DeleteGroupResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteGroupCommandInput extends DeleteGroupRequest {}
|
|
5
|
-
export interface DeleteGroupCommandOutput
|
|
6
|
-
extends DeleteGroupResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteGroupCommandOutput extends DeleteGroupResponse, __MetadataBearer {}
|
|
8
6
|
declare const DeleteGroupCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteGroupCommandInput
|
|
8
|
+
input: DeleteGroupCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteGroupCommandInput,
|
|
13
11
|
DeleteGroupCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteGroupCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteGroupCommandInput
|
|
17
|
+
input: DeleteGroupCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteGroupCommandInput,
|
|
22
20
|
DeleteGroupCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeCanariesRequest,
|
|
4
|
-
DescribeCanariesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeCanariesRequest, DescribeCanariesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DescribeCanariesCommandInput extends DescribeCanariesRequest {}
|
|
8
|
-
export interface DescribeCanariesCommandOutput
|
|
9
|
-
extends DescribeCanariesResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DescribeCanariesCommandOutput extends DescribeCanariesResponse, __MetadataBearer {}
|
|
11
6
|
declare const DescribeCanariesCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DescribeCanariesCommandInput
|
|
8
|
+
input: DescribeCanariesCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DescribeCanariesCommandInput,
|
|
16
11
|
DescribeCanariesCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeCanariesLastRunResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeCanariesLastRunCommandInput
|
|
8
|
-
extends DescribeCanariesLastRunRequest {}
|
|
7
|
+
export interface DescribeCanariesLastRunCommandInput extends DescribeCanariesLastRunRequest {}
|
|
9
8
|
export interface DescribeCanariesLastRunCommandOutput
|
|
10
|
-
extends DescribeCanariesLastRunResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeCanariesLastRunResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeCanariesLastRunCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeCanariesLastRunCommandInput
|
|
12
|
+
input: DescribeCanariesLastRunCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeCanariesLastRunCommandInput,
|
|
17
15
|
DescribeCanariesLastRunCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeRuntimeVersionsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeRuntimeVersionsCommandInput
|
|
8
|
-
extends DescribeRuntimeVersionsRequest {}
|
|
7
|
+
export interface DescribeRuntimeVersionsCommandInput extends DescribeRuntimeVersionsRequest {}
|
|
9
8
|
export interface DescribeRuntimeVersionsCommandOutput
|
|
10
|
-
extends DescribeRuntimeVersionsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeRuntimeVersionsResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeRuntimeVersionsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeRuntimeVersionsCommandInput
|
|
12
|
+
input: DescribeRuntimeVersionsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeRuntimeVersionsCommandInput,
|
|
17
15
|
DescribeRuntimeVersionsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DisassociateResourceRequest,
|
|
4
|
-
DisassociateResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DisassociateResourceRequest, DisassociateResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DisassociateResourceCommandInput
|
|
8
|
-
extends DisassociateResourceRequest {}
|
|
4
|
+
export interface DisassociateResourceCommandInput extends DisassociateResourceRequest {}
|
|
9
5
|
export interface DisassociateResourceCommandOutput
|
|
10
|
-
extends DisassociateResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DisassociateResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const DisassociateResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DisassociateResourceCommandInput
|
|
9
|
+
input: DisassociateResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DisassociateResourceCommandInput,
|
|
17
12
|
DisassociateResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DisassociateResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DisassociateResourceCommandInput
|
|
18
|
+
input: DisassociateResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DisassociateResourceCommandInput,
|
|
26
21
|
DisassociateResourceCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetCanaryRequest, GetCanaryResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetCanaryCommandInput extends GetCanaryRequest {}
|
|
5
|
-
export interface GetCanaryCommandOutput
|
|
6
|
-
extends GetCanaryResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetCanaryCommandOutput extends GetCanaryResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetCanaryCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetCanaryCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
GetCanaryCommandInput,
|
|
11
11
|
GetCanaryCommandOutput,
|
|
12
12
|
import("..").SyntheticsClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetCanaryCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
GetCanaryCommandInput,
|
|
18
20
|
GetCanaryCommandOutput,
|
|
19
21
|
import("..").SyntheticsClientResolvedConfig,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetCanaryRunsRequest,
|
|
4
|
-
GetCanaryRunsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetCanaryRunsRequest, GetCanaryRunsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetCanaryRunsCommandInput extends GetCanaryRunsRequest {}
|
|
8
|
-
export interface GetCanaryRunsCommandOutput
|
|
9
|
-
extends GetCanaryRunsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetCanaryRunsCommandOutput extends GetCanaryRunsResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetCanaryRunsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetCanaryRunsCommandInput
|
|
8
|
+
input: GetCanaryRunsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetCanaryRunsCommandInput,
|
|
16
11
|
GetCanaryRunsCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetCanaryRunsCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetCanaryRunsCommandInput
|
|
17
|
+
input: GetCanaryRunsCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetCanaryRunsCommandInput,
|
|
25
20
|
GetCanaryRunsCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetGroupRequest, GetGroupResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetGroupCommandInput extends GetGroupRequest {}
|
|
5
|
-
export interface GetGroupCommandOutput
|
|
6
|
-
extends GetGroupResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetGroupCommandOutput extends GetGroupResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetGroupCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetGroupCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
GetGroupCommandInput,
|
|
11
11
|
GetGroupCommandOutput,
|
|
12
12
|
import("..").SyntheticsClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetGroupCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
GetGroupCommandInput,
|
|
18
20
|
GetGroupCommandOutput,
|
|
19
21
|
import("..").SyntheticsClientResolvedConfig,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListAssociatedGroupsRequest,
|
|
4
|
-
ListAssociatedGroupsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListAssociatedGroupsRequest, ListAssociatedGroupsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListAssociatedGroupsCommandInput
|
|
8
|
-
extends ListAssociatedGroupsRequest {}
|
|
4
|
+
export interface ListAssociatedGroupsCommandInput extends ListAssociatedGroupsRequest {}
|
|
9
5
|
export interface ListAssociatedGroupsCommandOutput
|
|
10
|
-
extends ListAssociatedGroupsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListAssociatedGroupsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListAssociatedGroupsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListAssociatedGroupsCommandInput
|
|
9
|
+
input: ListAssociatedGroupsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListAssociatedGroupsCommandInput,
|
|
17
12
|
ListAssociatedGroupsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListAssociatedGroupsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListAssociatedGroupsCommandInput
|
|
18
|
+
input: ListAssociatedGroupsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListAssociatedGroupsCommandInput,
|
|
26
21
|
ListAssociatedGroupsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListGroupResourcesRequest,
|
|
4
|
-
ListGroupResourcesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListGroupResourcesRequest, ListGroupResourcesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListGroupResourcesCommandInput
|
|
8
|
-
extends ListGroupResourcesRequest {}
|
|
4
|
+
export interface ListGroupResourcesCommandInput extends ListGroupResourcesRequest {}
|
|
9
5
|
export interface ListGroupResourcesCommandOutput
|
|
10
|
-
extends ListGroupResourcesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListGroupResourcesResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListGroupResourcesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListGroupResourcesCommandInput
|
|
9
|
+
input: ListGroupResourcesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListGroupResourcesCommandInput,
|
|
17
12
|
ListGroupResourcesCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListGroupResourcesCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListGroupResourcesCommandInput
|
|
18
|
+
input: ListGroupResourcesCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListGroupResourcesCommandInput,
|
|
26
21
|
ListGroupResourcesCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListGroupsRequest, ListGroupsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListGroupsCommandInput extends ListGroupsRequest {}
|
|
5
|
-
export interface ListGroupsCommandOutput
|
|
6
|
-
extends ListGroupsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListGroupsCommandOutput extends ListGroupsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListGroupsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListGroupsCommandInput
|
|
8
|
+
input: ListGroupsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListGroupsCommandInput,
|
|
13
11
|
ListGroupsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { StartCanaryRequest, StartCanaryResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface StartCanaryCommandInput extends StartCanaryRequest {}
|
|
5
|
-
export interface StartCanaryCommandOutput
|
|
6
|
-
extends StartCanaryResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StartCanaryCommandOutput extends StartCanaryResponse, __MetadataBearer {}
|
|
8
6
|
declare const StartCanaryCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: StartCanaryCommandInput
|
|
8
|
+
input: StartCanaryCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
StartCanaryCommandInput,
|
|
13
11
|
StartCanaryCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const StartCanaryCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: StartCanaryCommandInput
|
|
17
|
+
input: StartCanaryCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
StartCanaryCommandInput,
|
|
22
20
|
StartCanaryCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartCanaryDryRunRequest,
|
|
4
|
-
StartCanaryDryRunResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartCanaryDryRunRequest, StartCanaryDryRunResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartCanaryDryRunCommandInput
|
|
8
|
-
extends StartCanaryDryRunRequest {}
|
|
4
|
+
export interface StartCanaryDryRunCommandInput extends StartCanaryDryRunRequest {}
|
|
9
5
|
export interface StartCanaryDryRunCommandOutput
|
|
10
|
-
extends StartCanaryDryRunResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends StartCanaryDryRunResponse, __MetadataBearer {}
|
|
12
7
|
declare const StartCanaryDryRunCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: StartCanaryDryRunCommandInput
|
|
9
|
+
input: StartCanaryDryRunCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
StartCanaryDryRunCommandInput,
|
|
17
12
|
StartCanaryDryRunCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const StartCanaryDryRunCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: StartCanaryDryRunCommandInput
|
|
18
|
+
input: StartCanaryDryRunCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
StartCanaryDryRunCommandInput,
|
|
26
21
|
StartCanaryDryRunCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { StopCanaryRequest, StopCanaryResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface StopCanaryCommandInput extends StopCanaryRequest {}
|
|
5
|
-
export interface StopCanaryCommandOutput
|
|
6
|
-
extends StopCanaryResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StopCanaryCommandOutput extends StopCanaryResponse, __MetadataBearer {}
|
|
8
6
|
declare const StopCanaryCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: StopCanaryCommandInput
|
|
8
|
+
input: StopCanaryCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
StopCanaryCommandInput,
|
|
13
11
|
StopCanaryCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const StopCanaryCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: StopCanaryCommandInput
|
|
17
|
+
input: StopCanaryCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
StopCanaryCommandInput,
|
|
22
20
|
StopCanaryCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|