Skip to content

Commit

Permalink
Merge pull request #14 from arangodb-managed/OAS-8778
Browse files Browse the repository at this point in the history
OAS-8778 | Update ML APIs for ML Free trial
  • Loading branch information
mayankshah1607 authored Dec 20, 2023
2 parents 10b9c22 + fc8f739 commit ae2ca29
Show file tree
Hide file tree
Showing 13 changed files with 1,065 additions and 175 deletions.
106 changes: 106 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1863,6 +1863,10 @@ <h2>Table of Contents</h2>
<a href="#arangodb.cloud.usage.v1.UsageItem.DeploymentSize"><span class="badge">M</span>UsageItem.DeploymentSize</a>
</li>

<li>
<a href="#arangodb.cloud.usage.v1.UsageItem.MLJobSize"><span class="badge">M</span>UsageItem.MLJobSize</a>
</li>

<li>
<a href="#arangodb.cloud.usage.v1.UsageItem.MLServicesSize"><span class="badge">M</span>UsageItem.MLServicesSize</a>
</li>
Expand Down Expand Up @@ -15892,6 +15896,15 @@ <h3 id="arangodb.cloud.ml.v1.MLServices">MLServices</h3>
This is an optional field. </p></td>
</tr>

<tr>
<td>created_at</td>
<td><a href="#google.protobuf.Timestamp">google.protobuf.Timestamp</a></td>
<td></td>
<td><p>The creation timestamp of the MLServices.
This also serves as a timestamp of when MLServices were first enabled.
This is a read-only value. </p></td>
</tr>

<tr>
<td>status</td>
<td><a href="#arangodb.cloud.ml.v1.Status">Status</a></td>
Expand Down Expand Up @@ -16126,6 +16139,37 @@ <h3 id="arangodb.cloud.ml.v1.Status">Status</h3>
<td><p>Status of each ArangoGraphML components/services. </p></td>
</tr>

<tr>
<td>hours_used</td>
<td><a href="#float">float</a></td>
<td></td>
<td><p>Total number of hours ML Jobs have run for this Deployment. </p></td>
</tr>

<tr>
<td>hours_allowed</td>
<td><a href="#float">float</a></td>
<td></td>
<td><p>Total number of runtime hours allowed for ML Jobs for this Deployment.
Set to 0 if unlimited (i.e, no restriction). </p></td>
</tr>

<tr>
<td>expires_at</td>
<td><a href="#google.protobuf.Timestamp">google.protobuf.Timestamp</a></td>
<td></td>
<td><p>Timestamp after which MLServices are no longer usable.
This is set during trial use.
If unset, no expiry. </p></td>
</tr>

<tr>
<td>last_enabled_at</td>
<td><a href="#google.protobuf.Timestamp">google.protobuf.Timestamp</a></td>
<td></td>
<td><p>Timestamp of when MLServices were last enabled for this deployment. </p></td>
</tr>

</tbody>
</table>

Expand Down Expand Up @@ -24195,6 +24239,14 @@ <h3 id="arangodb.cloud.usage.v1.UsageItem">UsageItem</h3>
This field is only set when the usage item is of kind MLServicesSize. </p></td>
</tr>

<tr>
<td>mljob_size</td>
<td><a href="#arangodb.cloud.usage.v1.UsageItem.MLJobSize">UsageItem.MLJobSize</a></td>
<td></td>
<td><p>Amount of compute resources used by a given ML job.
This field is only set when the usage item is of kind MLJobSize. </p></td>
</tr>

</tbody>
</table>

Expand Down Expand Up @@ -24402,6 +24454,60 @@ <h3 id="arangodb.cloud.usage.v1.UsageItem.DeploymentSize">UsageItem.DeploymentSi



<h3 id="arangodb.cloud.usage.v1.UsageItem.MLJobSize">UsageItem.MLJobSize</h3>
<p>Amount of compute resources used by a ML Job.</p>


<table class="field-table">
<thead>
<tr><td>Field</td><td>Type</td><td>Label</td><td>Description</td></tr>
</thead>
<tbody>

<tr>
<td>memory_size</td>
<td><a href="#int32">int32</a></td>
<td></td>
<td><p>Amount of memory (in GB) allocated for the job. </p></td>
</tr>

<tr>
<td>cpu_size</td>
<td><a href="#float">float</a></td>
<td></td>
<td><p>Amount of CPU units allocated to the job.
1 CPU unit equals 1 physical / virtual CPU. </p></td>
</tr>

<tr>
<td>gpu_size</td>
<td><a href="#float">float</a></td>
<td></td>
<td><p>Amount of GPU units allocated to the job.
1 CPU unit equals 1 physical / virtual GPU. </p></td>
</tr>

<tr>
<td>job_id</td>
<td><a href="#string">string</a></td>
<td></td>
<td><p>ID of the ML job. </p></td>
</tr>

<tr>
<td>job_type</td>
<td><a href="#string">string</a></td>
<td></td>
<td><p>Type of ML Job (training, prediction, etc.) </p></td>
</tr>

</tbody>
</table>





<h3 id="arangodb.cloud.usage.v1.UsageItem.MLServicesSize">UsageItem.MLServicesSize</h3>
<p>Amount of compute resources used by a given MLServices resource.</p>

Expand Down
Loading

0 comments on commit ae2ca29

Please sign in to comment.