@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,9 +1,13 @@
|
|
|
1
1
|
export * from "./AssociateServiceCommand";
|
|
2
2
|
export * from "./CreateAgentSpaceCommand";
|
|
3
|
+
export * from "./CreateAssetCommand";
|
|
4
|
+
export * from "./CreateAssetFileCommand";
|
|
3
5
|
export * from "./CreateBacklogTaskCommand";
|
|
4
6
|
export * from "./CreateChatCommand";
|
|
5
7
|
export * from "./CreatePrivateConnectionCommand";
|
|
6
8
|
export * from "./DeleteAgentSpaceCommand";
|
|
9
|
+
export * from "./DeleteAssetCommand";
|
|
10
|
+
export * from "./DeleteAssetFileCommand";
|
|
7
11
|
export * from "./DeletePrivateConnectionCommand";
|
|
8
12
|
export * from "./DeregisterServiceCommand";
|
|
9
13
|
export * from "./DescribePrivateConnectionCommand";
|
|
@@ -12,12 +16,19 @@ export * from "./DisassociateServiceCommand";
|
|
|
12
16
|
export * from "./EnableOperatorAppCommand";
|
|
13
17
|
export * from "./GetAccountUsageCommand";
|
|
14
18
|
export * from "./GetAgentSpaceCommand";
|
|
19
|
+
export * from "./GetAssetCommand";
|
|
20
|
+
export * from "./GetAssetContentCommand";
|
|
21
|
+
export * from "./GetAssetFileCommand";
|
|
15
22
|
export * from "./GetAssociationCommand";
|
|
16
23
|
export * from "./GetBacklogTaskCommand";
|
|
17
24
|
export * from "./GetOperatorAppCommand";
|
|
18
25
|
export * from "./GetRecommendationCommand";
|
|
19
26
|
export * from "./GetServiceCommand";
|
|
20
27
|
export * from "./ListAgentSpacesCommand";
|
|
28
|
+
export * from "./ListAssetFilesCommand";
|
|
29
|
+
export * from "./ListAssetTypesCommand";
|
|
30
|
+
export * from "./ListAssetVersionsCommand";
|
|
31
|
+
export * from "./ListAssetsCommand";
|
|
21
32
|
export * from "./ListAssociationsCommand";
|
|
22
33
|
export * from "./ListBacklogTasksCommand";
|
|
23
34
|
export * from "./ListChatsCommand";
|
|
@@ -35,6 +46,8 @@ export * from "./SendMessageCommand";
|
|
|
35
46
|
export * from "./TagResourceCommand";
|
|
36
47
|
export * from "./UntagResourceCommand";
|
|
37
48
|
export * from "./UpdateAgentSpaceCommand";
|
|
49
|
+
export * from "./UpdateAssetCommand";
|
|
50
|
+
export * from "./UpdateAssetFileCommand";
|
|
38
51
|
export * from "./UpdateAssociationCommand";
|
|
39
52
|
export * from "./UpdateBacklogTaskCommand";
|
|
40
53
|
export * from "./UpdateGoalCommand";
|
|
@@ -76,6 +76,7 @@ export declare const TaskStatus: {
|
|
|
76
76
|
readonly PENDING_CUSTOMER_APPROVAL: "PENDING_CUSTOMER_APPROVAL";
|
|
77
77
|
readonly PENDING_START: "PENDING_START";
|
|
78
78
|
readonly PENDING_TRIAGE: "PENDING_TRIAGE";
|
|
79
|
+
readonly SKIPPED: "SKIPPED";
|
|
79
80
|
readonly TIMED_OUT: "TIMED_OUT";
|
|
80
81
|
};
|
|
81
82
|
export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
|
|
@@ -85,6 +86,12 @@ export declare const UserType: {
|
|
|
85
86
|
readonly IDP: "IDP";
|
|
86
87
|
};
|
|
87
88
|
export type UserType = (typeof UserType)[keyof typeof UserType];
|
|
89
|
+
export declare const ResourceConfigDnsResolution: {
|
|
90
|
+
readonly IN_VPC: "IN_VPC";
|
|
91
|
+
readonly PUBLIC: "PUBLIC";
|
|
92
|
+
};
|
|
93
|
+
export type ResourceConfigDnsResolution =
|
|
94
|
+
(typeof ResourceConfigDnsResolution)[keyof typeof ResourceConfigDnsResolution];
|
|
88
95
|
export declare const IpAddressType: {
|
|
89
96
|
readonly DUAL_STACK: "DUAL_STACK";
|
|
90
97
|
readonly IPV4: "IPV4";
|
|
@@ -18,6 +18,7 @@ import {
|
|
|
18
18
|
PrivateConnectionType,
|
|
19
19
|
RecommendationPriority,
|
|
20
20
|
RecommendationStatus,
|
|
21
|
+
ResourceConfigDnsResolution,
|
|
21
22
|
SchedulerState,
|
|
22
23
|
Service,
|
|
23
24
|
SourceAccountType,
|
|
@@ -71,6 +72,7 @@ export interface RegisteredMCPServerSigV4Details {
|
|
|
71
72
|
region: string | undefined;
|
|
72
73
|
service: string | undefined;
|
|
73
74
|
roleArn: string | undefined;
|
|
75
|
+
mcpRoleArn?: string | undefined;
|
|
74
76
|
customHeaders?: Record<string, string> | undefined;
|
|
75
77
|
}
|
|
76
78
|
export interface RegisteredPagerDutyDetails {
|
|
@@ -972,6 +974,7 @@ export interface IdpAuthConfiguration {
|
|
|
972
974
|
}
|
|
973
975
|
export interface EnableOperatorAppOutput {
|
|
974
976
|
agentSpaceId: string | undefined;
|
|
977
|
+
operatorAppUrl?: string | undefined;
|
|
975
978
|
iam?: IamAuthConfiguration | undefined;
|
|
976
979
|
idc?: IdcAuthConfiguration | undefined;
|
|
977
980
|
idp?: IdpAuthConfiguration | undefined;
|
|
@@ -987,6 +990,7 @@ export interface GetOperatorAppInput {
|
|
|
987
990
|
agentSpaceId: string | undefined;
|
|
988
991
|
}
|
|
989
992
|
export interface GetOperatorAppOutput {
|
|
993
|
+
operatorAppUrl?: string | undefined;
|
|
990
994
|
iam?: IamAuthConfiguration | undefined;
|
|
991
995
|
idc?: IdcAuthConfiguration | undefined;
|
|
992
996
|
idp?: IdpAuthConfiguration | undefined;
|
|
@@ -1016,6 +1020,98 @@ export interface UpdateOperatorAppIdpConfigOutput {
|
|
|
1016
1020
|
agentSpaceId: string | undefined;
|
|
1017
1021
|
idp: IdpAuthConfiguration | undefined;
|
|
1018
1022
|
}
|
|
1023
|
+
export interface Asset {
|
|
1024
|
+
assetId: string | undefined;
|
|
1025
|
+
assetType: string | undefined;
|
|
1026
|
+
metadata: __DocumentType | undefined;
|
|
1027
|
+
version: number | undefined;
|
|
1028
|
+
createdAt: Date | undefined;
|
|
1029
|
+
updatedAt: Date | undefined;
|
|
1030
|
+
}
|
|
1031
|
+
export type AssetFileBody =
|
|
1032
|
+
| AssetFileBody.BytesMember
|
|
1033
|
+
| AssetFileBody.TextMember
|
|
1034
|
+
| AssetFileBody.$UnknownMember;
|
|
1035
|
+
export declare namespace AssetFileBody {
|
|
1036
|
+
interface BytesMember {
|
|
1037
|
+
bytes: Uint8Array;
|
|
1038
|
+
text?: never;
|
|
1039
|
+
$unknown?: never;
|
|
1040
|
+
}
|
|
1041
|
+
interface TextMember {
|
|
1042
|
+
bytes?: never;
|
|
1043
|
+
text: string;
|
|
1044
|
+
$unknown?: never;
|
|
1045
|
+
}
|
|
1046
|
+
interface $UnknownMember {
|
|
1047
|
+
bytes?: never;
|
|
1048
|
+
text?: never;
|
|
1049
|
+
$unknown: [string, any];
|
|
1050
|
+
}
|
|
1051
|
+
interface Visitor<T> {
|
|
1052
|
+
bytes: (value: Uint8Array) => T;
|
|
1053
|
+
text: (value: string) => T;
|
|
1054
|
+
_: (name: string, value: any) => T;
|
|
1055
|
+
}
|
|
1056
|
+
}
|
|
1057
|
+
export interface AssetFileContent {
|
|
1058
|
+
path: string | undefined;
|
|
1059
|
+
body: AssetFileBody | undefined;
|
|
1060
|
+
metadata?: __DocumentType | undefined;
|
|
1061
|
+
}
|
|
1062
|
+
export interface AssetZipContent {
|
|
1063
|
+
zipFile: Uint8Array | undefined;
|
|
1064
|
+
}
|
|
1065
|
+
export type AssetContent =
|
|
1066
|
+
| AssetContent.FileMember
|
|
1067
|
+
| AssetContent.ZipMember
|
|
1068
|
+
| AssetContent.$UnknownMember;
|
|
1069
|
+
export declare namespace AssetContent {
|
|
1070
|
+
interface FileMember {
|
|
1071
|
+
file: AssetFileContent;
|
|
1072
|
+
zip?: never;
|
|
1073
|
+
$unknown?: never;
|
|
1074
|
+
}
|
|
1075
|
+
interface ZipMember {
|
|
1076
|
+
file?: never;
|
|
1077
|
+
zip: AssetZipContent;
|
|
1078
|
+
$unknown?: never;
|
|
1079
|
+
}
|
|
1080
|
+
interface $UnknownMember {
|
|
1081
|
+
file?: never;
|
|
1082
|
+
zip?: never;
|
|
1083
|
+
$unknown: [string, any];
|
|
1084
|
+
}
|
|
1085
|
+
interface Visitor<T> {
|
|
1086
|
+
file: (value: AssetFileContent) => T;
|
|
1087
|
+
zip: (value: AssetZipContent) => T;
|
|
1088
|
+
_: (name: string, value: any) => T;
|
|
1089
|
+
}
|
|
1090
|
+
}
|
|
1091
|
+
export interface AssetFile {
|
|
1092
|
+
path: string | undefined;
|
|
1093
|
+
content: AssetFileBody | undefined;
|
|
1094
|
+
metadata?: __DocumentType | undefined;
|
|
1095
|
+
version: number | undefined;
|
|
1096
|
+
createdAt: Date | undefined;
|
|
1097
|
+
updatedAt: Date | undefined;
|
|
1098
|
+
}
|
|
1099
|
+
export interface AssetFileSummary {
|
|
1100
|
+
path: string | undefined;
|
|
1101
|
+
metadata?: __DocumentType | undefined;
|
|
1102
|
+
version: number | undefined;
|
|
1103
|
+
createdAt: Date | undefined;
|
|
1104
|
+
updatedAt: Date | undefined;
|
|
1105
|
+
}
|
|
1106
|
+
export interface AssetTypeSummary {
|
|
1107
|
+
assetType: string | undefined;
|
|
1108
|
+
description: string | undefined;
|
|
1109
|
+
}
|
|
1110
|
+
export interface AssetVersionMetadata {
|
|
1111
|
+
version: number | undefined;
|
|
1112
|
+
createdAt: Date | undefined;
|
|
1113
|
+
updatedAt: Date | undefined;
|
|
1114
|
+
}
|
|
1019
1115
|
export type AssistantMessageBlock =
|
|
1020
1116
|
| AssistantMessageBlock.TextMember
|
|
1021
1117
|
| AssistantMessageBlock.ToolUseMember
|
|
@@ -1048,6 +1144,27 @@ export interface ChatExecution {
|
|
|
1048
1144
|
updatedAt?: Date | undefined;
|
|
1049
1145
|
summary?: string | undefined;
|
|
1050
1146
|
}
|
|
1147
|
+
export interface CreateAssetRequest {
|
|
1148
|
+
agentSpaceId: string | undefined;
|
|
1149
|
+
assetType: string | undefined;
|
|
1150
|
+
metadata?: __DocumentType | undefined;
|
|
1151
|
+
content: AssetContent | undefined;
|
|
1152
|
+
clientToken?: string | undefined;
|
|
1153
|
+
}
|
|
1154
|
+
export interface CreateAssetResponse {
|
|
1155
|
+
asset: Asset | undefined;
|
|
1156
|
+
}
|
|
1157
|
+
export interface CreateAssetFileRequest {
|
|
1158
|
+
agentSpaceId: string | undefined;
|
|
1159
|
+
assetId: string | undefined;
|
|
1160
|
+
path: string | undefined;
|
|
1161
|
+
content: AssetFileBody | undefined;
|
|
1162
|
+
metadata?: __DocumentType | undefined;
|
|
1163
|
+
clientToken?: string | undefined;
|
|
1164
|
+
}
|
|
1165
|
+
export interface CreateAssetFileResponse {
|
|
1166
|
+
file: AssetFile | undefined;
|
|
1167
|
+
}
|
|
1051
1168
|
export interface ReferenceInput {
|
|
1052
1169
|
system: string | undefined;
|
|
1053
1170
|
title?: string | undefined;
|
|
@@ -1115,6 +1232,7 @@ export interface ServiceManagedInput {
|
|
|
1115
1232
|
ipv4AddressesPerEni?: number | undefined;
|
|
1116
1233
|
portRanges?: string[] | undefined;
|
|
1117
1234
|
certificate?: string | undefined;
|
|
1235
|
+
dnsResolution?: ResourceConfigDnsResolution | undefined;
|
|
1118
1236
|
}
|
|
1119
1237
|
export type PrivateConnectionMode =
|
|
1120
1238
|
| PrivateConnectionMode.SelfManagedMember
|
|
@@ -1156,6 +1274,8 @@ export interface CreatePrivateConnectionOutput {
|
|
|
1156
1274
|
resourceConfigurationId?: string | undefined;
|
|
1157
1275
|
status: PrivateConnectionStatus | undefined;
|
|
1158
1276
|
certificateExpiryTime?: Date | undefined;
|
|
1277
|
+
dnsResolution?: ResourceConfigDnsResolution | undefined;
|
|
1278
|
+
failureMessage?: string | undefined;
|
|
1159
1279
|
tags?: Record<string, string> | undefined;
|
|
1160
1280
|
}
|
|
1161
1281
|
export interface MCPServerAuthorizationDiscoveryConfig {
|
|
@@ -1184,6 +1304,17 @@ export interface DatadogServiceDetails {
|
|
|
1184
1304
|
description?: string | undefined;
|
|
1185
1305
|
authorizationConfig: DatadogAuthorizationConfig | undefined;
|
|
1186
1306
|
}
|
|
1307
|
+
export interface DeleteAssetRequest {
|
|
1308
|
+
agentSpaceId: string | undefined;
|
|
1309
|
+
assetId: string | undefined;
|
|
1310
|
+
}
|
|
1311
|
+
export interface DeleteAssetResponse {}
|
|
1312
|
+
export interface DeleteAssetFileRequest {
|
|
1313
|
+
agentSpaceId: string | undefined;
|
|
1314
|
+
assetId: string | undefined;
|
|
1315
|
+
path: string | undefined;
|
|
1316
|
+
}
|
|
1317
|
+
export interface DeleteAssetFileResponse {}
|
|
1187
1318
|
export interface DeletePrivateConnectionInput {
|
|
1188
1319
|
name: string | undefined;
|
|
1189
1320
|
}
|
|
@@ -1207,6 +1338,8 @@ export interface DescribePrivateConnectionOutput {
|
|
|
1207
1338
|
resourceConfigurationId?: string | undefined;
|
|
1208
1339
|
status: PrivateConnectionStatus | undefined;
|
|
1209
1340
|
certificateExpiryTime?: Date | undefined;
|
|
1341
|
+
dnsResolution?: ResourceConfigDnsResolution | undefined;
|
|
1342
|
+
failureMessage?: string | undefined;
|
|
1210
1343
|
tags?: Record<string, string> | undefined;
|
|
1211
1344
|
}
|
|
1212
1345
|
export interface GetAccountUsageInput {}
|
|
@@ -1222,6 +1355,32 @@ export interface GetAccountUsageOutput {
|
|
|
1222
1355
|
usagePeriodStartTime: Date | undefined;
|
|
1223
1356
|
usagePeriodEndTime: Date | undefined;
|
|
1224
1357
|
}
|
|
1358
|
+
export interface GetAssetRequest {
|
|
1359
|
+
agentSpaceId: string | undefined;
|
|
1360
|
+
assetId: string | undefined;
|
|
1361
|
+
assetVersion?: number | undefined;
|
|
1362
|
+
}
|
|
1363
|
+
export interface GetAssetResponse {
|
|
1364
|
+
asset: Asset | undefined;
|
|
1365
|
+
}
|
|
1366
|
+
export interface GetAssetContentRequest {
|
|
1367
|
+
agentSpaceId: string | undefined;
|
|
1368
|
+
assetId: string | undefined;
|
|
1369
|
+
assetVersion?: number | undefined;
|
|
1370
|
+
}
|
|
1371
|
+
export interface GetAssetContentResponse {
|
|
1372
|
+
content: AssetZipContent | undefined;
|
|
1373
|
+
version: number | undefined;
|
|
1374
|
+
}
|
|
1375
|
+
export interface GetAssetFileRequest {
|
|
1376
|
+
agentSpaceId: string | undefined;
|
|
1377
|
+
assetId: string | undefined;
|
|
1378
|
+
path: string | undefined;
|
|
1379
|
+
assetVersion?: number | undefined;
|
|
1380
|
+
}
|
|
1381
|
+
export interface GetAssetFileResponse {
|
|
1382
|
+
file: AssetFile | undefined;
|
|
1383
|
+
}
|
|
1225
1384
|
export interface GetBacklogTaskRequest {
|
|
1226
1385
|
agentSpaceId: string | undefined;
|
|
1227
1386
|
taskId: string | undefined;
|
|
@@ -1258,6 +1417,47 @@ export interface Recommendation {
|
|
|
1258
1417
|
export interface GetRecommendationResponse {
|
|
1259
1418
|
recommendation: Recommendation | undefined;
|
|
1260
1419
|
}
|
|
1420
|
+
export interface ListAssetFilesRequest {
|
|
1421
|
+
agentSpaceId: string | undefined;
|
|
1422
|
+
assetId: string | undefined;
|
|
1423
|
+
assetVersion?: number | undefined;
|
|
1424
|
+
nextToken?: string | undefined;
|
|
1425
|
+
maxResults?: number | undefined;
|
|
1426
|
+
}
|
|
1427
|
+
export interface ListAssetFilesResponse {
|
|
1428
|
+
items: AssetFileSummary[] | undefined;
|
|
1429
|
+
nextToken?: string | undefined;
|
|
1430
|
+
}
|
|
1431
|
+
export interface ListAssetsRequest {
|
|
1432
|
+
agentSpaceId: string | undefined;
|
|
1433
|
+
assetType?: string | undefined;
|
|
1434
|
+
updatedAfter?: Date | undefined;
|
|
1435
|
+
updatedBefore?: Date | undefined;
|
|
1436
|
+
nextToken?: string | undefined;
|
|
1437
|
+
maxResults?: number | undefined;
|
|
1438
|
+
}
|
|
1439
|
+
export interface ListAssetsResponse {
|
|
1440
|
+
items: Asset[] | undefined;
|
|
1441
|
+
nextToken?: string | undefined;
|
|
1442
|
+
}
|
|
1443
|
+
export interface ListAssetTypesRequest {
|
|
1444
|
+
nextToken?: string | undefined;
|
|
1445
|
+
maxResults?: number | undefined;
|
|
1446
|
+
}
|
|
1447
|
+
export interface ListAssetTypesResponse {
|
|
1448
|
+
items: AssetTypeSummary[] | undefined;
|
|
1449
|
+
nextToken?: string | undefined;
|
|
1450
|
+
}
|
|
1451
|
+
export interface ListAssetVersionsRequest {
|
|
1452
|
+
agentSpaceId: string | undefined;
|
|
1453
|
+
assetId: string | undefined;
|
|
1454
|
+
maxResults?: number | undefined;
|
|
1455
|
+
nextToken?: string | undefined;
|
|
1456
|
+
}
|
|
1457
|
+
export interface ListAssetVersionsResponse {
|
|
1458
|
+
items: AssetVersionMetadata[] | undefined;
|
|
1459
|
+
nextToken?: string | undefined;
|
|
1460
|
+
}
|
|
1261
1461
|
export interface TaskFilter {
|
|
1262
1462
|
createdAfter?: Date | undefined;
|
|
1263
1463
|
createdBefore?: Date | undefined;
|
|
@@ -1463,6 +1663,8 @@ export interface PrivateConnectionSummary {
|
|
|
1463
1663
|
resourceConfigurationId?: string | undefined;
|
|
1464
1664
|
status: PrivateConnectionStatus | undefined;
|
|
1465
1665
|
certificateExpiryTime?: Date | undefined;
|
|
1666
|
+
dnsResolution?: ResourceConfigDnsResolution | undefined;
|
|
1667
|
+
failureMessage?: string | undefined;
|
|
1466
1668
|
}
|
|
1467
1669
|
export interface ListPrivateConnectionsOutput {
|
|
1468
1670
|
privateConnections: PrivateConnectionSummary[] | undefined;
|
|
@@ -1480,6 +1682,8 @@ export interface UpdatePrivateConnectionCertificateOutput {
|
|
|
1480
1682
|
resourceConfigurationId?: string | undefined;
|
|
1481
1683
|
status: PrivateConnectionStatus | undefined;
|
|
1482
1684
|
certificateExpiryTime?: Date | undefined;
|
|
1685
|
+
dnsResolution?: ResourceConfigDnsResolution | undefined;
|
|
1686
|
+
failureMessage?: string | undefined;
|
|
1483
1687
|
}
|
|
1484
1688
|
export interface SendMessageContext {
|
|
1485
1689
|
currentPage?: string | undefined;
|
|
@@ -1492,6 +1696,7 @@ export interface SendMessageRequest {
|
|
|
1492
1696
|
content: string | undefined;
|
|
1493
1697
|
context?: SendMessageContext | undefined;
|
|
1494
1698
|
userId?: string | undefined;
|
|
1699
|
+
assetIds?: string[] | undefined;
|
|
1495
1700
|
}
|
|
1496
1701
|
export interface SendMessageJsonDelta {
|
|
1497
1702
|
partialJson?: string | undefined;
|
|
@@ -1919,7 +2124,8 @@ export interface NewRelicServiceDetails {
|
|
|
1919
2124
|
export interface MCPServerSigV4AuthorizationConfig {
|
|
1920
2125
|
region: string | undefined;
|
|
1921
2126
|
service: string | undefined;
|
|
1922
|
-
roleArn
|
|
2127
|
+
roleArn?: string | undefined;
|
|
2128
|
+
mcpRoleArn?: string | undefined;
|
|
1923
2129
|
customHeaders?: Record<string, string> | undefined;
|
|
1924
2130
|
}
|
|
1925
2131
|
export interface MCPServerSigV4ServiceDetails {
|
|
@@ -2215,6 +2421,8 @@ export interface RegisterServiceInput {
|
|
|
2215
2421
|
serviceDetails: ServiceDetails | undefined;
|
|
2216
2422
|
kmsKeyArn?: string | undefined;
|
|
2217
2423
|
privateConnectionName?: string | undefined;
|
|
2424
|
+
targetUrlPrivateConnectionName?: string | undefined;
|
|
2425
|
+
exchangeUrlPrivateConnectionName?: string | undefined;
|
|
2218
2426
|
name?: string | undefined;
|
|
2219
2427
|
tags?: Record<string, string> | undefined;
|
|
2220
2428
|
}
|
|
@@ -2234,6 +2442,27 @@ export interface UntagResourceRequest {
|
|
|
2234
2442
|
tagKeys: string[] | undefined;
|
|
2235
2443
|
}
|
|
2236
2444
|
export interface UntagResourceResponse {}
|
|
2445
|
+
export interface UpdateAssetRequest {
|
|
2446
|
+
agentSpaceId: string | undefined;
|
|
2447
|
+
assetId: string | undefined;
|
|
2448
|
+
metadata?: __DocumentType | undefined;
|
|
2449
|
+
content?: AssetContent | undefined;
|
|
2450
|
+
clientToken?: string | undefined;
|
|
2451
|
+
}
|
|
2452
|
+
export interface UpdateAssetResponse {
|
|
2453
|
+
asset: Asset | undefined;
|
|
2454
|
+
}
|
|
2455
|
+
export interface UpdateAssetFileRequest {
|
|
2456
|
+
agentSpaceId: string | undefined;
|
|
2457
|
+
assetId: string | undefined;
|
|
2458
|
+
path: string | undefined;
|
|
2459
|
+
content?: AssetFileBody | undefined;
|
|
2460
|
+
metadata?: __DocumentType | undefined;
|
|
2461
|
+
clientToken?: string | undefined;
|
|
2462
|
+
}
|
|
2463
|
+
export interface UpdateAssetFileResponse {
|
|
2464
|
+
file: AssetFile | undefined;
|
|
2465
|
+
}
|
|
2237
2466
|
export interface UpdateBacklogTaskRequest {
|
|
2238
2467
|
agentSpaceId: string | undefined;
|
|
2239
2468
|
taskId: string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAssetFilesCommandInput,
|
|
4
|
+
ListAssetFilesCommandOutput,
|
|
5
|
+
} from "../commands/ListAssetFilesCommand";
|
|
6
|
+
import { DevOpsAgentPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListAssetFiles: (
|
|
8
|
+
config: DevOpsAgentPaginationConfiguration,
|
|
9
|
+
input: ListAssetFilesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAssetFilesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAssetTypesCommandInput,
|
|
4
|
+
ListAssetTypesCommandOutput,
|
|
5
|
+
} from "../commands/ListAssetTypesCommand";
|
|
6
|
+
import { DevOpsAgentPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListAssetTypes: (
|
|
8
|
+
config: DevOpsAgentPaginationConfiguration,
|
|
9
|
+
input: ListAssetTypesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAssetTypesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAssetVersionsCommandInput,
|
|
4
|
+
ListAssetVersionsCommandOutput,
|
|
5
|
+
} from "../commands/ListAssetVersionsCommand";
|
|
6
|
+
import { DevOpsAgentPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListAssetVersions: (
|
|
8
|
+
config: DevOpsAgentPaginationConfiguration,
|
|
9
|
+
input: ListAssetVersionsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAssetVersionsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAssetsCommandInput,
|
|
4
|
+
ListAssetsCommandOutput,
|
|
5
|
+
} from "../commands/ListAssetsCommand";
|
|
6
|
+
import { DevOpsAgentPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListAssets: (
|
|
8
|
+
config: DevOpsAgentPaginationConfiguration,
|
|
9
|
+
input: ListAssetsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAssetsCommandOutput>;
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListAgentSpacesPaginator";
|
|
3
|
+
export * from "./ListAssetFilesPaginator";
|
|
4
|
+
export * from "./ListAssetsPaginator";
|
|
5
|
+
export * from "./ListAssetTypesPaginator";
|
|
6
|
+
export * from "./ListAssetVersionsPaginator";
|
|
3
7
|
export * from "./ListAssociationsPaginator";
|
|
4
8
|
export * from "./ListBacklogTasksPaginator";
|
|
5
9
|
export * from "./ListExecutionsPaginator";
|
|
@@ -18,6 +18,13 @@ export declare var ThrottlingException$: StaticErrorSchema;
|
|
|
18
18
|
export declare var ValidationException$: StaticErrorSchema;
|
|
19
19
|
export declare const errorTypeRegistries: TypeRegistry[];
|
|
20
20
|
export declare var AgentSpace$: StaticStructureSchema;
|
|
21
|
+
export declare var Asset$: StaticStructureSchema;
|
|
22
|
+
export declare var AssetFile$: StaticStructureSchema;
|
|
23
|
+
export declare var AssetFileContent$: StaticStructureSchema;
|
|
24
|
+
export declare var AssetFileSummary$: StaticStructureSchema;
|
|
25
|
+
export declare var AssetTypeSummary$: StaticStructureSchema;
|
|
26
|
+
export declare var AssetVersionMetadata$: StaticStructureSchema;
|
|
27
|
+
export declare var AssetZipContent$: StaticStructureSchema;
|
|
21
28
|
export declare var AssociateServiceInput$: StaticStructureSchema;
|
|
22
29
|
export declare var AssociateServiceOutput$: StaticStructureSchema;
|
|
23
30
|
export declare var Association$: StaticStructureSchema;
|
|
@@ -27,6 +34,10 @@ export declare var AzureDevOpsConfiguration$: StaticStructureSchema;
|
|
|
27
34
|
export declare var ChatExecution$: StaticStructureSchema;
|
|
28
35
|
export declare var CreateAgentSpaceInput$: StaticStructureSchema;
|
|
29
36
|
export declare var CreateAgentSpaceOutput$: StaticStructureSchema;
|
|
37
|
+
export declare var CreateAssetFileRequest$: StaticStructureSchema;
|
|
38
|
+
export declare var CreateAssetFileResponse$: StaticStructureSchema;
|
|
39
|
+
export declare var CreateAssetRequest$: StaticStructureSchema;
|
|
40
|
+
export declare var CreateAssetResponse$: StaticStructureSchema;
|
|
30
41
|
export declare var CreateBacklogTaskRequest$: StaticStructureSchema;
|
|
31
42
|
export declare var CreateBacklogTaskResponse$: StaticStructureSchema;
|
|
32
43
|
export declare var CreateChatRequest$: StaticStructureSchema;
|
|
@@ -36,6 +47,10 @@ export declare var CreatePrivateConnectionOutput$: StaticStructureSchema;
|
|
|
36
47
|
export declare var DatadogServiceDetails$: StaticStructureSchema;
|
|
37
48
|
export declare var DeleteAgentSpaceInput$: StaticStructureSchema;
|
|
38
49
|
export declare var DeleteAgentSpaceOutput$: StaticStructureSchema;
|
|
50
|
+
export declare var DeleteAssetFileRequest$: StaticStructureSchema;
|
|
51
|
+
export declare var DeleteAssetFileResponse$: StaticStructureSchema;
|
|
52
|
+
export declare var DeleteAssetRequest$: StaticStructureSchema;
|
|
53
|
+
export declare var DeleteAssetResponse$: StaticStructureSchema;
|
|
39
54
|
export declare var DeletePrivateConnectionInput$: StaticStructureSchema;
|
|
40
55
|
export declare var DeletePrivateConnectionOutput$: StaticStructureSchema;
|
|
41
56
|
export declare var DeregisterServiceInput$: StaticStructureSchema;
|
|
@@ -58,6 +73,12 @@ export declare var GetAccountUsageInput$: StaticStructureSchema;
|
|
|
58
73
|
export declare var GetAccountUsageOutput$: StaticStructureSchema;
|
|
59
74
|
export declare var GetAgentSpaceInput$: StaticStructureSchema;
|
|
60
75
|
export declare var GetAgentSpaceOutput$: StaticStructureSchema;
|
|
76
|
+
export declare var GetAssetContentRequest$: StaticStructureSchema;
|
|
77
|
+
export declare var GetAssetContentResponse$: StaticStructureSchema;
|
|
78
|
+
export declare var GetAssetFileRequest$: StaticStructureSchema;
|
|
79
|
+
export declare var GetAssetFileResponse$: StaticStructureSchema;
|
|
80
|
+
export declare var GetAssetRequest$: StaticStructureSchema;
|
|
81
|
+
export declare var GetAssetResponse$: StaticStructureSchema;
|
|
61
82
|
export declare var GetAssociationInput$: StaticStructureSchema;
|
|
62
83
|
export declare var GetAssociationOutput$: StaticStructureSchema;
|
|
63
84
|
export declare var GetBacklogTaskRequest$: StaticStructureSchema;
|
|
@@ -82,6 +103,14 @@ export declare var IdpAuthConfiguration$: StaticStructureSchema;
|
|
|
82
103
|
export declare var JournalRecord$: StaticStructureSchema;
|
|
83
104
|
export declare var ListAgentSpacesInput$: StaticStructureSchema;
|
|
84
105
|
export declare var ListAgentSpacesOutput$: StaticStructureSchema;
|
|
106
|
+
export declare var ListAssetFilesRequest$: StaticStructureSchema;
|
|
107
|
+
export declare var ListAssetFilesResponse$: StaticStructureSchema;
|
|
108
|
+
export declare var ListAssetsRequest$: StaticStructureSchema;
|
|
109
|
+
export declare var ListAssetsResponse$: StaticStructureSchema;
|
|
110
|
+
export declare var ListAssetTypesRequest$: StaticStructureSchema;
|
|
111
|
+
export declare var ListAssetTypesResponse$: StaticStructureSchema;
|
|
112
|
+
export declare var ListAssetVersionsRequest$: StaticStructureSchema;
|
|
113
|
+
export declare var ListAssetVersionsResponse$: StaticStructureSchema;
|
|
85
114
|
export declare var ListAssociationsInput$: StaticStructureSchema;
|
|
86
115
|
export declare var ListAssociationsOutput$: StaticStructureSchema;
|
|
87
116
|
export declare var ListBacklogTasksRequest$: StaticStructureSchema;
|
|
@@ -178,6 +207,10 @@ export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
|
178
207
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
179
208
|
export declare var UpdateAgentSpaceInput$: StaticStructureSchema;
|
|
180
209
|
export declare var UpdateAgentSpaceOutput$: StaticStructureSchema;
|
|
210
|
+
export declare var UpdateAssetFileRequest$: StaticStructureSchema;
|
|
211
|
+
export declare var UpdateAssetFileResponse$: StaticStructureSchema;
|
|
212
|
+
export declare var UpdateAssetRequest$: StaticStructureSchema;
|
|
213
|
+
export declare var UpdateAssetResponse$: StaticStructureSchema;
|
|
181
214
|
export declare var UpdateAssociationInput$: StaticStructureSchema;
|
|
182
215
|
export declare var UpdateAssociationOutput$: StaticStructureSchema;
|
|
183
216
|
export declare var UpdateBacklogTaskRequest$: StaticStructureSchema;
|
|
@@ -198,6 +231,8 @@ export declare var ValidationExceptionField$: StaticStructureSchema;
|
|
|
198
231
|
export declare var Webhook$: StaticStructureSchema;
|
|
199
232
|
export declare var AdditionalServiceDetails$: StaticUnionSchema;
|
|
200
233
|
export declare var AdditionalServiceRegistrationStep$: StaticUnionSchema;
|
|
234
|
+
export declare var AssetContent$: StaticUnionSchema;
|
|
235
|
+
export declare var AssetFileBody$: StaticUnionSchema;
|
|
201
236
|
export declare var AssistantMessageBlock$: StaticUnionSchema;
|
|
202
237
|
export declare var DatadogAuthorizationConfig$: StaticUnionSchema;
|
|
203
238
|
export declare var DynatraceServiceAuthorizationConfig$: StaticUnionSchema;
|
|
@@ -214,10 +249,14 @@ export declare var ServiceNowServiceAuthorizationConfig$: StaticUnionSchema;
|
|
|
214
249
|
export declare var UserMessageBlock$: StaticUnionSchema;
|
|
215
250
|
export declare var AssociateService$: StaticOperationSchema;
|
|
216
251
|
export declare var CreateAgentSpace$: StaticOperationSchema;
|
|
252
|
+
export declare var CreateAsset$: StaticOperationSchema;
|
|
253
|
+
export declare var CreateAssetFile$: StaticOperationSchema;
|
|
217
254
|
export declare var CreateBacklogTask$: StaticOperationSchema;
|
|
218
255
|
export declare var CreateChat$: StaticOperationSchema;
|
|
219
256
|
export declare var CreatePrivateConnection$: StaticOperationSchema;
|
|
220
257
|
export declare var DeleteAgentSpace$: StaticOperationSchema;
|
|
258
|
+
export declare var DeleteAsset$: StaticOperationSchema;
|
|
259
|
+
export declare var DeleteAssetFile$: StaticOperationSchema;
|
|
221
260
|
export declare var DeletePrivateConnection$: StaticOperationSchema;
|
|
222
261
|
export declare var DeregisterService$: StaticOperationSchema;
|
|
223
262
|
export declare var DescribePrivateConnection$: StaticOperationSchema;
|
|
@@ -226,12 +265,19 @@ export declare var DisassociateService$: StaticOperationSchema;
|
|
|
226
265
|
export declare var EnableOperatorApp$: StaticOperationSchema;
|
|
227
266
|
export declare var GetAccountUsage$: StaticOperationSchema;
|
|
228
267
|
export declare var GetAgentSpace$: StaticOperationSchema;
|
|
268
|
+
export declare var GetAsset$: StaticOperationSchema;
|
|
269
|
+
export declare var GetAssetContent$: StaticOperationSchema;
|
|
270
|
+
export declare var GetAssetFile$: StaticOperationSchema;
|
|
229
271
|
export declare var GetAssociation$: StaticOperationSchema;
|
|
230
272
|
export declare var GetBacklogTask$: StaticOperationSchema;
|
|
231
273
|
export declare var GetOperatorApp$: StaticOperationSchema;
|
|
232
274
|
export declare var GetRecommendation$: StaticOperationSchema;
|
|
233
275
|
export declare var GetService$: StaticOperationSchema;
|
|
234
276
|
export declare var ListAgentSpaces$: StaticOperationSchema;
|
|
277
|
+
export declare var ListAssetFiles$: StaticOperationSchema;
|
|
278
|
+
export declare var ListAssets$: StaticOperationSchema;
|
|
279
|
+
export declare var ListAssetTypes$: StaticOperationSchema;
|
|
280
|
+
export declare var ListAssetVersions$: StaticOperationSchema;
|
|
235
281
|
export declare var ListAssociations$: StaticOperationSchema;
|
|
236
282
|
export declare var ListBacklogTasks$: StaticOperationSchema;
|
|
237
283
|
export declare var ListChats$: StaticOperationSchema;
|
|
@@ -249,6 +295,8 @@ export declare var SendMessage$: StaticOperationSchema;
|
|
|
249
295
|
export declare var TagResource$: StaticOperationSchema;
|
|
250
296
|
export declare var UntagResource$: StaticOperationSchema;
|
|
251
297
|
export declare var UpdateAgentSpace$: StaticOperationSchema;
|
|
298
|
+
export declare var UpdateAsset$: StaticOperationSchema;
|
|
299
|
+
export declare var UpdateAssetFile$: StaticOperationSchema;
|
|
252
300
|
export declare var UpdateAssociation$: StaticOperationSchema;
|
|
253
301
|
export declare var UpdateBacklogTask$: StaticOperationSchema;
|
|
254
302
|
export declare var UpdateGoal$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-devops-agent",
|
|
3
3
|
"description": "AWS SDK for JavaScript Devops Agent Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1065.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
|
-
"build:cjs": "node ../../scripts/compilation/inline
|
|
7
|
+
"build:cjs": "node ../../scripts/compilation/inline",
|
|
8
8
|
"build:es": "tsc -p tsconfig.es.json",
|
|
9
9
|
"build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.974.20",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.54",
|
|
26
|
+
"@aws-sdk/types": "^3.973.12",
|
|
27
27
|
"@smithy/core": "^3.24.6",
|
|
28
28
|
"@smithy/fetch-http-handler": "^5.4.6",
|
|
29
29
|
"@smithy/node-http-handler": "^4.7.6",
|