@aws-sdk/client-devops-agent 3.1063.0 → 3.1065.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 +92 -1
- package/dist-cjs/index.js +204 -0
- package/dist-cjs/schemas/schemas_0.js +375 -77
- package/dist-es/DevOpsAgent.js +34 -0
- package/dist-es/commands/CreateAssetCommand.js +16 -0
- package/dist-es/commands/CreateAssetFileCommand.js +16 -0
- package/dist-es/commands/DeleteAssetCommand.js +16 -0
- package/dist-es/commands/DeleteAssetFileCommand.js +16 -0
- package/dist-es/commands/GetAssetCommand.js +16 -0
- package/dist-es/commands/GetAssetContentCommand.js +16 -0
- package/dist-es/commands/GetAssetFileCommand.js +16 -0
- package/dist-es/commands/ListAssetFilesCommand.js +16 -0
- package/dist-es/commands/ListAssetTypesCommand.js +16 -0
- package/dist-es/commands/ListAssetVersionsCommand.js +16 -0
- package/dist-es/commands/ListAssetsCommand.js +16 -0
- package/dist-es/commands/UpdateAssetCommand.js +16 -0
- package/dist-es/commands/UpdateAssetFileCommand.js +16 -0
- package/dist-es/commands/index.js +13 -0
- package/dist-es/models/enums.js +5 -0
- package/dist-es/pagination/ListAssetFilesPaginator.js +4 -0
- package/dist-es/pagination/ListAssetTypesPaginator.js +4 -0
- package/dist-es/pagination/ListAssetVersionsPaginator.js +4 -0
- package/dist-es/pagination/ListAssetsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/schemas/schemas_0.js +369 -71
- package/dist-types/DevOpsAgent.d.ts +121 -1
- package/dist-types/DevOpsAgentClient.d.ts +16 -3
- package/dist-types/commands/CreateAssetCommand.d.ts +126 -0
- package/dist-types/commands/CreateAssetFileCommand.d.ts +121 -0
- package/dist-types/commands/CreateBacklogTaskCommand.d.ts +1 -1
- package/dist-types/commands/CreatePrivateConnectionCommand.d.ts +3 -0
- package/dist-types/commands/DeleteAssetCommand.d.ts +102 -0
- package/dist-types/commands/DeleteAssetFileCommand.d.ts +103 -0
- package/dist-types/commands/DescribePrivateConnectionCommand.d.ts +2 -0
- package/dist-types/commands/EnableOperatorAppCommand.d.ts +1 -0
- package/dist-types/commands/GetAssetCommand.d.ts +112 -0
- package/dist-types/commands/GetAssetContentCommand.d.ts +108 -0
- package/dist-types/commands/GetAssetFileCommand.d.ts +116 -0
- package/dist-types/commands/GetBacklogTaskCommand.d.ts +1 -1
- package/dist-types/commands/GetOperatorAppCommand.d.ts +1 -0
- package/dist-types/commands/GetServiceCommand.d.ts +1 -0
- package/dist-types/commands/ListAssetFilesCommand.d.ts +116 -0
- package/dist-types/commands/ListAssetTypesCommand.d.ts +110 -0
- package/dist-types/commands/ListAssetVersionsCommand.d.ts +113 -0
- package/dist-types/commands/ListAssetsCommand.d.ts +118 -0
- package/dist-types/commands/ListBacklogTasksCommand.d.ts +2 -2
- package/dist-types/commands/ListPrivateConnectionsCommand.d.ts +2 -0
- package/dist-types/commands/ListServicesCommand.d.ts +1 -0
- package/dist-types/commands/RegisterServiceCommand.d.ts +4 -1
- package/dist-types/commands/SendMessageCommand.d.ts +3 -0
- package/dist-types/commands/UpdateAssetCommand.d.ts +126 -0
- package/dist-types/commands/UpdateAssetFileCommand.d.ts +121 -0
- package/dist-types/commands/UpdateBacklogTaskCommand.d.ts +2 -2
- package/dist-types/commands/UpdatePrivateConnectionCertificateCommand.d.ts +2 -0
- package/dist-types/commands/index.d.ts +13 -0
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/enums.d.ts +22 -0
- package/dist-types/models/models_0.d.ts +879 -27
- package/dist-types/pagination/ListAssetFilesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAssetTypesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAssetVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAssetsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/schemas/schemas_0.d.ts +48 -0
- package/dist-types/ts3.4/DevOpsAgent.d.ts +250 -0
- package/dist-types/ts3.4/DevOpsAgentClient.d.ts +78 -0
- package/dist-types/ts3.4/commands/CreateAssetCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/CreateAssetFileCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/DeleteAssetFileCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/GetAssetCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/GetAssetContentCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/GetAssetFileCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/ListAssetFilesCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListAssetTypesCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListAssetVersionsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/UpdateAssetCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/UpdateAssetFileCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/models/enums.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +230 -1
- package/dist-types/ts3.4/pagination/ListAssetFilesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAssetTypesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAssetVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAssetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +48 -0
- package/package.json +5 -5
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { DocumentType as __DocumentType } from "@smithy/types";
|
|
2
|
-
import type { AuthFlow, EventChannelType, ExecutionStatus, GithubRepoOwnerType, GitLabTokenType, GoalStatus, GoalType, IpAddressType, MCPServerAuthorizationMethod, MonitorAccountType, NewRelicRegion, OrderType, PostRegisterServiceSupportedService, Priority, PrivateConnectionStatus, PrivateConnectionType, RecommendationPriority, RecommendationStatus, SchedulerState, Service, SourceAccountType, TaskSortField, TaskSortOrder, TaskStatus, TaskType, UserType, ValidationStatus, WebhookType } from "./enums";
|
|
2
|
+
import type { AuthFlow, EventChannelType, ExecutionStatus, GithubRepoOwnerType, GitLabTokenType, GoalStatus, GoalType, IpAddressType, MCPServerAuthorizationMethod, MonitorAccountType, NewRelicRegion, OrderType, PostRegisterServiceSupportedService, Priority, PrivateConnectionStatus, PrivateConnectionType, RecommendationPriority, RecommendationStatus, ResourceConfigDnsResolution, SchedulerState, Service, SourceAccountType, TaskSortField, TaskSortOrder, TaskStatus, TaskType, UserType, ValidationStatus, WebhookType } from "./enums";
|
|
3
3
|
/**
|
|
4
4
|
* <p>Details specific to a registered Azure DevOps service.</p>
|
|
5
5
|
* @public
|
|
@@ -179,9 +179,16 @@ export interface RegisteredMCPServerSigV4Details {
|
|
|
179
179
|
service: string | undefined;
|
|
180
180
|
/**
|
|
181
181
|
* <p>IAM role ARN to assume for SigV4 signing.</p>
|
|
182
|
+
*
|
|
183
|
+
* @deprecated (since 2026-05-27) Use mcpRoleArn instead.
|
|
182
184
|
* @public
|
|
183
185
|
*/
|
|
184
186
|
roleArn: string | undefined;
|
|
187
|
+
/**
|
|
188
|
+
* <p>AWS IAM role ARN.</p>
|
|
189
|
+
* @public
|
|
190
|
+
*/
|
|
191
|
+
mcpRoleArn?: string | undefined;
|
|
185
192
|
/**
|
|
186
193
|
* <p>Custom headers for the SigV4 MCP server.</p>
|
|
187
194
|
* @public
|
|
@@ -1941,6 +1948,11 @@ export interface EnableOperatorAppOutput {
|
|
|
1941
1948
|
* @public
|
|
1942
1949
|
*/
|
|
1943
1950
|
agentSpaceId: string | undefined;
|
|
1951
|
+
/**
|
|
1952
|
+
* <p>The URL for operators to access the Operator App</p>
|
|
1953
|
+
* @public
|
|
1954
|
+
*/
|
|
1955
|
+
operatorAppUrl?: string | undefined;
|
|
1944
1956
|
/**
|
|
1945
1957
|
* <p>Configuration for IAM-based authentication flow for the Operator App.</p>
|
|
1946
1958
|
* @public
|
|
@@ -2000,6 +2012,11 @@ export interface GetOperatorAppInput {
|
|
|
2000
2012
|
* @public
|
|
2001
2013
|
*/
|
|
2002
2014
|
export interface GetOperatorAppOutput {
|
|
2015
|
+
/**
|
|
2016
|
+
* <p>The URL for operators to access the Operator App</p>
|
|
2017
|
+
* @public
|
|
2018
|
+
*/
|
|
2019
|
+
operatorAppUrl?: string | undefined;
|
|
2003
2020
|
/**
|
|
2004
2021
|
* <p>Configuration for IAM-based authentication flow for the Operator App.</p>
|
|
2005
2022
|
* @public
|
|
@@ -2117,6 +2134,268 @@ export interface UpdateOperatorAppIdpConfigOutput {
|
|
|
2117
2134
|
*/
|
|
2118
2135
|
idp: IdpAuthConfiguration | undefined;
|
|
2119
2136
|
}
|
|
2137
|
+
/**
|
|
2138
|
+
* <p>Represents an asset in an agent space, including its identifier, type, metadata, version, and timestamps.</p>
|
|
2139
|
+
* @public
|
|
2140
|
+
*/
|
|
2141
|
+
export interface Asset {
|
|
2142
|
+
/**
|
|
2143
|
+
* <p>The unique identifier for this asset</p>
|
|
2144
|
+
* @public
|
|
2145
|
+
*/
|
|
2146
|
+
assetId: string | undefined;
|
|
2147
|
+
/**
|
|
2148
|
+
* <p>The type of this asset</p>
|
|
2149
|
+
* @public
|
|
2150
|
+
*/
|
|
2151
|
+
assetType: string | undefined;
|
|
2152
|
+
/**
|
|
2153
|
+
* <p>The metadata for this asset</p>
|
|
2154
|
+
* @public
|
|
2155
|
+
*/
|
|
2156
|
+
metadata: __DocumentType | undefined;
|
|
2157
|
+
/**
|
|
2158
|
+
* <p>The version number of this asset</p>
|
|
2159
|
+
* @public
|
|
2160
|
+
*/
|
|
2161
|
+
version: number | undefined;
|
|
2162
|
+
/**
|
|
2163
|
+
* <p>Timestamp when this asset was created</p>
|
|
2164
|
+
* @public
|
|
2165
|
+
*/
|
|
2166
|
+
createdAt: Date | undefined;
|
|
2167
|
+
/**
|
|
2168
|
+
* <p>Timestamp when this asset was last updated</p>
|
|
2169
|
+
* @public
|
|
2170
|
+
*/
|
|
2171
|
+
updatedAt: Date | undefined;
|
|
2172
|
+
}
|
|
2173
|
+
/**
|
|
2174
|
+
* <p>Content of an individual asset file</p>
|
|
2175
|
+
* @public
|
|
2176
|
+
*/
|
|
2177
|
+
export type AssetFileBody = AssetFileBody.BytesMember | AssetFileBody.TextMember | AssetFileBody.$UnknownMember;
|
|
2178
|
+
/**
|
|
2179
|
+
* @public
|
|
2180
|
+
*/
|
|
2181
|
+
export declare namespace AssetFileBody {
|
|
2182
|
+
/**
|
|
2183
|
+
* <p>Binary file content</p>
|
|
2184
|
+
* @public
|
|
2185
|
+
*/
|
|
2186
|
+
interface BytesMember {
|
|
2187
|
+
bytes: Uint8Array;
|
|
2188
|
+
text?: never;
|
|
2189
|
+
$unknown?: never;
|
|
2190
|
+
}
|
|
2191
|
+
/**
|
|
2192
|
+
* <p>Text file content</p>
|
|
2193
|
+
* @public
|
|
2194
|
+
*/
|
|
2195
|
+
interface TextMember {
|
|
2196
|
+
bytes?: never;
|
|
2197
|
+
text: string;
|
|
2198
|
+
$unknown?: never;
|
|
2199
|
+
}
|
|
2200
|
+
/**
|
|
2201
|
+
* @public
|
|
2202
|
+
*/
|
|
2203
|
+
interface $UnknownMember {
|
|
2204
|
+
bytes?: never;
|
|
2205
|
+
text?: never;
|
|
2206
|
+
$unknown: [string, any];
|
|
2207
|
+
}
|
|
2208
|
+
/**
|
|
2209
|
+
* @deprecated unused in schema-serde mode.
|
|
2210
|
+
*
|
|
2211
|
+
*/
|
|
2212
|
+
interface Visitor<T> {
|
|
2213
|
+
bytes: (value: Uint8Array) => T;
|
|
2214
|
+
text: (value: string) => T;
|
|
2215
|
+
_: (name: string, value: any) => T;
|
|
2216
|
+
}
|
|
2217
|
+
}
|
|
2218
|
+
/**
|
|
2219
|
+
* <p>A single file with path and content</p>
|
|
2220
|
+
* @public
|
|
2221
|
+
*/
|
|
2222
|
+
export interface AssetFileContent {
|
|
2223
|
+
/**
|
|
2224
|
+
* <p>The path of the file within the asset</p>
|
|
2225
|
+
* @public
|
|
2226
|
+
*/
|
|
2227
|
+
path: string | undefined;
|
|
2228
|
+
/**
|
|
2229
|
+
* <p>The file content</p>
|
|
2230
|
+
* @public
|
|
2231
|
+
*/
|
|
2232
|
+
body: AssetFileBody | undefined;
|
|
2233
|
+
/**
|
|
2234
|
+
* <p>Optional metadata for this file</p>
|
|
2235
|
+
* @public
|
|
2236
|
+
*/
|
|
2237
|
+
metadata?: __DocumentType | undefined;
|
|
2238
|
+
}
|
|
2239
|
+
/**
|
|
2240
|
+
* <p>A zip file containing asset files</p>
|
|
2241
|
+
* @public
|
|
2242
|
+
*/
|
|
2243
|
+
export interface AssetZipContent {
|
|
2244
|
+
/**
|
|
2245
|
+
* <p>The zip file bytes</p>
|
|
2246
|
+
* @public
|
|
2247
|
+
*/
|
|
2248
|
+
zipFile: Uint8Array | undefined;
|
|
2249
|
+
}
|
|
2250
|
+
/**
|
|
2251
|
+
* <p>Content for an asset, either a single file or a zip bundle</p>
|
|
2252
|
+
* @public
|
|
2253
|
+
*/
|
|
2254
|
+
export type AssetContent = AssetContent.FileMember | AssetContent.ZipMember | AssetContent.$UnknownMember;
|
|
2255
|
+
/**
|
|
2256
|
+
* @public
|
|
2257
|
+
*/
|
|
2258
|
+
export declare namespace AssetContent {
|
|
2259
|
+
/**
|
|
2260
|
+
* <p>A single file with path and content</p>
|
|
2261
|
+
* @public
|
|
2262
|
+
*/
|
|
2263
|
+
interface FileMember {
|
|
2264
|
+
file: AssetFileContent;
|
|
2265
|
+
zip?: never;
|
|
2266
|
+
$unknown?: never;
|
|
2267
|
+
}
|
|
2268
|
+
/**
|
|
2269
|
+
* <p>A zip file containing multiple files</p>
|
|
2270
|
+
* @public
|
|
2271
|
+
*/
|
|
2272
|
+
interface ZipMember {
|
|
2273
|
+
file?: never;
|
|
2274
|
+
zip: AssetZipContent;
|
|
2275
|
+
$unknown?: never;
|
|
2276
|
+
}
|
|
2277
|
+
/**
|
|
2278
|
+
* @public
|
|
2279
|
+
*/
|
|
2280
|
+
interface $UnknownMember {
|
|
2281
|
+
file?: never;
|
|
2282
|
+
zip?: never;
|
|
2283
|
+
$unknown: [string, any];
|
|
2284
|
+
}
|
|
2285
|
+
/**
|
|
2286
|
+
* @deprecated unused in schema-serde mode.
|
|
2287
|
+
*
|
|
2288
|
+
*/
|
|
2289
|
+
interface Visitor<T> {
|
|
2290
|
+
file: (value: AssetFileContent) => T;
|
|
2291
|
+
zip: (value: AssetZipContent) => T;
|
|
2292
|
+
_: (name: string, value: any) => T;
|
|
2293
|
+
}
|
|
2294
|
+
}
|
|
2295
|
+
/**
|
|
2296
|
+
* <p>Represents a single file within an asset, including its path, content, version, and timestamps.</p>
|
|
2297
|
+
* @public
|
|
2298
|
+
*/
|
|
2299
|
+
export interface AssetFile {
|
|
2300
|
+
/**
|
|
2301
|
+
* <p>The path of this file within the asset</p>
|
|
2302
|
+
* @public
|
|
2303
|
+
*/
|
|
2304
|
+
path: string | undefined;
|
|
2305
|
+
/**
|
|
2306
|
+
* <p>The content of this file</p>
|
|
2307
|
+
* @public
|
|
2308
|
+
*/
|
|
2309
|
+
content: AssetFileBody | undefined;
|
|
2310
|
+
/**
|
|
2311
|
+
* <p>The metadata for this file</p>
|
|
2312
|
+
* @public
|
|
2313
|
+
*/
|
|
2314
|
+
metadata?: __DocumentType | undefined;
|
|
2315
|
+
/**
|
|
2316
|
+
* <p>The asset version this file belongs to</p>
|
|
2317
|
+
* @public
|
|
2318
|
+
*/
|
|
2319
|
+
version: number | undefined;
|
|
2320
|
+
/**
|
|
2321
|
+
* <p>Timestamp when this file was created</p>
|
|
2322
|
+
* @public
|
|
2323
|
+
*/
|
|
2324
|
+
createdAt: Date | undefined;
|
|
2325
|
+
/**
|
|
2326
|
+
* <p>Timestamp when this file was last updated</p>
|
|
2327
|
+
* @public
|
|
2328
|
+
*/
|
|
2329
|
+
updatedAt: Date | undefined;
|
|
2330
|
+
}
|
|
2331
|
+
/**
|
|
2332
|
+
* <p>Summary of a file within an asset, including its path, version, and timestamps.</p>
|
|
2333
|
+
* @public
|
|
2334
|
+
*/
|
|
2335
|
+
export interface AssetFileSummary {
|
|
2336
|
+
/**
|
|
2337
|
+
* <p>The path of this file within the asset</p>
|
|
2338
|
+
* @public
|
|
2339
|
+
*/
|
|
2340
|
+
path: string | undefined;
|
|
2341
|
+
/**
|
|
2342
|
+
* <p>The metadata for this file</p>
|
|
2343
|
+
* @public
|
|
2344
|
+
*/
|
|
2345
|
+
metadata?: __DocumentType | undefined;
|
|
2346
|
+
/**
|
|
2347
|
+
* <p>The asset version this file belongs to</p>
|
|
2348
|
+
* @public
|
|
2349
|
+
*/
|
|
2350
|
+
version: number | undefined;
|
|
2351
|
+
/**
|
|
2352
|
+
* <p>Timestamp when this file was created</p>
|
|
2353
|
+
* @public
|
|
2354
|
+
*/
|
|
2355
|
+
createdAt: Date | undefined;
|
|
2356
|
+
/**
|
|
2357
|
+
* <p>Timestamp when this file was last updated</p>
|
|
2358
|
+
* @public
|
|
2359
|
+
*/
|
|
2360
|
+
updatedAt: Date | undefined;
|
|
2361
|
+
}
|
|
2362
|
+
/**
|
|
2363
|
+
* <p>Summary of an asset type, including its identifier and description.</p>
|
|
2364
|
+
* @public
|
|
2365
|
+
*/
|
|
2366
|
+
export interface AssetTypeSummary {
|
|
2367
|
+
/**
|
|
2368
|
+
* <p>The asset type identifier</p>
|
|
2369
|
+
* @public
|
|
2370
|
+
*/
|
|
2371
|
+
assetType: string | undefined;
|
|
2372
|
+
/**
|
|
2373
|
+
* <p>A description of the asset type</p>
|
|
2374
|
+
* @public
|
|
2375
|
+
*/
|
|
2376
|
+
description: string | undefined;
|
|
2377
|
+
}
|
|
2378
|
+
/**
|
|
2379
|
+
* <p>Metadata for a single version of an asset, including the version number and timestamps.</p>
|
|
2380
|
+
* @public
|
|
2381
|
+
*/
|
|
2382
|
+
export interface AssetVersionMetadata {
|
|
2383
|
+
/**
|
|
2384
|
+
* <p>The version number of this asset</p>
|
|
2385
|
+
* @public
|
|
2386
|
+
*/
|
|
2387
|
+
version: number | undefined;
|
|
2388
|
+
/**
|
|
2389
|
+
* <p>Timestamp when this asset version was created</p>
|
|
2390
|
+
* @public
|
|
2391
|
+
*/
|
|
2392
|
+
createdAt: Date | undefined;
|
|
2393
|
+
/**
|
|
2394
|
+
* <p>Timestamp when this asset version was last updated</p>
|
|
2395
|
+
* @public
|
|
2396
|
+
*/
|
|
2397
|
+
updatedAt: Date | undefined;
|
|
2398
|
+
}
|
|
2120
2399
|
/**
|
|
2121
2400
|
* <p>A block of content in an assistant message.</p>
|
|
2122
2401
|
* @public
|
|
@@ -2188,6 +2467,95 @@ export interface ChatExecution {
|
|
|
2188
2467
|
*/
|
|
2189
2468
|
summary?: string | undefined;
|
|
2190
2469
|
}
|
|
2470
|
+
/**
|
|
2471
|
+
* <p>Request structure for creating a new asset</p>
|
|
2472
|
+
* @public
|
|
2473
|
+
*/
|
|
2474
|
+
export interface CreateAssetRequest {
|
|
2475
|
+
/**
|
|
2476
|
+
* <p>The unique identifier for the agent space where the asset will be created</p>
|
|
2477
|
+
* @public
|
|
2478
|
+
*/
|
|
2479
|
+
agentSpaceId: string | undefined;
|
|
2480
|
+
/**
|
|
2481
|
+
* <p>The type of asset to create</p>
|
|
2482
|
+
* @public
|
|
2483
|
+
*/
|
|
2484
|
+
assetType: string | undefined;
|
|
2485
|
+
/**
|
|
2486
|
+
* <p>The metadata describing this asset</p>
|
|
2487
|
+
* @public
|
|
2488
|
+
*/
|
|
2489
|
+
metadata?: __DocumentType | undefined;
|
|
2490
|
+
/**
|
|
2491
|
+
* <p>The content for the asset. Provide a single file or a zip bundle.</p>
|
|
2492
|
+
* @public
|
|
2493
|
+
*/
|
|
2494
|
+
content: AssetContent | undefined;
|
|
2495
|
+
/**
|
|
2496
|
+
* <p>A unique, case-sensitive identifier used for idempotent asset creation</p>
|
|
2497
|
+
* @public
|
|
2498
|
+
*/
|
|
2499
|
+
clientToken?: string | undefined;
|
|
2500
|
+
}
|
|
2501
|
+
/**
|
|
2502
|
+
* <p>Response structure for creating a new asset</p>
|
|
2503
|
+
* @public
|
|
2504
|
+
*/
|
|
2505
|
+
export interface CreateAssetResponse {
|
|
2506
|
+
/**
|
|
2507
|
+
* <p>The asset object</p>
|
|
2508
|
+
* @public
|
|
2509
|
+
*/
|
|
2510
|
+
asset: Asset | undefined;
|
|
2511
|
+
}
|
|
2512
|
+
/**
|
|
2513
|
+
* <p>Request structure for creating an asset file</p>
|
|
2514
|
+
* @public
|
|
2515
|
+
*/
|
|
2516
|
+
export interface CreateAssetFileRequest {
|
|
2517
|
+
/**
|
|
2518
|
+
* <p>The unique identifier for the agent space containing the asset</p>
|
|
2519
|
+
* @public
|
|
2520
|
+
*/
|
|
2521
|
+
agentSpaceId: string | undefined;
|
|
2522
|
+
/**
|
|
2523
|
+
* <p>The unique identifier of the asset to create the file in</p>
|
|
2524
|
+
* @public
|
|
2525
|
+
*/
|
|
2526
|
+
assetId: string | undefined;
|
|
2527
|
+
/**
|
|
2528
|
+
* <p>The path of the file within the asset</p>
|
|
2529
|
+
* @public
|
|
2530
|
+
*/
|
|
2531
|
+
path: string | undefined;
|
|
2532
|
+
/**
|
|
2533
|
+
* <p>The content of the file to create</p>
|
|
2534
|
+
* @public
|
|
2535
|
+
*/
|
|
2536
|
+
content: AssetFileBody | undefined;
|
|
2537
|
+
/**
|
|
2538
|
+
* <p>Optional metadata describing this file</p>
|
|
2539
|
+
* @public
|
|
2540
|
+
*/
|
|
2541
|
+
metadata?: __DocumentType | undefined;
|
|
2542
|
+
/**
|
|
2543
|
+
* <p>A unique, case-sensitive identifier used for idempotent asset file creation</p>
|
|
2544
|
+
* @public
|
|
2545
|
+
*/
|
|
2546
|
+
clientToken?: string | undefined;
|
|
2547
|
+
}
|
|
2548
|
+
/**
|
|
2549
|
+
* <p>Response structure for creating an asset file</p>
|
|
2550
|
+
* @public
|
|
2551
|
+
*/
|
|
2552
|
+
export interface CreateAssetFileResponse {
|
|
2553
|
+
/**
|
|
2554
|
+
* <p>The asset file object</p>
|
|
2555
|
+
* @public
|
|
2556
|
+
*/
|
|
2557
|
+
file: AssetFile | undefined;
|
|
2558
|
+
}
|
|
2191
2559
|
/**
|
|
2192
2560
|
* <p>Reference information linking a task to external systems - for input with validation</p>
|
|
2193
2561
|
* @public
|
|
@@ -2493,6 +2861,11 @@ export interface ServiceManagedInput {
|
|
|
2493
2861
|
* @public
|
|
2494
2862
|
*/
|
|
2495
2863
|
certificate?: string | undefined;
|
|
2864
|
+
/**
|
|
2865
|
+
* <p>DNS resolution mode for the resource gateway. Defaults to PUBLIC when not set.</p>
|
|
2866
|
+
* @public
|
|
2867
|
+
*/
|
|
2868
|
+
dnsResolution?: ResourceConfigDnsResolution | undefined;
|
|
2496
2869
|
}
|
|
2497
2870
|
/**
|
|
2498
2871
|
* <p>Private Connection mode — either service-managed or self-managed.</p>
|
|
@@ -2605,6 +2978,16 @@ export interface CreatePrivateConnectionOutput {
|
|
|
2605
2978
|
* @public
|
|
2606
2979
|
*/
|
|
2607
2980
|
certificateExpiryTime?: Date | undefined;
|
|
2981
|
+
/**
|
|
2982
|
+
* <p>DNS resolution mode for the Private Connection's resource gateway.</p>
|
|
2983
|
+
* @public
|
|
2984
|
+
*/
|
|
2985
|
+
dnsResolution?: ResourceConfigDnsResolution | undefined;
|
|
2986
|
+
/**
|
|
2987
|
+
* <p>Message describing the reason for a failed Private Connection creation, if applicable.</p>
|
|
2988
|
+
* @public
|
|
2989
|
+
*/
|
|
2990
|
+
failureMessage?: string | undefined;
|
|
2608
2991
|
/**
|
|
2609
2992
|
* <p>Tags associated with the created Private Connection.</p>
|
|
2610
2993
|
* @public
|
|
@@ -2681,6 +3064,55 @@ export interface DatadogServiceDetails {
|
|
|
2681
3064
|
*/
|
|
2682
3065
|
authorizationConfig: DatadogAuthorizationConfig | undefined;
|
|
2683
3066
|
}
|
|
3067
|
+
/**
|
|
3068
|
+
* <p>Request structure for deleting an asset</p>
|
|
3069
|
+
* @public
|
|
3070
|
+
*/
|
|
3071
|
+
export interface DeleteAssetRequest {
|
|
3072
|
+
/**
|
|
3073
|
+
* <p>The unique identifier for the agent space containing the asset</p>
|
|
3074
|
+
* @public
|
|
3075
|
+
*/
|
|
3076
|
+
agentSpaceId: string | undefined;
|
|
3077
|
+
/**
|
|
3078
|
+
* <p>The unique identifier of the asset to delete</p>
|
|
3079
|
+
* @public
|
|
3080
|
+
*/
|
|
3081
|
+
assetId: string | undefined;
|
|
3082
|
+
}
|
|
3083
|
+
/**
|
|
3084
|
+
* <p>Response structure for deleting an asset</p>
|
|
3085
|
+
* @public
|
|
3086
|
+
*/
|
|
3087
|
+
export interface DeleteAssetResponse {
|
|
3088
|
+
}
|
|
3089
|
+
/**
|
|
3090
|
+
* <p>Request structure for deleting an asset file</p>
|
|
3091
|
+
* @public
|
|
3092
|
+
*/
|
|
3093
|
+
export interface DeleteAssetFileRequest {
|
|
3094
|
+
/**
|
|
3095
|
+
* <p>The unique identifier for the agent space containing the asset</p>
|
|
3096
|
+
* @public
|
|
3097
|
+
*/
|
|
3098
|
+
agentSpaceId: string | undefined;
|
|
3099
|
+
/**
|
|
3100
|
+
* <p>The unique identifier of the asset containing the file</p>
|
|
3101
|
+
* @public
|
|
3102
|
+
*/
|
|
3103
|
+
assetId: string | undefined;
|
|
3104
|
+
/**
|
|
3105
|
+
* <p>The path of the file within the asset to delete</p>
|
|
3106
|
+
* @public
|
|
3107
|
+
*/
|
|
3108
|
+
path: string | undefined;
|
|
3109
|
+
}
|
|
3110
|
+
/**
|
|
3111
|
+
* <p>Response structure for deleting an asset file</p>
|
|
3112
|
+
* @public
|
|
3113
|
+
*/
|
|
3114
|
+
export interface DeleteAssetFileResponse {
|
|
3115
|
+
}
|
|
2684
3116
|
/**
|
|
2685
3117
|
* <p>Input for deleting an existing Private Connection.</p>
|
|
2686
3118
|
* @public
|
|
@@ -2777,71 +3209,187 @@ export interface DescribePrivateConnectionOutput {
|
|
|
2777
3209
|
*/
|
|
2778
3210
|
status: PrivateConnectionStatus | undefined;
|
|
2779
3211
|
/**
|
|
2780
|
-
* <p>The expiry time of the certificate associated with the Private Connection. Only present when a certificate is associated.</p>
|
|
3212
|
+
* <p>The expiry time of the certificate associated with the Private Connection. Only present when a certificate is associated.</p>
|
|
3213
|
+
* @public
|
|
3214
|
+
*/
|
|
3215
|
+
certificateExpiryTime?: Date | undefined;
|
|
3216
|
+
/**
|
|
3217
|
+
* <p>DNS resolution mode for the Private Connection's resource gateway.</p>
|
|
3218
|
+
* @public
|
|
3219
|
+
*/
|
|
3220
|
+
dnsResolution?: ResourceConfigDnsResolution | undefined;
|
|
3221
|
+
/**
|
|
3222
|
+
* <p>Message describing the reason for a failed Private Connection, if applicable.</p>
|
|
3223
|
+
* @public
|
|
3224
|
+
*/
|
|
3225
|
+
failureMessage?: string | undefined;
|
|
3226
|
+
/**
|
|
3227
|
+
* <p>Tags associated with the Private Connection.</p>
|
|
3228
|
+
* @public
|
|
3229
|
+
*/
|
|
3230
|
+
tags?: Record<string, string> | undefined;
|
|
3231
|
+
}
|
|
3232
|
+
/**
|
|
3233
|
+
* @public
|
|
3234
|
+
*/
|
|
3235
|
+
export interface GetAccountUsageInput {
|
|
3236
|
+
}
|
|
3237
|
+
/**
|
|
3238
|
+
* <p>Represents a usage metric with its configured limit and current usage value.</p>
|
|
3239
|
+
* @public
|
|
3240
|
+
*/
|
|
3241
|
+
export interface UsageMetric {
|
|
3242
|
+
/**
|
|
3243
|
+
* <p>Configured limit for this metric. A value of -1 indicates no limit is enforced.</p>
|
|
3244
|
+
* @public
|
|
3245
|
+
*/
|
|
3246
|
+
limit: number | undefined;
|
|
3247
|
+
/**
|
|
3248
|
+
* <p>Current usage for this metric</p>
|
|
3249
|
+
* @public
|
|
3250
|
+
*/
|
|
3251
|
+
usage: number | undefined;
|
|
3252
|
+
}
|
|
3253
|
+
/**
|
|
3254
|
+
* @public
|
|
3255
|
+
*/
|
|
3256
|
+
export interface GetAccountUsageOutput {
|
|
3257
|
+
/**
|
|
3258
|
+
* <p>Monthly investigation hours usage and limit for an account</p>
|
|
3259
|
+
* @public
|
|
3260
|
+
*/
|
|
3261
|
+
monthlyAccountInvestigationHours?: UsageMetric | undefined;
|
|
3262
|
+
/**
|
|
3263
|
+
* <p>Monthly evaluation hours usage and limit for an account</p>
|
|
3264
|
+
* @public
|
|
3265
|
+
*/
|
|
3266
|
+
monthlyAccountEvaluationHours?: UsageMetric | undefined;
|
|
3267
|
+
/**
|
|
3268
|
+
* <p>Monthly system learning hours usage and limit for an account</p>
|
|
3269
|
+
* @public
|
|
3270
|
+
*/
|
|
3271
|
+
monthlyAccountSystemLearningHours?: UsageMetric | undefined;
|
|
3272
|
+
/**
|
|
3273
|
+
* <p>Monthly on-demand hours usage and limit for an account</p>
|
|
3274
|
+
* @public
|
|
3275
|
+
*/
|
|
3276
|
+
monthlyAccountOnDemandHours?: UsageMetric | undefined;
|
|
3277
|
+
/**
|
|
3278
|
+
* <p>The start time of the usage tracking period</p>
|
|
3279
|
+
* @public
|
|
3280
|
+
*/
|
|
3281
|
+
usagePeriodStartTime: Date | undefined;
|
|
3282
|
+
/**
|
|
3283
|
+
* <p>The end time of the usage tracking period</p>
|
|
3284
|
+
* @public
|
|
3285
|
+
*/
|
|
3286
|
+
usagePeriodEndTime: Date | undefined;
|
|
3287
|
+
}
|
|
3288
|
+
/**
|
|
3289
|
+
* <p>Request structure for getting an asset</p>
|
|
3290
|
+
* @public
|
|
3291
|
+
*/
|
|
3292
|
+
export interface GetAssetRequest {
|
|
3293
|
+
/**
|
|
3294
|
+
* <p>The unique identifier for the agent space containing the asset</p>
|
|
3295
|
+
* @public
|
|
3296
|
+
*/
|
|
3297
|
+
agentSpaceId: string | undefined;
|
|
3298
|
+
/**
|
|
3299
|
+
* <p>The unique identifier of the asset to retrieve</p>
|
|
2781
3300
|
* @public
|
|
2782
3301
|
*/
|
|
2783
|
-
|
|
3302
|
+
assetId: string | undefined;
|
|
2784
3303
|
/**
|
|
2785
|
-
* <p>
|
|
3304
|
+
* <p>The specific version of the asset to retrieve. If omitted, the latest version is returned.</p>
|
|
2786
3305
|
* @public
|
|
2787
3306
|
*/
|
|
2788
|
-
|
|
3307
|
+
assetVersion?: number | undefined;
|
|
2789
3308
|
}
|
|
2790
3309
|
/**
|
|
3310
|
+
* <p>Response structure for getting an asset</p>
|
|
2791
3311
|
* @public
|
|
2792
3312
|
*/
|
|
2793
|
-
export interface
|
|
3313
|
+
export interface GetAssetResponse {
|
|
3314
|
+
/**
|
|
3315
|
+
* <p>The asset object</p>
|
|
3316
|
+
* @public
|
|
3317
|
+
*/
|
|
3318
|
+
asset: Asset | undefined;
|
|
2794
3319
|
}
|
|
2795
3320
|
/**
|
|
2796
|
-
* <p>
|
|
3321
|
+
* <p>Request structure for getting an asset's content as a zip bundle</p>
|
|
2797
3322
|
* @public
|
|
2798
3323
|
*/
|
|
2799
|
-
export interface
|
|
3324
|
+
export interface GetAssetContentRequest {
|
|
2800
3325
|
/**
|
|
2801
|
-
* <p>
|
|
3326
|
+
* <p>The unique identifier for the agent space containing the asset</p>
|
|
2802
3327
|
* @public
|
|
2803
3328
|
*/
|
|
2804
|
-
|
|
3329
|
+
agentSpaceId: string | undefined;
|
|
2805
3330
|
/**
|
|
2806
|
-
* <p>
|
|
3331
|
+
* <p>The unique identifier of the asset</p>
|
|
2807
3332
|
* @public
|
|
2808
3333
|
*/
|
|
2809
|
-
|
|
3334
|
+
assetId: string | undefined;
|
|
3335
|
+
/**
|
|
3336
|
+
* <p>The specific asset version to export. If omitted, the latest version is returned.</p>
|
|
3337
|
+
* @public
|
|
3338
|
+
*/
|
|
3339
|
+
assetVersion?: number | undefined;
|
|
2810
3340
|
}
|
|
2811
3341
|
/**
|
|
3342
|
+
* <p>Response structure for getting an asset's content as a zip bundle</p>
|
|
2812
3343
|
* @public
|
|
2813
3344
|
*/
|
|
2814
|
-
export interface
|
|
3345
|
+
export interface GetAssetContentResponse {
|
|
2815
3346
|
/**
|
|
2816
|
-
* <p>
|
|
3347
|
+
* <p>The asset content as a zip file</p>
|
|
2817
3348
|
* @public
|
|
2818
3349
|
*/
|
|
2819
|
-
|
|
3350
|
+
content: AssetZipContent | undefined;
|
|
2820
3351
|
/**
|
|
2821
|
-
* <p>
|
|
3352
|
+
* <p>The asset version this content belongs to</p>
|
|
2822
3353
|
* @public
|
|
2823
3354
|
*/
|
|
2824
|
-
|
|
3355
|
+
version: number | undefined;
|
|
3356
|
+
}
|
|
3357
|
+
/**
|
|
3358
|
+
* <p>Request structure for getting an asset file</p>
|
|
3359
|
+
* @public
|
|
3360
|
+
*/
|
|
3361
|
+
export interface GetAssetFileRequest {
|
|
2825
3362
|
/**
|
|
2826
|
-
* <p>
|
|
3363
|
+
* <p>The unique identifier for the agent space containing the asset</p>
|
|
2827
3364
|
* @public
|
|
2828
3365
|
*/
|
|
2829
|
-
|
|
3366
|
+
agentSpaceId: string | undefined;
|
|
2830
3367
|
/**
|
|
2831
|
-
* <p>
|
|
3368
|
+
* <p>The unique identifier of the asset containing the file</p>
|
|
2832
3369
|
* @public
|
|
2833
3370
|
*/
|
|
2834
|
-
|
|
3371
|
+
assetId: string | undefined;
|
|
2835
3372
|
/**
|
|
2836
|
-
* <p>The
|
|
3373
|
+
* <p>The path of the file within the asset to retrieve</p>
|
|
2837
3374
|
* @public
|
|
2838
3375
|
*/
|
|
2839
|
-
|
|
3376
|
+
path: string | undefined;
|
|
2840
3377
|
/**
|
|
2841
|
-
* <p>The
|
|
3378
|
+
* <p>The specific asset version to retrieve the file from. If omitted, the latest version is returned.</p>
|
|
2842
3379
|
* @public
|
|
2843
3380
|
*/
|
|
2844
|
-
|
|
3381
|
+
assetVersion?: number | undefined;
|
|
3382
|
+
}
|
|
3383
|
+
/**
|
|
3384
|
+
* <p>Response structure for getting an asset file</p>
|
|
3385
|
+
* @public
|
|
3386
|
+
*/
|
|
3387
|
+
export interface GetAssetFileResponse {
|
|
3388
|
+
/**
|
|
3389
|
+
* <p>The asset file object</p>
|
|
3390
|
+
* @public
|
|
3391
|
+
*/
|
|
3392
|
+
file: AssetFile | undefined;
|
|
2845
3393
|
}
|
|
2846
3394
|
/**
|
|
2847
3395
|
* <p>Request structure for retrieving a specific backlog task</p>
|
|
@@ -2999,6 +3547,179 @@ export interface GetRecommendationResponse {
|
|
|
2999
3547
|
*/
|
|
3000
3548
|
recommendation: Recommendation | undefined;
|
|
3001
3549
|
}
|
|
3550
|
+
/**
|
|
3551
|
+
* <p>Request structure for listing asset files</p>
|
|
3552
|
+
* @public
|
|
3553
|
+
*/
|
|
3554
|
+
export interface ListAssetFilesRequest {
|
|
3555
|
+
/**
|
|
3556
|
+
* <p>The unique identifier for the agent space containing the asset</p>
|
|
3557
|
+
* @public
|
|
3558
|
+
*/
|
|
3559
|
+
agentSpaceId: string | undefined;
|
|
3560
|
+
/**
|
|
3561
|
+
* <p>The unique identifier of the asset whose files to list</p>
|
|
3562
|
+
* @public
|
|
3563
|
+
*/
|
|
3564
|
+
assetId: string | undefined;
|
|
3565
|
+
/**
|
|
3566
|
+
* <p>The specific asset version to list files from. If omitted, files from the latest version are returned.</p>
|
|
3567
|
+
* @public
|
|
3568
|
+
*/
|
|
3569
|
+
assetVersion?: number | undefined;
|
|
3570
|
+
/**
|
|
3571
|
+
* <p>Pagination token from a previous response to retrieve the next page of results</p>
|
|
3572
|
+
* @public
|
|
3573
|
+
*/
|
|
3574
|
+
nextToken?: string | undefined;
|
|
3575
|
+
/**
|
|
3576
|
+
* <p>The maximum number of results to return in a single response</p>
|
|
3577
|
+
* @public
|
|
3578
|
+
*/
|
|
3579
|
+
maxResults?: number | undefined;
|
|
3580
|
+
}
|
|
3581
|
+
/**
|
|
3582
|
+
* <p>Response structure for listing asset files</p>
|
|
3583
|
+
* @public
|
|
3584
|
+
*/
|
|
3585
|
+
export interface ListAssetFilesResponse {
|
|
3586
|
+
/**
|
|
3587
|
+
* <p>The list of asset file summaries</p>
|
|
3588
|
+
* @public
|
|
3589
|
+
*/
|
|
3590
|
+
items: AssetFileSummary[] | undefined;
|
|
3591
|
+
/**
|
|
3592
|
+
* <p>Pagination token to retrieve the next page of results. Absent when there are no more results.</p>
|
|
3593
|
+
* @public
|
|
3594
|
+
*/
|
|
3595
|
+
nextToken?: string | undefined;
|
|
3596
|
+
}
|
|
3597
|
+
/**
|
|
3598
|
+
* <p>Request structure for listing assets</p>
|
|
3599
|
+
* @public
|
|
3600
|
+
*/
|
|
3601
|
+
export interface ListAssetsRequest {
|
|
3602
|
+
/**
|
|
3603
|
+
* <p>The unique identifier for the agent space to list assets from</p>
|
|
3604
|
+
* @public
|
|
3605
|
+
*/
|
|
3606
|
+
agentSpaceId: string | undefined;
|
|
3607
|
+
/**
|
|
3608
|
+
* <p>Filter results to only assets of this type</p>
|
|
3609
|
+
* @public
|
|
3610
|
+
*/
|
|
3611
|
+
assetType?: string | undefined;
|
|
3612
|
+
/**
|
|
3613
|
+
* <p>Filter results to only assets updated after this timestamp</p>
|
|
3614
|
+
* @public
|
|
3615
|
+
*/
|
|
3616
|
+
updatedAfter?: Date | undefined;
|
|
3617
|
+
/**
|
|
3618
|
+
* <p>Filter results to only assets updated before this timestamp</p>
|
|
3619
|
+
* @public
|
|
3620
|
+
*/
|
|
3621
|
+
updatedBefore?: Date | undefined;
|
|
3622
|
+
/**
|
|
3623
|
+
* <p>Pagination token from a previous response to retrieve the next page of results</p>
|
|
3624
|
+
* @public
|
|
3625
|
+
*/
|
|
3626
|
+
nextToken?: string | undefined;
|
|
3627
|
+
/**
|
|
3628
|
+
* <p>The maximum number of results to return in a single response</p>
|
|
3629
|
+
* @public
|
|
3630
|
+
*/
|
|
3631
|
+
maxResults?: number | undefined;
|
|
3632
|
+
}
|
|
3633
|
+
/**
|
|
3634
|
+
* <p>Response structure for listing assets</p>
|
|
3635
|
+
* @public
|
|
3636
|
+
*/
|
|
3637
|
+
export interface ListAssetsResponse {
|
|
3638
|
+
/**
|
|
3639
|
+
* <p>The list of assets for the agent space</p>
|
|
3640
|
+
* @public
|
|
3641
|
+
*/
|
|
3642
|
+
items: Asset[] | undefined;
|
|
3643
|
+
/**
|
|
3644
|
+
* <p>Pagination token to retrieve the next page of results. Absent when there are no more results.</p>
|
|
3645
|
+
* @public
|
|
3646
|
+
*/
|
|
3647
|
+
nextToken?: string | undefined;
|
|
3648
|
+
}
|
|
3649
|
+
/**
|
|
3650
|
+
* <p>Request structure for listing asset types</p>
|
|
3651
|
+
* @public
|
|
3652
|
+
*/
|
|
3653
|
+
export interface ListAssetTypesRequest {
|
|
3654
|
+
/**
|
|
3655
|
+
* <p>Pagination token from a previous response to retrieve the next page of results</p>
|
|
3656
|
+
* @public
|
|
3657
|
+
*/
|
|
3658
|
+
nextToken?: string | undefined;
|
|
3659
|
+
/**
|
|
3660
|
+
* <p>The maximum number of results to return in a single response</p>
|
|
3661
|
+
* @public
|
|
3662
|
+
*/
|
|
3663
|
+
maxResults?: number | undefined;
|
|
3664
|
+
}
|
|
3665
|
+
/**
|
|
3666
|
+
* <p>Response structure for listing asset types</p>
|
|
3667
|
+
* @public
|
|
3668
|
+
*/
|
|
3669
|
+
export interface ListAssetTypesResponse {
|
|
3670
|
+
/**
|
|
3671
|
+
* <p>The list of supported asset types</p>
|
|
3672
|
+
* @public
|
|
3673
|
+
*/
|
|
3674
|
+
items: AssetTypeSummary[] | undefined;
|
|
3675
|
+
/**
|
|
3676
|
+
* <p>Pagination token to retrieve the next page of results. Absent when there are no more results.</p>
|
|
3677
|
+
* @public
|
|
3678
|
+
*/
|
|
3679
|
+
nextToken?: string | undefined;
|
|
3680
|
+
}
|
|
3681
|
+
/**
|
|
3682
|
+
* <p>Request structure for listing asset versions</p>
|
|
3683
|
+
* @public
|
|
3684
|
+
*/
|
|
3685
|
+
export interface ListAssetVersionsRequest {
|
|
3686
|
+
/**
|
|
3687
|
+
* <p>The unique identifier for the agent space containing the asset</p>
|
|
3688
|
+
* @public
|
|
3689
|
+
*/
|
|
3690
|
+
agentSpaceId: string | undefined;
|
|
3691
|
+
/**
|
|
3692
|
+
* <p>The unique identifier of the asset whose versions to list</p>
|
|
3693
|
+
* @public
|
|
3694
|
+
*/
|
|
3695
|
+
assetId: string | undefined;
|
|
3696
|
+
/**
|
|
3697
|
+
* <p>The maximum number of results to return in a single response</p>
|
|
3698
|
+
* @public
|
|
3699
|
+
*/
|
|
3700
|
+
maxResults?: number | undefined;
|
|
3701
|
+
/**
|
|
3702
|
+
* <p>Pagination token from a previous response to retrieve the next page of results</p>
|
|
3703
|
+
* @public
|
|
3704
|
+
*/
|
|
3705
|
+
nextToken?: string | undefined;
|
|
3706
|
+
}
|
|
3707
|
+
/**
|
|
3708
|
+
* <p>Response structure for listing asset versions</p>
|
|
3709
|
+
* @public
|
|
3710
|
+
*/
|
|
3711
|
+
export interface ListAssetVersionsResponse {
|
|
3712
|
+
/**
|
|
3713
|
+
* <p>The list of version metadata for the asset</p>
|
|
3714
|
+
* @public
|
|
3715
|
+
*/
|
|
3716
|
+
items: AssetVersionMetadata[] | undefined;
|
|
3717
|
+
/**
|
|
3718
|
+
* <p>Pagination token to retrieve the next page of results. Absent when there are no more results.</p>
|
|
3719
|
+
* @public
|
|
3720
|
+
*/
|
|
3721
|
+
nextToken?: string | undefined;
|
|
3722
|
+
}
|
|
3002
3723
|
/**
|
|
3003
3724
|
* <p>Filter criteria for listing backlog tasks, supporting time range, priority, status, and type filters.</p>
|
|
3004
3725
|
* @public
|
|
@@ -3759,6 +4480,16 @@ export interface PrivateConnectionSummary {
|
|
|
3759
4480
|
* @public
|
|
3760
4481
|
*/
|
|
3761
4482
|
certificateExpiryTime?: Date | undefined;
|
|
4483
|
+
/**
|
|
4484
|
+
* <p>DNS resolution mode for the Private Connection's resource gateway.</p>
|
|
4485
|
+
* @public
|
|
4486
|
+
*/
|
|
4487
|
+
dnsResolution?: ResourceConfigDnsResolution | undefined;
|
|
4488
|
+
/**
|
|
4489
|
+
* <p>Message describing the reason for a failed Private Connection, if applicable.</p>
|
|
4490
|
+
* @public
|
|
4491
|
+
*/
|
|
4492
|
+
failureMessage?: string | undefined;
|
|
3762
4493
|
}
|
|
3763
4494
|
/**
|
|
3764
4495
|
* <p>Output containing the list of Private Connections.</p>
|
|
@@ -3832,6 +4563,16 @@ export interface UpdatePrivateConnectionCertificateOutput {
|
|
|
3832
4563
|
* @public
|
|
3833
4564
|
*/
|
|
3834
4565
|
certificateExpiryTime?: Date | undefined;
|
|
4566
|
+
/**
|
|
4567
|
+
* <p>DNS resolution mode for the Private Connection's resource gateway.</p>
|
|
4568
|
+
* @public
|
|
4569
|
+
*/
|
|
4570
|
+
dnsResolution?: ResourceConfigDnsResolution | undefined;
|
|
4571
|
+
/**
|
|
4572
|
+
* <p>Message describing the reason for a failed Private Connection update, if applicable.</p>
|
|
4573
|
+
* @public
|
|
4574
|
+
*/
|
|
4575
|
+
failureMessage?: string | undefined;
|
|
3835
4576
|
}
|
|
3836
4577
|
/**
|
|
3837
4578
|
* <p>Context object for additional message metadata</p>
|
|
@@ -3886,6 +4627,11 @@ export interface SendMessageRequest {
|
|
|
3886
4627
|
* @public
|
|
3887
4628
|
*/
|
|
3888
4629
|
userId?: string | undefined;
|
|
4630
|
+
/**
|
|
4631
|
+
* <p>Optional list of asset identifiers to attach to the message</p>
|
|
4632
|
+
* @public
|
|
4633
|
+
*/
|
|
4634
|
+
assetIds?: string[] | undefined;
|
|
3889
4635
|
}
|
|
3890
4636
|
/**
|
|
3891
4637
|
* <p>JSON delta containing partial JSON</p>
|
|
@@ -4942,10 +5688,17 @@ export interface MCPServerSigV4AuthorizationConfig {
|
|
|
4942
5688
|
*/
|
|
4943
5689
|
service: string | undefined;
|
|
4944
5690
|
/**
|
|
4945
|
-
* <p>IAM role ARN to assume for SigV4 signing.</p>
|
|
5691
|
+
* <p>Deprecated — use mcpRoleArn instead. IAM role ARN to assume for SigV4 signing.</p>
|
|
5692
|
+
*
|
|
5693
|
+
* @deprecated (since 2026-05-27) Use mcpRoleArn instead.
|
|
4946
5694
|
* @public
|
|
4947
5695
|
*/
|
|
4948
|
-
roleArn
|
|
5696
|
+
roleArn?: string | undefined;
|
|
5697
|
+
/**
|
|
5698
|
+
* <p>IAM role ARN to assume for SigV4 signing. Optional — when omitted, credentials are resolved at runtime via a monitor account association.</p>
|
|
5699
|
+
* @public
|
|
5700
|
+
*/
|
|
5701
|
+
mcpRoleArn?: string | undefined;
|
|
4949
5702
|
/**
|
|
4950
5703
|
* <p>Custom headers for the SigV4 MCP server.</p>
|
|
4951
5704
|
* @public
|
|
@@ -5428,6 +6181,16 @@ export interface RegisterServiceInput {
|
|
|
5428
6181
|
* @public
|
|
5429
6182
|
*/
|
|
5430
6183
|
privateConnectionName?: string | undefined;
|
|
6184
|
+
/**
|
|
6185
|
+
* <p>The name of the private connection to use for API calls (target URL) only. Cannot be specified when privateConnectionName is provided.</p>
|
|
6186
|
+
* @public
|
|
6187
|
+
*/
|
|
6188
|
+
targetUrlPrivateConnectionName?: string | undefined;
|
|
6189
|
+
/**
|
|
6190
|
+
* <p>The name of the private connection to use for OAuth token exchange requests only. Cannot be specified when privateConnectionName is provided.</p>
|
|
6191
|
+
* @public
|
|
6192
|
+
*/
|
|
6193
|
+
exchangeUrlPrivateConnectionName?: string | undefined;
|
|
5431
6194
|
/**
|
|
5432
6195
|
* <p>The display name for the service registration.</p>
|
|
5433
6196
|
* @public
|
|
@@ -5505,6 +6268,95 @@ export interface UntagResourceRequest {
|
|
|
5505
6268
|
*/
|
|
5506
6269
|
export interface UntagResourceResponse {
|
|
5507
6270
|
}
|
|
6271
|
+
/**
|
|
6272
|
+
* <p>Request structure for updating an asset</p>
|
|
6273
|
+
* @public
|
|
6274
|
+
*/
|
|
6275
|
+
export interface UpdateAssetRequest {
|
|
6276
|
+
/**
|
|
6277
|
+
* <p>The unique identifier for the agent space containing the asset</p>
|
|
6278
|
+
* @public
|
|
6279
|
+
*/
|
|
6280
|
+
agentSpaceId: string | undefined;
|
|
6281
|
+
/**
|
|
6282
|
+
* <p>The unique identifier of the asset to update</p>
|
|
6283
|
+
* @public
|
|
6284
|
+
*/
|
|
6285
|
+
assetId: string | undefined;
|
|
6286
|
+
/**
|
|
6287
|
+
* <p>Metadata fields to update. Only the fields present in this document are updated. Omitted fields retain their current values.</p>
|
|
6288
|
+
* @public
|
|
6289
|
+
*/
|
|
6290
|
+
metadata?: __DocumentType | undefined;
|
|
6291
|
+
/**
|
|
6292
|
+
* <p>Optional content to set or replace. A single file adds or replaces one file; a zip replaces all files.</p>
|
|
6293
|
+
* @public
|
|
6294
|
+
*/
|
|
6295
|
+
content?: AssetContent | undefined;
|
|
6296
|
+
/**
|
|
6297
|
+
* <p>A unique, case-sensitive identifier used for idempotent asset update</p>
|
|
6298
|
+
* @public
|
|
6299
|
+
*/
|
|
6300
|
+
clientToken?: string | undefined;
|
|
6301
|
+
}
|
|
6302
|
+
/**
|
|
6303
|
+
* <p>Response structure for updating an asset</p>
|
|
6304
|
+
* @public
|
|
6305
|
+
*/
|
|
6306
|
+
export interface UpdateAssetResponse {
|
|
6307
|
+
/**
|
|
6308
|
+
* <p>The asset object</p>
|
|
6309
|
+
* @public
|
|
6310
|
+
*/
|
|
6311
|
+
asset: Asset | undefined;
|
|
6312
|
+
}
|
|
6313
|
+
/**
|
|
6314
|
+
* <p>Request structure for updating an asset file</p>
|
|
6315
|
+
* @public
|
|
6316
|
+
*/
|
|
6317
|
+
export interface UpdateAssetFileRequest {
|
|
6318
|
+
/**
|
|
6319
|
+
* <p>The unique identifier for the agent space containing the asset</p>
|
|
6320
|
+
* @public
|
|
6321
|
+
*/
|
|
6322
|
+
agentSpaceId: string | undefined;
|
|
6323
|
+
/**
|
|
6324
|
+
* <p>The unique identifier of the asset containing the file</p>
|
|
6325
|
+
* @public
|
|
6326
|
+
*/
|
|
6327
|
+
assetId: string | undefined;
|
|
6328
|
+
/**
|
|
6329
|
+
* <p>The path of the file within the asset to update</p>
|
|
6330
|
+
* @public
|
|
6331
|
+
*/
|
|
6332
|
+
path: string | undefined;
|
|
6333
|
+
/**
|
|
6334
|
+
* <p>Updated file content. If omitted, the existing content is unchanged.</p>
|
|
6335
|
+
* @public
|
|
6336
|
+
*/
|
|
6337
|
+
content?: AssetFileBody | undefined;
|
|
6338
|
+
/**
|
|
6339
|
+
* <p>Metadata fields to update. Only the fields present in this document are updated. Omitted fields retain their current values.</p>
|
|
6340
|
+
* @public
|
|
6341
|
+
*/
|
|
6342
|
+
metadata?: __DocumentType | undefined;
|
|
6343
|
+
/**
|
|
6344
|
+
* <p>A unique, case-sensitive identifier used for idempotent asset file update</p>
|
|
6345
|
+
* @public
|
|
6346
|
+
*/
|
|
6347
|
+
clientToken?: string | undefined;
|
|
6348
|
+
}
|
|
6349
|
+
/**
|
|
6350
|
+
* <p>Response structure for updating an asset file</p>
|
|
6351
|
+
* @public
|
|
6352
|
+
*/
|
|
6353
|
+
export interface UpdateAssetFileResponse {
|
|
6354
|
+
/**
|
|
6355
|
+
* <p>The asset file object</p>
|
|
6356
|
+
* @public
|
|
6357
|
+
*/
|
|
6358
|
+
file: AssetFile | undefined;
|
|
6359
|
+
}
|
|
5508
6360
|
/**
|
|
5509
6361
|
* <p>Request structure for updating a task</p>
|
|
5510
6362
|
* @public
|