@aws-sdk/client-devops-agent 3.1067.0 → 3.1068.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/README.md +35 -0
- package/dist-cjs/index.js +74 -0
- package/dist-cjs/schemas/schemas_0.js +125 -17
- package/dist-es/DevOpsAgent.js +12 -0
- package/dist-es/commands/CreateTriggerCommand.js +16 -0
- package/dist-es/commands/DeleteTriggerCommand.js +16 -0
- package/dist-es/commands/GetTriggerCommand.js +16 -0
- package/dist-es/commands/ListTriggersCommand.js +16 -0
- package/dist-es/commands/UpdateTriggerCommand.js +16 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/pagination/ListTriggersPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +118 -11
- package/dist-types/DevOpsAgent.d.ts +42 -0
- package/dist-types/DevOpsAgentClient.d.ts +7 -2
- package/dist-types/commands/CreateTriggerCommand.d.ts +125 -0
- package/dist-types/commands/DeleteTriggerCommand.d.ts +102 -0
- package/dist-types/commands/GetTriggerCommand.d.ts +117 -0
- package/dist-types/commands/ListTriggersCommand.d.ts +122 -0
- package/dist-types/commands/UpdateTriggerCommand.d.ts +119 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +255 -0
- package/dist-types/pagination/ListTriggersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +18 -0
- package/dist-types/ts3.4/DevOpsAgent.d.ts +92 -0
- package/dist-types/ts3.4/DevOpsAgentClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateTriggerCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/DeleteTriggerCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/GetTriggerCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/ListTriggersCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/UpdateTriggerCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +72 -0
- package/dist-types/ts3.4/pagination/ListTriggersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +18 -0
- package/package.json +1 -1
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DevOpsAgentClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DevOpsAgentClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateTriggerRequest,
|
|
10
|
+
CreateTriggerResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateTriggerCommandInput extends CreateTriggerRequest {}
|
|
15
|
+
export interface CreateTriggerCommandOutput
|
|
16
|
+
extends CreateTriggerResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CreateTriggerCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateTriggerCommandInput
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
22
|
+
CreateTriggerCommandInput,
|
|
23
|
+
CreateTriggerCommandOutput,
|
|
24
|
+
DevOpsAgentClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: CreateTriggerCommandInput
|
|
30
|
+
): import("@smithy/core/client").CommandImpl<
|
|
31
|
+
CreateTriggerCommandInput,
|
|
32
|
+
CreateTriggerCommandOutput,
|
|
33
|
+
DevOpsAgentClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): {
|
|
38
|
+
[x: string]: unknown;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
export declare class CreateTriggerCommand extends CreateTriggerCommand_base {
|
|
42
|
+
protected static __types: {
|
|
43
|
+
api: {
|
|
44
|
+
input: CreateTriggerRequest;
|
|
45
|
+
output: CreateTriggerResponse;
|
|
46
|
+
};
|
|
47
|
+
sdk: {
|
|
48
|
+
input: CreateTriggerCommandInput;
|
|
49
|
+
output: CreateTriggerCommandOutput;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DevOpsAgentClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DevOpsAgentClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteTriggerRequest,
|
|
10
|
+
DeleteTriggerResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteTriggerCommandInput extends DeleteTriggerRequest {}
|
|
15
|
+
export interface DeleteTriggerCommandOutput
|
|
16
|
+
extends DeleteTriggerResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const DeleteTriggerCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DeleteTriggerCommandInput
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
22
|
+
DeleteTriggerCommandInput,
|
|
23
|
+
DeleteTriggerCommandOutput,
|
|
24
|
+
DevOpsAgentClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: DeleteTriggerCommandInput
|
|
30
|
+
): import("@smithy/core/client").CommandImpl<
|
|
31
|
+
DeleteTriggerCommandInput,
|
|
32
|
+
DeleteTriggerCommandOutput,
|
|
33
|
+
DevOpsAgentClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): {
|
|
38
|
+
[x: string]: unknown;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
export declare class DeleteTriggerCommand extends DeleteTriggerCommand_base {
|
|
42
|
+
protected static __types: {
|
|
43
|
+
api: {
|
|
44
|
+
input: DeleteTriggerRequest;
|
|
45
|
+
output: {};
|
|
46
|
+
};
|
|
47
|
+
sdk: {
|
|
48
|
+
input: DeleteTriggerCommandInput;
|
|
49
|
+
output: DeleteTriggerCommandOutput;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DevOpsAgentClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DevOpsAgentClient";
|
|
8
|
+
import { GetTriggerRequest, GetTriggerResponse } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetTriggerCommandInput extends GetTriggerRequest {}
|
|
12
|
+
export interface GetTriggerCommandOutput
|
|
13
|
+
extends GetTriggerResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetTriggerCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: GetTriggerCommandInput
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
GetTriggerCommandInput,
|
|
20
|
+
GetTriggerCommandOutput,
|
|
21
|
+
DevOpsAgentClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: GetTriggerCommandInput
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
|
+
GetTriggerCommandInput,
|
|
29
|
+
GetTriggerCommandOutput,
|
|
30
|
+
DevOpsAgentClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
export declare class GetTriggerCommand extends GetTriggerCommand_base {
|
|
39
|
+
protected static __types: {
|
|
40
|
+
api: {
|
|
41
|
+
input: GetTriggerRequest;
|
|
42
|
+
output: GetTriggerResponse;
|
|
43
|
+
};
|
|
44
|
+
sdk: {
|
|
45
|
+
input: GetTriggerCommandInput;
|
|
46
|
+
output: GetTriggerCommandOutput;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DevOpsAgentClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DevOpsAgentClient";
|
|
8
|
+
import { ListTriggersRequest, ListTriggersResponse } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ListTriggersCommandInput extends ListTriggersRequest {}
|
|
12
|
+
export interface ListTriggersCommandOutput
|
|
13
|
+
extends ListTriggersResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const ListTriggersCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: ListTriggersCommandInput
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
ListTriggersCommandInput,
|
|
20
|
+
ListTriggersCommandOutput,
|
|
21
|
+
DevOpsAgentClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: ListTriggersCommandInput
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
|
+
ListTriggersCommandInput,
|
|
29
|
+
ListTriggersCommandOutput,
|
|
30
|
+
DevOpsAgentClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
export declare class ListTriggersCommand extends ListTriggersCommand_base {
|
|
39
|
+
protected static __types: {
|
|
40
|
+
api: {
|
|
41
|
+
input: ListTriggersRequest;
|
|
42
|
+
output: ListTriggersResponse;
|
|
43
|
+
};
|
|
44
|
+
sdk: {
|
|
45
|
+
input: ListTriggersCommandInput;
|
|
46
|
+
output: ListTriggersCommandOutput;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DevOpsAgentClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DevOpsAgentClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateTriggerRequest,
|
|
10
|
+
UpdateTriggerResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateTriggerCommandInput extends UpdateTriggerRequest {}
|
|
15
|
+
export interface UpdateTriggerCommandOutput
|
|
16
|
+
extends UpdateTriggerResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const UpdateTriggerCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: UpdateTriggerCommandInput
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
22
|
+
UpdateTriggerCommandInput,
|
|
23
|
+
UpdateTriggerCommandOutput,
|
|
24
|
+
DevOpsAgentClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: UpdateTriggerCommandInput
|
|
30
|
+
): import("@smithy/core/client").CommandImpl<
|
|
31
|
+
UpdateTriggerCommandInput,
|
|
32
|
+
UpdateTriggerCommandOutput,
|
|
33
|
+
DevOpsAgentClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): {
|
|
38
|
+
[x: string]: unknown;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
export declare class UpdateTriggerCommand extends UpdateTriggerCommand_base {
|
|
42
|
+
protected static __types: {
|
|
43
|
+
api: {
|
|
44
|
+
input: UpdateTriggerRequest;
|
|
45
|
+
output: UpdateTriggerResponse;
|
|
46
|
+
};
|
|
47
|
+
sdk: {
|
|
48
|
+
input: UpdateTriggerCommandInput;
|
|
49
|
+
output: UpdateTriggerCommandOutput;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
}
|
|
@@ -5,10 +5,12 @@ export * from "./CreateAssetFileCommand";
|
|
|
5
5
|
export * from "./CreateBacklogTaskCommand";
|
|
6
6
|
export * from "./CreateChatCommand";
|
|
7
7
|
export * from "./CreatePrivateConnectionCommand";
|
|
8
|
+
export * from "./CreateTriggerCommand";
|
|
8
9
|
export * from "./DeleteAgentSpaceCommand";
|
|
9
10
|
export * from "./DeleteAssetCommand";
|
|
10
11
|
export * from "./DeleteAssetFileCommand";
|
|
11
12
|
export * from "./DeletePrivateConnectionCommand";
|
|
13
|
+
export * from "./DeleteTriggerCommand";
|
|
12
14
|
export * from "./DeregisterServiceCommand";
|
|
13
15
|
export * from "./DescribePrivateConnectionCommand";
|
|
14
16
|
export * from "./DisableOperatorAppCommand";
|
|
@@ -24,6 +26,7 @@ export * from "./GetBacklogTaskCommand";
|
|
|
24
26
|
export * from "./GetOperatorAppCommand";
|
|
25
27
|
export * from "./GetRecommendationCommand";
|
|
26
28
|
export * from "./GetServiceCommand";
|
|
29
|
+
export * from "./GetTriggerCommand";
|
|
27
30
|
export * from "./ListAgentSpacesCommand";
|
|
28
31
|
export * from "./ListAssetFilesCommand";
|
|
29
32
|
export * from "./ListAssetTypesCommand";
|
|
@@ -40,6 +43,7 @@ export * from "./ListPrivateConnectionsCommand";
|
|
|
40
43
|
export * from "./ListRecommendationsCommand";
|
|
41
44
|
export * from "./ListServicesCommand";
|
|
42
45
|
export * from "./ListTagsForResourceCommand";
|
|
46
|
+
export * from "./ListTriggersCommand";
|
|
43
47
|
export * from "./ListWebhooksCommand";
|
|
44
48
|
export * from "./RegisterServiceCommand";
|
|
45
49
|
export * from "./SendMessageCommand";
|
|
@@ -54,4 +58,5 @@ export * from "./UpdateGoalCommand";
|
|
|
54
58
|
export * from "./UpdateOperatorAppIdpConfigCommand";
|
|
55
59
|
export * from "./UpdatePrivateConnectionCertificateCommand";
|
|
56
60
|
export * from "./UpdateRecommendationCommand";
|
|
61
|
+
export * from "./UpdateTriggerCommand";
|
|
57
62
|
export * from "./ValidateAwsAssociationsCommand";
|
|
@@ -1278,6 +1278,47 @@ export interface CreatePrivateConnectionOutput {
|
|
|
1278
1278
|
failureMessage?: string | undefined;
|
|
1279
1279
|
tags?: Record<string, string> | undefined;
|
|
1280
1280
|
}
|
|
1281
|
+
export interface ScheduleCondition {
|
|
1282
|
+
expression: string | undefined;
|
|
1283
|
+
}
|
|
1284
|
+
export type TriggerCondition =
|
|
1285
|
+
| TriggerCondition.ScheduleMember
|
|
1286
|
+
| TriggerCondition.$UnknownMember;
|
|
1287
|
+
export declare namespace TriggerCondition {
|
|
1288
|
+
interface ScheduleMember {
|
|
1289
|
+
schedule: ScheduleCondition;
|
|
1290
|
+
$unknown?: never;
|
|
1291
|
+
}
|
|
1292
|
+
interface $UnknownMember {
|
|
1293
|
+
schedule?: never;
|
|
1294
|
+
$unknown: [string, any];
|
|
1295
|
+
}
|
|
1296
|
+
interface Visitor<T> {
|
|
1297
|
+
schedule: (value: ScheduleCondition) => T;
|
|
1298
|
+
_: (name: string, value: any) => T;
|
|
1299
|
+
}
|
|
1300
|
+
}
|
|
1301
|
+
export interface CreateTriggerRequest {
|
|
1302
|
+
agentSpaceId: string | undefined;
|
|
1303
|
+
type: string | undefined;
|
|
1304
|
+
condition: TriggerCondition | undefined;
|
|
1305
|
+
action: __DocumentType | undefined;
|
|
1306
|
+
status?: string | undefined;
|
|
1307
|
+
clientToken?: string | undefined;
|
|
1308
|
+
}
|
|
1309
|
+
export interface Trigger {
|
|
1310
|
+
triggerId: string | undefined;
|
|
1311
|
+
agentSpaceId: string | undefined;
|
|
1312
|
+
type: string | undefined;
|
|
1313
|
+
condition: TriggerCondition | undefined;
|
|
1314
|
+
action: __DocumentType | undefined;
|
|
1315
|
+
status: string | undefined;
|
|
1316
|
+
createdAt: Date | undefined;
|
|
1317
|
+
updatedAt: Date | undefined;
|
|
1318
|
+
}
|
|
1319
|
+
export interface CreateTriggerResponse {
|
|
1320
|
+
trigger: Trigger | undefined;
|
|
1321
|
+
}
|
|
1281
1322
|
export interface MCPServerAuthorizationDiscoveryConfig {
|
|
1282
1323
|
returnToEndpoint: string | undefined;
|
|
1283
1324
|
}
|
|
@@ -1322,6 +1363,11 @@ export interface DeletePrivateConnectionOutput {
|
|
|
1322
1363
|
name: string | undefined;
|
|
1323
1364
|
status: PrivateConnectionStatus | undefined;
|
|
1324
1365
|
}
|
|
1366
|
+
export interface DeleteTriggerRequest {
|
|
1367
|
+
agentSpaceId: string | undefined;
|
|
1368
|
+
triggerId: string | undefined;
|
|
1369
|
+
}
|
|
1370
|
+
export interface DeleteTriggerResponse {}
|
|
1325
1371
|
export interface DeregisterServiceInput {
|
|
1326
1372
|
serviceId: string | undefined;
|
|
1327
1373
|
}
|
|
@@ -1417,6 +1463,13 @@ export interface Recommendation {
|
|
|
1417
1463
|
export interface GetRecommendationResponse {
|
|
1418
1464
|
recommendation: Recommendation | undefined;
|
|
1419
1465
|
}
|
|
1466
|
+
export interface GetTriggerRequest {
|
|
1467
|
+
agentSpaceId: string | undefined;
|
|
1468
|
+
triggerId: string | undefined;
|
|
1469
|
+
}
|
|
1470
|
+
export interface GetTriggerResponse {
|
|
1471
|
+
trigger: Trigger | undefined;
|
|
1472
|
+
}
|
|
1420
1473
|
export interface ListAssetFilesRequest {
|
|
1421
1474
|
agentSpaceId: string | undefined;
|
|
1422
1475
|
assetId: string | undefined;
|
|
@@ -1653,6 +1706,16 @@ export interface ListTagsForResourceRequest {
|
|
|
1653
1706
|
export interface ListTagsForResourceResponse {
|
|
1654
1707
|
tags: Record<string, string> | undefined;
|
|
1655
1708
|
}
|
|
1709
|
+
export interface ListTriggersRequest {
|
|
1710
|
+
agentSpaceId: string | undefined;
|
|
1711
|
+
status?: string | undefined;
|
|
1712
|
+
nextToken?: string | undefined;
|
|
1713
|
+
maxResults?: number | undefined;
|
|
1714
|
+
}
|
|
1715
|
+
export interface ListTriggersResponse {
|
|
1716
|
+
items: Trigger[] | undefined;
|
|
1717
|
+
nextToken?: string | undefined;
|
|
1718
|
+
}
|
|
1656
1719
|
export interface ListPrivateConnectionsInput {}
|
|
1657
1720
|
export interface PrivateConnectionSummary {
|
|
1658
1721
|
name: string | undefined;
|
|
@@ -2494,3 +2557,12 @@ export interface UpdateRecommendationRequest {
|
|
|
2494
2557
|
export interface UpdateRecommendationResponse {
|
|
2495
2558
|
recommendation: Recommendation | undefined;
|
|
2496
2559
|
}
|
|
2560
|
+
export interface UpdateTriggerRequest {
|
|
2561
|
+
agentSpaceId: string | undefined;
|
|
2562
|
+
triggerId: string | undefined;
|
|
2563
|
+
status?: string | undefined;
|
|
2564
|
+
clientToken?: string | undefined;
|
|
2565
|
+
}
|
|
2566
|
+
export interface UpdateTriggerResponse {
|
|
2567
|
+
trigger: Trigger | undefined;
|
|
2568
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListTriggersCommandInput,
|
|
4
|
+
ListTriggersCommandOutput,
|
|
5
|
+
} from "../commands/ListTriggersCommand";
|
|
6
|
+
import { DevOpsAgentPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListTriggers: (
|
|
8
|
+
config: DevOpsAgentPaginationConfiguration,
|
|
9
|
+
input: ListTriggersCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListTriggersCommandOutput>;
|
|
@@ -44,6 +44,8 @@ export declare var CreateChatRequest$: StaticStructureSchema;
|
|
|
44
44
|
export declare var CreateChatResponse$: StaticStructureSchema;
|
|
45
45
|
export declare var CreatePrivateConnectionInput$: StaticStructureSchema;
|
|
46
46
|
export declare var CreatePrivateConnectionOutput$: StaticStructureSchema;
|
|
47
|
+
export declare var CreateTriggerRequest$: StaticStructureSchema;
|
|
48
|
+
export declare var CreateTriggerResponse$: StaticStructureSchema;
|
|
47
49
|
export declare var DatadogServiceDetails$: StaticStructureSchema;
|
|
48
50
|
export declare var DeleteAgentSpaceInput$: StaticStructureSchema;
|
|
49
51
|
export declare var DeleteAgentSpaceOutput$: StaticStructureSchema;
|
|
@@ -53,6 +55,8 @@ export declare var DeleteAssetRequest$: StaticStructureSchema;
|
|
|
53
55
|
export declare var DeleteAssetResponse$: StaticStructureSchema;
|
|
54
56
|
export declare var DeletePrivateConnectionInput$: StaticStructureSchema;
|
|
55
57
|
export declare var DeletePrivateConnectionOutput$: StaticStructureSchema;
|
|
58
|
+
export declare var DeleteTriggerRequest$: StaticStructureSchema;
|
|
59
|
+
export declare var DeleteTriggerResponse$: StaticStructureSchema;
|
|
56
60
|
export declare var DeregisterServiceInput$: StaticStructureSchema;
|
|
57
61
|
export declare var DeregisterServiceOutput$: StaticStructureSchema;
|
|
58
62
|
export declare var DescribePrivateConnectionInput$: StaticStructureSchema;
|
|
@@ -89,6 +93,8 @@ export declare var GetRecommendationRequest$: StaticStructureSchema;
|
|
|
89
93
|
export declare var GetRecommendationResponse$: StaticStructureSchema;
|
|
90
94
|
export declare var GetServiceInput$: StaticStructureSchema;
|
|
91
95
|
export declare var GetServiceOutput$: StaticStructureSchema;
|
|
96
|
+
export declare var GetTriggerRequest$: StaticStructureSchema;
|
|
97
|
+
export declare var GetTriggerResponse$: StaticStructureSchema;
|
|
92
98
|
export declare var GitHubConfiguration$: StaticStructureSchema;
|
|
93
99
|
export declare var GitLabConfiguration$: StaticStructureSchema;
|
|
94
100
|
export declare var GitLabDetails$: StaticStructureSchema;
|
|
@@ -133,6 +139,8 @@ export declare var ListServicesInput$: StaticStructureSchema;
|
|
|
133
139
|
export declare var ListServicesOutput$: StaticStructureSchema;
|
|
134
140
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
135
141
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
142
|
+
export declare var ListTriggersRequest$: StaticStructureSchema;
|
|
143
|
+
export declare var ListTriggersResponse$: StaticStructureSchema;
|
|
136
144
|
export declare var ListWebhooksInput$: StaticStructureSchema;
|
|
137
145
|
export declare var ListWebhooksOutput$: StaticStructureSchema;
|
|
138
146
|
export declare var MCPServerAPIKeyConfig$: StaticStructureSchema;
|
|
@@ -175,6 +183,7 @@ export declare var RegisteredServiceNowDetails$: StaticStructureSchema;
|
|
|
175
183
|
export declare var RegisteredSlackServiceDetails$: StaticStructureSchema;
|
|
176
184
|
export declare var RegisterServiceInput$: StaticStructureSchema;
|
|
177
185
|
export declare var RegisterServiceOutput$: StaticStructureSchema;
|
|
186
|
+
export declare var ScheduleCondition$: StaticStructureSchema;
|
|
178
187
|
export declare var SelfManagedInput$: StaticStructureSchema;
|
|
179
188
|
export declare var SendMessageContentBlockDeltaEvent$: StaticStructureSchema;
|
|
180
189
|
export declare var SendMessageContentBlockStartEvent$: StaticStructureSchema;
|
|
@@ -203,6 +212,7 @@ export declare var TagResourceRequest$: StaticStructureSchema;
|
|
|
203
212
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
204
213
|
export declare var Task$: StaticStructureSchema;
|
|
205
214
|
export declare var TaskFilter$: StaticStructureSchema;
|
|
215
|
+
export declare var Trigger$: StaticStructureSchema;
|
|
206
216
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
207
217
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
208
218
|
export declare var UpdateAgentSpaceInput$: StaticStructureSchema;
|
|
@@ -223,6 +233,8 @@ export declare var UpdatePrivateConnectionCertificateInput$: StaticStructureSche
|
|
|
223
233
|
export declare var UpdatePrivateConnectionCertificateOutput$: StaticStructureSchema;
|
|
224
234
|
export declare var UpdateRecommendationRequest$: StaticStructureSchema;
|
|
225
235
|
export declare var UpdateRecommendationResponse$: StaticStructureSchema;
|
|
236
|
+
export declare var UpdateTriggerRequest$: StaticStructureSchema;
|
|
237
|
+
export declare var UpdateTriggerResponse$: StaticStructureSchema;
|
|
226
238
|
export declare var UsageMetric$: StaticStructureSchema;
|
|
227
239
|
export declare var UserReference$: StaticStructureSchema;
|
|
228
240
|
export declare var ValidateAwsAssociationsInput$: StaticStructureSchema;
|
|
@@ -246,6 +258,7 @@ export declare var SendMessageEvents$: StaticUnionSchema;
|
|
|
246
258
|
export declare var ServiceConfiguration$: StaticUnionSchema;
|
|
247
259
|
export declare var ServiceDetails$: StaticUnionSchema;
|
|
248
260
|
export declare var ServiceNowServiceAuthorizationConfig$: StaticUnionSchema;
|
|
261
|
+
export declare var TriggerCondition$: StaticUnionSchema;
|
|
249
262
|
export declare var UserMessageBlock$: StaticUnionSchema;
|
|
250
263
|
export declare var AssociateService$: StaticOperationSchema;
|
|
251
264
|
export declare var CreateAgentSpace$: StaticOperationSchema;
|
|
@@ -254,10 +267,12 @@ export declare var CreateAssetFile$: StaticOperationSchema;
|
|
|
254
267
|
export declare var CreateBacklogTask$: StaticOperationSchema;
|
|
255
268
|
export declare var CreateChat$: StaticOperationSchema;
|
|
256
269
|
export declare var CreatePrivateConnection$: StaticOperationSchema;
|
|
270
|
+
export declare var CreateTrigger$: StaticOperationSchema;
|
|
257
271
|
export declare var DeleteAgentSpace$: StaticOperationSchema;
|
|
258
272
|
export declare var DeleteAsset$: StaticOperationSchema;
|
|
259
273
|
export declare var DeleteAssetFile$: StaticOperationSchema;
|
|
260
274
|
export declare var DeletePrivateConnection$: StaticOperationSchema;
|
|
275
|
+
export declare var DeleteTrigger$: StaticOperationSchema;
|
|
261
276
|
export declare var DeregisterService$: StaticOperationSchema;
|
|
262
277
|
export declare var DescribePrivateConnection$: StaticOperationSchema;
|
|
263
278
|
export declare var DisableOperatorApp$: StaticOperationSchema;
|
|
@@ -273,6 +288,7 @@ export declare var GetBacklogTask$: StaticOperationSchema;
|
|
|
273
288
|
export declare var GetOperatorApp$: StaticOperationSchema;
|
|
274
289
|
export declare var GetRecommendation$: StaticOperationSchema;
|
|
275
290
|
export declare var GetService$: StaticOperationSchema;
|
|
291
|
+
export declare var GetTrigger$: StaticOperationSchema;
|
|
276
292
|
export declare var ListAgentSpaces$: StaticOperationSchema;
|
|
277
293
|
export declare var ListAssetFiles$: StaticOperationSchema;
|
|
278
294
|
export declare var ListAssets$: StaticOperationSchema;
|
|
@@ -289,6 +305,7 @@ export declare var ListPrivateConnections$: StaticOperationSchema;
|
|
|
289
305
|
export declare var ListRecommendations$: StaticOperationSchema;
|
|
290
306
|
export declare var ListServices$: StaticOperationSchema;
|
|
291
307
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
308
|
+
export declare var ListTriggers$: StaticOperationSchema;
|
|
292
309
|
export declare var ListWebhooks$: StaticOperationSchema;
|
|
293
310
|
export declare var RegisterService$: StaticOperationSchema;
|
|
294
311
|
export declare var SendMessage$: StaticOperationSchema;
|
|
@@ -303,4 +320,5 @@ export declare var UpdateGoal$: StaticOperationSchema;
|
|
|
303
320
|
export declare var UpdateOperatorAppIdpConfig$: StaticOperationSchema;
|
|
304
321
|
export declare var UpdatePrivateConnectionCertificate$: StaticOperationSchema;
|
|
305
322
|
export declare var UpdateRecommendation$: StaticOperationSchema;
|
|
323
|
+
export declare var UpdateTrigger$: StaticOperationSchema;
|
|
306
324
|
export declare var ValidateAwsAssociations$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-devops-agent",
|
|
3
3
|
"description": "AWS SDK for JavaScript Devops Agent Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1068.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|