forked from docs/doc-exports
Reviewed-by: Jiang, Beibei <beibei.jiang@t-systems.com> Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com> Co-authored-by: Lai, Weijian <laiweijian4@huawei.com> Co-committed-by: Lai, Weijian <laiweijian4@huawei.com>
368 lines
42 KiB
HTML
368 lines
42 KiB
HTML
<a name="modelarts_04_0203"></a><a name="modelarts_04_0203"></a>
|
|
|
|
<h1 class="topictitle1">Querying the Details of a Service</h1>
|
|
<div id="body8662426"><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p146791611176">You can use the API to query details about a service object.</p>
|
|
<div class="section" id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_section59151611112217"><h4 class="sectiontitle">Sample Code</h4><p id="modelarts_04_0203__en-us_topic_0180094087_p19415162919499">In the ModelArts notebook instance, you do not need to enter authentication parameters for session authentication. For details about session authentication of other development environments, see <a href="modelarts_04_0123.html">Session Authentication</a>.</p>
|
|
<ul id="modelarts_04_0203__en-us_topic_0180094087_ul1853925263919"><li id="modelarts_04_0203__en-us_topic_0180094087_li105395522392">Method 1: Query details about the service created in <a href="modelarts_04_0201.html">Deploying a Real-Time Service</a>.<div class="codecoloring" codetype="Python" id="modelarts_04_0203__en-us_topic_0180094087_screen1771057133910"><div class="highlight"><table class="highlighttable"><tr><td class="linenos"><div class="linenodiv"><pre><span class="normal">1</span>
|
|
<span class="normal">2</span>
|
|
<span class="normal">3</span>
|
|
<span class="normal">4</span>
|
|
<span class="normal">5</span></pre></div></td><td class="code"><div><pre><span></span><span class="kn">from</span> <span class="nn">modelarts.session</span> <span class="kn">import</span> <span class="n">Session</span>
|
|
<span class="kn">from</span> <span class="nn">modelarts.model</span> <span class="kn">import</span> <span class="n">Predictor</span>
|
|
<span class="n">session</span> <span class="o">=</span> <span class="n">Session</span><span class="p">()</span>
|
|
<span class="n">predictor_instance</span> <span class="o">=</span> <span class="n">Predictor</span><span class="p">(</span><span class="n">session</span><span class="p">,</span> <span class="n">service_id</span><span class="o">=</span><span class="s2">"input your service_id"</span><span class="p">)</span>
|
|
<span class="n">predictor_info</span> <span class="o">=</span> <span class="n">predictor_instance</span><span class="o">.</span><span class="n">get_service_info</span><span class="p">()</span>
|
|
</pre></div></td></tr></table></div>
|
|
|
|
</div>
|
|
</li></ul>
|
|
<ul id="modelarts_04_0203__en-us_topic_0180094087_ul27512542391"><li id="modelarts_04_0203__en-us_topic_0180094087_li127511354183920">Method 2: Query details about the service object returned in <a href="modelarts_04_0206.html">Querying the List of Service Objects</a>.<div class="codecoloring" codetype="Python" id="modelarts_04_0203__en-us_topic_0180094087_screen890620418401"><div class="highlight"><table class="highlighttable"><tr><td class="linenos"><div class="linenodiv"><pre><span class="normal">1</span>
|
|
<span class="normal">2</span>
|
|
<span class="normal">3</span>
|
|
<span class="normal">4</span>
|
|
<span class="normal">5</span>
|
|
<span class="normal">6</span></pre></div></td><td class="code"><div><pre><span></span><span class="kn">from</span> <span class="nn">modelarts.session</span> <span class="kn">import</span> <span class="n">Session</span>
|
|
<span class="kn">from</span> <span class="nn">modelarts.model</span> <span class="kn">import</span> <span class="n">Predictor</span>
|
|
<span class="n">session</span> <span class="o">=</span> <span class="n">Session</span><span class="p">()</span>
|
|
<span class="n">predictor_object_list</span> <span class="o">=</span> <span class="n">Predictor</span><span class="o">.</span><span class="n">get_service_object_list</span><span class="p">(</span><span class="n">session</span><span class="p">)</span>
|
|
<span class="n">predictor_instance</span> <span class="o">=</span> <span class="n">predictor_object_list</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span>
|
|
<span class="n">predictor_info</span> <span class="o">=</span> <span class="n">predictor_instance</span><span class="o">.</span><span class="n">get_service_info</span><span class="p">()</span>
|
|
</pre></div></td></tr></table></div>
|
|
|
|
</div>
|
|
</li></ul>
|
|
</div>
|
|
<div class="section" id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_section13823930915"><h4 class="sectiontitle">Parameter Description</h4>
|
|
<div class="tablenoborder"><table cellpadding="4" cellspacing="0" summary="" id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_table434817450334" frame="border" border="1" rules="all"><caption><b>Table 1 </b><strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b392822919117">get_service_info</strong> response parameters</caption><thead align="left"><tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row835494583319"><th align="left" class="cellrowborder" valign="top" width="20.14%" id="mcps1.3.3.2.2.4.1.1"><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p19357124515338">Parameter</p>
|
|
</th>
|
|
<th align="left" class="cellrowborder" valign="top" width="28.99%" id="mcps1.3.3.2.2.4.1.2"><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p9359134563313">Type</p>
|
|
</th>
|
|
<th align="left" class="cellrowborder" valign="top" width="50.870000000000005%" id="mcps1.3.3.2.2.4.1.3"><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p163621945143310">Description</p>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody><tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row036414456339"><td class="cellrowborder" valign="top" width="20.14%" headers="mcps1.3.3.2.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p143671745133319">service_id</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.99%" headers="mcps1.3.3.2.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1437118454332">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="50.870000000000005%" headers="mcps1.3.3.2.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p737417456336">Service ID</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row33751545193316"><td class="cellrowborder" valign="top" width="20.14%" headers="mcps1.3.3.2.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p6377174516332">service_name</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.99%" headers="mcps1.3.3.2.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1138024518338">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="50.870000000000005%" headers="mcps1.3.3.2.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p438217454337">Service name</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row4383124511333"><td class="cellrowborder" valign="top" width="20.14%" headers="mcps1.3.3.2.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p133861645183318">description</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.99%" headers="mcps1.3.3.2.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1438914458335">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="50.870000000000005%" headers="mcps1.3.3.2.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p6391545153315">Service description</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row767776226"><td class="cellrowborder" valign="top" width="20.14%" headers="mcps1.3.3.2.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p929103420305">tenant</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.99%" headers="mcps1.3.3.2.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1332193410301">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="50.870000000000005%" headers="mcps1.3.3.2.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p183333416309">Tenant to whom a service belongs</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row1232531342215"><td class="cellrowborder" valign="top" width="20.14%" headers="mcps1.3.3.2.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p113610342306">project</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.99%" headers="mcps1.3.3.2.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p19381034203011">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="50.870000000000005%" headers="mcps1.3.3.2.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p4401334103010">Project to which a service belongs</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row142111016229"><td class="cellrowborder" valign="top" width="20.14%" headers="mcps1.3.3.2.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p143134103012">owner</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.99%" headers="mcps1.3.3.2.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1044133418301">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="50.870000000000005%" headers="mcps1.3.3.2.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p14461345308">User to whom a service belongs</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row169481034172214"><td class="cellrowborder" valign="top" width="20.14%" headers="mcps1.3.3.2.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p994813345224">publish_at</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.99%" headers="mcps1.3.3.2.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p9949334182213">Number</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="50.870000000000005%" headers="mcps1.3.3.2.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p12256122494315">Latest service publishing time, in milliseconds calculated from 1970.1.1 0:0:0 UTC</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row9392645113310"><td class="cellrowborder" valign="top" width="20.14%" headers="mcps1.3.3.2.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1239594510339">infer_type</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.99%" headers="mcps1.3.3.2.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1397245163319">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="50.870000000000005%" headers="mcps1.3.3.2.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p0399445163319">Inference mode. The value can be <strong id="modelarts_04_0203__en-us_topic_0180094087_b2920151391916">real-time</strong> or <strong id="modelarts_04_0203__en-us_topic_0180094087_b992111321915">batch</strong>.</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row719071514253"><td class="cellrowborder" valign="top" width="20.14%" headers="mcps1.3.3.2.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p11741257112216">vpc_id</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.99%" headers="mcps1.3.3.2.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p9741357142212">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="50.870000000000005%" headers="mcps1.3.3.2.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p147411757172219">ID of the VPC to which a service instance belongs. This parameter is returned when the network configuration is customized.</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row795361810259"><td class="cellrowborder" valign="top" width="20.14%" headers="mcps1.3.3.2.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p190688132319">subnet_network_id</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.99%" headers="mcps1.3.3.2.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p89061832315">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="50.870000000000005%" headers="mcps1.3.3.2.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p149066832312">ID of the subnet where a service instance resides. This parameter is returned when the network configuration is customized.</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row17847422192516"><td class="cellrowborder" valign="top" width="20.14%" headers="mcps1.3.3.2.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p76632015162319">security_group_id</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.99%" headers="mcps1.3.3.2.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p19663131532314">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="50.870000000000005%" headers="mcps1.3.3.2.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p18663915172311">Security group to which a service instance belongs. This parameter is returned when the network configuration is customized.</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row4401114519336"><td class="cellrowborder" valign="top" width="20.14%" headers="mcps1.3.3.2.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1940317459339">status</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.99%" headers="mcps1.3.3.2.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p18405204553316">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="50.870000000000005%" headers="mcps1.3.3.2.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p104081145133310">Service status. The value can be <strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b9158195111276">running</strong>, <strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b8159175114279">deploying</strong>, <strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b181601651182718">concerning</strong>, <strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b916111513275">failed</strong>, <strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b1616245112714">stopped</strong>, or <strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b16163185122710">finished</strong>.</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row94091045163310"><td class="cellrowborder" valign="top" width="20.14%" headers="mcps1.3.3.2.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p4411745163311">error_msg</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.99%" headers="mcps1.3.3.2.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p164147456335">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="50.870000000000005%" headers="mcps1.3.3.2.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p841764515334">Error message. When <strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b1618832712412">status</strong> is <strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b18512153020242">failed</strong>, the deployment failure cause is returned.</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row13418945193313"><td class="cellrowborder" valign="top" width="20.14%" headers="mcps1.3.3.2.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p11420134513333">config</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.99%" headers="mcps1.3.3.2.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p842315451332"><strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b3546123014115">config</strong> array corresponding to <strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b5546130113">infer_type</strong></p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="50.870000000000005%" headers="mcps1.3.3.2.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p3810945586"><strong id="modelarts_04_0203__en-us_topic_0180094087_b1410921703">config</strong> array corresponding to <strong id="modelarts_04_0203__en-us_topic_0180094087_b247465726">infer_type</strong></p>
|
|
<p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p158104453810">Service configurations (If a service is shared, only <strong id="modelarts_04_0203__en-us_topic_0180094087_b183321373479">model_id</strong>, <strong id="modelarts_04_0203__en-us_topic_0180094087_b183346784710">model_name</strong>, and <strong id="modelarts_04_0203__en-us_topic_0180094087_b73365734715">model_version</strong> are returned.)</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row2439124518337"><td class="cellrowborder" valign="top" width="20.14%" headers="mcps1.3.3.2.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p54421845173317">access_address</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.99%" headers="mcps1.3.3.2.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p8445245113311">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="50.870000000000005%" headers="mcps1.3.3.2.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p119111259786">Access address of an inference request. This parameter is returned when <strong id="modelarts_04_0203__en-us_topic_0180094087_b5982515486">infer_type</strong> is set to <strong id="modelarts_04_0203__en-us_topic_0180094087_b12111025114812">real-time</strong>.</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row091168122714"><td class="cellrowborder" valign="top" width="20.14%" headers="mcps1.3.3.2.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p18698348300">invocation_times</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.99%" headers="mcps1.3.3.2.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p571113413013">Number</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="50.870000000000005%" headers="mcps1.3.3.2.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p137273483019">Total number of service calls</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row9572160172720"><td class="cellrowborder" valign="top" width="20.14%" headers="mcps1.3.3.2.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p8758347302">failed_times</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.99%" headers="mcps1.3.3.2.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p16773346305">Number</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="50.870000000000005%" headers="mcps1.3.3.2.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p12801034203020">Number of failed service calls</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row1072376192715"><td class="cellrowborder" valign="top" width="20.14%" headers="mcps1.3.3.2.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1888165042014">is_shared</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.99%" headers="mcps1.3.3.2.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p10881205011204">Boolean</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="50.870000000000005%" headers="mcps1.3.3.2.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1743291472112">Whether a service is subscribed</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row1178513352717"><td class="cellrowborder" valign="top" width="20.14%" headers="mcps1.3.3.2.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p282710543205">shared_count</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.99%" headers="mcps1.3.3.2.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p7827105416208">Number</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="50.870000000000005%" headers="mcps1.3.3.2.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p882795422014">Number of subscriptions</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row03262234213"><td class="cellrowborder" valign="top" width="20.14%" headers="mcps1.3.3.2.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p25586416911">progress</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.99%" headers="mcps1.3.3.2.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p17558141894">Integer</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="50.870000000000005%" headers="mcps1.3.3.2.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1255811410911">Deployment progress. This parameter is returned when <strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b761543111291">status</strong> is <strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b84691010182918">deploying</strong>.</p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="tablenoborder"><table cellpadding="4" cellspacing="0" summary="" id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_table313755517348" width="100%" frame="border" border="1" rules="all"><caption><b>Table 2 </b><strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b118221831192917">config</strong> parameters corresponding to <strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b182313116292">real-time</strong></caption><thead align="left"><tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row6144145523420"><th align="left" class="cellrowborder" valign="top" width="19.59405940594059%" id="mcps1.3.3.3.2.4.1.1"><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p914710554347">Parameter</p>
|
|
</th>
|
|
<th align="left" class="cellrowborder" valign="top" width="22.772277227722775%" id="mcps1.3.3.3.2.4.1.2"><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1215075553415">Type</p>
|
|
</th>
|
|
<th align="left" class="cellrowborder" valign="top" width="57.63366336633663%" id="mcps1.3.3.3.2.4.1.3"><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p12153175583414">Description</p>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody><tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row4155125512348"><td class="cellrowborder" valign="top" width="19.59405940594059%" headers="mcps1.3.3.3.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p171582558343">model_id</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="22.772277227722775%" headers="mcps1.3.3.3.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p11160105518346">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="57.63366336633663%" headers="mcps1.3.3.3.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1916235515344">Model ID. You can obtain the value by calling the API described in <a href="modelarts_04_0195.html">Obtaining the Model List</a> or from the ModelArts management console.</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row71646552340"><td class="cellrowborder" valign="top" width="19.59405940594059%" headers="mcps1.3.3.3.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p181661955183411">model_name</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="22.772277227722775%" headers="mcps1.3.3.3.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p7169855163417">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="57.63366336633663%" headers="mcps1.3.3.3.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p15171145563413">Model name</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row171726559343"><td class="cellrowborder" valign="top" width="19.59405940594059%" headers="mcps1.3.3.3.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1817465512347">model_version</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="22.772277227722775%" headers="mcps1.3.3.3.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p16177145512345">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="57.63366336633663%" headers="mcps1.3.3.3.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p2179155193410">Model version</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row692515406279"><td class="cellrowborder" valign="top" width="19.59405940594059%" headers="mcps1.3.3.3.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p11925640152715">source_type</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="22.772277227722775%" headers="mcps1.3.3.3.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p11925144011273">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="57.63366336633663%" headers="mcps1.3.3.3.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p592584013276">Model source. This parameter is returned when a model is created by an ExeML project. The value is <strong id="modelarts_04_0203__en-us_topic_0180094087_b499916327552">auto</strong>.</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row116519432212"><td class="cellrowborder" valign="top" width="19.59405940594059%" headers="mcps1.3.3.3.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p4661143142118">status</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="22.772277227722775%" headers="mcps1.3.3.3.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1966154382119">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="57.63366336633663%" headers="mcps1.3.3.3.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_p6964101714419">Running status of a model instance. Possible values are as follows:</p>
|
|
<ul id="modelarts_04_0203__en-us_topic_0180094087_ul540242034117"><li id="modelarts_04_0203__en-us_topic_0180094087_li14072464111"><strong id="modelarts_04_0203__en-us_topic_0180094087_b854813356485">ready</strong>: ready (All instances have been started.)</li><li id="modelarts_04_0203__en-us_topic_0180094087_li19635202614118"><strong id="modelarts_04_0203__en-us_topic_0180094087_b746593914812">concerning</strong>: partially ready (Some instances are started but some are not.)</li><li id="modelarts_04_0203__en-us_topic_0180094087_li10402520114113"><strong id="modelarts_04_0203__en-us_topic_0180094087_b1445613501486">notReady</strong>: not ready (All instances are not started.)</li></ul>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row171802055123412"><td class="cellrowborder" valign="top" width="19.59405940594059%" headers="mcps1.3.3.3.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1818315514347">weight</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="22.772277227722775%" headers="mcps1.3.3.3.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p41851455163410">Integer</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="57.63366336633663%" headers="mcps1.3.3.3.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1187195573410">Traffic weight allocated to a model</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row109001018122313"><td class="cellrowborder" valign="top" width="19.59405940594059%" headers="mcps1.3.3.3.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1550112612239">specification</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="22.772277227722775%" headers="mcps1.3.3.3.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p155097263236">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="57.63366336633663%" headers="mcps1.3.3.3.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p750952619238">Resource flavor. The value can be <strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b10208154213016">modelarts.vm.cpu.2u</strong>, <strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b1209164273011">modelarts.vm.gpu.p4</strong>, or <strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b1621024215306">modelarts.vm.ai1.a310</strong>.</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row1188755153415"><td class="cellrowborder" valign="top" width="19.59405940594059%" headers="mcps1.3.3.3.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p16191165514343">envs</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="22.772277227722775%" headers="mcps1.3.3.3.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p51941855183419">Map<String, String></p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="57.63366336633663%" headers="mcps1.3.3.3.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1319675510345">Environment variable key-value pair required for running a model</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row1519735513343"><td class="cellrowborder" valign="top" width="19.59405940594059%" headers="mcps1.3.3.3.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p7200455193418">instance_count</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="22.772277227722775%" headers="mcps1.3.3.3.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p4202255103410">Integer</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="57.63366336633663%" headers="mcps1.3.3.3.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1420416556347">Number of instances deployed in a model</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row520545517347"><td class="cellrowborder" valign="top" width="19.59405940594059%" headers="mcps1.3.3.3.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1420818558341">scaling</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="22.772277227722775%" headers="mcps1.3.3.3.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p12210195563418">Boolean</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="57.63366336633663%" headers="mcps1.3.3.3.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p2212185593420">Whether auto scaling is enabled</p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="tablenoborder"><table cellpadding="4" cellspacing="0" summary="" id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_table14519552151511" width="100%" frame="border" border="1" rules="all"><caption><b>Table 3 </b><strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b756491818316">config</strong> parameters corresponding to <strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b456591863116">batch</strong></caption><thead align="left"><tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row125271952201519"><th align="left" class="cellrowborder" valign="top" width="19.59405940594059%" id="mcps1.3.3.4.2.4.1.1"><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p8527652201512">Parameter</p>
|
|
</th>
|
|
<th align="left" class="cellrowborder" valign="top" width="28.81188118811881%" id="mcps1.3.3.4.2.4.1.2"><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1534125216153">Type</p>
|
|
</th>
|
|
<th align="left" class="cellrowborder" valign="top" width="51.5940594059406%" id="mcps1.3.3.4.2.4.1.3"><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p15534195210153">Description</p>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody><tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row1534652181519"><td class="cellrowborder" valign="top" width="19.59405940594059%" headers="mcps1.3.3.4.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p135416521154">model_id</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.81188118811881%" headers="mcps1.3.3.4.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p115411052121519">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="51.5940594059406%" headers="mcps1.3.3.4.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1541155201517">Model ID. You can obtain the value by calling the API described in <a href="modelarts_04_0195.html">Obtaining the Model List</a> or from the ModelArts management console.</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row1550552161515"><td class="cellrowborder" valign="top" width="19.59405940594059%" headers="mcps1.3.3.4.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p8550155231513">model_name</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.81188118811881%" headers="mcps1.3.3.4.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p555015523158">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="51.5940594059406%" headers="mcps1.3.3.4.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p755055291520">Model name</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row10558115211153"><td class="cellrowborder" valign="top" width="19.59405940594059%" headers="mcps1.3.3.4.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1555812528159">model_version</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.81188118811881%" headers="mcps1.3.3.4.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p255815291516">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="51.5940594059406%" headers="mcps1.3.3.4.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p185651152191516">Model version</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row17565115217152"><td class="cellrowborder" valign="top" width="19.59405940594059%" headers="mcps1.3.3.4.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p10451132332118">specification</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.81188118811881%" headers="mcps1.3.3.4.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p2045132312215">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="51.5940594059406%" headers="mcps1.3.3.4.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p4451182332112">Resource flavor. The value can be <strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b96723304312">modelarts.vm.cpu.2u</strong> or <strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b17673630193111">modelarts.vm.gpu.p4</strong>.</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row65721652161510"><td class="cellrowborder" valign="top" width="19.59405940594059%" headers="mcps1.3.3.4.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1457213524153">envs</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.81188118811881%" headers="mcps1.3.3.4.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p12581195261518">Map<String, String></p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="51.5940594059406%" headers="mcps1.3.3.4.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p11581125211151">Environment variable key-value pair required for running a model</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row4581105281512"><td class="cellrowborder" valign="top" width="19.59405940594059%" headers="mcps1.3.3.4.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p20589752191512">instance_count</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.81188118811881%" headers="mcps1.3.3.4.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1358985271518">Integer</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="51.5940594059406%" headers="mcps1.3.3.4.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p25891752131511">Number of instances deployed in a model</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row158945271510"><td class="cellrowborder" valign="top" width="19.59405940594059%" headers="mcps1.3.3.4.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1459705212153">src_path</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.81188118811881%" headers="mcps1.3.3.4.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1597165221513">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="51.5940594059406%" headers="mcps1.3.3.4.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p66041352191515">OBS path of the input data of a batch job</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row1343422910248"><td class="cellrowborder" valign="top" width="19.59405940594059%" headers="mcps1.3.3.4.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p2434102992413">dest_path</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.81188118811881%" headers="mcps1.3.3.4.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p74341829182420">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="51.5940594059406%" headers="mcps1.3.3.4.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p2434229102415">OBS path of the output data of a batch job</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row87684148287"><td class="cellrowborder" valign="top" width="19.59405940594059%" headers="mcps1.3.3.4.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p476831418281">req_uri</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.81188118811881%" headers="mcps1.3.3.4.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p3768814162819">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="51.5940594059406%" headers="mcps1.3.3.4.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p18768314122816">Inference path of a batch job</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row10768121815286"><td class="cellrowborder" valign="top" width="19.59405940594059%" headers="mcps1.3.3.4.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p10768418202815">mapping_type</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.81188118811881%" headers="mcps1.3.3.4.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p18768121810286">String</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="51.5940594059406%" headers="mcps1.3.3.4.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p157689180283">Mapping type of the input data. The value can be <strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b31779482313">file</strong> or <strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b11178154810319">csv</strong>.</p>
|
|
</td>
|
|
</tr>
|
|
<tr id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_row10890216162811"><td class="cellrowborder" valign="top" width="19.59405940594059%" headers="mcps1.3.3.4.2.4.1.1 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p1890131602814">mapping_rule</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="28.81188118811881%" headers="mcps1.3.3.4.2.4.1.2 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p11890111617285">Map</p>
|
|
</td>
|
|
<td class="cellrowborder" valign="top" width="51.5940594059406%" headers="mcps1.3.3.4.2.4.1.3 "><p id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_p179278495283">Mapping between input parameters and CSV data. This parameter is returned only when <strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b5125573119">mapping_type</strong> is set to <strong id="modelarts_04_0203__en-us_topic_0180094087_en-us_topic_0160619035_b1321155183115">csv</strong>.</p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<div class="familylinks">
|
|
<div class="parentlink"><strong>Parent topic:</strong> <a href="modelarts_04_0199.html">Service Management</a></div>
|
|
</div>
|
|
</div>
|
|
|