You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* <p>Values that you can use to select a particular Amazon EC2 instance type. </p>
45
+
* @public
46
+
*/
47
+
exportinterfaceAcceleratorSelection{
48
+
/**
49
+
* <p>The name of the GPU accelerator.</p>
50
+
* @public
51
+
*/
52
+
name: AcceleratorName|undefined;
53
+
54
+
/**
55
+
* <p>The driver version that the GPU accelerator uses. </p>
56
+
* @public
57
+
*/
58
+
runtime?: string|undefined;
59
+
}
60
+
61
+
/**
62
+
* <p>Provides information about the GPU accelerators and drivers for the instance types in a
63
+
* fleet. If you include the <code>acceleratorCapabilities</code> property in the <a href="https://docs.aws.amazon.com/deadline-cloud/latest/APIReference/API_ServiceManagedEc2InstanceCapabilities">ServiceManagedEc2InstanceCapabilities</a> object, all of the Amazon EC2
64
+
* instances will have at least one accelerator. </p>
65
+
* @public
66
+
*/
67
+
exportinterfaceAcceleratorCapabilities{
68
+
/**
69
+
* <p>A list of objects that contain the GPU name of the accelerator and driver for the
70
+
* instance types that support the accelerator.</p>
71
+
* @public
72
+
*/
73
+
selections: AcceleratorSelection[]|undefined;
74
+
75
+
/**
76
+
* <p>The number of GPUs on each worker. The default is 1.</p>
77
+
* @public
78
+
*/
79
+
count?: AcceleratorCountRange|undefined;
80
+
}
81
+
26
82
/**
27
83
* <p>The range for memory, in MiB, to use for the accelerator.</p>
* <p>The GPU accelerator capabilities required for the Amazon EC2 instances. If you
3250
+
* include the <code>acceleratorCapabilities</code> property in the <a href="https://docs.aws.amazon.com/deadline-cloud/latest/APIReference/API_ServiceManagedEc2InstanceCapabilities">ServiceManagedEc2InstanceCapabilities</a> object, all of the Amazon EC2
3251
+
* instances will have at least one accelerator. </p>
* <p>If Deadline Cloud returns <code>nextToken</code>, then there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours. If you provide a token that isn't valid, then you receive an HTTP 400 <code>ValidationException</code> error.</p>
8722
-
* @public
8723
-
*/
8724
-
nextToken?: string|undefined;
8725
-
}
8726
-
8727
-
/**
8728
-
* @public
8729
-
*/
8730
-
exportinterfaceListQueuesRequest{
8731
-
/**
8732
-
* <p>The farm ID of the queue.</p>
8733
-
* @public
8734
-
*/
8735
-
farmId: string|undefined;
8736
-
8737
-
/**
8738
-
* <p>The principal IDs to include in the list of queues.</p>
8739
-
* @public
8740
-
*/
8741
-
principalId?: string|undefined;
8742
-
8743
-
/**
8744
-
* <p>The status of the queues listed.</p>
8745
-
* <ul>
8746
-
* <li>
8747
-
* <p>
8748
-
* <code>ACTIVE</code>–The queues are active.</p>
8749
-
* </li>
8750
-
* <li>
8751
-
* <p>
8752
-
* <code>SCHEDULING</code>–The queues are scheduling.</p>
8753
-
* </li>
8754
-
* <li>
8755
-
* <p>
8756
-
* <code>SCHEDULING_BLOCKED</code>–The queue scheduling is blocked for these
8757
-
* queues.</p>
8758
-
* </li>
8759
-
* </ul>
8760
-
* @public
8761
-
*/
8762
-
status?: QueueStatus|undefined;
8763
-
8764
-
/**
8765
-
* <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
8766
-
* @public
8767
-
*/
8768
-
nextToken?: string|undefined;
8769
-
8770
-
/**
8771
-
* <p>The maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>
8772
-
* @public
8773
-
*/
8774
-
maxResults?: number|undefined;
8775
-
}
8776
-
8777
-
/**
8778
-
* <p>The details of a queue summary.</p>
8779
-
* @public
8780
-
*/
8781
-
exportinterfaceQueueSummary{
8782
-
/**
8783
-
* <p>The farm ID.</p>
8784
-
* @public
8785
-
*/
8786
-
farmId: string|undefined;
8787
-
8788
-
/**
8789
-
* <p>The queue ID.</p>
8790
-
* @public
8791
-
*/
8792
-
queueId: string|undefined;
8793
-
8794
-
/**
8795
-
* <p>The display name of the queue summary to update.</p>
8796
-
* <important>
8797
-
* <p>This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.</p>
8798
-
* </important>
8799
-
* @public
8800
-
*/
8801
-
displayName: string|undefined;
8802
-
8803
-
/**
8804
-
* <p>That status of the queue.</p>
8805
-
* @public
8806
-
*/
8807
-
status: QueueStatus|undefined;
8808
-
8809
-
/**
8810
-
* <p>The default action taken on a queue summary if a budget wasn't configured.</p>
0 commit comments