@aws-sdk/client-braket 3.687.0 → 3.692.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-types/models/models_0.d.ts +65 -65
- package/dist-types/ts3.4/models/models_0.d.ts +65 -65
- package/package.json +35 -35
|
@@ -57,7 +57,7 @@ export interface ScriptModeConfig {
|
|
|
57
57
|
* <p>The type of compression used by the Python scripts for an Amazon Braket job.</p>
|
|
58
58
|
* @public
|
|
59
59
|
*/
|
|
60
|
-
compressionType?: CompressionType;
|
|
60
|
+
compressionType?: CompressionType | undefined;
|
|
61
61
|
}
|
|
62
62
|
/**
|
|
63
63
|
* <p>Defines the Amazon Braket job to be created. Specifies the container image the job uses
|
|
@@ -69,12 +69,12 @@ export interface AlgorithmSpecification {
|
|
|
69
69
|
* <p>Configures the paths to the Python scripts used for entry and training.</p>
|
|
70
70
|
* @public
|
|
71
71
|
*/
|
|
72
|
-
scriptModeConfig?: ScriptModeConfig;
|
|
72
|
+
scriptModeConfig?: ScriptModeConfig | undefined;
|
|
73
73
|
/**
|
|
74
74
|
* <p>The container image used to create an Amazon Braket job.</p>
|
|
75
75
|
* @public
|
|
76
76
|
*/
|
|
77
|
-
containerImage?: ContainerImage;
|
|
77
|
+
containerImage?: ContainerImage | undefined;
|
|
78
78
|
}
|
|
79
79
|
/**
|
|
80
80
|
* @public
|
|
@@ -157,7 +157,7 @@ export interface DeviceQueueInfo {
|
|
|
157
157
|
* are processed before the tasks in a normal queue.</p>
|
|
158
158
|
* @public
|
|
159
159
|
*/
|
|
160
|
-
queuePriority?: QueuePriority;
|
|
160
|
+
queuePriority?: QueuePriority | undefined;
|
|
161
161
|
}
|
|
162
162
|
/**
|
|
163
163
|
* @public
|
|
@@ -222,7 +222,7 @@ export interface GetDeviceResponse {
|
|
|
222
222
|
* <p>List of information about tasks and jobs queued on a device.</p>
|
|
223
223
|
* @public
|
|
224
224
|
*/
|
|
225
|
-
deviceQueueInfo?: DeviceQueueInfo[];
|
|
225
|
+
deviceQueueInfo?: DeviceQueueInfo[] | undefined;
|
|
226
226
|
}
|
|
227
227
|
/**
|
|
228
228
|
* <p>The request processing has failed because of an unknown error, exception, or
|
|
@@ -298,12 +298,12 @@ export interface SearchDevicesRequest {
|
|
|
298
298
|
* from the previous request continue results where the previous request ended.</p>
|
|
299
299
|
* @public
|
|
300
300
|
*/
|
|
301
|
-
nextToken?: string;
|
|
301
|
+
nextToken?: string | undefined;
|
|
302
302
|
/**
|
|
303
303
|
* <p>The maximum number of results to return in the response.</p>
|
|
304
304
|
* @public
|
|
305
305
|
*/
|
|
306
|
-
maxResults?: number;
|
|
306
|
+
maxResults?: number | undefined;
|
|
307
307
|
/**
|
|
308
308
|
* <p>The filter values to use to search for a device.</p>
|
|
309
309
|
* @public
|
|
@@ -357,7 +357,7 @@ export interface SearchDevicesResponse {
|
|
|
357
357
|
* ended.</p>
|
|
358
358
|
* @public
|
|
359
359
|
*/
|
|
360
|
-
nextToken?: string;
|
|
360
|
+
nextToken?: string | undefined;
|
|
361
361
|
}
|
|
362
362
|
/**
|
|
363
363
|
* @public
|
|
@@ -418,7 +418,7 @@ export interface JobCheckpointConfig {
|
|
|
418
418
|
* <code>/opt/braket/checkpoints/</code>.</p>
|
|
419
419
|
* @public
|
|
420
420
|
*/
|
|
421
|
-
localPath?: string;
|
|
421
|
+
localPath?: string | undefined;
|
|
422
422
|
/**
|
|
423
423
|
* <p>Identifies the S3 path where you want Amazon Braket to store checkpoints. For example,
|
|
424
424
|
* <code>s3://bucket-name/key-name-prefix</code>.</p>
|
|
@@ -477,7 +477,7 @@ export interface InputFileConfig {
|
|
|
477
477
|
* <p>The MIME type of the data.</p>
|
|
478
478
|
* @public
|
|
479
479
|
*/
|
|
480
|
-
contentType?: string;
|
|
480
|
+
contentType?: string | undefined;
|
|
481
481
|
/**
|
|
482
482
|
* <p>The location of the channel data.</p>
|
|
483
483
|
* @public
|
|
@@ -555,7 +555,7 @@ export interface InstanceConfig {
|
|
|
555
555
|
* Amazon Braket. The default value is 1.</p>
|
|
556
556
|
* @public
|
|
557
557
|
*/
|
|
558
|
-
instanceCount?: number;
|
|
558
|
+
instanceCount?: number | undefined;
|
|
559
559
|
}
|
|
560
560
|
/**
|
|
561
561
|
* <p>Specifies the path to the S3 location where you want to store job artifacts and the
|
|
@@ -568,7 +568,7 @@ export interface JobOutputDataConfig {
|
|
|
568
568
|
* training artifacts at rest using Amazon S3 server-side encryption.</p>
|
|
569
569
|
* @public
|
|
570
570
|
*/
|
|
571
|
-
kmsKeyId?: string;
|
|
571
|
+
kmsKeyId?: string | undefined;
|
|
572
572
|
/**
|
|
573
573
|
* <p>Identifies the S3 path where you want Amazon Braket to store the job training artifacts.
|
|
574
574
|
* For example, <code>s3://bucket-name/key-name-prefix</code>.</p>
|
|
@@ -585,7 +585,7 @@ export interface JobStoppingCondition {
|
|
|
585
585
|
* <p>The maximum length of time, in seconds, that an Amazon Braket job can run.</p>
|
|
586
586
|
* @public
|
|
587
587
|
*/
|
|
588
|
-
maxRuntimeInSeconds?: number;
|
|
588
|
+
maxRuntimeInSeconds?: number | undefined;
|
|
589
589
|
}
|
|
590
590
|
/**
|
|
591
591
|
* @public
|
|
@@ -595,7 +595,7 @@ export interface CreateJobRequest {
|
|
|
595
595
|
* <p>A unique token that guarantees that the call to this API is idempotent.</p>
|
|
596
596
|
* @public
|
|
597
597
|
*/
|
|
598
|
-
clientToken?: string;
|
|
598
|
+
clientToken?: string | undefined;
|
|
599
599
|
/**
|
|
600
600
|
* <p>Definition of the Amazon Braket job to be created. Specifies the container image the job
|
|
601
601
|
* uses and information about the Python scripts used for entry and training.</p>
|
|
@@ -607,7 +607,7 @@ export interface CreateJobRequest {
|
|
|
607
607
|
* located.</p>
|
|
608
608
|
* @public
|
|
609
609
|
*/
|
|
610
|
-
inputDataConfig?: InputFileConfig[];
|
|
610
|
+
inputDataConfig?: InputFileConfig[] | undefined;
|
|
611
611
|
/**
|
|
612
612
|
* <p>The path to the S3 location where you want to store job artifacts and the encryption key
|
|
613
613
|
* used to store them.</p>
|
|
@@ -618,7 +618,7 @@ export interface CreateJobRequest {
|
|
|
618
618
|
* <p>Information about the output locations for job checkpoint data.</p>
|
|
619
619
|
* @public
|
|
620
620
|
*/
|
|
621
|
-
checkpointConfig?: JobCheckpointConfig;
|
|
621
|
+
checkpointConfig?: JobCheckpointConfig | undefined;
|
|
622
622
|
/**
|
|
623
623
|
* <p>The name of the Amazon Braket job.</p>
|
|
624
624
|
* @public
|
|
@@ -635,7 +635,7 @@ export interface CreateJobRequest {
|
|
|
635
635
|
* <p> The user-defined criteria that specifies when a job stops running.</p>
|
|
636
636
|
* @public
|
|
637
637
|
*/
|
|
638
|
-
stoppingCondition?: JobStoppingCondition;
|
|
638
|
+
stoppingCondition?: JobStoppingCondition | undefined;
|
|
639
639
|
/**
|
|
640
640
|
* <p>Configuration of the resource instances to use while running the hybrid job on Amazon
|
|
641
641
|
* Braket.</p>
|
|
@@ -648,7 +648,7 @@ export interface CreateJobRequest {
|
|
|
648
648
|
* is the name of the hyperparameter and the value is the value of th hyperparameter.</p>
|
|
649
649
|
* @public
|
|
650
650
|
*/
|
|
651
|
-
hyperParameters?: Record<string, string
|
|
651
|
+
hyperParameters?: Record<string, string> | undefined;
|
|
652
652
|
/**
|
|
653
653
|
* <p>The quantum processing unit (QPU) or simulator used to create an Amazon Braket
|
|
654
654
|
* job.</p>
|
|
@@ -660,12 +660,12 @@ export interface CreateJobRequest {
|
|
|
660
660
|
* Amazon Braket resources.</p>
|
|
661
661
|
* @public
|
|
662
662
|
*/
|
|
663
|
-
tags?: Record<string, string
|
|
663
|
+
tags?: Record<string, string> | undefined;
|
|
664
664
|
/**
|
|
665
665
|
* <p>The list of Amazon Braket resources associated with the hybrid job.</p>
|
|
666
666
|
* @public
|
|
667
667
|
*/
|
|
668
|
-
associations?: Association[];
|
|
668
|
+
associations?: Association[] | undefined;
|
|
669
669
|
}
|
|
670
670
|
/**
|
|
671
671
|
* @public
|
|
@@ -737,7 +737,7 @@ export interface GetJobRequest {
|
|
|
737
737
|
* <p>A list of attributes to return information for.</p>
|
|
738
738
|
* @public
|
|
739
739
|
*/
|
|
740
|
-
additionalAttributeNames?: HybridJobAdditionalAttributeName[];
|
|
740
|
+
additionalAttributeNames?: HybridJobAdditionalAttributeName[] | undefined;
|
|
741
741
|
}
|
|
742
742
|
/**
|
|
743
743
|
* @public
|
|
@@ -769,17 +769,17 @@ export interface JobEventDetails {
|
|
|
769
769
|
* <p>The type of event that occurred related to the Amazon Braket job.</p>
|
|
770
770
|
* @public
|
|
771
771
|
*/
|
|
772
|
-
eventType?: JobEventType;
|
|
772
|
+
eventType?: JobEventType | undefined;
|
|
773
773
|
/**
|
|
774
774
|
* <p>The type of event that occurred related to the Amazon Braket job.</p>
|
|
775
775
|
* @public
|
|
776
776
|
*/
|
|
777
|
-
timeOfEvent?: Date;
|
|
777
|
+
timeOfEvent?: Date | undefined;
|
|
778
778
|
/**
|
|
779
779
|
* <p>A message describing the event that occurred related to the Amazon Braket job.</p>
|
|
780
780
|
* @public
|
|
781
781
|
*/
|
|
782
|
-
message?: string;
|
|
782
|
+
message?: string | undefined;
|
|
783
783
|
}
|
|
784
784
|
/**
|
|
785
785
|
* <p>Information about the queue for a specified job.</p>
|
|
@@ -802,7 +802,7 @@ export interface HybridJobQueueInfo {
|
|
|
802
802
|
* that information.</p>
|
|
803
803
|
* @public
|
|
804
804
|
*/
|
|
805
|
-
message?: string;
|
|
805
|
+
message?: string | undefined;
|
|
806
806
|
}
|
|
807
807
|
/**
|
|
808
808
|
* @public
|
|
@@ -845,7 +845,7 @@ export interface GetJobResponse {
|
|
|
845
845
|
* <p>A description of the reason why an Amazon Braket job failed, if it failed.</p>
|
|
846
846
|
* @public
|
|
847
847
|
*/
|
|
848
|
-
failureReason?: string;
|
|
848
|
+
failureReason?: string | undefined;
|
|
849
849
|
/**
|
|
850
850
|
* <p>The name of the Amazon Braket job.</p>
|
|
851
851
|
* @public
|
|
@@ -857,13 +857,13 @@ export interface GetJobResponse {
|
|
|
857
857
|
* the name of the hyperparameter and the value is the value of th hyperparameter.</p>
|
|
858
858
|
* @public
|
|
859
859
|
*/
|
|
860
|
-
hyperParameters?: Record<string, string
|
|
860
|
+
hyperParameters?: Record<string, string> | undefined;
|
|
861
861
|
/**
|
|
862
862
|
* <p>A list of parameters that specify the name and type of input data and where it is
|
|
863
863
|
* located.</p>
|
|
864
864
|
* @public
|
|
865
865
|
*/
|
|
866
|
-
inputDataConfig?: InputFileConfig[];
|
|
866
|
+
inputDataConfig?: InputFileConfig[] | undefined;
|
|
867
867
|
/**
|
|
868
868
|
* <p>The path to the S3 location where job artifacts are stored and the encryption key used
|
|
869
869
|
* to store them there.</p>
|
|
@@ -874,12 +874,12 @@ export interface GetJobResponse {
|
|
|
874
874
|
* <p>The user-defined criteria that specifies when to stop a job running.</p>
|
|
875
875
|
* @public
|
|
876
876
|
*/
|
|
877
|
-
stoppingCondition?: JobStoppingCondition;
|
|
877
|
+
stoppingCondition?: JobStoppingCondition | undefined;
|
|
878
878
|
/**
|
|
879
879
|
* <p>Information about the output locations for job checkpoint data.</p>
|
|
880
880
|
* @public
|
|
881
881
|
*/
|
|
882
|
-
checkpointConfig?: JobCheckpointConfig;
|
|
882
|
+
checkpointConfig?: JobCheckpointConfig | undefined;
|
|
883
883
|
/**
|
|
884
884
|
* <p>Definition of the Amazon Braket job created. Specifies the container image the job uses,
|
|
885
885
|
* information about the Python scripts used for entry and training, and the user-defined
|
|
@@ -901,45 +901,45 @@ export interface GetJobResponse {
|
|
|
901
901
|
* <p>The date and time that the Amazon Braket job was started.</p>
|
|
902
902
|
* @public
|
|
903
903
|
*/
|
|
904
|
-
startedAt?: Date;
|
|
904
|
+
startedAt?: Date | undefined;
|
|
905
905
|
/**
|
|
906
906
|
* <p>The date and time that the Amazon Braket job ended.</p>
|
|
907
907
|
* @public
|
|
908
908
|
*/
|
|
909
|
-
endedAt?: Date;
|
|
909
|
+
endedAt?: Date | undefined;
|
|
910
910
|
/**
|
|
911
911
|
* <p>The billable time the Amazon Braket job used to complete.</p>
|
|
912
912
|
* @public
|
|
913
913
|
*/
|
|
914
|
-
billableDuration?: number;
|
|
914
|
+
billableDuration?: number | undefined;
|
|
915
915
|
/**
|
|
916
916
|
* <p>The quantum processing unit (QPU) or simulator used to run the Amazon Braket job.</p>
|
|
917
917
|
* @public
|
|
918
918
|
*/
|
|
919
|
-
deviceConfig?: DeviceConfig;
|
|
919
|
+
deviceConfig?: DeviceConfig | undefined;
|
|
920
920
|
/**
|
|
921
921
|
* <p>Details about the type and time events occurred related to the Amazon Braket job.</p>
|
|
922
922
|
* @public
|
|
923
923
|
*/
|
|
924
|
-
events?: JobEventDetails[];
|
|
924
|
+
events?: JobEventDetails[] | undefined;
|
|
925
925
|
/**
|
|
926
926
|
* <p>A tag object that consists of a key and an optional value, used to manage metadata for
|
|
927
927
|
* Amazon Braket resources.</p>
|
|
928
928
|
* @public
|
|
929
929
|
*/
|
|
930
|
-
tags?: Record<string, string
|
|
930
|
+
tags?: Record<string, string> | undefined;
|
|
931
931
|
/**
|
|
932
932
|
* <p>Queue information for the requested job. Only returned if
|
|
933
933
|
* <code>QueueInfo</code> is specified in the <code>additionalAttributeNames"</code>
|
|
934
934
|
* field in the <code>GetJob</code> API request.</p>
|
|
935
935
|
* @public
|
|
936
936
|
*/
|
|
937
|
-
queueInfo?: HybridJobQueueInfo;
|
|
937
|
+
queueInfo?: HybridJobQueueInfo | undefined;
|
|
938
938
|
/**
|
|
939
939
|
* <p>The list of Amazon Braket resources associated with the hybrid job.</p>
|
|
940
940
|
* @public
|
|
941
941
|
*/
|
|
942
|
-
associations?: Association[];
|
|
942
|
+
associations?: Association[] | undefined;
|
|
943
943
|
}
|
|
944
944
|
/**
|
|
945
945
|
* @public
|
|
@@ -988,12 +988,12 @@ export interface SearchJobsRequest {
|
|
|
988
988
|
* from the previous request to continue results where the previous request ended.</p>
|
|
989
989
|
* @public
|
|
990
990
|
*/
|
|
991
|
-
nextToken?: string;
|
|
991
|
+
nextToken?: string | undefined;
|
|
992
992
|
/**
|
|
993
993
|
* <p>The maximum number of results to return in the response.</p>
|
|
994
994
|
* @public
|
|
995
995
|
*/
|
|
996
|
-
maxResults?: number;
|
|
996
|
+
maxResults?: number | undefined;
|
|
997
997
|
/**
|
|
998
998
|
* <p>The filter values to use when searching for a job.</p>
|
|
999
999
|
* @public
|
|
@@ -1035,18 +1035,18 @@ export interface JobSummary {
|
|
|
1035
1035
|
* <p>The date and time that the Amazon Braket job was started.</p>
|
|
1036
1036
|
* @public
|
|
1037
1037
|
*/
|
|
1038
|
-
startedAt?: Date;
|
|
1038
|
+
startedAt?: Date | undefined;
|
|
1039
1039
|
/**
|
|
1040
1040
|
* <p>The date and time that the Amazon Braket job ended.</p>
|
|
1041
1041
|
* @public
|
|
1042
1042
|
*/
|
|
1043
|
-
endedAt?: Date;
|
|
1043
|
+
endedAt?: Date | undefined;
|
|
1044
1044
|
/**
|
|
1045
1045
|
* <p>A tag object that consists of a key and an optional value, used to manage metadata for
|
|
1046
1046
|
* Amazon Braket resources.</p>
|
|
1047
1047
|
* @public
|
|
1048
1048
|
*/
|
|
1049
|
-
tags?: Record<string, string
|
|
1049
|
+
tags?: Record<string, string> | undefined;
|
|
1050
1050
|
}
|
|
1051
1051
|
/**
|
|
1052
1052
|
* @public
|
|
@@ -1064,7 +1064,7 @@ export interface SearchJobsResponse {
|
|
|
1064
1064
|
* request ended.</p>
|
|
1065
1065
|
* @public
|
|
1066
1066
|
*/
|
|
1067
|
-
nextToken?: string;
|
|
1067
|
+
nextToken?: string | undefined;
|
|
1068
1068
|
}
|
|
1069
1069
|
/**
|
|
1070
1070
|
* @public
|
|
@@ -1084,7 +1084,7 @@ export interface ListTagsForResourceResponse {
|
|
|
1084
1084
|
* <p>Displays the key, value pairs of tags associated with this resource.</p>
|
|
1085
1085
|
* @public
|
|
1086
1086
|
*/
|
|
1087
|
-
tags?: Record<string, string
|
|
1087
|
+
tags?: Record<string, string> | undefined;
|
|
1088
1088
|
}
|
|
1089
1089
|
/**
|
|
1090
1090
|
* @public
|
|
@@ -1099,7 +1099,7 @@ export interface CancelQuantumTaskRequest {
|
|
|
1099
1099
|
* <p>The client token associated with the request.</p>
|
|
1100
1100
|
* @public
|
|
1101
1101
|
*/
|
|
1102
|
-
clientToken?: string;
|
|
1102
|
+
clientToken?: string | undefined;
|
|
1103
1103
|
}
|
|
1104
1104
|
/**
|
|
1105
1105
|
* @public
|
|
@@ -1124,7 +1124,7 @@ export interface CreateQuantumTaskRequest {
|
|
|
1124
1124
|
* <p>The client token associated with the request.</p>
|
|
1125
1125
|
* @public
|
|
1126
1126
|
*/
|
|
1127
|
-
clientToken?: string;
|
|
1127
|
+
clientToken?: string | undefined;
|
|
1128
1128
|
/**
|
|
1129
1129
|
* <p>The ARN of the device to run the task on.</p>
|
|
1130
1130
|
* @public
|
|
@@ -1134,7 +1134,7 @@ export interface CreateQuantumTaskRequest {
|
|
|
1134
1134
|
* <p>The parameters for the device to run the task on.</p>
|
|
1135
1135
|
* @public
|
|
1136
1136
|
*/
|
|
1137
|
-
deviceParameters?: __LazyJsonString | string;
|
|
1137
|
+
deviceParameters?: __LazyJsonString | string | undefined;
|
|
1138
1138
|
/**
|
|
1139
1139
|
* <p>The number of shots to use for the task.</p>
|
|
1140
1140
|
* @public
|
|
@@ -1159,17 +1159,17 @@ export interface CreateQuantumTaskRequest {
|
|
|
1159
1159
|
* <p>Tags to be added to the quantum task you're creating.</p>
|
|
1160
1160
|
* @public
|
|
1161
1161
|
*/
|
|
1162
|
-
tags?: Record<string, string
|
|
1162
|
+
tags?: Record<string, string> | undefined;
|
|
1163
1163
|
/**
|
|
1164
1164
|
* <p>The token for an Amazon Braket job that associates it with the quantum task.</p>
|
|
1165
1165
|
* @public
|
|
1166
1166
|
*/
|
|
1167
|
-
jobToken?: string;
|
|
1167
|
+
jobToken?: string | undefined;
|
|
1168
1168
|
/**
|
|
1169
1169
|
* <p>The list of Amazon Braket resources associated with the quantum task.</p>
|
|
1170
1170
|
* @public
|
|
1171
1171
|
*/
|
|
1172
|
-
associations?: Association[];
|
|
1172
|
+
associations?: Association[] | undefined;
|
|
1173
1173
|
}
|
|
1174
1174
|
/**
|
|
1175
1175
|
* @public
|
|
@@ -1205,7 +1205,7 @@ export interface GetQuantumTaskRequest {
|
|
|
1205
1205
|
* <p>A list of attributes to return information for.</p>
|
|
1206
1206
|
* @public
|
|
1207
1207
|
*/
|
|
1208
|
-
additionalAttributeNames?: QuantumTaskAdditionalAttributeName[];
|
|
1208
|
+
additionalAttributeNames?: QuantumTaskAdditionalAttributeName[] | undefined;
|
|
1209
1209
|
}
|
|
1210
1210
|
/**
|
|
1211
1211
|
* <p>Information about the queue for the specified quantum task.</p>
|
|
@@ -1227,14 +1227,14 @@ export interface QuantumTaskQueueInfo {
|
|
|
1227
1227
|
* are processed before the tasks in a normal queue.</p>
|
|
1228
1228
|
* @public
|
|
1229
1229
|
*/
|
|
1230
|
-
queuePriority?: QueuePriority;
|
|
1230
|
+
queuePriority?: QueuePriority | undefined;
|
|
1231
1231
|
/**
|
|
1232
1232
|
* <p>Optional. Provides more information about the queue position. For example,
|
|
1233
1233
|
* if the task is complete and no longer in the queue, the message field contains
|
|
1234
1234
|
* that information.</p>
|
|
1235
1235
|
* @public
|
|
1236
1236
|
*/
|
|
1237
|
-
message?: string;
|
|
1237
|
+
message?: string | undefined;
|
|
1238
1238
|
}
|
|
1239
1239
|
/**
|
|
1240
1240
|
* @public
|
|
@@ -1271,7 +1271,7 @@ export interface GetQuantumTaskResponse {
|
|
|
1271
1271
|
* <p>The reason that a task failed.</p>
|
|
1272
1272
|
* @public
|
|
1273
1273
|
*/
|
|
1274
|
-
failureReason?: string;
|
|
1274
|
+
failureReason?: string | undefined;
|
|
1275
1275
|
/**
|
|
1276
1276
|
* <p>The ARN of the device the task was run on.</p>
|
|
1277
1277
|
* @public
|
|
@@ -1306,29 +1306,29 @@ export interface GetQuantumTaskResponse {
|
|
|
1306
1306
|
* <p>The time at which the task ended.</p>
|
|
1307
1307
|
* @public
|
|
1308
1308
|
*/
|
|
1309
|
-
endedAt?: Date;
|
|
1309
|
+
endedAt?: Date | undefined;
|
|
1310
1310
|
/**
|
|
1311
1311
|
* <p>The tags that belong to this task.</p>
|
|
1312
1312
|
* @public
|
|
1313
1313
|
*/
|
|
1314
|
-
tags?: Record<string, string
|
|
1314
|
+
tags?: Record<string, string> | undefined;
|
|
1315
1315
|
/**
|
|
1316
1316
|
* <p>The ARN of the Amazon Braket job associated with the quantum task.</p>
|
|
1317
1317
|
* @public
|
|
1318
1318
|
*/
|
|
1319
|
-
jobArn?: string;
|
|
1319
|
+
jobArn?: string | undefined;
|
|
1320
1320
|
/**
|
|
1321
1321
|
* <p>Queue information for the requested quantum task. Only returned if
|
|
1322
1322
|
* <code>QueueInfo</code> is specified in the <code>additionalAttributeNames"</code>
|
|
1323
1323
|
* field in the <code>GetQuantumTask</code> API request.</p>
|
|
1324
1324
|
* @public
|
|
1325
1325
|
*/
|
|
1326
|
-
queueInfo?: QuantumTaskQueueInfo;
|
|
1326
|
+
queueInfo?: QuantumTaskQueueInfo | undefined;
|
|
1327
1327
|
/**
|
|
1328
1328
|
* <p>The list of Amazon Braket resources associated with the quantum task.</p>
|
|
1329
1329
|
* @public
|
|
1330
1330
|
*/
|
|
1331
|
-
associations?: Association[];
|
|
1331
|
+
associations?: Association[] | undefined;
|
|
1332
1332
|
}
|
|
1333
1333
|
/**
|
|
1334
1334
|
* @public
|
|
@@ -1376,12 +1376,12 @@ export interface SearchQuantumTasksRequest {
|
|
|
1376
1376
|
* from the previous request continue results where the previous request ended.</p>
|
|
1377
1377
|
* @public
|
|
1378
1378
|
*/
|
|
1379
|
-
nextToken?: string;
|
|
1379
|
+
nextToken?: string | undefined;
|
|
1380
1380
|
/**
|
|
1381
1381
|
* <p>Maximum number of results to return in the response.</p>
|
|
1382
1382
|
* @public
|
|
1383
1383
|
*/
|
|
1384
|
-
maxResults?: number;
|
|
1384
|
+
maxResults?: number | undefined;
|
|
1385
1385
|
/**
|
|
1386
1386
|
* <p>Array of <code>SearchQuantumTasksFilter</code> objects.</p>
|
|
1387
1387
|
* @public
|
|
@@ -1432,12 +1432,12 @@ export interface QuantumTaskSummary {
|
|
|
1432
1432
|
* <p>The time at which the task finished.</p>
|
|
1433
1433
|
* @public
|
|
1434
1434
|
*/
|
|
1435
|
-
endedAt?: Date;
|
|
1435
|
+
endedAt?: Date | undefined;
|
|
1436
1436
|
/**
|
|
1437
1437
|
* <p>Displays the key, value pairs of tags associated with this quantum task.</p>
|
|
1438
1438
|
* @public
|
|
1439
1439
|
*/
|
|
1440
|
-
tags?: Record<string, string
|
|
1440
|
+
tags?: Record<string, string> | undefined;
|
|
1441
1441
|
}
|
|
1442
1442
|
/**
|
|
1443
1443
|
* @public
|
|
@@ -1455,7 +1455,7 @@ export interface SearchQuantumTasksResponse {
|
|
|
1455
1455
|
* ended.</p>
|
|
1456
1456
|
* @public
|
|
1457
1457
|
*/
|
|
1458
|
-
nextToken?: string;
|
|
1458
|
+
nextToken?: string | undefined;
|
|
1459
1459
|
}
|
|
1460
1460
|
/**
|
|
1461
1461
|
* @public
|
|
@@ -22,11 +22,11 @@ export type CompressionType =
|
|
|
22
22
|
export interface ScriptModeConfig {
|
|
23
23
|
entryPoint: string | undefined;
|
|
24
24
|
s3Uri: string | undefined;
|
|
25
|
-
compressionType?: CompressionType;
|
|
25
|
+
compressionType?: CompressionType | undefined;
|
|
26
26
|
}
|
|
27
27
|
export interface AlgorithmSpecification {
|
|
28
|
-
scriptModeConfig?: ScriptModeConfig;
|
|
29
|
-
containerImage?: ContainerImage;
|
|
28
|
+
scriptModeConfig?: ScriptModeConfig | undefined;
|
|
29
|
+
containerImage?: ContainerImage | undefined;
|
|
30
30
|
}
|
|
31
31
|
export declare const AssociationType: {
|
|
32
32
|
readonly RESERVATION_TIME_WINDOW_ARN: "RESERVATION_TIME_WINDOW_ARN";
|
|
@@ -53,7 +53,7 @@ export type QueuePriority = (typeof QueuePriority)[keyof typeof QueuePriority];
|
|
|
53
53
|
export interface DeviceQueueInfo {
|
|
54
54
|
queue: QueueName | undefined;
|
|
55
55
|
queueSize: string | undefined;
|
|
56
|
-
queuePriority?: QueuePriority;
|
|
56
|
+
queuePriority?: QueuePriority | undefined;
|
|
57
57
|
}
|
|
58
58
|
export declare const DeviceStatus: {
|
|
59
59
|
readonly OFFLINE: "OFFLINE";
|
|
@@ -73,7 +73,7 @@ export interface GetDeviceResponse {
|
|
|
73
73
|
deviceType: DeviceType | undefined;
|
|
74
74
|
deviceStatus: DeviceStatus | undefined;
|
|
75
75
|
deviceCapabilities: __LazyJsonString | string | undefined;
|
|
76
|
-
deviceQueueInfo?: DeviceQueueInfo[];
|
|
76
|
+
deviceQueueInfo?: DeviceQueueInfo[] | undefined;
|
|
77
77
|
}
|
|
78
78
|
export declare class InternalServiceException extends __BaseException {
|
|
79
79
|
readonly name: "InternalServiceException";
|
|
@@ -108,8 +108,8 @@ export interface SearchDevicesFilter {
|
|
|
108
108
|
values: string[] | undefined;
|
|
109
109
|
}
|
|
110
110
|
export interface SearchDevicesRequest {
|
|
111
|
-
nextToken?: string;
|
|
112
|
-
maxResults?: number;
|
|
111
|
+
nextToken?: string | undefined;
|
|
112
|
+
maxResults?: number | undefined;
|
|
113
113
|
filters: SearchDevicesFilter[] | undefined;
|
|
114
114
|
}
|
|
115
115
|
export interface DeviceSummary {
|
|
@@ -121,7 +121,7 @@ export interface DeviceSummary {
|
|
|
121
121
|
}
|
|
122
122
|
export interface SearchDevicesResponse {
|
|
123
123
|
devices: DeviceSummary[] | undefined;
|
|
124
|
-
nextToken?: string;
|
|
124
|
+
nextToken?: string | undefined;
|
|
125
125
|
}
|
|
126
126
|
export interface CancelJobRequest {
|
|
127
127
|
jobArn: string | undefined;
|
|
@@ -142,7 +142,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
142
142
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
143
143
|
}
|
|
144
144
|
export interface JobCheckpointConfig {
|
|
145
|
-
localPath?: string;
|
|
145
|
+
localPath?: string | undefined;
|
|
146
146
|
s3Uri: string | undefined;
|
|
147
147
|
}
|
|
148
148
|
export interface DeviceConfig {
|
|
@@ -156,7 +156,7 @@ export interface DataSource {
|
|
|
156
156
|
}
|
|
157
157
|
export interface InputFileConfig {
|
|
158
158
|
channelName: string | undefined;
|
|
159
|
-
contentType?: string;
|
|
159
|
+
contentType?: string | undefined;
|
|
160
160
|
dataSource: DataSource | undefined;
|
|
161
161
|
}
|
|
162
162
|
export declare const _InstanceType: {
|
|
@@ -204,29 +204,29 @@ export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
|
204
204
|
export interface InstanceConfig {
|
|
205
205
|
instanceType: _InstanceType | undefined;
|
|
206
206
|
volumeSizeInGb: number | undefined;
|
|
207
|
-
instanceCount?: number;
|
|
207
|
+
instanceCount?: number | undefined;
|
|
208
208
|
}
|
|
209
209
|
export interface JobOutputDataConfig {
|
|
210
|
-
kmsKeyId?: string;
|
|
210
|
+
kmsKeyId?: string | undefined;
|
|
211
211
|
s3Path: string | undefined;
|
|
212
212
|
}
|
|
213
213
|
export interface JobStoppingCondition {
|
|
214
|
-
maxRuntimeInSeconds?: number;
|
|
214
|
+
maxRuntimeInSeconds?: number | undefined;
|
|
215
215
|
}
|
|
216
216
|
export interface CreateJobRequest {
|
|
217
|
-
clientToken?: string;
|
|
217
|
+
clientToken?: string | undefined;
|
|
218
218
|
algorithmSpecification: AlgorithmSpecification | undefined;
|
|
219
|
-
inputDataConfig?: InputFileConfig[];
|
|
219
|
+
inputDataConfig?: InputFileConfig[] | undefined;
|
|
220
220
|
outputDataConfig: JobOutputDataConfig | undefined;
|
|
221
|
-
checkpointConfig?: JobCheckpointConfig;
|
|
221
|
+
checkpointConfig?: JobCheckpointConfig | undefined;
|
|
222
222
|
jobName: string | undefined;
|
|
223
223
|
roleArn: string | undefined;
|
|
224
|
-
stoppingCondition?: JobStoppingCondition;
|
|
224
|
+
stoppingCondition?: JobStoppingCondition | undefined;
|
|
225
225
|
instanceConfig: InstanceConfig | undefined;
|
|
226
|
-
hyperParameters?: Record<string, string
|
|
226
|
+
hyperParameters?: Record<string, string> | undefined;
|
|
227
227
|
deviceConfig: DeviceConfig | undefined;
|
|
228
|
-
tags?: Record<string, string
|
|
229
|
-
associations?: Association[];
|
|
228
|
+
tags?: Record<string, string> | undefined;
|
|
229
|
+
associations?: Association[] | undefined;
|
|
230
230
|
}
|
|
231
231
|
export interface CreateJobResponse {
|
|
232
232
|
jobArn: string | undefined;
|
|
@@ -259,7 +259,7 @@ export type HybridJobAdditionalAttributeName =
|
|
|
259
259
|
(typeof HybridJobAdditionalAttributeName)[keyof typeof HybridJobAdditionalAttributeName];
|
|
260
260
|
export interface GetJobRequest {
|
|
261
261
|
jobArn: string | undefined;
|
|
262
|
-
additionalAttributeNames?: HybridJobAdditionalAttributeName[];
|
|
262
|
+
additionalAttributeNames?: HybridJobAdditionalAttributeName[] | undefined;
|
|
263
263
|
}
|
|
264
264
|
export declare const JobEventType: {
|
|
265
265
|
readonly CANCELLED: "CANCELLED";
|
|
@@ -276,14 +276,14 @@ export declare const JobEventType: {
|
|
|
276
276
|
};
|
|
277
277
|
export type JobEventType = (typeof JobEventType)[keyof typeof JobEventType];
|
|
278
278
|
export interface JobEventDetails {
|
|
279
|
-
eventType?: JobEventType;
|
|
280
|
-
timeOfEvent?: Date;
|
|
281
|
-
message?: string;
|
|
279
|
+
eventType?: JobEventType | undefined;
|
|
280
|
+
timeOfEvent?: Date | undefined;
|
|
281
|
+
message?: string | undefined;
|
|
282
282
|
}
|
|
283
283
|
export interface HybridJobQueueInfo {
|
|
284
284
|
queue: QueueName | undefined;
|
|
285
285
|
position: string | undefined;
|
|
286
|
-
message?: string;
|
|
286
|
+
message?: string | undefined;
|
|
287
287
|
}
|
|
288
288
|
export declare const JobPrimaryStatus: {
|
|
289
289
|
readonly CANCELLED: "CANCELLED";
|
|
@@ -299,24 +299,24 @@ export interface GetJobResponse {
|
|
|
299
299
|
status: JobPrimaryStatus | undefined;
|
|
300
300
|
jobArn: string | undefined;
|
|
301
301
|
roleArn: string | undefined;
|
|
302
|
-
failureReason?: string;
|
|
302
|
+
failureReason?: string | undefined;
|
|
303
303
|
jobName: string | undefined;
|
|
304
|
-
hyperParameters?: Record<string, string
|
|
305
|
-
inputDataConfig?: InputFileConfig[];
|
|
304
|
+
hyperParameters?: Record<string, string> | undefined;
|
|
305
|
+
inputDataConfig?: InputFileConfig[] | undefined;
|
|
306
306
|
outputDataConfig: JobOutputDataConfig | undefined;
|
|
307
|
-
stoppingCondition?: JobStoppingCondition;
|
|
308
|
-
checkpointConfig?: JobCheckpointConfig;
|
|
307
|
+
stoppingCondition?: JobStoppingCondition | undefined;
|
|
308
|
+
checkpointConfig?: JobCheckpointConfig | undefined;
|
|
309
309
|
algorithmSpecification: AlgorithmSpecification | undefined;
|
|
310
310
|
instanceConfig: InstanceConfig | undefined;
|
|
311
311
|
createdAt: Date | undefined;
|
|
312
|
-
startedAt?: Date;
|
|
313
|
-
endedAt?: Date;
|
|
314
|
-
billableDuration?: number;
|
|
315
|
-
deviceConfig?: DeviceConfig;
|
|
316
|
-
events?: JobEventDetails[];
|
|
317
|
-
tags?: Record<string, string
|
|
318
|
-
queueInfo?: HybridJobQueueInfo;
|
|
319
|
-
associations?: Association[];
|
|
312
|
+
startedAt?: Date | undefined;
|
|
313
|
+
endedAt?: Date | undefined;
|
|
314
|
+
billableDuration?: number | undefined;
|
|
315
|
+
deviceConfig?: DeviceConfig | undefined;
|
|
316
|
+
events?: JobEventDetails[] | undefined;
|
|
317
|
+
tags?: Record<string, string> | undefined;
|
|
318
|
+
queueInfo?: HybridJobQueueInfo | undefined;
|
|
319
|
+
associations?: Association[] | undefined;
|
|
320
320
|
}
|
|
321
321
|
export declare const SearchJobsFilterOperator: {
|
|
322
322
|
readonly BETWEEN: "BETWEEN";
|
|
@@ -335,8 +335,8 @@ export interface SearchJobsFilter {
|
|
|
335
335
|
operator: SearchJobsFilterOperator | undefined;
|
|
336
336
|
}
|
|
337
337
|
export interface SearchJobsRequest {
|
|
338
|
-
nextToken?: string;
|
|
339
|
-
maxResults?: number;
|
|
338
|
+
nextToken?: string | undefined;
|
|
339
|
+
maxResults?: number | undefined;
|
|
340
340
|
filters: SearchJobsFilter[] | undefined;
|
|
341
341
|
}
|
|
342
342
|
export interface JobSummary {
|
|
@@ -345,39 +345,39 @@ export interface JobSummary {
|
|
|
345
345
|
jobName: string | undefined;
|
|
346
346
|
device: string | undefined;
|
|
347
347
|
createdAt: Date | undefined;
|
|
348
|
-
startedAt?: Date;
|
|
349
|
-
endedAt?: Date;
|
|
350
|
-
tags?: Record<string, string
|
|
348
|
+
startedAt?: Date | undefined;
|
|
349
|
+
endedAt?: Date | undefined;
|
|
350
|
+
tags?: Record<string, string> | undefined;
|
|
351
351
|
}
|
|
352
352
|
export interface SearchJobsResponse {
|
|
353
353
|
jobs: JobSummary[] | undefined;
|
|
354
|
-
nextToken?: string;
|
|
354
|
+
nextToken?: string | undefined;
|
|
355
355
|
}
|
|
356
356
|
export interface ListTagsForResourceRequest {
|
|
357
357
|
resourceArn: string | undefined;
|
|
358
358
|
}
|
|
359
359
|
export interface ListTagsForResourceResponse {
|
|
360
|
-
tags?: Record<string, string
|
|
360
|
+
tags?: Record<string, string> | undefined;
|
|
361
361
|
}
|
|
362
362
|
export interface CancelQuantumTaskRequest {
|
|
363
363
|
quantumTaskArn: string | undefined;
|
|
364
|
-
clientToken?: string;
|
|
364
|
+
clientToken?: string | undefined;
|
|
365
365
|
}
|
|
366
366
|
export interface CancelQuantumTaskResponse {
|
|
367
367
|
quantumTaskArn: string | undefined;
|
|
368
368
|
cancellationStatus: CancellationStatus | undefined;
|
|
369
369
|
}
|
|
370
370
|
export interface CreateQuantumTaskRequest {
|
|
371
|
-
clientToken?: string;
|
|
371
|
+
clientToken?: string | undefined;
|
|
372
372
|
deviceArn: string | undefined;
|
|
373
|
-
deviceParameters?: __LazyJsonString | string;
|
|
373
|
+
deviceParameters?: __LazyJsonString | string | undefined;
|
|
374
374
|
shots: number | undefined;
|
|
375
375
|
outputS3Bucket: string | undefined;
|
|
376
376
|
outputS3KeyPrefix: string | undefined;
|
|
377
377
|
action: __LazyJsonString | string | undefined;
|
|
378
|
-
tags?: Record<string, string
|
|
379
|
-
jobToken?: string;
|
|
380
|
-
associations?: Association[];
|
|
378
|
+
tags?: Record<string, string> | undefined;
|
|
379
|
+
jobToken?: string | undefined;
|
|
380
|
+
associations?: Association[] | undefined;
|
|
381
381
|
}
|
|
382
382
|
export interface CreateQuantumTaskResponse {
|
|
383
383
|
quantumTaskArn: string | undefined;
|
|
@@ -389,13 +389,13 @@ export type QuantumTaskAdditionalAttributeName =
|
|
|
389
389
|
(typeof QuantumTaskAdditionalAttributeName)[keyof typeof QuantumTaskAdditionalAttributeName];
|
|
390
390
|
export interface GetQuantumTaskRequest {
|
|
391
391
|
quantumTaskArn: string | undefined;
|
|
392
|
-
additionalAttributeNames?: QuantumTaskAdditionalAttributeName[];
|
|
392
|
+
additionalAttributeNames?: QuantumTaskAdditionalAttributeName[] | undefined;
|
|
393
393
|
}
|
|
394
394
|
export interface QuantumTaskQueueInfo {
|
|
395
395
|
queue: QueueName | undefined;
|
|
396
396
|
position: string | undefined;
|
|
397
|
-
queuePriority?: QueuePriority;
|
|
398
|
-
message?: string;
|
|
397
|
+
queuePriority?: QueuePriority | undefined;
|
|
398
|
+
message?: string | undefined;
|
|
399
399
|
}
|
|
400
400
|
export declare const QuantumTaskStatus: {
|
|
401
401
|
readonly CANCELLED: "CANCELLED";
|
|
@@ -411,18 +411,18 @@ export type QuantumTaskStatus =
|
|
|
411
411
|
export interface GetQuantumTaskResponse {
|
|
412
412
|
quantumTaskArn: string | undefined;
|
|
413
413
|
status: QuantumTaskStatus | undefined;
|
|
414
|
-
failureReason?: string;
|
|
414
|
+
failureReason?: string | undefined;
|
|
415
415
|
deviceArn: string | undefined;
|
|
416
416
|
deviceParameters: __LazyJsonString | string | undefined;
|
|
417
417
|
shots: number | undefined;
|
|
418
418
|
outputS3Bucket: string | undefined;
|
|
419
419
|
outputS3Directory: string | undefined;
|
|
420
420
|
createdAt: Date | undefined;
|
|
421
|
-
endedAt?: Date;
|
|
422
|
-
tags?: Record<string, string
|
|
423
|
-
jobArn?: string;
|
|
424
|
-
queueInfo?: QuantumTaskQueueInfo;
|
|
425
|
-
associations?: Association[];
|
|
421
|
+
endedAt?: Date | undefined;
|
|
422
|
+
tags?: Record<string, string> | undefined;
|
|
423
|
+
jobArn?: string | undefined;
|
|
424
|
+
queueInfo?: QuantumTaskQueueInfo | undefined;
|
|
425
|
+
associations?: Association[] | undefined;
|
|
426
426
|
}
|
|
427
427
|
export declare const SearchQuantumTasksFilterOperator: {
|
|
428
428
|
readonly BETWEEN: "BETWEEN";
|
|
@@ -440,8 +440,8 @@ export interface SearchQuantumTasksFilter {
|
|
|
440
440
|
operator: SearchQuantumTasksFilterOperator | undefined;
|
|
441
441
|
}
|
|
442
442
|
export interface SearchQuantumTasksRequest {
|
|
443
|
-
nextToken?: string;
|
|
444
|
-
maxResults?: number;
|
|
443
|
+
nextToken?: string | undefined;
|
|
444
|
+
maxResults?: number | undefined;
|
|
445
445
|
filters: SearchQuantumTasksFilter[] | undefined;
|
|
446
446
|
}
|
|
447
447
|
export interface QuantumTaskSummary {
|
|
@@ -452,12 +452,12 @@ export interface QuantumTaskSummary {
|
|
|
452
452
|
outputS3Bucket: string | undefined;
|
|
453
453
|
outputS3Directory: string | undefined;
|
|
454
454
|
createdAt: Date | undefined;
|
|
455
|
-
endedAt?: Date;
|
|
456
|
-
tags?: Record<string, string
|
|
455
|
+
endedAt?: Date | undefined;
|
|
456
|
+
tags?: Record<string, string> | undefined;
|
|
457
457
|
}
|
|
458
458
|
export interface SearchQuantumTasksResponse {
|
|
459
459
|
quantumTasks: QuantumTaskSummary[] | undefined;
|
|
460
|
-
nextToken?: string;
|
|
460
|
+
nextToken?: string | undefined;
|
|
461
461
|
}
|
|
462
462
|
export interface TagResourceRequest {
|
|
463
463
|
resourceArn: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-braket",
|
|
3
3
|
"description": "AWS SDK for JavaScript Braket Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.692.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-braket",
|
|
@@ -20,43 +20,43 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.5.
|
|
38
|
-
"@smithy/fetch-http-handler": "^4.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.2.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.4.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.692.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.692.0",
|
|
25
|
+
"@aws-sdk/core": "3.692.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.692.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.692.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.692.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.692.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.692.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.692.0",
|
|
32
|
+
"@aws-sdk/types": "3.692.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.692.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.692.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.692.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.11",
|
|
37
|
+
"@smithy/core": "^2.5.2",
|
|
38
|
+
"@smithy/fetch-http-handler": "^4.1.0",
|
|
39
|
+
"@smithy/hash-node": "^3.0.9",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.9",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.11",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.2",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.26",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.9",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.9",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.10",
|
|
47
|
+
"@smithy/node-http-handler": "^3.3.0",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.6",
|
|
49
|
+
"@smithy/smithy-client": "^3.4.3",
|
|
50
|
+
"@smithy/types": "^3.7.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.9",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.26",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.26",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.5",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.9",
|
|
59
|
+
"@smithy/util-retry": "^3.0.9",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"@types/uuid": "^9.0.1",
|
|
62
62
|
"tslib": "^2.6.2",
|