@aws-sdk/client-synthetics 3.1077.0 → 3.1078.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 +30 -223
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/AssociateResourceCommand.js +2 -14
- package/dist-es/commands/CreateCanaryCommand.js +2 -14
- package/dist-es/commands/CreateGroupCommand.js +2 -14
- package/dist-es/commands/DeleteCanaryCommand.js +2 -14
- package/dist-es/commands/DeleteGroupCommand.js +2 -14
- package/dist-es/commands/DescribeCanariesCommand.js +2 -14
- package/dist-es/commands/DescribeCanariesLastRunCommand.js +2 -14
- package/dist-es/commands/DescribeRuntimeVersionsCommand.js +2 -14
- package/dist-es/commands/DisassociateResourceCommand.js +2 -14
- package/dist-es/commands/GetCanaryCommand.js +2 -14
- package/dist-es/commands/GetCanaryRunsCommand.js +2 -14
- package/dist-es/commands/GetGroupCommand.js +2 -14
- package/dist-es/commands/ListAssociatedGroupsCommand.js +2 -14
- package/dist-es/commands/ListGroupResourcesCommand.js +2 -14
- package/dist-es/commands/ListGroupsCommand.js +2 -14
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
- package/dist-es/commands/StartCanaryCommand.js +2 -14
- package/dist-es/commands/StartCanaryDryRunCommand.js +2 -14
- package/dist-es/commands/StopCanaryCommand.js +2 -14
- package/dist-es/commands/TagResourceCommand.js +2 -14
- package/dist-es/commands/UntagResourceCommand.js +2 -14
- package/dist-es/commands/UpdateCanaryCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/AssociateResourceCommand.d.ts +3 -8
- package/dist-types/commands/CreateCanaryCommand.d.ts +3 -8
- package/dist-types/commands/CreateGroupCommand.d.ts +3 -8
- package/dist-types/commands/DeleteCanaryCommand.d.ts +3 -8
- package/dist-types/commands/DeleteGroupCommand.d.ts +3 -8
- package/dist-types/commands/DescribeCanariesCommand.d.ts +3 -8
- package/dist-types/commands/DescribeCanariesLastRunCommand.d.ts +3 -8
- package/dist-types/commands/DescribeRuntimeVersionsCommand.d.ts +3 -8
- package/dist-types/commands/DisassociateResourceCommand.d.ts +3 -8
- package/dist-types/commands/GetCanaryCommand.d.ts +3 -8
- package/dist-types/commands/GetCanaryRunsCommand.d.ts +3 -8
- package/dist-types/commands/GetGroupCommand.d.ts +3 -8
- package/dist-types/commands/ListAssociatedGroupsCommand.d.ts +3 -8
- package/dist-types/commands/ListGroupResourcesCommand.d.ts +3 -8
- package/dist-types/commands/ListGroupsCommand.d.ts +3 -8
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
- package/dist-types/commands/StartCanaryCommand.d.ts +3 -8
- package/dist-types/commands/StartCanaryDryRunCommand.d.ts +3 -8
- package/dist-types/commands/StopCanaryCommand.d.ts +3 -8
- package/dist-types/commands/TagResourceCommand.d.ts +3 -8
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
- package/dist-types/commands/UpdateCanaryCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/AssociateResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateCanaryCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteCanaryCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DescribeCanariesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DescribeCanariesLastRunCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DescribeRuntimeVersionsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DisassociateResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetCanaryCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetCanaryRunsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListAssociatedGroupsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListGroupResourcesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/StartCanaryCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/StartCanaryDryRunCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/StopCanaryCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateCanaryCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +8 -8
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { StartCanary$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class StartCanaryCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("Synthetics", "StartCanary", {})
|
|
13
|
-
.n("SyntheticsClient", "StartCanaryCommand")
|
|
14
|
-
.sc(StartCanary$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class StartCanaryCommand extends command(_ep0, _mw0, "StartCanary", StartCanary$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { StartCanaryDryRun$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class StartCanaryDryRunCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("Synthetics", "StartCanaryDryRun", {})
|
|
13
|
-
.n("SyntheticsClient", "StartCanaryDryRunCommand")
|
|
14
|
-
.sc(StartCanaryDryRun$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class StartCanaryDryRunCommand extends command(_ep0, _mw0, "StartCanaryDryRun", StartCanaryDryRun$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { StopCanary$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class StopCanaryCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("Synthetics", "StopCanary", {})
|
|
13
|
-
.n("SyntheticsClient", "StopCanaryCommand")
|
|
14
|
-
.sc(StopCanary$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class StopCanaryCommand extends command(_ep0, _mw0, "StopCanary", StopCanary$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class TagResourceCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("Synthetics", "TagResource", {})
|
|
13
|
-
.n("SyntheticsClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class TagResourceCommand extends command(_ep0, _mw0, "TagResource", TagResource$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class UntagResourceCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("Synthetics", "UntagResource", {})
|
|
13
|
-
.n("SyntheticsClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class UntagResourceCommand extends command(_ep0, _mw0, "UntagResource", UntagResource$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { UpdateCanary$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class UpdateCanaryCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("Synthetics", "UpdateCanary", {})
|
|
13
|
-
.n("SyntheticsClient", "UpdateCanaryCommand")
|
|
14
|
-
.sc(UpdateCanary$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class UpdateCanaryCommand extends command(_ep0, _mw0, "UpdateCanary", UpdateCanary$) {
|
|
16
4
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "./SyntheticsClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
|
|
7
|
+
new (input: I): import("@smithy/core/client").CommandImpl<I, O, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
8
|
+
new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
9
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
15
|
+
/**
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { AssociateResourceRequest, AssociateResourceResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface AssociateResourceCommandInput extends AssociateResourceRequest
|
|
|
22
19
|
export interface AssociateResourceCommandOutput extends AssociateResourceResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const AssociateResourceCommand_base: {
|
|
25
|
-
new (input: AssociateResourceCommandInput): import("@smithy/core/client").CommandImpl<AssociateResourceCommandInput, AssociateResourceCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: AssociateResourceCommandInput): import("@smithy/core/client").CommandImpl<AssociateResourceCommandInput, AssociateResourceCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: AssociateResourceCommandInput): import("@smithy/core/client").CommandImpl<AssociateResourceCommandInput, AssociateResourceCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: AssociateResourceCommandInput): import("@smithy/core/client").CommandImpl<AssociateResourceCommandInput, AssociateResourceCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Associates a canary with a group. Using groups can help you with
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { CreateCanaryRequest, CreateCanaryResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface CreateCanaryCommandInput extends CreateCanaryRequest {
|
|
|
22
19
|
export interface CreateCanaryCommandOutput extends CreateCanaryResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const CreateCanaryCommand_base: {
|
|
25
|
-
new (input: CreateCanaryCommandInput): import("@smithy/core/client").CommandImpl<CreateCanaryCommandInput, CreateCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: CreateCanaryCommandInput): import("@smithy/core/client").CommandImpl<CreateCanaryCommandInput, CreateCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: CreateCanaryCommandInput): import("@smithy/core/client").CommandImpl<CreateCanaryCommandInput, CreateCanaryCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: CreateCanaryCommandInput): import("@smithy/core/client").CommandImpl<CreateCanaryCommandInput, CreateCanaryCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Creates a canary. Canaries are scripts that monitor your endpoints and APIs from the
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { CreateGroupRequest, CreateGroupResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface CreateGroupCommandInput extends CreateGroupRequest {
|
|
|
22
19
|
export interface CreateGroupCommandOutput extends CreateGroupResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const CreateGroupCommand_base: {
|
|
25
|
-
new (input: CreateGroupCommandInput): import("@smithy/core/client").CommandImpl<CreateGroupCommandInput, CreateGroupCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: CreateGroupCommandInput): import("@smithy/core/client").CommandImpl<CreateGroupCommandInput, CreateGroupCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: CreateGroupCommandInput): import("@smithy/core/client").CommandImpl<CreateGroupCommandInput, CreateGroupCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: CreateGroupCommandInput): import("@smithy/core/client").CommandImpl<CreateGroupCommandInput, CreateGroupCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Creates a group which you can use to associate canaries with each other, including cross-Region
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { DeleteCanaryRequest, DeleteCanaryResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface DeleteCanaryCommandInput extends DeleteCanaryRequest {
|
|
|
22
19
|
export interface DeleteCanaryCommandOutput extends DeleteCanaryResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const DeleteCanaryCommand_base: {
|
|
25
|
-
new (input: DeleteCanaryCommandInput): import("@smithy/core/client").CommandImpl<DeleteCanaryCommandInput, DeleteCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: DeleteCanaryCommandInput): import("@smithy/core/client").CommandImpl<DeleteCanaryCommandInput, DeleteCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: DeleteCanaryCommandInput): import("@smithy/core/client").CommandImpl<DeleteCanaryCommandInput, DeleteCanaryCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: DeleteCanaryCommandInput): import("@smithy/core/client").CommandImpl<DeleteCanaryCommandInput, DeleteCanaryCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Permanently deletes the specified canary.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { DeleteGroupRequest, DeleteGroupResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface DeleteGroupCommandInput extends DeleteGroupRequest {
|
|
|
22
19
|
export interface DeleteGroupCommandOutput extends DeleteGroupResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const DeleteGroupCommand_base: {
|
|
25
|
-
new (input: DeleteGroupCommandInput): import("@smithy/core/client").CommandImpl<DeleteGroupCommandInput, DeleteGroupCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: DeleteGroupCommandInput): import("@smithy/core/client").CommandImpl<DeleteGroupCommandInput, DeleteGroupCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: DeleteGroupCommandInput): import("@smithy/core/client").CommandImpl<DeleteGroupCommandInput, DeleteGroupCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: DeleteGroupCommandInput): import("@smithy/core/client").CommandImpl<DeleteGroupCommandInput, DeleteGroupCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Deletes a group. The group doesn't need to be empty to be deleted. If there are canaries in the group,
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { DescribeCanariesRequest, DescribeCanariesResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface DescribeCanariesCommandInput extends DescribeCanariesRequest {
|
|
|
22
19
|
export interface DescribeCanariesCommandOutput extends DescribeCanariesResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const DescribeCanariesCommand_base: {
|
|
25
|
-
new (input: DescribeCanariesCommandInput): import("@smithy/core/client").CommandImpl<DescribeCanariesCommandInput, DescribeCanariesCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [DescribeCanariesCommandInput]): import("@smithy/core/client").CommandImpl<DescribeCanariesCommandInput, DescribeCanariesCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: DescribeCanariesCommandInput): import("@smithy/core/client").CommandImpl<DescribeCanariesCommandInput, DescribeCanariesCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [DescribeCanariesCommandInput]): import("@smithy/core/client").CommandImpl<DescribeCanariesCommandInput, DescribeCanariesCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>This operation returns a list of the canaries in your account, along with full details
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { DescribeCanariesLastRunRequest, DescribeCanariesLastRunResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface DescribeCanariesLastRunCommandInput extends DescribeCanariesLas
|
|
|
22
19
|
export interface DescribeCanariesLastRunCommandOutput extends DescribeCanariesLastRunResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const DescribeCanariesLastRunCommand_base: {
|
|
25
|
-
new (input: DescribeCanariesLastRunCommandInput): import("@smithy/core/client").CommandImpl<DescribeCanariesLastRunCommandInput, DescribeCanariesLastRunCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [DescribeCanariesLastRunCommandInput]): import("@smithy/core/client").CommandImpl<DescribeCanariesLastRunCommandInput, DescribeCanariesLastRunCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: DescribeCanariesLastRunCommandInput): import("@smithy/core/client").CommandImpl<DescribeCanariesLastRunCommandInput, DescribeCanariesLastRunCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [DescribeCanariesLastRunCommandInput]): import("@smithy/core/client").CommandImpl<DescribeCanariesLastRunCommandInput, DescribeCanariesLastRunCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Use this operation to see information from the most recent run of each canary that you have created.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { DescribeRuntimeVersionsRequest, DescribeRuntimeVersionsResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface DescribeRuntimeVersionsCommandInput extends DescribeRuntimeVers
|
|
|
22
19
|
export interface DescribeRuntimeVersionsCommandOutput extends DescribeRuntimeVersionsResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const DescribeRuntimeVersionsCommand_base: {
|
|
25
|
-
new (input: DescribeRuntimeVersionsCommandInput): import("@smithy/core/client").CommandImpl<DescribeRuntimeVersionsCommandInput, DescribeRuntimeVersionsCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [DescribeRuntimeVersionsCommandInput]): import("@smithy/core/client").CommandImpl<DescribeRuntimeVersionsCommandInput, DescribeRuntimeVersionsCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: DescribeRuntimeVersionsCommandInput): import("@smithy/core/client").CommandImpl<DescribeRuntimeVersionsCommandInput, DescribeRuntimeVersionsCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [DescribeRuntimeVersionsCommandInput]): import("@smithy/core/client").CommandImpl<DescribeRuntimeVersionsCommandInput, DescribeRuntimeVersionsCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns a list of Synthetics canary runtime versions. For more information,
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { DisassociateResourceRequest, DisassociateResourceResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface DisassociateResourceCommandInput extends DisassociateResourceRe
|
|
|
22
19
|
export interface DisassociateResourceCommandOutput extends DisassociateResourceResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const DisassociateResourceCommand_base: {
|
|
25
|
-
new (input: DisassociateResourceCommandInput): import("@smithy/core/client").CommandImpl<DisassociateResourceCommandInput, DisassociateResourceCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: DisassociateResourceCommandInput): import("@smithy/core/client").CommandImpl<DisassociateResourceCommandInput, DisassociateResourceCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: DisassociateResourceCommandInput): import("@smithy/core/client").CommandImpl<DisassociateResourceCommandInput, DisassociateResourceCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: DisassociateResourceCommandInput): import("@smithy/core/client").CommandImpl<DisassociateResourceCommandInput, DisassociateResourceCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Removes a canary from a group. You must run this operation in the Region where the canary exists.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { GetCanaryRequest, GetCanaryResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetCanaryCommandInput extends GetCanaryRequest {
|
|
|
22
19
|
export interface GetCanaryCommandOutput extends GetCanaryResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetCanaryCommand_base: {
|
|
25
|
-
new (input: GetCanaryCommandInput): import("@smithy/core/client").CommandImpl<GetCanaryCommandInput, GetCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetCanaryCommandInput): import("@smithy/core/client").CommandImpl<GetCanaryCommandInput, GetCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetCanaryCommandInput): import("@smithy/core/client").CommandImpl<GetCanaryCommandInput, GetCanaryCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetCanaryCommandInput): import("@smithy/core/client").CommandImpl<GetCanaryCommandInput, GetCanaryCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Retrieves complete information about one canary. You must specify
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { GetCanaryRunsRequest, GetCanaryRunsResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetCanaryRunsCommandInput extends GetCanaryRunsRequest {
|
|
|
22
19
|
export interface GetCanaryRunsCommandOutput extends GetCanaryRunsResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetCanaryRunsCommand_base: {
|
|
25
|
-
new (input: GetCanaryRunsCommandInput): import("@smithy/core/client").CommandImpl<GetCanaryRunsCommandInput, GetCanaryRunsCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetCanaryRunsCommandInput): import("@smithy/core/client").CommandImpl<GetCanaryRunsCommandInput, GetCanaryRunsCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetCanaryRunsCommandInput): import("@smithy/core/client").CommandImpl<GetCanaryRunsCommandInput, GetCanaryRunsCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetCanaryRunsCommandInput): import("@smithy/core/client").CommandImpl<GetCanaryRunsCommandInput, GetCanaryRunsCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Retrieves a list of runs for a specified canary.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { GetGroupRequest, GetGroupResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetGroupCommandInput extends GetGroupRequest {
|
|
|
22
19
|
export interface GetGroupCommandOutput extends GetGroupResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetGroupCommand_base: {
|
|
25
|
-
new (input: GetGroupCommandInput): import("@smithy/core/client").CommandImpl<GetGroupCommandInput, GetGroupCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetGroupCommandInput): import("@smithy/core/client").CommandImpl<GetGroupCommandInput, GetGroupCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetGroupCommandInput): import("@smithy/core/client").CommandImpl<GetGroupCommandInput, GetGroupCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetGroupCommandInput): import("@smithy/core/client").CommandImpl<GetGroupCommandInput, GetGroupCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns information about one group. Groups are a global resource, so you can use this operation from
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListAssociatedGroupsRequest, ListAssociatedGroupsResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListAssociatedGroupsCommandInput extends ListAssociatedGroupsRe
|
|
|
22
19
|
export interface ListAssociatedGroupsCommandOutput extends ListAssociatedGroupsResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListAssociatedGroupsCommand_base: {
|
|
25
|
-
new (input: ListAssociatedGroupsCommandInput): import("@smithy/core/client").CommandImpl<ListAssociatedGroupsCommandInput, ListAssociatedGroupsCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: ListAssociatedGroupsCommandInput): import("@smithy/core/client").CommandImpl<ListAssociatedGroupsCommandInput, ListAssociatedGroupsCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListAssociatedGroupsCommandInput): import("@smithy/core/client").CommandImpl<ListAssociatedGroupsCommandInput, ListAssociatedGroupsCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListAssociatedGroupsCommandInput): import("@smithy/core/client").CommandImpl<ListAssociatedGroupsCommandInput, ListAssociatedGroupsCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns a list of the groups that the specified canary is associated with. The canary
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListGroupResourcesRequest, ListGroupResourcesResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListGroupResourcesCommandInput extends ListGroupResourcesReques
|
|
|
22
19
|
export interface ListGroupResourcesCommandOutput extends ListGroupResourcesResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListGroupResourcesCommand_base: {
|
|
25
|
-
new (input: ListGroupResourcesCommandInput): import("@smithy/core/client").CommandImpl<ListGroupResourcesCommandInput, ListGroupResourcesCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: ListGroupResourcesCommandInput): import("@smithy/core/client").CommandImpl<ListGroupResourcesCommandInput, ListGroupResourcesCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListGroupResourcesCommandInput): import("@smithy/core/client").CommandImpl<ListGroupResourcesCommandInput, ListGroupResourcesCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListGroupResourcesCommandInput): import("@smithy/core/client").CommandImpl<ListGroupResourcesCommandInput, ListGroupResourcesCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>This operation returns a list of the ARNs of the canaries that are associated with the specified group.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListGroupsRequest, ListGroupsResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListGroupsCommandInput extends ListGroupsRequest {
|
|
|
22
19
|
export interface ListGroupsCommandOutput extends ListGroupsResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListGroupsCommand_base: {
|
|
25
|
-
new (input: ListGroupsCommandInput): import("@smithy/core/client").CommandImpl<ListGroupsCommandInput, ListGroupsCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [ListGroupsCommandInput]): import("@smithy/core/client").CommandImpl<ListGroupsCommandInput, ListGroupsCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListGroupsCommandInput): import("@smithy/core/client").CommandImpl<ListGroupsCommandInput, ListGroupsCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListGroupsCommandInput]): import("@smithy/core/client").CommandImpl<ListGroupsCommandInput, ListGroupsCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns a list of all groups in the account, displaying their names, unique IDs, and ARNs. The groups
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
|
|
|
22
19
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListTagsForResourceCommand_base: {
|
|
25
|
-
new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Displays the tags associated with a canary or group.</p>
|