@aws-sdk/client-devops-agent 3.1066.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
|
@@ -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;
|
|
@@ -31,6 +31,10 @@ import {
|
|
|
31
31
|
CreatePrivateConnectionCommandInput,
|
|
32
32
|
CreatePrivateConnectionCommandOutput,
|
|
33
33
|
} from "./commands/CreatePrivateConnectionCommand";
|
|
34
|
+
import {
|
|
35
|
+
CreateTriggerCommandInput,
|
|
36
|
+
CreateTriggerCommandOutput,
|
|
37
|
+
} from "./commands/CreateTriggerCommand";
|
|
34
38
|
import {
|
|
35
39
|
DeleteAgentSpaceCommandInput,
|
|
36
40
|
DeleteAgentSpaceCommandOutput,
|
|
@@ -47,6 +51,10 @@ import {
|
|
|
47
51
|
DeletePrivateConnectionCommandInput,
|
|
48
52
|
DeletePrivateConnectionCommandOutput,
|
|
49
53
|
} from "./commands/DeletePrivateConnectionCommand";
|
|
54
|
+
import {
|
|
55
|
+
DeleteTriggerCommandInput,
|
|
56
|
+
DeleteTriggerCommandOutput,
|
|
57
|
+
} from "./commands/DeleteTriggerCommand";
|
|
50
58
|
import {
|
|
51
59
|
DeregisterServiceCommandInput,
|
|
52
60
|
DeregisterServiceCommandOutput,
|
|
@@ -107,6 +115,10 @@ import {
|
|
|
107
115
|
GetServiceCommandInput,
|
|
108
116
|
GetServiceCommandOutput,
|
|
109
117
|
} from "./commands/GetServiceCommand";
|
|
118
|
+
import {
|
|
119
|
+
GetTriggerCommandInput,
|
|
120
|
+
GetTriggerCommandOutput,
|
|
121
|
+
} from "./commands/GetTriggerCommand";
|
|
110
122
|
import {
|
|
111
123
|
ListAgentSpacesCommandInput,
|
|
112
124
|
ListAgentSpacesCommandOutput,
|
|
@@ -171,6 +183,10 @@ import {
|
|
|
171
183
|
ListTagsForResourceCommandInput,
|
|
172
184
|
ListTagsForResourceCommandOutput,
|
|
173
185
|
} from "./commands/ListTagsForResourceCommand";
|
|
186
|
+
import {
|
|
187
|
+
ListTriggersCommandInput,
|
|
188
|
+
ListTriggersCommandOutput,
|
|
189
|
+
} from "./commands/ListTriggersCommand";
|
|
174
190
|
import {
|
|
175
191
|
ListWebhooksCommandInput,
|
|
176
192
|
ListWebhooksCommandOutput,
|
|
@@ -227,6 +243,10 @@ import {
|
|
|
227
243
|
UpdateRecommendationCommandInput,
|
|
228
244
|
UpdateRecommendationCommandOutput,
|
|
229
245
|
} from "./commands/UpdateRecommendationCommand";
|
|
246
|
+
import {
|
|
247
|
+
UpdateTriggerCommandInput,
|
|
248
|
+
UpdateTriggerCommandOutput,
|
|
249
|
+
} from "./commands/UpdateTriggerCommand";
|
|
230
250
|
import {
|
|
231
251
|
ValidateAwsAssociationsCommandInput,
|
|
232
252
|
ValidateAwsAssociationsCommandOutput,
|
|
@@ -324,6 +344,19 @@ export interface DevOpsAgent {
|
|
|
324
344
|
options: __HttpHandlerOptions,
|
|
325
345
|
cb: (err: any, data?: CreatePrivateConnectionCommandOutput) => void
|
|
326
346
|
): void;
|
|
347
|
+
createTrigger(
|
|
348
|
+
args: CreateTriggerCommandInput,
|
|
349
|
+
options?: __HttpHandlerOptions
|
|
350
|
+
): Promise<CreateTriggerCommandOutput>;
|
|
351
|
+
createTrigger(
|
|
352
|
+
args: CreateTriggerCommandInput,
|
|
353
|
+
cb: (err: any, data?: CreateTriggerCommandOutput) => void
|
|
354
|
+
): void;
|
|
355
|
+
createTrigger(
|
|
356
|
+
args: CreateTriggerCommandInput,
|
|
357
|
+
options: __HttpHandlerOptions,
|
|
358
|
+
cb: (err: any, data?: CreateTriggerCommandOutput) => void
|
|
359
|
+
): void;
|
|
327
360
|
deleteAgentSpace(
|
|
328
361
|
args: DeleteAgentSpaceCommandInput,
|
|
329
362
|
options?: __HttpHandlerOptions
|
|
@@ -376,6 +409,19 @@ export interface DevOpsAgent {
|
|
|
376
409
|
options: __HttpHandlerOptions,
|
|
377
410
|
cb: (err: any, data?: DeletePrivateConnectionCommandOutput) => void
|
|
378
411
|
): void;
|
|
412
|
+
deleteTrigger(
|
|
413
|
+
args: DeleteTriggerCommandInput,
|
|
414
|
+
options?: __HttpHandlerOptions
|
|
415
|
+
): Promise<DeleteTriggerCommandOutput>;
|
|
416
|
+
deleteTrigger(
|
|
417
|
+
args: DeleteTriggerCommandInput,
|
|
418
|
+
cb: (err: any, data?: DeleteTriggerCommandOutput) => void
|
|
419
|
+
): void;
|
|
420
|
+
deleteTrigger(
|
|
421
|
+
args: DeleteTriggerCommandInput,
|
|
422
|
+
options: __HttpHandlerOptions,
|
|
423
|
+
cb: (err: any, data?: DeleteTriggerCommandOutput) => void
|
|
424
|
+
): void;
|
|
379
425
|
deregisterService(
|
|
380
426
|
args: DeregisterServiceCommandInput,
|
|
381
427
|
options?: __HttpHandlerOptions
|
|
@@ -572,6 +618,19 @@ export interface DevOpsAgent {
|
|
|
572
618
|
options: __HttpHandlerOptions,
|
|
573
619
|
cb: (err: any, data?: GetServiceCommandOutput) => void
|
|
574
620
|
): void;
|
|
621
|
+
getTrigger(
|
|
622
|
+
args: GetTriggerCommandInput,
|
|
623
|
+
options?: __HttpHandlerOptions
|
|
624
|
+
): Promise<GetTriggerCommandOutput>;
|
|
625
|
+
getTrigger(
|
|
626
|
+
args: GetTriggerCommandInput,
|
|
627
|
+
cb: (err: any, data?: GetTriggerCommandOutput) => void
|
|
628
|
+
): void;
|
|
629
|
+
getTrigger(
|
|
630
|
+
args: GetTriggerCommandInput,
|
|
631
|
+
options: __HttpHandlerOptions,
|
|
632
|
+
cb: (err: any, data?: GetTriggerCommandOutput) => void
|
|
633
|
+
): void;
|
|
575
634
|
listAgentSpaces(): Promise<ListAgentSpacesCommandOutput>;
|
|
576
635
|
listAgentSpaces(
|
|
577
636
|
args: ListAgentSpacesCommandInput,
|
|
@@ -784,6 +843,19 @@ export interface DevOpsAgent {
|
|
|
784
843
|
options: __HttpHandlerOptions,
|
|
785
844
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
786
845
|
): void;
|
|
846
|
+
listTriggers(
|
|
847
|
+
args: ListTriggersCommandInput,
|
|
848
|
+
options?: __HttpHandlerOptions
|
|
849
|
+
): Promise<ListTriggersCommandOutput>;
|
|
850
|
+
listTriggers(
|
|
851
|
+
args: ListTriggersCommandInput,
|
|
852
|
+
cb: (err: any, data?: ListTriggersCommandOutput) => void
|
|
853
|
+
): void;
|
|
854
|
+
listTriggers(
|
|
855
|
+
args: ListTriggersCommandInput,
|
|
856
|
+
options: __HttpHandlerOptions,
|
|
857
|
+
cb: (err: any, data?: ListTriggersCommandOutput) => void
|
|
858
|
+
): void;
|
|
787
859
|
listWebhooks(
|
|
788
860
|
args: ListWebhooksCommandInput,
|
|
789
861
|
options?: __HttpHandlerOptions
|
|
@@ -972,6 +1044,19 @@ export interface DevOpsAgent {
|
|
|
972
1044
|
options: __HttpHandlerOptions,
|
|
973
1045
|
cb: (err: any, data?: UpdateRecommendationCommandOutput) => void
|
|
974
1046
|
): void;
|
|
1047
|
+
updateTrigger(
|
|
1048
|
+
args: UpdateTriggerCommandInput,
|
|
1049
|
+
options?: __HttpHandlerOptions
|
|
1050
|
+
): Promise<UpdateTriggerCommandOutput>;
|
|
1051
|
+
updateTrigger(
|
|
1052
|
+
args: UpdateTriggerCommandInput,
|
|
1053
|
+
cb: (err: any, data?: UpdateTriggerCommandOutput) => void
|
|
1054
|
+
): void;
|
|
1055
|
+
updateTrigger(
|
|
1056
|
+
args: UpdateTriggerCommandInput,
|
|
1057
|
+
options: __HttpHandlerOptions,
|
|
1058
|
+
cb: (err: any, data?: UpdateTriggerCommandOutput) => void
|
|
1059
|
+
): void;
|
|
975
1060
|
validateAwsAssociations(
|
|
976
1061
|
args: ValidateAwsAssociationsCommandInput,
|
|
977
1062
|
options?: __HttpHandlerOptions
|
|
@@ -1062,6 +1147,13 @@ export interface DevOpsAgent {
|
|
|
1062
1147
|
Exclude<keyof PaginationConfiguration, "client">
|
|
1063
1148
|
>
|
|
1064
1149
|
): Paginator<ListServicesCommandOutput>;
|
|
1150
|
+
paginateListTriggers(
|
|
1151
|
+
args: ListTriggersCommandInput,
|
|
1152
|
+
paginationConfig?: Pick<
|
|
1153
|
+
PaginationConfiguration,
|
|
1154
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1155
|
+
>
|
|
1156
|
+
): Paginator<ListTriggersCommandOutput>;
|
|
1065
1157
|
}
|
|
1066
1158
|
export declare class DevOpsAgent
|
|
1067
1159
|
extends DevOpsAgentClient
|
|
@@ -69,6 +69,10 @@ import {
|
|
|
69
69
|
CreatePrivateConnectionCommandInput,
|
|
70
70
|
CreatePrivateConnectionCommandOutput,
|
|
71
71
|
} from "./commands/CreatePrivateConnectionCommand";
|
|
72
|
+
import {
|
|
73
|
+
CreateTriggerCommandInput,
|
|
74
|
+
CreateTriggerCommandOutput,
|
|
75
|
+
} from "./commands/CreateTriggerCommand";
|
|
72
76
|
import {
|
|
73
77
|
DeleteAgentSpaceCommandInput,
|
|
74
78
|
DeleteAgentSpaceCommandOutput,
|
|
@@ -85,6 +89,10 @@ import {
|
|
|
85
89
|
DeletePrivateConnectionCommandInput,
|
|
86
90
|
DeletePrivateConnectionCommandOutput,
|
|
87
91
|
} from "./commands/DeletePrivateConnectionCommand";
|
|
92
|
+
import {
|
|
93
|
+
DeleteTriggerCommandInput,
|
|
94
|
+
DeleteTriggerCommandOutput,
|
|
95
|
+
} from "./commands/DeleteTriggerCommand";
|
|
88
96
|
import {
|
|
89
97
|
DeregisterServiceCommandInput,
|
|
90
98
|
DeregisterServiceCommandOutput,
|
|
@@ -145,6 +153,10 @@ import {
|
|
|
145
153
|
GetServiceCommandInput,
|
|
146
154
|
GetServiceCommandOutput,
|
|
147
155
|
} from "./commands/GetServiceCommand";
|
|
156
|
+
import {
|
|
157
|
+
GetTriggerCommandInput,
|
|
158
|
+
GetTriggerCommandOutput,
|
|
159
|
+
} from "./commands/GetTriggerCommand";
|
|
148
160
|
import {
|
|
149
161
|
ListAgentSpacesCommandInput,
|
|
150
162
|
ListAgentSpacesCommandOutput,
|
|
@@ -209,6 +221,10 @@ import {
|
|
|
209
221
|
ListTagsForResourceCommandInput,
|
|
210
222
|
ListTagsForResourceCommandOutput,
|
|
211
223
|
} from "./commands/ListTagsForResourceCommand";
|
|
224
|
+
import {
|
|
225
|
+
ListTriggersCommandInput,
|
|
226
|
+
ListTriggersCommandOutput,
|
|
227
|
+
} from "./commands/ListTriggersCommand";
|
|
212
228
|
import {
|
|
213
229
|
ListWebhooksCommandInput,
|
|
214
230
|
ListWebhooksCommandOutput,
|
|
@@ -265,6 +281,10 @@ import {
|
|
|
265
281
|
UpdateRecommendationCommandInput,
|
|
266
282
|
UpdateRecommendationCommandOutput,
|
|
267
283
|
} from "./commands/UpdateRecommendationCommand";
|
|
284
|
+
import {
|
|
285
|
+
UpdateTriggerCommandInput,
|
|
286
|
+
UpdateTriggerCommandOutput,
|
|
287
|
+
} from "./commands/UpdateTriggerCommand";
|
|
268
288
|
import {
|
|
269
289
|
ValidateAwsAssociationsCommandInput,
|
|
270
290
|
ValidateAwsAssociationsCommandOutput,
|
|
@@ -284,10 +304,12 @@ export type ServiceInputTypes =
|
|
|
284
304
|
| CreateBacklogTaskCommandInput
|
|
285
305
|
| CreateChatCommandInput
|
|
286
306
|
| CreatePrivateConnectionCommandInput
|
|
307
|
+
| CreateTriggerCommandInput
|
|
287
308
|
| DeleteAgentSpaceCommandInput
|
|
288
309
|
| DeleteAssetCommandInput
|
|
289
310
|
| DeleteAssetFileCommandInput
|
|
290
311
|
| DeletePrivateConnectionCommandInput
|
|
312
|
+
| DeleteTriggerCommandInput
|
|
291
313
|
| DeregisterServiceCommandInput
|
|
292
314
|
| DescribePrivateConnectionCommandInput
|
|
293
315
|
| DisableOperatorAppCommandInput
|
|
@@ -303,6 +325,7 @@ export type ServiceInputTypes =
|
|
|
303
325
|
| GetOperatorAppCommandInput
|
|
304
326
|
| GetRecommendationCommandInput
|
|
305
327
|
| GetServiceCommandInput
|
|
328
|
+
| GetTriggerCommandInput
|
|
306
329
|
| ListAgentSpacesCommandInput
|
|
307
330
|
| ListAssetFilesCommandInput
|
|
308
331
|
| ListAssetTypesCommandInput
|
|
@@ -319,6 +342,7 @@ export type ServiceInputTypes =
|
|
|
319
342
|
| ListRecommendationsCommandInput
|
|
320
343
|
| ListServicesCommandInput
|
|
321
344
|
| ListTagsForResourceCommandInput
|
|
345
|
+
| ListTriggersCommandInput
|
|
322
346
|
| ListWebhooksCommandInput
|
|
323
347
|
| RegisterServiceCommandInput
|
|
324
348
|
| SendMessageCommandInput
|
|
@@ -333,6 +357,7 @@ export type ServiceInputTypes =
|
|
|
333
357
|
| UpdateOperatorAppIdpConfigCommandInput
|
|
334
358
|
| UpdatePrivateConnectionCertificateCommandInput
|
|
335
359
|
| UpdateRecommendationCommandInput
|
|
360
|
+
| UpdateTriggerCommandInput
|
|
336
361
|
| ValidateAwsAssociationsCommandInput;
|
|
337
362
|
export type ServiceOutputTypes =
|
|
338
363
|
| AssociateServiceCommandOutput
|
|
@@ -342,10 +367,12 @@ export type ServiceOutputTypes =
|
|
|
342
367
|
| CreateBacklogTaskCommandOutput
|
|
343
368
|
| CreateChatCommandOutput
|
|
344
369
|
| CreatePrivateConnectionCommandOutput
|
|
370
|
+
| CreateTriggerCommandOutput
|
|
345
371
|
| DeleteAgentSpaceCommandOutput
|
|
346
372
|
| DeleteAssetCommandOutput
|
|
347
373
|
| DeleteAssetFileCommandOutput
|
|
348
374
|
| DeletePrivateConnectionCommandOutput
|
|
375
|
+
| DeleteTriggerCommandOutput
|
|
349
376
|
| DeregisterServiceCommandOutput
|
|
350
377
|
| DescribePrivateConnectionCommandOutput
|
|
351
378
|
| DisableOperatorAppCommandOutput
|
|
@@ -361,6 +388,7 @@ export type ServiceOutputTypes =
|
|
|
361
388
|
| GetOperatorAppCommandOutput
|
|
362
389
|
| GetRecommendationCommandOutput
|
|
363
390
|
| GetServiceCommandOutput
|
|
391
|
+
| GetTriggerCommandOutput
|
|
364
392
|
| ListAgentSpacesCommandOutput
|
|
365
393
|
| ListAssetFilesCommandOutput
|
|
366
394
|
| ListAssetTypesCommandOutput
|
|
@@ -377,6 +405,7 @@ export type ServiceOutputTypes =
|
|
|
377
405
|
| ListRecommendationsCommandOutput
|
|
378
406
|
| ListServicesCommandOutput
|
|
379
407
|
| ListTagsForResourceCommandOutput
|
|
408
|
+
| ListTriggersCommandOutput
|
|
380
409
|
| ListWebhooksCommandOutput
|
|
381
410
|
| RegisterServiceCommandOutput
|
|
382
411
|
| SendMessageCommandOutput
|
|
@@ -391,6 +420,7 @@ export type ServiceOutputTypes =
|
|
|
391
420
|
| UpdateOperatorAppIdpConfigCommandOutput
|
|
392
421
|
| UpdatePrivateConnectionCertificateCommandOutput
|
|
393
422
|
| UpdateRecommendationCommandOutput
|
|
423
|
+
| UpdateTriggerCommandOutput
|
|
394
424
|
| ValidateAwsAssociationsCommandOutput;
|
|
395
425
|
export interface ClientDefaults
|
|
396
426
|
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|