@aws-sdk/client-devops-agent 3.1067.0 → 3.1069.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/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +298 -244
- package/dist-cjs/models/DevOpsAgentServiceException.js +4 -8
- package/dist-cjs/models/errors.js +21 -34
- package/dist-cjs/runtimeConfig.browser.js +24 -28
- package/dist-cjs/runtimeConfig.js +32 -36
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +776 -423
- 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 +8 -8
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsAgentClient";
|
|
4
|
+
import type { UpdateTriggerRequest, UpdateTriggerResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateTriggerCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateTriggerCommandInput extends UpdateTriggerRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateTriggerCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateTriggerCommandOutput extends UpdateTriggerResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateTriggerCommand_base: {
|
|
25
|
+
new (input: UpdateTriggerCommandInput): import("@smithy/core/client").CommandImpl<UpdateTriggerCommandInput, UpdateTriggerCommandOutput, DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UpdateTriggerCommandInput): import("@smithy/core/client").CommandImpl<UpdateTriggerCommandInput, UpdateTriggerCommandOutput, DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Updates the status of an existing Trigger</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { DevOpsAgentClient, UpdateTriggerCommand } from "@aws-sdk/client-devops-agent"; // ES Modules import
|
|
37
|
+
* // const { DevOpsAgentClient, UpdateTriggerCommand } = require("@aws-sdk/client-devops-agent"); // CommonJS import
|
|
38
|
+
* // import type { DevOpsAgentClientConfig } from "@aws-sdk/client-devops-agent";
|
|
39
|
+
* const config = {}; // type is DevOpsAgentClientConfig
|
|
40
|
+
* const client = new DevOpsAgentClient(config);
|
|
41
|
+
* const input = { // UpdateTriggerRequest
|
|
42
|
+
* agentSpaceId: "STRING_VALUE", // required
|
|
43
|
+
* triggerId: "STRING_VALUE", // required
|
|
44
|
+
* status: "STRING_VALUE",
|
|
45
|
+
* clientToken: "STRING_VALUE",
|
|
46
|
+
* };
|
|
47
|
+
* const command = new UpdateTriggerCommand(input);
|
|
48
|
+
* const response = await client.send(command);
|
|
49
|
+
* // { // UpdateTriggerResponse
|
|
50
|
+
* // trigger: { // Trigger
|
|
51
|
+
* // triggerId: "STRING_VALUE", // required
|
|
52
|
+
* // agentSpaceId: "STRING_VALUE", // required
|
|
53
|
+
* // type: "STRING_VALUE", // required
|
|
54
|
+
* // condition: { // TriggerCondition Union: only one key present
|
|
55
|
+
* // schedule: { // ScheduleCondition
|
|
56
|
+
* // expression: "STRING_VALUE", // required
|
|
57
|
+
* // },
|
|
58
|
+
* // },
|
|
59
|
+
* // action: "DOCUMENT_VALUE", // required
|
|
60
|
+
* // status: "STRING_VALUE", // required
|
|
61
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
62
|
+
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
63
|
+
* // },
|
|
64
|
+
* // };
|
|
65
|
+
*
|
|
66
|
+
* ```
|
|
67
|
+
*
|
|
68
|
+
* @param UpdateTriggerCommandInput - {@link UpdateTriggerCommandInput}
|
|
69
|
+
* @returns {@link UpdateTriggerCommandOutput}
|
|
70
|
+
* @see {@link UpdateTriggerCommandInput} for command's `input` shape.
|
|
71
|
+
* @see {@link UpdateTriggerCommandOutput} for command's `response` shape.
|
|
72
|
+
* @see {@link DevOpsAgentClientResolvedConfig | config} for DevOpsAgentClient's `config` shape.
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
75
|
+
* <p>Access to the requested resource is denied due to insufficient permissions.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link InternalServerException} (server fault)
|
|
78
|
+
* <p>This exception is thrown when an unexpected error occurs in the processing of a request.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
81
|
+
* <p>The requested resource could not be found.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
84
|
+
* <p>The request was throttled due to too many requests. Please slow down and try again.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link ValidationException} (client fault)
|
|
87
|
+
* <p>The input fails to satisfy the constraints specified by the service.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link ConflictException} (client fault)
|
|
90
|
+
* <p>The request conflicts with the current state of the resource.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link ContentSizeExceededException} (client fault)
|
|
93
|
+
* <p>This exception is thrown when the content size exceeds the allowed limit.</p>
|
|
94
|
+
*
|
|
95
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
96
|
+
* <p>One or more parameters provided in the request are invalid.</p>
|
|
97
|
+
*
|
|
98
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
99
|
+
* <p>The request would exceed the service quota limit.</p>
|
|
100
|
+
*
|
|
101
|
+
* @throws {@link DevOpsAgentServiceException}
|
|
102
|
+
* <p>Base exception class for all service exceptions from DevOpsAgent service.</p>
|
|
103
|
+
*
|
|
104
|
+
*
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
export declare class UpdateTriggerCommand extends UpdateTriggerCommand_base {
|
|
108
|
+
/** @internal type navigation helper, not in runtime. */
|
|
109
|
+
protected static __types: {
|
|
110
|
+
api: {
|
|
111
|
+
input: UpdateTriggerRequest;
|
|
112
|
+
output: UpdateTriggerResponse;
|
|
113
|
+
};
|
|
114
|
+
sdk: {
|
|
115
|
+
input: UpdateTriggerCommandInput;
|
|
116
|
+
output: UpdateTriggerCommandOutput;
|
|
117
|
+
};
|
|
118
|
+
};
|
|
119
|
+
}
|
|
@@ -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";
|
|
@@ -2994,6 +2994,141 @@ export interface CreatePrivateConnectionOutput {
|
|
|
2994
2994
|
*/
|
|
2995
2995
|
tags?: Record<string, string> | undefined;
|
|
2996
2996
|
}
|
|
2997
|
+
/**
|
|
2998
|
+
* <p>Schedule-based condition that fires the Trigger</p>
|
|
2999
|
+
* @public
|
|
3000
|
+
*/
|
|
3001
|
+
export interface ScheduleCondition {
|
|
3002
|
+
/**
|
|
3003
|
+
* <p>The schedule expression</p>
|
|
3004
|
+
* @public
|
|
3005
|
+
*/
|
|
3006
|
+
expression: string | undefined;
|
|
3007
|
+
}
|
|
3008
|
+
/**
|
|
3009
|
+
* <p>Defines the firing condition for a Trigger</p>
|
|
3010
|
+
* @public
|
|
3011
|
+
*/
|
|
3012
|
+
export type TriggerCondition = TriggerCondition.ScheduleMember | TriggerCondition.$UnknownMember;
|
|
3013
|
+
/**
|
|
3014
|
+
* @public
|
|
3015
|
+
*/
|
|
3016
|
+
export declare namespace TriggerCondition {
|
|
3017
|
+
/**
|
|
3018
|
+
* <p>Time-based firing condition</p>
|
|
3019
|
+
* @public
|
|
3020
|
+
*/
|
|
3021
|
+
interface ScheduleMember {
|
|
3022
|
+
schedule: ScheduleCondition;
|
|
3023
|
+
$unknown?: never;
|
|
3024
|
+
}
|
|
3025
|
+
/**
|
|
3026
|
+
* @public
|
|
3027
|
+
*/
|
|
3028
|
+
interface $UnknownMember {
|
|
3029
|
+
schedule?: never;
|
|
3030
|
+
$unknown: [string, any];
|
|
3031
|
+
}
|
|
3032
|
+
/**
|
|
3033
|
+
* @deprecated unused in schema-serde mode.
|
|
3034
|
+
*
|
|
3035
|
+
*/
|
|
3036
|
+
interface Visitor<T> {
|
|
3037
|
+
schedule: (value: ScheduleCondition) => T;
|
|
3038
|
+
_: (name: string, value: any) => T;
|
|
3039
|
+
}
|
|
3040
|
+
}
|
|
3041
|
+
/**
|
|
3042
|
+
* @public
|
|
3043
|
+
*/
|
|
3044
|
+
export interface CreateTriggerRequest {
|
|
3045
|
+
/**
|
|
3046
|
+
* <p>Unique identifier for an agent space (allows alphanumeric characters and hyphens; 1-64 characters)</p>
|
|
3047
|
+
* @public
|
|
3048
|
+
*/
|
|
3049
|
+
agentSpaceId: string | undefined;
|
|
3050
|
+
/**
|
|
3051
|
+
* <p>How the new Trigger fires</p>
|
|
3052
|
+
* @public
|
|
3053
|
+
*/
|
|
3054
|
+
type: string | undefined;
|
|
3055
|
+
/**
|
|
3056
|
+
* <p>The condition that fires the new Trigger</p>
|
|
3057
|
+
* @public
|
|
3058
|
+
*/
|
|
3059
|
+
condition: TriggerCondition | undefined;
|
|
3060
|
+
/**
|
|
3061
|
+
* <p>The action the new Trigger performs when it fires</p>
|
|
3062
|
+
* @public
|
|
3063
|
+
*/
|
|
3064
|
+
action: __DocumentType | undefined;
|
|
3065
|
+
/**
|
|
3066
|
+
* <p>The initial status of the Trigger</p>
|
|
3067
|
+
* @public
|
|
3068
|
+
*/
|
|
3069
|
+
status?: string | undefined;
|
|
3070
|
+
/**
|
|
3071
|
+
* <p>A unique, case-sensitive identifier used for idempotent Trigger creation</p>
|
|
3072
|
+
* @public
|
|
3073
|
+
*/
|
|
3074
|
+
clientToken?: string | undefined;
|
|
3075
|
+
}
|
|
3076
|
+
/**
|
|
3077
|
+
* <p>A Trigger fires on a schedule and invokes an agent</p>
|
|
3078
|
+
* @public
|
|
3079
|
+
*/
|
|
3080
|
+
export interface Trigger {
|
|
3081
|
+
/**
|
|
3082
|
+
* <p>Generic resource identifier (allows alphanumeric characters, hyphens, and underscores; 1-128 characters)</p>
|
|
3083
|
+
* @public
|
|
3084
|
+
*/
|
|
3085
|
+
triggerId: string | undefined;
|
|
3086
|
+
/**
|
|
3087
|
+
* <p>Unique identifier for an agent space (allows alphanumeric characters and hyphens; 1-64 characters)</p>
|
|
3088
|
+
* @public
|
|
3089
|
+
*/
|
|
3090
|
+
agentSpaceId: string | undefined;
|
|
3091
|
+
/**
|
|
3092
|
+
* <p>How this Trigger fires</p>
|
|
3093
|
+
* @public
|
|
3094
|
+
*/
|
|
3095
|
+
type: string | undefined;
|
|
3096
|
+
/**
|
|
3097
|
+
* <p>The condition that fires this Trigger</p>
|
|
3098
|
+
* @public
|
|
3099
|
+
*/
|
|
3100
|
+
condition: TriggerCondition | undefined;
|
|
3101
|
+
/**
|
|
3102
|
+
* <p>The action this Trigger performs when it fires</p>
|
|
3103
|
+
* @public
|
|
3104
|
+
*/
|
|
3105
|
+
action: __DocumentType | undefined;
|
|
3106
|
+
/**
|
|
3107
|
+
* <p>The status of this Trigger</p>
|
|
3108
|
+
* @public
|
|
3109
|
+
*/
|
|
3110
|
+
status: string | undefined;
|
|
3111
|
+
/**
|
|
3112
|
+
* <p>Timestamp when this Trigger was created</p>
|
|
3113
|
+
* @public
|
|
3114
|
+
*/
|
|
3115
|
+
createdAt: Date | undefined;
|
|
3116
|
+
/**
|
|
3117
|
+
* <p>Timestamp when this Trigger was last updated</p>
|
|
3118
|
+
* @public
|
|
3119
|
+
*/
|
|
3120
|
+
updatedAt: Date | undefined;
|
|
3121
|
+
}
|
|
3122
|
+
/**
|
|
3123
|
+
* @public
|
|
3124
|
+
*/
|
|
3125
|
+
export interface CreateTriggerResponse {
|
|
3126
|
+
/**
|
|
3127
|
+
* <p>The Trigger object</p>
|
|
3128
|
+
* @public
|
|
3129
|
+
*/
|
|
3130
|
+
trigger: Trigger | undefined;
|
|
3131
|
+
}
|
|
2997
3132
|
/**
|
|
2998
3133
|
* <p>Authorization discovery configuration for MCP server.</p>
|
|
2999
3134
|
* @public
|
|
@@ -3140,6 +3275,26 @@ export interface DeletePrivateConnectionOutput {
|
|
|
3140
3275
|
*/
|
|
3141
3276
|
status: PrivateConnectionStatus | undefined;
|
|
3142
3277
|
}
|
|
3278
|
+
/**
|
|
3279
|
+
* @public
|
|
3280
|
+
*/
|
|
3281
|
+
export interface DeleteTriggerRequest {
|
|
3282
|
+
/**
|
|
3283
|
+
* <p>Unique identifier for an agent space (allows alphanumeric characters and hyphens; 1-64 characters)</p>
|
|
3284
|
+
* @public
|
|
3285
|
+
*/
|
|
3286
|
+
agentSpaceId: string | undefined;
|
|
3287
|
+
/**
|
|
3288
|
+
* <p>Generic resource identifier (allows alphanumeric characters, hyphens, and underscores; 1-128 characters)</p>
|
|
3289
|
+
* @public
|
|
3290
|
+
*/
|
|
3291
|
+
triggerId: string | undefined;
|
|
3292
|
+
}
|
|
3293
|
+
/**
|
|
3294
|
+
* @public
|
|
3295
|
+
*/
|
|
3296
|
+
export interface DeleteTriggerResponse {
|
|
3297
|
+
}
|
|
3143
3298
|
/**
|
|
3144
3299
|
* <p>Input for deregistering a service.</p>
|
|
3145
3300
|
* @public
|
|
@@ -3547,6 +3702,31 @@ export interface GetRecommendationResponse {
|
|
|
3547
3702
|
*/
|
|
3548
3703
|
recommendation: Recommendation | undefined;
|
|
3549
3704
|
}
|
|
3705
|
+
/**
|
|
3706
|
+
* @public
|
|
3707
|
+
*/
|
|
3708
|
+
export interface GetTriggerRequest {
|
|
3709
|
+
/**
|
|
3710
|
+
* <p>Unique identifier for an agent space (allows alphanumeric characters and hyphens; 1-64 characters)</p>
|
|
3711
|
+
* @public
|
|
3712
|
+
*/
|
|
3713
|
+
agentSpaceId: string | undefined;
|
|
3714
|
+
/**
|
|
3715
|
+
* <p>Generic resource identifier (allows alphanumeric characters, hyphens, and underscores; 1-128 characters)</p>
|
|
3716
|
+
* @public
|
|
3717
|
+
*/
|
|
3718
|
+
triggerId: string | undefined;
|
|
3719
|
+
}
|
|
3720
|
+
/**
|
|
3721
|
+
* @public
|
|
3722
|
+
*/
|
|
3723
|
+
export interface GetTriggerResponse {
|
|
3724
|
+
/**
|
|
3725
|
+
* <p>The Trigger object</p>
|
|
3726
|
+
* @public
|
|
3727
|
+
*/
|
|
3728
|
+
trigger: Trigger | undefined;
|
|
3729
|
+
}
|
|
3550
3730
|
/**
|
|
3551
3731
|
* <p>Request structure for listing asset files</p>
|
|
3552
3732
|
* @public
|
|
@@ -4429,6 +4609,46 @@ export interface ListTagsForResourceResponse {
|
|
|
4429
4609
|
*/
|
|
4430
4610
|
tags: Record<string, string> | undefined;
|
|
4431
4611
|
}
|
|
4612
|
+
/**
|
|
4613
|
+
* @public
|
|
4614
|
+
*/
|
|
4615
|
+
export interface ListTriggersRequest {
|
|
4616
|
+
/**
|
|
4617
|
+
* <p>Unique identifier for an agent space (allows alphanumeric characters and hyphens; 1-64 characters)</p>
|
|
4618
|
+
* @public
|
|
4619
|
+
*/
|
|
4620
|
+
agentSpaceId: string | undefined;
|
|
4621
|
+
/**
|
|
4622
|
+
* <p>Filter results to Triggers in this status</p>
|
|
4623
|
+
* @public
|
|
4624
|
+
*/
|
|
4625
|
+
status?: string | undefined;
|
|
4626
|
+
/**
|
|
4627
|
+
* <p>Pagination token from a previous response to retrieve the next page of results</p>
|
|
4628
|
+
* @public
|
|
4629
|
+
*/
|
|
4630
|
+
nextToken?: string | undefined;
|
|
4631
|
+
/**
|
|
4632
|
+
* <p>The maximum number of results to return in a single response</p>
|
|
4633
|
+
* @public
|
|
4634
|
+
*/
|
|
4635
|
+
maxResults?: number | undefined;
|
|
4636
|
+
}
|
|
4637
|
+
/**
|
|
4638
|
+
* @public
|
|
4639
|
+
*/
|
|
4640
|
+
export interface ListTriggersResponse {
|
|
4641
|
+
/**
|
|
4642
|
+
* <p>The list of Triggers</p>
|
|
4643
|
+
* @public
|
|
4644
|
+
*/
|
|
4645
|
+
items: Trigger[] | undefined;
|
|
4646
|
+
/**
|
|
4647
|
+
* <p>Pagination token for list operations (1-2048 characters)</p>
|
|
4648
|
+
* @public
|
|
4649
|
+
*/
|
|
4650
|
+
nextToken?: string | undefined;
|
|
4651
|
+
}
|
|
4432
4652
|
/**
|
|
4433
4653
|
* <p>Input for listing Private Connections in the caller's account.</p>
|
|
4434
4654
|
* @public
|
|
@@ -6484,3 +6704,38 @@ export interface UpdateRecommendationResponse {
|
|
|
6484
6704
|
*/
|
|
6485
6705
|
recommendation: Recommendation | undefined;
|
|
6486
6706
|
}
|
|
6707
|
+
/**
|
|
6708
|
+
* @public
|
|
6709
|
+
*/
|
|
6710
|
+
export interface UpdateTriggerRequest {
|
|
6711
|
+
/**
|
|
6712
|
+
* <p>Unique identifier for an agent space (allows alphanumeric characters and hyphens; 1-64 characters)</p>
|
|
6713
|
+
* @public
|
|
6714
|
+
*/
|
|
6715
|
+
agentSpaceId: string | undefined;
|
|
6716
|
+
/**
|
|
6717
|
+
* <p>Generic resource identifier (allows alphanumeric characters, hyphens, and underscores; 1-128 characters)</p>
|
|
6718
|
+
* @public
|
|
6719
|
+
*/
|
|
6720
|
+
triggerId: string | undefined;
|
|
6721
|
+
/**
|
|
6722
|
+
* <p>The new status for the Trigger</p>
|
|
6723
|
+
* @public
|
|
6724
|
+
*/
|
|
6725
|
+
status?: string | undefined;
|
|
6726
|
+
/**
|
|
6727
|
+
* <p>A unique, case-sensitive identifier used for idempotent Trigger update</p>
|
|
6728
|
+
* @public
|
|
6729
|
+
*/
|
|
6730
|
+
clientToken?: string | undefined;
|
|
6731
|
+
}
|
|
6732
|
+
/**
|
|
6733
|
+
* @public
|
|
6734
|
+
*/
|
|
6735
|
+
export interface UpdateTriggerResponse {
|
|
6736
|
+
/**
|
|
6737
|
+
* <p>The Trigger object</p>
|
|
6738
|
+
* @public
|
|
6739
|
+
*/
|
|
6740
|
+
trigger: Trigger | undefined;
|
|
6741
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListTriggersCommandInput, ListTriggersCommandOutput } from "../commands/ListTriggersCommand";
|
|
3
|
+
import type { DevOpsAgentPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListTriggers: (config: DevOpsAgentPaginationConfiguration, input: ListTriggersCommandInput, ...rest: any[]) => 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;
|