sap-ai-sdk-core 2.9.9__py3-none-any.whl → 3.0.3__py3-none-any.whl
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.
- ai_core_sdk/ai_core_v2_client.py +157 -0
- ai_core_sdk/cli.py +172 -0
- ai_core_sdk/credentials.py +196 -0
- ai_core_sdk/exception.py +11 -0
- ai_core_sdk/helpers/__init__.py +39 -0
- ai_core_sdk/helpers/constants.py +18 -0
- ai_core_sdk/helpers/logging.py +23 -0
- ai_core_sdk/models/__init__.py +33 -0
- ai_core_sdk/models/application.py +37 -0
- ai_core_sdk/models/application_query_response.py +30 -0
- ai_core_sdk/models/application_resource_sync_status.py +34 -0
- ai_core_sdk/models/application_source.py +34 -0
- ai_core_sdk/models/application_status.py +66 -0
- ai_core_sdk/models/base_models.py +62 -0
- ai_core_sdk/models/docker_registry_secret.py +23 -0
- ai_core_sdk/models/docker_registry_secret_query_response.py +30 -0
- ai_core_sdk/models/kpi.py +25 -0
- ai_core_sdk/models/object_store_secret.py +32 -0
- ai_core_sdk/models/object_store_secret_query_response.py +30 -0
- ai_core_sdk/models/repository.py +36 -0
- ai_core_sdk/models/repository_query_response.py +30 -0
- ai_core_sdk/models/repository_status.py +9 -0
- ai_core_sdk/models/resource_group.py +50 -0
- ai_core_sdk/models/resource_group_query_response.py +31 -0
- ai_core_sdk/models/resource_group_status.py +9 -0
- ai_core_sdk/models/secret.py +30 -0
- ai_core_sdk/models/secret_query_response.py +30 -0
- ai_core_sdk/resource_clients/__init__.py +13 -0
- ai_core_sdk/resource_clients/applications_client.py +173 -0
- ai_core_sdk/resource_clients/docker_registry_secrets_client.py +117 -0
- ai_core_sdk/resource_clients/internal_rest_client.py +52 -0
- ai_core_sdk/resource_clients/kpi_client.py +26 -0
- ai_core_sdk/resource_clients/metrics_client.py +131 -0
- ai_core_sdk/resource_clients/object_store_secrets_client.py +215 -0
- ai_core_sdk/resource_clients/repositories_client.py +116 -0
- ai_core_sdk/resource_clients/secrets_client.py +148 -0
- ai_core_sdk/tracking/__init__.py +2 -0
- ai_core_sdk/tracking/tracking.py +215 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.ai_core_v2_client.html +127 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.cli.html +59 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.credentials.html +209 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.exception.html +161 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.helpers.constants.html +90 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.helpers.html +52 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.helpers.logging.html +41 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.html +29 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.application.html +79 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.application_query_response.html +86 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.application_resource_sync_status.html +77 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.application_source.html +77 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.application_status.html +90 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.base_models.html +120 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.docker_registry_secret.html +85 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.docker_registry_secret_query_response.html +86 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.html +40 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.kpi.html +73 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.object_store_secret.html +71 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.object_store_secret_query_response.html +86 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.repository.html +77 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.repository_query_response.html +86 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.repository_status.html +69 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.resource_group.html +85 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.resource_group_query_response.html +86 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.resource_group_status.html +69 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.secret.html +76 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.secret_query_response.html +86 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.resource_clients.applications_client.html +186 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.resource_clients.docker_registry_secrets_client.html +147 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.resource_clients.html +29 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.resource_clients.internal_rest_client.html +181 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.resource_clients.kpi_client.html +87 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.resource_clients.metrics_client.html +189 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.resource_clients.object_store_secrets_client.html +205 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.resource_clients.repositories_client.html +148 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.resource_clients.resource_groups_client.html +156 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.resource_clients.secrets_client.html +165 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.tracking.html +22 -0
- sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.tracking.tracking.html +224 -0
- sap_ai_sdk_core-3.0.3.dist-info/METADATA +253 -0
- sap_ai_sdk_core-3.0.3.dist-info/RECORD +84 -0
- {sap_ai_sdk_core-2.9.9.dist-info → sap_ai_sdk_core-3.0.3.dist-info}/WHEEL +1 -1
- sap_ai_sdk_core-3.0.3.dist-info/top_level.txt +1 -0
- sap_ai_sdk_core-2.9.9.dist-info/METADATA +0 -43
- sap_ai_sdk_core-2.9.9.dist-info/RECORD +0 -6
- sap_ai_sdk_core-2.9.9.dist-info/top_level.txt +0 -1
- {sap-ai-sdk-core → ai_core_sdk}/__init__.py +0 -0
- {sap_ai_sdk_core-2.9.9.dist-info/licenses → sap_ai_sdk_core-3.0.3.dist-info}/LICENSE +0 -0
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
2
|
+
<html><head><title>Python: module ai_core_sdk.models.repository_query_response</title>
|
|
3
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
4
|
+
</head><body bgcolor="#f0f0f8">
|
|
5
|
+
|
|
6
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="heading">
|
|
7
|
+
<tr bgcolor="#7799ee">
|
|
8
|
+
<td valign=bottom> <br>
|
|
9
|
+
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="ai_core_sdk.html"><font color="#ffffff">ai_core_sdk</font></a>.<a href="ai_core_sdk.models.html"><font color="#ffffff">models</font></a>.repository_query_response</strong></big></big></font></td
|
|
10
|
+
><td align=right valign=bottom
|
|
11
|
+
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/repository_query_response.py">/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/repository_query_response.py</a></font></td></tr></table>
|
|
12
|
+
<p></p>
|
|
13
|
+
<p>
|
|
14
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
15
|
+
<tr bgcolor="#ee77aa">
|
|
16
|
+
<td colspan=3 valign=bottom> <br>
|
|
17
|
+
<font color="#ffffff" face="helvetica, arial"><big><strong>Classes</strong></big></font></td></tr>
|
|
18
|
+
|
|
19
|
+
<tr><td bgcolor="#ee77aa"><tt> </tt></td><td> </td>
|
|
20
|
+
<td width="100%"><dl>
|
|
21
|
+
<dt><font face="helvetica, arial"><a href="ai_api_client_sdk.models.base_models.html#QueryResponse">ai_api_client_sdk.models.base_models.QueryResponse</a>(<a href="builtins.html#object">builtins.object</a>)
|
|
22
|
+
</font></dt><dd>
|
|
23
|
+
<dl>
|
|
24
|
+
<dt><font face="helvetica, arial"><a href="ai_core_sdk.models.repository_query_response.html#RepositoryQueryResponse">RepositoryQueryResponse</a>
|
|
25
|
+
</font></dt></dl>
|
|
26
|
+
</dd>
|
|
27
|
+
</dl>
|
|
28
|
+
<p>
|
|
29
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
30
|
+
<tr bgcolor="#ffc8d8">
|
|
31
|
+
<td colspan=3 valign=bottom> <br>
|
|
32
|
+
<font color="#000000" face="helvetica, arial"><a name="RepositoryQueryResponse">class <strong>RepositoryQueryResponse</strong></a>(<a href="ai_api_client_sdk.models.base_models.html#QueryResponse">ai_api_client_sdk.models.base_models.QueryResponse</a>)</font></td></tr>
|
|
33
|
+
|
|
34
|
+
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
|
|
35
|
+
<td colspan=2><tt><a href="#RepositoryQueryResponse">RepositoryQueryResponse</a>(resources: List[ai_core_sdk.models.repository.Repository], count: int, **kwargs)<br>
|
|
36
|
+
<br>
|
|
37
|
+
The <a href="#RepositoryQueryResponse">RepositoryQueryResponse</a> object defines the response of the repository query request<br>
|
|
38
|
+
:param resources: List of the repositories returned from the server<br>
|
|
39
|
+
:type resources: List[class:`ai_core_sdk.models.repository.Repository`]<br>
|
|
40
|
+
:param count: Total number of the queried repositories<br>
|
|
41
|
+
:type count: int<br>
|
|
42
|
+
:param `**kwargs`: The keyword arguments are there in case there are additional attributes returned from server<br> </tt></td></tr>
|
|
43
|
+
<tr><td> </td>
|
|
44
|
+
<td width="100%"><dl><dt>Method resolution order:</dt>
|
|
45
|
+
<dd><a href="ai_core_sdk.models.repository_query_response.html#RepositoryQueryResponse">RepositoryQueryResponse</a></dd>
|
|
46
|
+
<dd><a href="ai_api_client_sdk.models.base_models.html#QueryResponse">ai_api_client_sdk.models.base_models.QueryResponse</a></dd>
|
|
47
|
+
<dd><a href="builtins.html#object">builtins.object</a></dd>
|
|
48
|
+
</dl>
|
|
49
|
+
<hr>
|
|
50
|
+
Methods defined here:<br>
|
|
51
|
+
<dl><dt><a name="RepositoryQueryResponse-__init__"><strong>__init__</strong></a>(self, resources: List[ai_core_sdk.models.repository.Repository], count: int, **kwargs)</dt><dd><tt>Initialize self. See help(type(self)) for accurate signature.</tt></dd></dl>
|
|
52
|
+
|
|
53
|
+
<hr>
|
|
54
|
+
Static methods defined here:<br>
|
|
55
|
+
<dl><dt><a name="RepositoryQueryResponse-from_dict"><strong>from_dict</strong></a>(response_dict: Dict[str, Any])</dt><dd><tt>Returns a<br>
|
|
56
|
+
:class:`ai_core_client_sdk.models.repository_query_response.<a href="#RepositoryQueryResponse">RepositoryQueryResponse</a>`<br>
|
|
57
|
+
object, created from the values in the dict provided as parameter<br>
|
|
58
|
+
<br>
|
|
59
|
+
:param response_dict: Dict which includes the necessary values to create the object<br>
|
|
60
|
+
:type response_dict: Dict[str, Any]<br>
|
|
61
|
+
:return: An object, created from the values provided<br>
|
|
62
|
+
:rtype: class:`ai_core_sdk.models.repository_query_response.<a href="#RepositoryQueryResponse">RepositoryQueryResponse</a>`</tt></dd></dl>
|
|
63
|
+
|
|
64
|
+
<hr>
|
|
65
|
+
Methods inherited from <a href="ai_api_client_sdk.models.base_models.html#QueryResponse">ai_api_client_sdk.models.base_models.QueryResponse</a>:<br>
|
|
66
|
+
<dl><dt><a name="RepositoryQueryResponse-__str__"><strong>__str__</strong></a>(self)</dt><dd><tt>Return str(self).</tt></dd></dl>
|
|
67
|
+
|
|
68
|
+
<hr>
|
|
69
|
+
Data descriptors inherited from <a href="ai_api_client_sdk.models.base_models.html#QueryResponse">ai_api_client_sdk.models.base_models.QueryResponse</a>:<br>
|
|
70
|
+
<dl><dt><strong>__dict__</strong></dt>
|
|
71
|
+
<dd><tt>dictionary for instance variables (if defined)</tt></dd>
|
|
72
|
+
</dl>
|
|
73
|
+
<dl><dt><strong>__weakref__</strong></dt>
|
|
74
|
+
<dd><tt>list of weak references to the object (if defined)</tt></dd>
|
|
75
|
+
</dl>
|
|
76
|
+
</td></tr></table></td></tr></table><p>
|
|
77
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
78
|
+
<tr bgcolor="#55aa55">
|
|
79
|
+
<td colspan=3 valign=bottom> <br>
|
|
80
|
+
<font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td></tr>
|
|
81
|
+
|
|
82
|
+
<tr><td bgcolor="#55aa55"><tt> </tt></td><td> </td>
|
|
83
|
+
<td width="100%"><strong>Any</strong> = typing.Any<br>
|
|
84
|
+
<strong>Dict</strong> = typing.Dict<br>
|
|
85
|
+
<strong>List</strong> = typing.List</td></tr></table>
|
|
86
|
+
</body></html>
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
2
|
+
<html><head><title>Python: module ai_core_sdk.models.repository_status</title>
|
|
3
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
4
|
+
</head><body bgcolor="#f0f0f8">
|
|
5
|
+
|
|
6
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="heading">
|
|
7
|
+
<tr bgcolor="#7799ee">
|
|
8
|
+
<td valign=bottom> <br>
|
|
9
|
+
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="ai_core_sdk.html"><font color="#ffffff">ai_core_sdk</font></a>.<a href="ai_core_sdk.models.html"><font color="#ffffff">models</font></a>.repository_status</strong></big></big></font></td
|
|
10
|
+
><td align=right valign=bottom
|
|
11
|
+
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/repository_status.py">/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/repository_status.py</a></font></td></tr></table>
|
|
12
|
+
<p></p>
|
|
13
|
+
<p>
|
|
14
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
15
|
+
<tr bgcolor="#ee77aa">
|
|
16
|
+
<td colspan=3 valign=bottom> <br>
|
|
17
|
+
<font color="#ffffff" face="helvetica, arial"><big><strong>Classes</strong></big></font></td></tr>
|
|
18
|
+
|
|
19
|
+
<tr><td bgcolor="#ee77aa"><tt> </tt></td><td> </td>
|
|
20
|
+
<td width="100%"><dl>
|
|
21
|
+
<dt><font face="helvetica, arial"><a href="enum.html#Enum">enum.Enum</a>(<a href="builtins.html#object">builtins.object</a>)
|
|
22
|
+
</font></dt><dd>
|
|
23
|
+
<dl>
|
|
24
|
+
<dt><font face="helvetica, arial"><a href="ai_core_sdk.models.repository_status.html#RepositoryStatus">RepositoryStatus</a>
|
|
25
|
+
</font></dt></dl>
|
|
26
|
+
</dd>
|
|
27
|
+
</dl>
|
|
28
|
+
<p>
|
|
29
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
30
|
+
<tr bgcolor="#ffc8d8">
|
|
31
|
+
<td colspan=3 valign=bottom> <br>
|
|
32
|
+
<font color="#000000" face="helvetica, arial"><a name="RepositoryStatus">class <strong>RepositoryStatus</strong></a>(<a href="enum.html#Enum">enum.Enum</a>)</font></td></tr>
|
|
33
|
+
|
|
34
|
+
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
|
|
35
|
+
<td colspan=2><tt><a href="#RepositoryStatus">RepositoryStatus</a>(value, names=None, *, module=None, qualname=None, type=None, start=1)<br>
|
|
36
|
+
<br>
|
|
37
|
+
<a href="#RepositoryStatus">RepositoryStatus</a> is an <a href="enum.html#Enum">Enum</a> defining the valid values of the status of a repository<br> </tt></td></tr>
|
|
38
|
+
<tr><td> </td>
|
|
39
|
+
<td width="100%"><dl><dt>Method resolution order:</dt>
|
|
40
|
+
<dd><a href="ai_core_sdk.models.repository_status.html#RepositoryStatus">RepositoryStatus</a></dd>
|
|
41
|
+
<dd><a href="enum.html#Enum">enum.Enum</a></dd>
|
|
42
|
+
<dd><a href="builtins.html#object">builtins.object</a></dd>
|
|
43
|
+
</dl>
|
|
44
|
+
<hr>
|
|
45
|
+
Data and other attributes defined here:<br>
|
|
46
|
+
<dl><dt><strong>COMPLETED</strong> = <RepositoryStatus.COMPLETED: 'COMPLETED'></dl>
|
|
47
|
+
|
|
48
|
+
<dl><dt><strong>ERROR</strong> = <RepositoryStatus.ERROR: 'ERROR'></dl>
|
|
49
|
+
|
|
50
|
+
<dl><dt><strong>IN_PROGRESS</strong> = <RepositoryStatus.IN_PROGRESS: 'IN-PROGRESS'></dl>
|
|
51
|
+
|
|
52
|
+
<hr>
|
|
53
|
+
Data descriptors inherited from <a href="enum.html#Enum">enum.Enum</a>:<br>
|
|
54
|
+
<dl><dt><strong>name</strong></dt>
|
|
55
|
+
<dd><tt>The name of the Enum member.</tt></dd>
|
|
56
|
+
</dl>
|
|
57
|
+
<dl><dt><strong>value</strong></dt>
|
|
58
|
+
<dd><tt>The value of the Enum member.</tt></dd>
|
|
59
|
+
</dl>
|
|
60
|
+
<hr>
|
|
61
|
+
Readonly properties inherited from <a href="enum.html#EnumMeta">enum.EnumMeta</a>:<br>
|
|
62
|
+
<dl><dt><strong>__members__</strong></dt>
|
|
63
|
+
<dd><tt>Returns a mapping of member name->value.<br>
|
|
64
|
+
<br>
|
|
65
|
+
This mapping lists all enum members, including aliases. Note that this<br>
|
|
66
|
+
is a read-only view of the internal mapping.</tt></dd>
|
|
67
|
+
</dl>
|
|
68
|
+
</td></tr></table></td></tr></table>
|
|
69
|
+
</body></html>
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
2
|
+
<html><head><title>Python: module ai_core_sdk.models.resource_group</title>
|
|
3
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
4
|
+
</head><body bgcolor="#f0f0f8">
|
|
5
|
+
|
|
6
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="heading">
|
|
7
|
+
<tr bgcolor="#7799ee">
|
|
8
|
+
<td valign=bottom> <br>
|
|
9
|
+
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="ai_core_sdk.html"><font color="#ffffff">ai_core_sdk</font></a>.<a href="ai_core_sdk.models.html"><font color="#ffffff">models</font></a>.resource_group</strong></big></big></font></td
|
|
10
|
+
><td align=right valign=bottom
|
|
11
|
+
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/resource_group.py">/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/resource_group.py</a></font></td></tr></table>
|
|
12
|
+
<p></p>
|
|
13
|
+
<p>
|
|
14
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
15
|
+
<tr bgcolor="#ee77aa">
|
|
16
|
+
<td colspan=3 valign=bottom> <br>
|
|
17
|
+
<font color="#ffffff" face="helvetica, arial"><big><strong>Classes</strong></big></font></td></tr>
|
|
18
|
+
|
|
19
|
+
<tr><td bgcolor="#ee77aa"><tt> </tt></td><td> </td>
|
|
20
|
+
<td width="100%"><dl>
|
|
21
|
+
<dt><font face="helvetica, arial"><a href="builtins.html#object">builtins.object</a>
|
|
22
|
+
</font></dt><dd>
|
|
23
|
+
<dl>
|
|
24
|
+
<dt><font face="helvetica, arial"><a href="ai_core_sdk.models.resource_group.html#ResourceGroup">ResourceGroup</a>
|
|
25
|
+
</font></dt></dl>
|
|
26
|
+
</dd>
|
|
27
|
+
</dl>
|
|
28
|
+
<p>
|
|
29
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
30
|
+
<tr bgcolor="#ffc8d8">
|
|
31
|
+
<td colspan=3 valign=bottom> <br>
|
|
32
|
+
<font color="#000000" face="helvetica, arial"><a name="ResourceGroup">class <strong>ResourceGroup</strong></a>(<a href="builtins.html#object">builtins.object</a>)</font></td></tr>
|
|
33
|
+
|
|
34
|
+
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
|
|
35
|
+
<td colspan=2><tt><a href="#ResourceGroup">ResourceGroup</a>(resource_group_id: str = None, tenant_id: str = None, zone_id: str = None, labels: List[ai_api_client_sdk.models.label.Label] = None, status: ai_core_sdk.models.resource_group_status.ResourceGroupStatus = None, status_message: str = None, **kwargs)<br>
|
|
36
|
+
<br>
|
|
37
|
+
<a href="#ResourceGroup">ResourceGroup</a> represents the resource group.<br>
|
|
38
|
+
<br>
|
|
39
|
+
:param resource_group_id: The resource_group_id of this <a href="#ResourceGroup">ResourceGroup</a>.<br>
|
|
40
|
+
:type resource_group_id: str<br>
|
|
41
|
+
:param tenant_id: The tenant_id of this <a href="#ResourceGroup">ResourceGroup</a>.<br>
|
|
42
|
+
:type tenant_id: str<br>
|
|
43
|
+
:param zone_id: The zone_id of this <a href="#ResourceGroup">ResourceGroup</a>.<br>
|
|
44
|
+
:type zone_id: str<br>
|
|
45
|
+
:param labels: The labels of this <a href="#ResourceGroup">ResourceGroup</a>.<br>
|
|
46
|
+
:type labels: ResourceGroupLabels<br>
|
|
47
|
+
:param status: The status of this <a href="#ResourceGroup">ResourceGroup</a>.<br>
|
|
48
|
+
:type status: str<br>
|
|
49
|
+
:param status_message: The status_message of this <a href="#ResourceGroup">ResourceGroup</a>.<br>
|
|
50
|
+
:type status_message: str<br> </tt></td></tr>
|
|
51
|
+
<tr><td> </td>
|
|
52
|
+
<td width="100%">Methods defined here:<br>
|
|
53
|
+
<dl><dt><a name="ResourceGroup-__init__"><strong>__init__</strong></a>(self, resource_group_id: str = None, tenant_id: str = None, zone_id: str = None, labels: List[ai_api_client_sdk.models.label.Label] = None, status: ai_core_sdk.models.resource_group_status.ResourceGroupStatus = None, status_message: str = None, **kwargs)</dt><dd><tt>Initialize self. See help(type(self)) for accurate signature.</tt></dd></dl>
|
|
54
|
+
|
|
55
|
+
<dl><dt><a name="ResourceGroup-__str__"><strong>__str__</strong></a>(self)</dt><dd><tt>Return str(self).</tt></dd></dl>
|
|
56
|
+
|
|
57
|
+
<hr>
|
|
58
|
+
Static methods defined here:<br>
|
|
59
|
+
<dl><dt><a name="ResourceGroup-from_dict"><strong>from_dict</strong></a>(resource_group_dict: Dict[str, Any])</dt><dd><tt>Returns a :class:`ai_core_sdk.models.resource_group.<a href="#ResourceGroup">ResourceGroup</a>` <a href="builtins.html#object">object</a>, created<br>
|
|
60
|
+
from the values in the dict provided as parameter<br>
|
|
61
|
+
<br>
|
|
62
|
+
:param resource_group_dict: Dict which includes the necessary values to create the <a href="builtins.html#object">object</a><br>
|
|
63
|
+
:type resource_group_dict: Dict[str, Any]<br>
|
|
64
|
+
:return: An <a href="builtins.html#object">object</a>, created from the values provided<br>
|
|
65
|
+
:rtype: class:`ai_core_sdk.models.resource_group.<a href="#ResourceGroup">ResourceGroup</a>`</tt></dd></dl>
|
|
66
|
+
|
|
67
|
+
<hr>
|
|
68
|
+
Data descriptors defined here:<br>
|
|
69
|
+
<dl><dt><strong>__dict__</strong></dt>
|
|
70
|
+
<dd><tt>dictionary for instance variables (if defined)</tt></dd>
|
|
71
|
+
</dl>
|
|
72
|
+
<dl><dt><strong>__weakref__</strong></dt>
|
|
73
|
+
<dd><tt>list of weak references to the object (if defined)</tt></dd>
|
|
74
|
+
</dl>
|
|
75
|
+
</td></tr></table></td></tr></table><p>
|
|
76
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
77
|
+
<tr bgcolor="#55aa55">
|
|
78
|
+
<td colspan=3 valign=bottom> <br>
|
|
79
|
+
<font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td></tr>
|
|
80
|
+
|
|
81
|
+
<tr><td bgcolor="#55aa55"><tt> </tt></td><td> </td>
|
|
82
|
+
<td width="100%"><strong>Any</strong> = typing.Any<br>
|
|
83
|
+
<strong>Dict</strong> = typing.Dict<br>
|
|
84
|
+
<strong>List</strong> = typing.List</td></tr></table>
|
|
85
|
+
</body></html>
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
2
|
+
<html><head><title>Python: module ai_core_sdk.models.resource_group_query_response</title>
|
|
3
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
4
|
+
</head><body bgcolor="#f0f0f8">
|
|
5
|
+
|
|
6
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="heading">
|
|
7
|
+
<tr bgcolor="#7799ee">
|
|
8
|
+
<td valign=bottom> <br>
|
|
9
|
+
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="ai_core_sdk.html"><font color="#ffffff">ai_core_sdk</font></a>.<a href="ai_core_sdk.models.html"><font color="#ffffff">models</font></a>.resource_group_query_response</strong></big></big></font></td
|
|
10
|
+
><td align=right valign=bottom
|
|
11
|
+
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/resource_group_query_response.py">/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/resource_group_query_response.py</a></font></td></tr></table>
|
|
12
|
+
<p></p>
|
|
13
|
+
<p>
|
|
14
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
15
|
+
<tr bgcolor="#ee77aa">
|
|
16
|
+
<td colspan=3 valign=bottom> <br>
|
|
17
|
+
<font color="#ffffff" face="helvetica, arial"><big><strong>Classes</strong></big></font></td></tr>
|
|
18
|
+
|
|
19
|
+
<tr><td bgcolor="#ee77aa"><tt> </tt></td><td> </td>
|
|
20
|
+
<td width="100%"><dl>
|
|
21
|
+
<dt><font face="helvetica, arial"><a href="ai_api_client_sdk.models.base_models.html#QueryResponse">ai_api_client_sdk.models.base_models.QueryResponse</a>(<a href="builtins.html#object">builtins.object</a>)
|
|
22
|
+
</font></dt><dd>
|
|
23
|
+
<dl>
|
|
24
|
+
<dt><font face="helvetica, arial"><a href="ai_core_sdk.models.resource_group_query_response.html#ResourceGroupQueryResponse">ResourceGroupQueryResponse</a>
|
|
25
|
+
</font></dt></dl>
|
|
26
|
+
</dd>
|
|
27
|
+
</dl>
|
|
28
|
+
<p>
|
|
29
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
30
|
+
<tr bgcolor="#ffc8d8">
|
|
31
|
+
<td colspan=3 valign=bottom> <br>
|
|
32
|
+
<font color="#000000" face="helvetica, arial"><a name="ResourceGroupQueryResponse">class <strong>ResourceGroupQueryResponse</strong></a>(<a href="ai_api_client_sdk.models.base_models.html#QueryResponse">ai_api_client_sdk.models.base_models.QueryResponse</a>)</font></td></tr>
|
|
33
|
+
|
|
34
|
+
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
|
|
35
|
+
<td colspan=2><tt><a href="#ResourceGroupQueryResponse">ResourceGroupQueryResponse</a>(resources: List[ai_core_sdk.models.resource_group.ResourceGroup], count: int, **kwargs)<br>
|
|
36
|
+
<br>
|
|
37
|
+
The <a href="#ResourceGroupQueryResponse">ResourceGroupQueryResponse</a> object defines the response of the resourceGroups query request<br>
|
|
38
|
+
:param resources: List of the resource groups returned from the server<br>
|
|
39
|
+
:type resources: List[class:`ai_core_sdk.models.resource_group.ResourceGroup`]<br>
|
|
40
|
+
:param count: Total number of the queried docker registry secrets<br>
|
|
41
|
+
:type count: int<br>
|
|
42
|
+
:param `**kwargs`: The keyword arguments are there in case there are additional attributes returned from server<br> </tt></td></tr>
|
|
43
|
+
<tr><td> </td>
|
|
44
|
+
<td width="100%"><dl><dt>Method resolution order:</dt>
|
|
45
|
+
<dd><a href="ai_core_sdk.models.resource_group_query_response.html#ResourceGroupQueryResponse">ResourceGroupQueryResponse</a></dd>
|
|
46
|
+
<dd><a href="ai_api_client_sdk.models.base_models.html#QueryResponse">ai_api_client_sdk.models.base_models.QueryResponse</a></dd>
|
|
47
|
+
<dd><a href="builtins.html#object">builtins.object</a></dd>
|
|
48
|
+
</dl>
|
|
49
|
+
<hr>
|
|
50
|
+
Methods defined here:<br>
|
|
51
|
+
<dl><dt><a name="ResourceGroupQueryResponse-__init__"><strong>__init__</strong></a>(self, resources: List[ai_core_sdk.models.resource_group.ResourceGroup], count: int, **kwargs)</dt><dd><tt>Initialize self. See help(type(self)) for accurate signature.</tt></dd></dl>
|
|
52
|
+
|
|
53
|
+
<hr>
|
|
54
|
+
Static methods defined here:<br>
|
|
55
|
+
<dl><dt><a name="ResourceGroupQueryResponse-from_dict"><strong>from_dict</strong></a>(response_dict: Dict[str, Any])</dt><dd><tt>Returns a<br>
|
|
56
|
+
:class:`ai_core_sdk.models.docker_registry_secret_query_response.DockerRegistrySecretQueryResponse`<br>
|
|
57
|
+
object, created from the values in the dict provided as parameter<br>
|
|
58
|
+
<br>
|
|
59
|
+
:param response_dict: Dict which includes the necessary values to create the object<br>
|
|
60
|
+
:type response_dict: Dict[str, Any]<br>
|
|
61
|
+
:return: An object, created from the values provided<br>
|
|
62
|
+
:rtype: class:`ai_core_sdk.models.docker_registry_secret_query_response.DockerRegistrySecretQueryResponse`</tt></dd></dl>
|
|
63
|
+
|
|
64
|
+
<hr>
|
|
65
|
+
Methods inherited from <a href="ai_api_client_sdk.models.base_models.html#QueryResponse">ai_api_client_sdk.models.base_models.QueryResponse</a>:<br>
|
|
66
|
+
<dl><dt><a name="ResourceGroupQueryResponse-__str__"><strong>__str__</strong></a>(self)</dt><dd><tt>Return str(self).</tt></dd></dl>
|
|
67
|
+
|
|
68
|
+
<hr>
|
|
69
|
+
Data descriptors inherited from <a href="ai_api_client_sdk.models.base_models.html#QueryResponse">ai_api_client_sdk.models.base_models.QueryResponse</a>:<br>
|
|
70
|
+
<dl><dt><strong>__dict__</strong></dt>
|
|
71
|
+
<dd><tt>dictionary for instance variables (if defined)</tt></dd>
|
|
72
|
+
</dl>
|
|
73
|
+
<dl><dt><strong>__weakref__</strong></dt>
|
|
74
|
+
<dd><tt>list of weak references to the object (if defined)</tt></dd>
|
|
75
|
+
</dl>
|
|
76
|
+
</td></tr></table></td></tr></table><p>
|
|
77
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
78
|
+
<tr bgcolor="#55aa55">
|
|
79
|
+
<td colspan=3 valign=bottom> <br>
|
|
80
|
+
<font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td></tr>
|
|
81
|
+
|
|
82
|
+
<tr><td bgcolor="#55aa55"><tt> </tt></td><td> </td>
|
|
83
|
+
<td width="100%"><strong>Any</strong> = typing.Any<br>
|
|
84
|
+
<strong>Dict</strong> = typing.Dict<br>
|
|
85
|
+
<strong>List</strong> = typing.List</td></tr></table>
|
|
86
|
+
</body></html>
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
2
|
+
<html><head><title>Python: module ai_core_sdk.models.resource_group_status</title>
|
|
3
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
4
|
+
</head><body bgcolor="#f0f0f8">
|
|
5
|
+
|
|
6
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="heading">
|
|
7
|
+
<tr bgcolor="#7799ee">
|
|
8
|
+
<td valign=bottom> <br>
|
|
9
|
+
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="ai_core_sdk.html"><font color="#ffffff">ai_core_sdk</font></a>.<a href="ai_core_sdk.models.html"><font color="#ffffff">models</font></a>.resource_group_status</strong></big></big></font></td
|
|
10
|
+
><td align=right valign=bottom
|
|
11
|
+
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/resource_group_status.py">/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/resource_group_status.py</a></font></td></tr></table>
|
|
12
|
+
<p></p>
|
|
13
|
+
<p>
|
|
14
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
15
|
+
<tr bgcolor="#ee77aa">
|
|
16
|
+
<td colspan=3 valign=bottom> <br>
|
|
17
|
+
<font color="#ffffff" face="helvetica, arial"><big><strong>Classes</strong></big></font></td></tr>
|
|
18
|
+
|
|
19
|
+
<tr><td bgcolor="#ee77aa"><tt> </tt></td><td> </td>
|
|
20
|
+
<td width="100%"><dl>
|
|
21
|
+
<dt><font face="helvetica, arial"><a href="enum.html#Enum">enum.Enum</a>(<a href="builtins.html#object">builtins.object</a>)
|
|
22
|
+
</font></dt><dd>
|
|
23
|
+
<dl>
|
|
24
|
+
<dt><font face="helvetica, arial"><a href="ai_core_sdk.models.resource_group_status.html#ResourceGroupStatus">ResourceGroupStatus</a>
|
|
25
|
+
</font></dt></dl>
|
|
26
|
+
</dd>
|
|
27
|
+
</dl>
|
|
28
|
+
<p>
|
|
29
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
30
|
+
<tr bgcolor="#ffc8d8">
|
|
31
|
+
<td colspan=3 valign=bottom> <br>
|
|
32
|
+
<font color="#000000" face="helvetica, arial"><a name="ResourceGroupStatus">class <strong>ResourceGroupStatus</strong></a>(<a href="enum.html#Enum">enum.Enum</a>)</font></td></tr>
|
|
33
|
+
|
|
34
|
+
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
|
|
35
|
+
<td colspan=2><tt><a href="#ResourceGroupStatus">ResourceGroupStatus</a>(value, names=None, *, module=None, qualname=None, type=None, start=1)<br>
|
|
36
|
+
<br>
|
|
37
|
+
<a href="#ResourceGroupStatus">ResourceGroupStatus</a> is an <a href="enum.html#Enum">Enum</a> defining the valid values of the status of a resource group<br> </tt></td></tr>
|
|
38
|
+
<tr><td> </td>
|
|
39
|
+
<td width="100%"><dl><dt>Method resolution order:</dt>
|
|
40
|
+
<dd><a href="ai_core_sdk.models.resource_group_status.html#ResourceGroupStatus">ResourceGroupStatus</a></dd>
|
|
41
|
+
<dd><a href="enum.html#Enum">enum.Enum</a></dd>
|
|
42
|
+
<dd><a href="builtins.html#object">builtins.object</a></dd>
|
|
43
|
+
</dl>
|
|
44
|
+
<hr>
|
|
45
|
+
Data and other attributes defined here:<br>
|
|
46
|
+
<dl><dt><strong>ERROR</strong> = <ResourceGroupStatus.ERROR: 'ERROR'></dl>
|
|
47
|
+
|
|
48
|
+
<dl><dt><strong>PROVISIONED</strong> = <ResourceGroupStatus.PROVISIONED: 'PROVISIONED'></dl>
|
|
49
|
+
|
|
50
|
+
<dl><dt><strong>PROVISIONING</strong> = <ResourceGroupStatus.PROVISIONING: 'PROVISIONING'></dl>
|
|
51
|
+
|
|
52
|
+
<hr>
|
|
53
|
+
Data descriptors inherited from <a href="enum.html#Enum">enum.Enum</a>:<br>
|
|
54
|
+
<dl><dt><strong>name</strong></dt>
|
|
55
|
+
<dd><tt>The name of the Enum member.</tt></dd>
|
|
56
|
+
</dl>
|
|
57
|
+
<dl><dt><strong>value</strong></dt>
|
|
58
|
+
<dd><tt>The value of the Enum member.</tt></dd>
|
|
59
|
+
</dl>
|
|
60
|
+
<hr>
|
|
61
|
+
Readonly properties inherited from <a href="enum.html#EnumMeta">enum.EnumMeta</a>:<br>
|
|
62
|
+
<dl><dt><strong>__members__</strong></dt>
|
|
63
|
+
<dd><tt>Returns a mapping of member name->value.<br>
|
|
64
|
+
<br>
|
|
65
|
+
This mapping lists all enum members, including aliases. Note that this<br>
|
|
66
|
+
is a read-only view of the internal mapping.</tt></dd>
|
|
67
|
+
</dl>
|
|
68
|
+
</td></tr></table></td></tr></table>
|
|
69
|
+
</body></html>
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
2
|
+
<html><head><title>Python: module ai_core_sdk.models.secret</title>
|
|
3
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
4
|
+
</head><body bgcolor="#f0f0f8">
|
|
5
|
+
|
|
6
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="heading">
|
|
7
|
+
<tr bgcolor="#7799ee">
|
|
8
|
+
<td valign=bottom> <br>
|
|
9
|
+
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="ai_core_sdk.html"><font color="#ffffff">ai_core_sdk</font></a>.<a href="ai_core_sdk.models.html"><font color="#ffffff">models</font></a>.secret</strong></big></big></font></td
|
|
10
|
+
><td align=right valign=bottom
|
|
11
|
+
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/secret.py">/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/secret.py</a></font></td></tr></table>
|
|
12
|
+
<p></p>
|
|
13
|
+
<p>
|
|
14
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
15
|
+
<tr bgcolor="#ee77aa">
|
|
16
|
+
<td colspan=3 valign=bottom> <br>
|
|
17
|
+
<font color="#ffffff" face="helvetica, arial"><big><strong>Classes</strong></big></font></td></tr>
|
|
18
|
+
|
|
19
|
+
<tr><td bgcolor="#ee77aa"><tt> </tt></td><td> </td>
|
|
20
|
+
<td width="100%"><dl>
|
|
21
|
+
<dt><font face="helvetica, arial"><a href="builtins.html#object">builtins.object</a>
|
|
22
|
+
</font></dt><dd>
|
|
23
|
+
<dl>
|
|
24
|
+
<dt><font face="helvetica, arial"><a href="ai_core_sdk.models.secret.html#Secret">Secret</a>
|
|
25
|
+
</font></dt></dl>
|
|
26
|
+
</dd>
|
|
27
|
+
</dl>
|
|
28
|
+
<p>
|
|
29
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
30
|
+
<tr bgcolor="#ffc8d8">
|
|
31
|
+
<td colspan=3 valign=bottom> <br>
|
|
32
|
+
<font color="#000000" face="helvetica, arial"><a name="Secret">class <strong>Secret</strong></a>(<a href="builtins.html#object">builtins.object</a>)</font></td></tr>
|
|
33
|
+
|
|
34
|
+
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
|
|
35
|
+
<td colspan=2><tt><a href="#Secret">Secret</a>(name: str, data: Dict[str, str] = None, **kwargs)<br>
|
|
36
|
+
<br>
|
|
37
|
+
The <a href="#Secret">Secret</a> <a href="builtins.html#object">object</a> defines the secret response.<br>
|
|
38
|
+
<br>
|
|
39
|
+
:param name: <a href="#Secret">Secret</a> name<br>
|
|
40
|
+
:type name: str<br>
|
|
41
|
+
:param data: <a href="#Secret">Secret</a> data dictionary, defaults to None<br>
|
|
42
|
+
:type data: dict, optional<br> </tt></td></tr>
|
|
43
|
+
<tr><td> </td>
|
|
44
|
+
<td width="100%">Methods defined here:<br>
|
|
45
|
+
<dl><dt><a name="Secret-__init__"><strong>__init__</strong></a>(self, name: str, data: Dict[str, str] = None, **kwargs)</dt><dd><tt>Initialize self. See help(type(self)) for accurate signature.</tt></dd></dl>
|
|
46
|
+
|
|
47
|
+
<dl><dt><a name="Secret-__str__"><strong>__str__</strong></a>(self)</dt><dd><tt>Return str(self).</tt></dd></dl>
|
|
48
|
+
|
|
49
|
+
<hr>
|
|
50
|
+
Static methods defined here:<br>
|
|
51
|
+
<dl><dt><a name="Secret-from_dict"><strong>from_dict</strong></a>(secret_dict: Dict[str, Any])</dt><dd><tt>Returns a :class:`ai_core_sdk.models.secret.<a href="#Secret">Secret</a>` <a href="builtins.html#object">object</a>, created<br>
|
|
52
|
+
from the values in the dict provided as parameter<br>
|
|
53
|
+
<br>
|
|
54
|
+
:param secret_dict: Dict which includes the necessary values to create the <a href="builtins.html#object">object</a><br>
|
|
55
|
+
:type secret_dict: Dict[str, Any]<br>
|
|
56
|
+
:return: An <a href="builtins.html#object">object</a>, created from the values provided<br>
|
|
57
|
+
:rtype: class:`ai_core_sdk.models.secret.<a href="#Secret">Secret</a>`</tt></dd></dl>
|
|
58
|
+
|
|
59
|
+
<hr>
|
|
60
|
+
Data descriptors defined here:<br>
|
|
61
|
+
<dl><dt><strong>__dict__</strong></dt>
|
|
62
|
+
<dd><tt>dictionary for instance variables (if defined)</tt></dd>
|
|
63
|
+
</dl>
|
|
64
|
+
<dl><dt><strong>__weakref__</strong></dt>
|
|
65
|
+
<dd><tt>list of weak references to the object (if defined)</tt></dd>
|
|
66
|
+
</dl>
|
|
67
|
+
</td></tr></table></td></tr></table><p>
|
|
68
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
69
|
+
<tr bgcolor="#55aa55">
|
|
70
|
+
<td colspan=3 valign=bottom> <br>
|
|
71
|
+
<font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td></tr>
|
|
72
|
+
|
|
73
|
+
<tr><td bgcolor="#55aa55"><tt> </tt></td><td> </td>
|
|
74
|
+
<td width="100%"><strong>Any</strong> = typing.Any<br>
|
|
75
|
+
<strong>Dict</strong> = typing.Dict</td></tr></table>
|
|
76
|
+
</body></html>
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
2
|
+
<html><head><title>Python: module ai_core_sdk.models.secret_query_response</title>
|
|
3
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
4
|
+
</head><body bgcolor="#f0f0f8">
|
|
5
|
+
|
|
6
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="heading">
|
|
7
|
+
<tr bgcolor="#7799ee">
|
|
8
|
+
<td valign=bottom> <br>
|
|
9
|
+
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="ai_core_sdk.html"><font color="#ffffff">ai_core_sdk</font></a>.<a href="ai_core_sdk.models.html"><font color="#ffffff">models</font></a>.secret_query_response</strong></big></big></font></td
|
|
10
|
+
><td align=right valign=bottom
|
|
11
|
+
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/secret_query_response.py">/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/secret_query_response.py</a></font></td></tr></table>
|
|
12
|
+
<p></p>
|
|
13
|
+
<p>
|
|
14
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
15
|
+
<tr bgcolor="#ee77aa">
|
|
16
|
+
<td colspan=3 valign=bottom> <br>
|
|
17
|
+
<font color="#ffffff" face="helvetica, arial"><big><strong>Classes</strong></big></font></td></tr>
|
|
18
|
+
|
|
19
|
+
<tr><td bgcolor="#ee77aa"><tt> </tt></td><td> </td>
|
|
20
|
+
<td width="100%"><dl>
|
|
21
|
+
<dt><font face="helvetica, arial"><a href="ai_api_client_sdk.models.base_models.html#QueryResponse">ai_api_client_sdk.models.base_models.QueryResponse</a>(<a href="builtins.html#object">builtins.object</a>)
|
|
22
|
+
</font></dt><dd>
|
|
23
|
+
<dl>
|
|
24
|
+
<dt><font face="helvetica, arial"><a href="ai_core_sdk.models.secret_query_response.html#SecretQueryResponse">SecretQueryResponse</a>
|
|
25
|
+
</font></dt></dl>
|
|
26
|
+
</dd>
|
|
27
|
+
</dl>
|
|
28
|
+
<p>
|
|
29
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
30
|
+
<tr bgcolor="#ffc8d8">
|
|
31
|
+
<td colspan=3 valign=bottom> <br>
|
|
32
|
+
<font color="#000000" face="helvetica, arial"><a name="SecretQueryResponse">class <strong>SecretQueryResponse</strong></a>(<a href="ai_api_client_sdk.models.base_models.html#QueryResponse">ai_api_client_sdk.models.base_models.QueryResponse</a>)</font></td></tr>
|
|
33
|
+
|
|
34
|
+
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
|
|
35
|
+
<td colspan=2><tt><a href="#SecretQueryResponse">SecretQueryResponse</a>(resources: List[ai_core_sdk.models.secret.Secret], count: int, **kwargs)<br>
|
|
36
|
+
<br>
|
|
37
|
+
The <a href="#SecretQueryResponse">SecretQueryResponse</a> object defines the response of the secret query request<br>
|
|
38
|
+
:param resources: List of the secrets returned from the server<br>
|
|
39
|
+
:type resources: List[class:`ai_core_sdk.models.secret.Secret`]<br>
|
|
40
|
+
:param count: Total number of the queried secrets<br>
|
|
41
|
+
:type count: int<br>
|
|
42
|
+
:param `**kwargs`: The keyword arguments are there in case there are additional attributes returned from server<br> </tt></td></tr>
|
|
43
|
+
<tr><td> </td>
|
|
44
|
+
<td width="100%"><dl><dt>Method resolution order:</dt>
|
|
45
|
+
<dd><a href="ai_core_sdk.models.secret_query_response.html#SecretQueryResponse">SecretQueryResponse</a></dd>
|
|
46
|
+
<dd><a href="ai_api_client_sdk.models.base_models.html#QueryResponse">ai_api_client_sdk.models.base_models.QueryResponse</a></dd>
|
|
47
|
+
<dd><a href="builtins.html#object">builtins.object</a></dd>
|
|
48
|
+
</dl>
|
|
49
|
+
<hr>
|
|
50
|
+
Methods defined here:<br>
|
|
51
|
+
<dl><dt><a name="SecretQueryResponse-__init__"><strong>__init__</strong></a>(self, resources: List[ai_core_sdk.models.secret.Secret], count: int, **kwargs)</dt><dd><tt>Initialize self. See help(type(self)) for accurate signature.</tt></dd></dl>
|
|
52
|
+
|
|
53
|
+
<hr>
|
|
54
|
+
Static methods defined here:<br>
|
|
55
|
+
<dl><dt><a name="SecretQueryResponse-from_dict"><strong>from_dict</strong></a>(response_dict: Dict[str, Any])</dt><dd><tt>Returns a<br>
|
|
56
|
+
:class:`ai_core_sdk.models.secret_query_response.<a href="#SecretQueryResponse">SecretQueryResponse</a>`<br>
|
|
57
|
+
object, created from the values in the dict provided as parameter<br>
|
|
58
|
+
<br>
|
|
59
|
+
:param response_dict: Dict which includes the necessary values to create the object<br>
|
|
60
|
+
:type response_dict: Dict[str, Any]<br>
|
|
61
|
+
:return: An object, created from the values provided<br>
|
|
62
|
+
:rtype: class:`ai_core_sdk.models.secret_query_response.<a href="#SecretQueryResponse">SecretQueryResponse</a>`</tt></dd></dl>
|
|
63
|
+
|
|
64
|
+
<hr>
|
|
65
|
+
Methods inherited from <a href="ai_api_client_sdk.models.base_models.html#QueryResponse">ai_api_client_sdk.models.base_models.QueryResponse</a>:<br>
|
|
66
|
+
<dl><dt><a name="SecretQueryResponse-__str__"><strong>__str__</strong></a>(self)</dt><dd><tt>Return str(self).</tt></dd></dl>
|
|
67
|
+
|
|
68
|
+
<hr>
|
|
69
|
+
Data descriptors inherited from <a href="ai_api_client_sdk.models.base_models.html#QueryResponse">ai_api_client_sdk.models.base_models.QueryResponse</a>:<br>
|
|
70
|
+
<dl><dt><strong>__dict__</strong></dt>
|
|
71
|
+
<dd><tt>dictionary for instance variables (if defined)</tt></dd>
|
|
72
|
+
</dl>
|
|
73
|
+
<dl><dt><strong>__weakref__</strong></dt>
|
|
74
|
+
<dd><tt>list of weak references to the object (if defined)</tt></dd>
|
|
75
|
+
</dl>
|
|
76
|
+
</td></tr></table></td></tr></table><p>
|
|
77
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
78
|
+
<tr bgcolor="#55aa55">
|
|
79
|
+
<td colspan=3 valign=bottom> <br>
|
|
80
|
+
<font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td></tr>
|
|
81
|
+
|
|
82
|
+
<tr><td bgcolor="#55aa55"><tt> </tt></td><td> </td>
|
|
83
|
+
<td width="100%"><strong>Any</strong> = typing.Any<br>
|
|
84
|
+
<strong>Dict</strong> = typing.Dict<br>
|
|
85
|
+
<strong>List</strong> = typing.List</td></tr></table>
|
|
86
|
+
</body></html>
|