@aws-sdk/client-iotsitewise 3.1123.0 → 3.1125.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/dist-cjs/index.js +73 -9
- package/dist-es/models/enums.js +9 -0
- package/dist-es/schemas/schemas_0.js +56 -8
- package/dist-types/commands/CreateTaskCommand.d.ts +17 -0
- package/dist-types/commands/DescribePipelineExecutionCommand.d.ts +30 -0
- package/dist-types/commands/DescribeProjectCommand.d.ts +2 -1
- package/dist-types/commands/DescribeQueryCommand.d.ts +1 -1
- package/dist-types/commands/DescribeSearchCommand.d.ts +1 -2
- package/dist-types/commands/DescribeTaskCommand.d.ts +17 -0
- package/dist-types/commands/StartPipelineExecutionCommand.d.ts +17 -0
- package/dist-types/commands/UpdateTaskCommand.d.ts +17 -0
- package/dist-types/models/enums.d.ts +25 -0
- package/dist-types/models/models_0.d.ts +129 -132
- package/dist-types/models/models_1.d.ts +140 -1
- package/dist-types/schemas/schemas_0.d.ts +5 -0
- package/dist-types/ts3.4/commands/DescribeProjectCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DescribeQueryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeSearchCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/enums.d.ts +11 -0
- package/dist-types/ts3.4/models/models_0.d.ts +38 -30
- package/dist-types/ts3.4/models/models_1.d.ts +32 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +5 -0
- package/package.json +1 -1
|
@@ -41,6 +41,7 @@ import {
|
|
|
41
41
|
JobType,
|
|
42
42
|
LoggingLevel,
|
|
43
43
|
MonitorErrorCode,
|
|
44
|
+
MountStorageType,
|
|
44
45
|
Permission,
|
|
45
46
|
PipelineErrorCode,
|
|
46
47
|
PipelineExecutionState,
|
|
@@ -56,6 +57,7 @@ import {
|
|
|
56
57
|
ResolveToResourceType,
|
|
57
58
|
ResourceErrorCode,
|
|
58
59
|
ResourceState,
|
|
60
|
+
StorageClass,
|
|
59
61
|
TimeOrdering,
|
|
60
62
|
WorkspaceState,
|
|
61
63
|
} from "./enums";
|
|
@@ -1082,14 +1084,45 @@ export interface CreateProjectResponse {
|
|
|
1082
1084
|
projectId: string | undefined;
|
|
1083
1085
|
projectArn: string | undefined;
|
|
1084
1086
|
}
|
|
1087
|
+
export interface EphemeralStorageConfiguration {
|
|
1088
|
+
storageClass: StorageClass | undefined;
|
|
1089
|
+
storageSizeInGiB: number | undefined;
|
|
1090
|
+
}
|
|
1091
|
+
export interface S3AccessPointSource {
|
|
1092
|
+
accessPointArn: string | undefined;
|
|
1093
|
+
prefix?: string | undefined;
|
|
1094
|
+
}
|
|
1095
|
+
export type MountSource = MountSource.S3AccessPointMember | MountSource.$UnknownMember;
|
|
1096
|
+
export declare namespace MountSource {
|
|
1097
|
+
interface S3AccessPointMember {
|
|
1098
|
+
s3AccessPoint: S3AccessPointSource;
|
|
1099
|
+
$unknown?: never;
|
|
1100
|
+
}
|
|
1101
|
+
interface $UnknownMember {
|
|
1102
|
+
s3AccessPoint?: never;
|
|
1103
|
+
$unknown: [string, any];
|
|
1104
|
+
}
|
|
1105
|
+
interface Visitor<T> {
|
|
1106
|
+
s3AccessPoint: (value: S3AccessPointSource) => T;
|
|
1107
|
+
_: (name: string, value: any) => T;
|
|
1108
|
+
}
|
|
1109
|
+
}
|
|
1110
|
+
export interface Mount {
|
|
1111
|
+
name: string | undefined;
|
|
1112
|
+
relativePath: string | undefined;
|
|
1113
|
+
source: MountSource | undefined;
|
|
1114
|
+
storageType: MountStorageType | undefined;
|
|
1115
|
+
}
|
|
1085
1116
|
export interface ContainerTaskConfiguration {
|
|
1086
1117
|
ecrUri: string | undefined;
|
|
1087
1118
|
taskExecutionRole: string | undefined;
|
|
1088
1119
|
processingType: ProcessingType | undefined;
|
|
1089
1120
|
processingUnit: ProcessingUnit | undefined;
|
|
1121
|
+
ephemeralStorageConfiguration?: EphemeralStorageConfiguration | undefined;
|
|
1090
1122
|
command?: string[] | undefined;
|
|
1091
1123
|
timeoutSeconds?: number | undefined;
|
|
1092
1124
|
environmentVariables?: Record<string, string> | undefined;
|
|
1125
|
+
mounts?: Mount[] | undefined;
|
|
1093
1126
|
}
|
|
1094
1127
|
export type TaskConfiguration =
|
|
1095
1128
|
| TaskConfiguration.ContainerTaskConfigurationMember
|
|
@@ -1653,11 +1686,15 @@ export interface ComputeNodeExecutionDetails {
|
|
|
1653
1686
|
startTime?: Date | undefined;
|
|
1654
1687
|
endTime?: Date | undefined;
|
|
1655
1688
|
executionEnvironmentVariables?: Record<string, string> | undefined;
|
|
1689
|
+
executionMounts?: Mount[] | undefined;
|
|
1656
1690
|
}
|
|
1657
1691
|
export interface ExecutionEnvironmentVariables {
|
|
1658
1692
|
global?: Record<string, string> | undefined;
|
|
1659
1693
|
computeNodes?: Record<string, Record<string, string>> | undefined;
|
|
1660
1694
|
}
|
|
1695
|
+
export interface MountOverrides {
|
|
1696
|
+
computeNodes: Record<string, Mount[]> | undefined;
|
|
1697
|
+
}
|
|
1661
1698
|
export interface PipelineExecutionStateDetails {
|
|
1662
1699
|
code?: PipelineErrorCode | undefined;
|
|
1663
1700
|
message: string | undefined;
|
|
@@ -1676,6 +1713,7 @@ export interface DescribePipelineExecutionResponse {
|
|
|
1676
1713
|
startTime?: Date | undefined;
|
|
1677
1714
|
endTime?: Date | undefined;
|
|
1678
1715
|
requestEnvironmentVariables: ExecutionEnvironmentVariables | undefined;
|
|
1716
|
+
requestMountOverrides?: MountOverrides | undefined;
|
|
1679
1717
|
executionPriority?: number | undefined;
|
|
1680
1718
|
computeNodeExecutionDetails: ComputeNodeExecutionDetails[] | undefined;
|
|
1681
1719
|
nextToken?: string | undefined;
|
|
@@ -1709,33 +1747,3 @@ export interface DescribePortalResponse {
|
|
|
1709
1747
|
export interface DescribeProjectRequest {
|
|
1710
1748
|
projectId: string | undefined;
|
|
1711
1749
|
}
|
|
1712
|
-
export interface DescribeProjectResponse {
|
|
1713
|
-
projectId: string | undefined;
|
|
1714
|
-
projectArn: string | undefined;
|
|
1715
|
-
projectName: string | undefined;
|
|
1716
|
-
portalId: string | undefined;
|
|
1717
|
-
projectDescription?: string | undefined;
|
|
1718
|
-
projectCreationDate: Date | undefined;
|
|
1719
|
-
projectLastUpdateDate: Date | undefined;
|
|
1720
|
-
}
|
|
1721
|
-
export interface DescribeQueryRequest {
|
|
1722
|
-
workspaceName: string | undefined;
|
|
1723
|
-
queryId: string | undefined;
|
|
1724
|
-
}
|
|
1725
|
-
export interface QueryStatistics {
|
|
1726
|
-
rowCount: number | undefined;
|
|
1727
|
-
bytesScanned: number | undefined;
|
|
1728
|
-
executionTimeInMillis: number | undefined;
|
|
1729
|
-
}
|
|
1730
|
-
export interface DescribeQueryResponse {
|
|
1731
|
-
queryId: string | undefined;
|
|
1732
|
-
status: QueryStatus | undefined;
|
|
1733
|
-
submittedAt: Date | undefined;
|
|
1734
|
-
completedAt?: Date | undefined;
|
|
1735
|
-
statistics?: QueryStatistics | undefined;
|
|
1736
|
-
errorMessage?: string | undefined;
|
|
1737
|
-
}
|
|
1738
|
-
export interface DescribeSearchRequest {
|
|
1739
|
-
workspaceName: string | undefined;
|
|
1740
|
-
searchId: string | undefined;
|
|
1741
|
-
}
|
|
@@ -93,6 +93,7 @@ import {
|
|
|
93
93
|
Identity,
|
|
94
94
|
ImageFile,
|
|
95
95
|
LoggingOptions,
|
|
96
|
+
MountOverrides,
|
|
96
97
|
PipelineExecutionStatus,
|
|
97
98
|
PortalStatus,
|
|
98
99
|
PortalTypeEntry,
|
|
@@ -107,6 +108,36 @@ import {
|
|
|
107
108
|
WorkspaceEncryptionConfiguration,
|
|
108
109
|
WorkspaceStatus,
|
|
109
110
|
} from "./models_0";
|
|
111
|
+
export interface DescribeProjectResponse {
|
|
112
|
+
projectId: string | undefined;
|
|
113
|
+
projectArn: string | undefined;
|
|
114
|
+
projectName: string | undefined;
|
|
115
|
+
portalId: string | undefined;
|
|
116
|
+
projectDescription?: string | undefined;
|
|
117
|
+
projectCreationDate: Date | undefined;
|
|
118
|
+
projectLastUpdateDate: Date | undefined;
|
|
119
|
+
}
|
|
120
|
+
export interface DescribeQueryRequest {
|
|
121
|
+
workspaceName: string | undefined;
|
|
122
|
+
queryId: string | undefined;
|
|
123
|
+
}
|
|
124
|
+
export interface QueryStatistics {
|
|
125
|
+
rowCount: number | undefined;
|
|
126
|
+
bytesScanned: number | undefined;
|
|
127
|
+
executionTimeInMillis: number | undefined;
|
|
128
|
+
}
|
|
129
|
+
export interface DescribeQueryResponse {
|
|
130
|
+
queryId: string | undefined;
|
|
131
|
+
status: QueryStatus | undefined;
|
|
132
|
+
submittedAt: Date | undefined;
|
|
133
|
+
completedAt?: Date | undefined;
|
|
134
|
+
statistics?: QueryStatistics | undefined;
|
|
135
|
+
errorMessage?: string | undefined;
|
|
136
|
+
}
|
|
137
|
+
export interface DescribeSearchRequest {
|
|
138
|
+
workspaceName: string | undefined;
|
|
139
|
+
searchId: string | undefined;
|
|
140
|
+
}
|
|
110
141
|
export interface DescribeSearchResponse {
|
|
111
142
|
searchId: string | undefined;
|
|
112
143
|
workspaceName: string | undefined;
|
|
@@ -1142,6 +1173,7 @@ export interface StartPipelineExecutionRequest {
|
|
|
1142
1173
|
workspaceName: string | undefined;
|
|
1143
1174
|
pipelineName: string | undefined;
|
|
1144
1175
|
executionEnvironmentVariableOverrides?: ExecutionEnvironmentVariables | undefined;
|
|
1176
|
+
executionMountOverrides?: MountOverrides | undefined;
|
|
1145
1177
|
executionPriority?: number | undefined;
|
|
1146
1178
|
clientToken?: string | undefined;
|
|
1147
1179
|
}
|
|
@@ -281,6 +281,7 @@ export declare var DisassociateDataSegmentEntry$: StaticStructureSchema;
|
|
|
281
281
|
export declare var DisassociateTimeSeriesFromAssetPropertyRequest$: StaticStructureSchema;
|
|
282
282
|
export declare var EnrichmentJobSummary$: StaticStructureSchema;
|
|
283
283
|
export declare var EnrichmentTrimSettings$: StaticStructureSchema;
|
|
284
|
+
export declare var EphemeralStorageConfiguration$: StaticStructureSchema;
|
|
284
285
|
export declare var ErrorDetails$: StaticStructureSchema;
|
|
285
286
|
export declare var ErrorReportLocation$: StaticStructureSchema;
|
|
286
287
|
export declare var EventDetection$: StaticStructureSchema;
|
|
@@ -418,6 +419,8 @@ export declare var Metric$: StaticStructureSchema;
|
|
|
418
419
|
export declare var MetricProcessingConfig$: StaticStructureSchema;
|
|
419
420
|
export declare var MetricWindow$: StaticStructureSchema;
|
|
420
421
|
export declare var MonitorErrorDetails$: StaticStructureSchema;
|
|
422
|
+
export declare var Mount$: StaticStructureSchema;
|
|
423
|
+
export declare var MountOverrides$: StaticStructureSchema;
|
|
421
424
|
export declare var Mp4$: StaticStructureSchema;
|
|
422
425
|
export declare var MultiLayerStorage$: StaticStructureSchema;
|
|
423
426
|
export declare var Parquet$: StaticStructureSchema;
|
|
@@ -455,6 +458,7 @@ export declare var ResourceError$: StaticStructureSchema;
|
|
|
455
458
|
export declare var ResourceStatus$: StaticStructureSchema;
|
|
456
459
|
export declare var RetentionPeriod$: StaticStructureSchema;
|
|
457
460
|
export declare var Row$: StaticStructureSchema;
|
|
461
|
+
export declare var S3AccessPointSource$: StaticStructureSchema;
|
|
458
462
|
export declare var SearchFilters$: StaticStructureSchema;
|
|
459
463
|
export declare var SearchResult$: StaticStructureSchema;
|
|
460
464
|
export declare var SearchSummary$: StaticStructureSchema;
|
|
@@ -521,6 +525,7 @@ export declare var WorkspaceErrorDetails$: StaticStructureSchema;
|
|
|
521
525
|
export declare var WorkspaceStatus$: StaticStructureSchema;
|
|
522
526
|
export declare var WorkspaceSummary$: StaticStructureSchema;
|
|
523
527
|
export declare var EnrichmentJobConfiguration$: StaticUnionSchema;
|
|
528
|
+
export declare var MountSource$: StaticUnionSchema;
|
|
524
529
|
export declare var ProcessingInput$: StaticUnionSchema;
|
|
525
530
|
export declare var ResponseStream$: StaticUnionSchema;
|
|
526
531
|
export declare var TaskConfiguration$: StaticUnionSchema;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iotsitewise",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1125.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Iotsitewise Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-iotsitewise",
|
|
6
6
|
"license": "Apache-2.0",
|