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,79 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
2
|
+
<html><head><title>Python: module ai_core_sdk.models.application</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>.application</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/application.py">/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/application.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.application.html#Application">Application</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="Application">class <strong>Application</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="#Application">Application</a>(path: str, revision: str, repository_url: str, application_name: str, **kwargs)<br>
|
|
36
|
+
<br>
|
|
37
|
+
The <a href="#Application">Application</a> <a href="builtins.html#object">object</a> defines the application.<br>
|
|
38
|
+
<br>
|
|
39
|
+
:param path: path within the repository<br>
|
|
40
|
+
:type path: str<br>
|
|
41
|
+
:param revision: revision<br>
|
|
42
|
+
:type revision: str<br>
|
|
43
|
+
:param repository_url: URL of the repository<br>
|
|
44
|
+
:type repository_url: str<br>
|
|
45
|
+
:param application_name: name of the application<br>
|
|
46
|
+
:type application_name: str<br> </tt></td></tr>
|
|
47
|
+
<tr><td> </td>
|
|
48
|
+
<td width="100%">Methods defined here:<br>
|
|
49
|
+
<dl><dt><a name="Application-__init__"><strong>__init__</strong></a>(self, path: str, revision: str, repository_url: str, application_name: str, **kwargs)</dt><dd><tt>Initialize self. See help(type(self)) for accurate signature.</tt></dd></dl>
|
|
50
|
+
|
|
51
|
+
<dl><dt><a name="Application-__str__"><strong>__str__</strong></a>(self)</dt><dd><tt>Return str(self).</tt></dd></dl>
|
|
52
|
+
|
|
53
|
+
<hr>
|
|
54
|
+
Static methods defined here:<br>
|
|
55
|
+
<dl><dt><a name="Application-from_dict"><strong>from_dict</strong></a>(application_dict: Dict[str, str])</dt><dd><tt>Returns a :class:`ai_core_sdk.models.application.<a href="#Application">Application</a>` <a href="builtins.html#object">object</a>, created from the values in<br>
|
|
56
|
+
the dict provided as parameter<br>
|
|
57
|
+
<br>
|
|
58
|
+
:param application_dict: Dict which includes the necessary values to create the <a href="builtins.html#object">object</a><br>
|
|
59
|
+
:type application_dict: Dict[str, Any]<br>
|
|
60
|
+
:return: An <a href="builtins.html#object">object</a>, created from the values provided<br>
|
|
61
|
+
:rtype: class:`ai_core_sdk.models.application.<a href="#Application">Application</a>`</tt></dd></dl>
|
|
62
|
+
|
|
63
|
+
<hr>
|
|
64
|
+
Data descriptors defined here:<br>
|
|
65
|
+
<dl><dt><strong>__dict__</strong></dt>
|
|
66
|
+
<dd><tt>dictionary for instance variables (if defined)</tt></dd>
|
|
67
|
+
</dl>
|
|
68
|
+
<dl><dt><strong>__weakref__</strong></dt>
|
|
69
|
+
<dd><tt>list of weak references to the object (if defined)</tt></dd>
|
|
70
|
+
</dl>
|
|
71
|
+
</td></tr></table></td></tr></table><p>
|
|
72
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
73
|
+
<tr bgcolor="#55aa55">
|
|
74
|
+
<td colspan=3 valign=bottom> <br>
|
|
75
|
+
<font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td></tr>
|
|
76
|
+
|
|
77
|
+
<tr><td bgcolor="#55aa55"><tt> </tt></td><td> </td>
|
|
78
|
+
<td width="100%"><strong>Dict</strong> = typing.Dict</td></tr></table>
|
|
79
|
+
</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.application_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>.application_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/application_query_response.py">/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/application_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.application_query_response.html#ApplicationQueryResponse">ApplicationQueryResponse</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="ApplicationQueryResponse">class <strong>ApplicationQueryResponse</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="#ApplicationQueryResponse">ApplicationQueryResponse</a>(resources: List[ai_core_sdk.models.application.Application], count: int, **kwargs)<br>
|
|
36
|
+
<br>
|
|
37
|
+
The <a href="#ApplicationQueryResponse">ApplicationQueryResponse</a> object defines the response of the applications query request<br>
|
|
38
|
+
:param resources: List of the applications returned from the server<br>
|
|
39
|
+
:type resources: List[class:`ai_core_sdk.models.application.Application`]<br>
|
|
40
|
+
:param count: Total number of the queried applications<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.application_query_response.html#ApplicationQueryResponse">ApplicationQueryResponse</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="ApplicationQueryResponse-__init__"><strong>__init__</strong></a>(self, resources: List[ai_core_sdk.models.application.Application], 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="ApplicationQueryResponse-from_dict"><strong>from_dict</strong></a>(response_dict: Dict[str, Any])</dt><dd><tt>Returns a<br>
|
|
56
|
+
:class:`ai_core_sdk.models.application_query_response.<a href="#ApplicationQueryResponse">ApplicationQueryResponse</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.application_query_response.<a href="#ApplicationQueryResponse">ApplicationQueryResponse</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="ApplicationQueryResponse-__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,77 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
2
|
+
<html><head><title>Python: module ai_core_sdk.models.application_resource_sync_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>.application_resource_sync_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/application_resource_sync_status.py">/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/application_resource_sync_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="builtins.html#object">builtins.object</a>
|
|
22
|
+
</font></dt><dd>
|
|
23
|
+
<dl>
|
|
24
|
+
<dt><font face="helvetica, arial"><a href="ai_core_sdk.models.application_resource_sync_status.html#ApplicationResourceSyncStatus">ApplicationResourceSyncStatus</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="ApplicationResourceSyncStatus">class <strong>ApplicationResourceSyncStatus</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="#ApplicationResourceSyncStatus">ApplicationResourceSyncStatus</a>(name: str = None, kind: str = None, status: str = None, message: str = None, **kwargs)<br>
|
|
36
|
+
<br>
|
|
37
|
+
The ApplicationSyncResourcesStatus <a href="builtins.html#object">object</a> defines the status of sync of application resource.<br>
|
|
38
|
+
<br>
|
|
39
|
+
:param name: Name of the application resource, defaults to None<br>
|
|
40
|
+
:type name: str, optional<br>
|
|
41
|
+
:param kind: kind of the application resource<br>
|
|
42
|
+
:type kind: str, optional<br>
|
|
43
|
+
:param status: status of the sync of the application resource<br>
|
|
44
|
+
:type status: str, optional<br>
|
|
45
|
+
:param message: application resource message<br>
|
|
46
|
+
:type message: str, optional<br> </tt></td></tr>
|
|
47
|
+
<tr><td> </td>
|
|
48
|
+
<td width="100%">Methods defined here:<br>
|
|
49
|
+
<dl><dt><a name="ApplicationResourceSyncStatus-__init__"><strong>__init__</strong></a>(self, name: str = None, kind: str = None, status: str = None, message: str = None, **kwargs)</dt><dd><tt>Initialize self. See help(type(self)) for accurate signature.</tt></dd></dl>
|
|
50
|
+
|
|
51
|
+
<hr>
|
|
52
|
+
Static methods defined here:<br>
|
|
53
|
+
<dl><dt><a name="ApplicationResourceSyncStatus-from_dict"><strong>from_dict</strong></a>(app_res_sync_status_dict: Dict[str, str])</dt><dd><tt>Returns a :class:`ai_core_sdk.models.application_resource_sync_status.<a href="#ApplicationResourceSyncStatus">ApplicationResourceSyncStatus</a>`<br>
|
|
54
|
+
<a href="builtins.html#object">object</a>, created from the values in the dict provided as parameter<br>
|
|
55
|
+
<br>
|
|
56
|
+
:param app_res_sync_status_dict: Dict which includes the necessary values to create the <a href="builtins.html#object">object</a><br>
|
|
57
|
+
:type app_res_sync_status_dict: Dict[str, str]<br>
|
|
58
|
+
:return: An <a href="builtins.html#object">object</a>, created from the values provided<br>
|
|
59
|
+
:rtype: class:`ai_core_sdk.models.application_resource_sync_status.<a href="#ApplicationResourceSyncStatus">ApplicationResourceSyncStatus</a>`</tt></dd></dl>
|
|
60
|
+
|
|
61
|
+
<hr>
|
|
62
|
+
Data descriptors defined here:<br>
|
|
63
|
+
<dl><dt><strong>__dict__</strong></dt>
|
|
64
|
+
<dd><tt>dictionary for instance variables (if defined)</tt></dd>
|
|
65
|
+
</dl>
|
|
66
|
+
<dl><dt><strong>__weakref__</strong></dt>
|
|
67
|
+
<dd><tt>list of weak references to the object (if defined)</tt></dd>
|
|
68
|
+
</dl>
|
|
69
|
+
</td></tr></table></td></tr></table><p>
|
|
70
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
71
|
+
<tr bgcolor="#55aa55">
|
|
72
|
+
<td colspan=3 valign=bottom> <br>
|
|
73
|
+
<font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td></tr>
|
|
74
|
+
|
|
75
|
+
<tr><td bgcolor="#55aa55"><tt> </tt></td><td> </td>
|
|
76
|
+
<td width="100%"><strong>Dict</strong> = typing.Dict</td></tr></table>
|
|
77
|
+
</body></html>
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
2
|
+
<html><head><title>Python: module ai_core_sdk.models.application_source</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>.application_source</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/application_source.py">/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/application_source.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.application_source.html#ApplicationSource">ApplicationSource</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="ApplicationSource">class <strong>ApplicationSource</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="#ApplicationSource">ApplicationSource</a>(repo_url: str = None, path: str = None, revision: str = None, **kwargs)<br>
|
|
36
|
+
<br>
|
|
37
|
+
The <a href="#ApplicationSource">ApplicationSource</a> <a href="builtins.html#object">object</a> defines the application source.<br>
|
|
38
|
+
<br>
|
|
39
|
+
:param repo_url: URL of the repository, defaults to None<br>
|
|
40
|
+
:type repo_url: str, optional<br>
|
|
41
|
+
:param path: path within the repository, defaults to None<br>
|
|
42
|
+
:type path: str, optional<br>
|
|
43
|
+
:param revision: revision number of the application, defaults to None<br>
|
|
44
|
+
:type revision: str, optional<br> </tt></td></tr>
|
|
45
|
+
<tr><td> </td>
|
|
46
|
+
<td width="100%">Methods defined here:<br>
|
|
47
|
+
<dl><dt><a name="ApplicationSource-__init__"><strong>__init__</strong></a>(self, repo_url: str = None, path: str = None, revision: str = None, **kwargs)</dt><dd><tt>Initialize self. See help(type(self)) for accurate signature.</tt></dd></dl>
|
|
48
|
+
|
|
49
|
+
<dl><dt><a name="ApplicationSource-__str__"><strong>__str__</strong></a>(self)</dt><dd><tt>Return str(self).</tt></dd></dl>
|
|
50
|
+
|
|
51
|
+
<hr>
|
|
52
|
+
Static methods defined here:<br>
|
|
53
|
+
<dl><dt><a name="ApplicationSource-from_dict"><strong>from_dict</strong></a>(application_source_dict: Dict[str, str])</dt><dd><tt>Returns a :class:`ai_core_sdk.models.application_source.<a href="#ApplicationSource">ApplicationSource</a>` <a href="builtins.html#object">object</a>, created from the values in<br>
|
|
54
|
+
the dict provided as parameter<br>
|
|
55
|
+
<br>
|
|
56
|
+
:param application_source_dict: Dict which includes the necessary values to create the <a href="builtins.html#object">object</a><br>
|
|
57
|
+
:type application_source_dict: Dict[str, Any]<br>
|
|
58
|
+
:return: An <a href="builtins.html#object">object</a>, created from the values provided<br>
|
|
59
|
+
:rtype: class:`ai_core_sdk.models.application_source.<a href="#ApplicationSource">ApplicationSource</a>`</tt></dd></dl>
|
|
60
|
+
|
|
61
|
+
<hr>
|
|
62
|
+
Data descriptors defined here:<br>
|
|
63
|
+
<dl><dt><strong>__dict__</strong></dt>
|
|
64
|
+
<dd><tt>dictionary for instance variables (if defined)</tt></dd>
|
|
65
|
+
</dl>
|
|
66
|
+
<dl><dt><strong>__weakref__</strong></dt>
|
|
67
|
+
<dd><tt>list of weak references to the object (if defined)</tt></dd>
|
|
68
|
+
</dl>
|
|
69
|
+
</td></tr></table></td></tr></table><p>
|
|
70
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
71
|
+
<tr bgcolor="#55aa55">
|
|
72
|
+
<td colspan=3 valign=bottom> <br>
|
|
73
|
+
<font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td></tr>
|
|
74
|
+
|
|
75
|
+
<tr><td bgcolor="#55aa55"><tt> </tt></td><td> </td>
|
|
76
|
+
<td width="100%"><strong>Dict</strong> = typing.Dict</td></tr></table>
|
|
77
|
+
</body></html>
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
2
|
+
<html><head><title>Python: module ai_core_sdk.models.application_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>.application_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/application_status.py">/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/application_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="builtins.html#object">builtins.object</a>
|
|
22
|
+
</font></dt><dd>
|
|
23
|
+
<dl>
|
|
24
|
+
<dt><font face="helvetica, arial"><a href="ai_core_sdk.models.application_status.html#ApplicationStatus">ApplicationStatus</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="ApplicationStatus">class <strong>ApplicationStatus</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="#ApplicationStatus">ApplicationStatus</a>(health_status: str = None, sync_status: str = None, message: str = None, source: ai_core_sdk.models.application_source.ApplicationSource = None, sync_finished_at: str = None, sync_started_at: str = None, reconciled_at: str = None, sync_resources_status: List[ai_core_sdk.models.application_resource_sync_status.ApplicationResourceSyncStatus] = None, **kwargs)<br>
|
|
36
|
+
<br>
|
|
37
|
+
The Application <a href="builtins.html#object">object</a> defines the application.<br>
|
|
38
|
+
<br>
|
|
39
|
+
:param health_status: Application health status, defaults to None<br>
|
|
40
|
+
:type health_status: str, optional<br>
|
|
41
|
+
:param sync_status: Application sync status, defaults to None<br>
|
|
42
|
+
:type sync_status: str, optional<br>
|
|
43
|
+
:param message: Application health status message, defaults to None<br>
|
|
44
|
+
:type message: str, optional<br>
|
|
45
|
+
:param source: Application source, defaults to None<br>
|
|
46
|
+
:type source: class:`ai_core_sdk.models.application_status.<a href="#ApplicationStatus">ApplicationStatus</a>`, optional<br>
|
|
47
|
+
:param sync_finished_at: Application sync finish time, defaults to None<br>
|
|
48
|
+
:type sync_finished_at: str, optional<br>
|
|
49
|
+
:param sync_started_at: Application sync start time, defaults to None<br>
|
|
50
|
+
:type sync_started_at: str, optional<br>
|
|
51
|
+
:param reconciled_at: Application reconciliation time, defaults to None<br>
|
|
52
|
+
:type reconciled_at: str, optional<br>
|
|
53
|
+
:param sync_resources_status: Status of the synchronization of the application resources, defaults to None<br>
|
|
54
|
+
:type sync_resources_status:<br>
|
|
55
|
+
List[class:`ai_core_sdk.models.application_resource_sync_status.ApplicationResourceSyncStatus`], optional<br> </tt></td></tr>
|
|
56
|
+
<tr><td> </td>
|
|
57
|
+
<td width="100%">Methods defined here:<br>
|
|
58
|
+
<dl><dt><a name="ApplicationStatus-__init__"><strong>__init__</strong></a>(self, health_status: str = None, sync_status: str = None, message: str = None, source: ai_core_sdk.models.application_source.ApplicationSource = None, sync_finished_at: str = None, sync_started_at: str = None, reconciled_at: str = None, sync_resources_status: List[ai_core_sdk.models.application_resource_sync_status.ApplicationResourceSyncStatus] = None, **kwargs)</dt><dd><tt>Initialize self. See help(type(self)) for accurate signature.</tt></dd></dl>
|
|
59
|
+
|
|
60
|
+
<dl><dt><a name="ApplicationStatus-__str__"><strong>__str__</strong></a>(self)</dt><dd><tt>Return str(self).</tt></dd></dl>
|
|
61
|
+
|
|
62
|
+
<hr>
|
|
63
|
+
Static methods defined here:<br>
|
|
64
|
+
<dl><dt><a name="ApplicationStatus-from_dict"><strong>from_dict</strong></a>(application_status_dict: Dict[str, Any])</dt><dd><tt>Returns a :class:`ai_core_sdk.models.application_status.<a href="#ApplicationStatus">ApplicationStatus</a>` <a href="builtins.html#object">object</a>, created from the values in<br>
|
|
65
|
+
the dict provided as parameter<br>
|
|
66
|
+
<br>
|
|
67
|
+
:param application_status_dict: Dict which includes the necessary values to create the <a href="builtins.html#object">object</a><br>
|
|
68
|
+
:type application_status_dict: Dict[str, Any]<br>
|
|
69
|
+
:return: An <a href="builtins.html#object">object</a>, created from the values provided<br>
|
|
70
|
+
:rtype: class:`ai_core_sdk.models.application_status.<a href="#ApplicationStatus">ApplicationStatus</a>`</tt></dd></dl>
|
|
71
|
+
|
|
72
|
+
<hr>
|
|
73
|
+
Data descriptors defined here:<br>
|
|
74
|
+
<dl><dt><strong>__dict__</strong></dt>
|
|
75
|
+
<dd><tt>dictionary for instance variables (if defined)</tt></dd>
|
|
76
|
+
</dl>
|
|
77
|
+
<dl><dt><strong>__weakref__</strong></dt>
|
|
78
|
+
<dd><tt>list of weak references to the object (if defined)</tt></dd>
|
|
79
|
+
</dl>
|
|
80
|
+
</td></tr></table></td></tr></table><p>
|
|
81
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
82
|
+
<tr bgcolor="#55aa55">
|
|
83
|
+
<td colspan=3 valign=bottom> <br>
|
|
84
|
+
<font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td></tr>
|
|
85
|
+
|
|
86
|
+
<tr><td bgcolor="#55aa55"><tt> </tt></td><td> </td>
|
|
87
|
+
<td width="100%"><strong>Any</strong> = typing.Any<br>
|
|
88
|
+
<strong>Dict</strong> = typing.Dict<br>
|
|
89
|
+
<strong>List</strong> = typing.List</td></tr></table>
|
|
90
|
+
</body></html>
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
2
|
+
<html><head><title>Python: module ai_core_sdk.models.base_models</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>.base_models</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/base_models.py">/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/base_models.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.base_models.html#BasicNameResponse">BasicNameResponse</a>
|
|
25
|
+
</font></dt><dt><font face="helvetica, arial"><a href="ai_core_sdk.models.base_models.html#Message">Message</a>
|
|
26
|
+
</font></dt></dl>
|
|
27
|
+
</dd>
|
|
28
|
+
</dl>
|
|
29
|
+
<p>
|
|
30
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
31
|
+
<tr bgcolor="#ffc8d8">
|
|
32
|
+
<td colspan=3 valign=bottom> <br>
|
|
33
|
+
<font color="#000000" face="helvetica, arial"><a name="BasicNameResponse">class <strong>BasicNameResponse</strong></a>(<a href="builtins.html#object">builtins.object</a>)</font></td></tr>
|
|
34
|
+
|
|
35
|
+
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
|
|
36
|
+
<td colspan=2><tt><a href="#BasicNameResponse">BasicNameResponse</a>(name: str, message: str, **kwargs)<br>
|
|
37
|
+
<br>
|
|
38
|
+
The <a href="#BasicNameResponse">BasicNameResponse</a> <a href="builtins.html#object">object</a> defines the response with name from the server<br>
|
|
39
|
+
<br>
|
|
40
|
+
:param name: Name of the relevant resource<br>
|
|
41
|
+
:type id: str<br>
|
|
42
|
+
:param message: Response message from the server<br>
|
|
43
|
+
:type message: str<br>
|
|
44
|
+
:param `**kwargs`: The keyword arguments are there in case there are additional attributes returned from server<br> </tt></td></tr>
|
|
45
|
+
<tr><td> </td>
|
|
46
|
+
<td width="100%">Methods defined here:<br>
|
|
47
|
+
<dl><dt><a name="BasicNameResponse-__init__"><strong>__init__</strong></a>(self, name: str, message: str, **kwargs)</dt><dd><tt>Initialize self. See help(type(self)) for accurate signature.</tt></dd></dl>
|
|
48
|
+
|
|
49
|
+
<dl><dt><a name="BasicNameResponse-__str__"><strong>__str__</strong></a>(self)</dt><dd><tt>Return str(self).</tt></dd></dl>
|
|
50
|
+
|
|
51
|
+
<hr>
|
|
52
|
+
Static methods defined here:<br>
|
|
53
|
+
<dl><dt><a name="BasicNameResponse-from_dict"><strong>from_dict</strong></a>(bnr_dict: Dict[str, str])</dt><dd><tt>Returns a :class:`ai_core_sdk.models.base_models.<a href="#BasicNameResponse">BasicNameResponse</a>` <a href="builtins.html#object">object</a>, created from the values in the<br>
|
|
54
|
+
dict provided as parameter<br>
|
|
55
|
+
<br>
|
|
56
|
+
:param bnr_dict: Dict which includes the necessary values to create the <a href="builtins.html#object">object</a><br>
|
|
57
|
+
:type bnr_dict: Dict[str, str]<br>
|
|
58
|
+
:return: An <a href="builtins.html#object">object</a>, created from the values provided<br>
|
|
59
|
+
:rtype: class:`ai_core_sdk.models.base_models.<a href="#BasicNameResponse">BasicNameResponse</a>`</tt></dd></dl>
|
|
60
|
+
|
|
61
|
+
<hr>
|
|
62
|
+
Data descriptors defined here:<br>
|
|
63
|
+
<dl><dt><strong>__dict__</strong></dt>
|
|
64
|
+
<dd><tt>dictionary for instance variables (if defined)</tt></dd>
|
|
65
|
+
</dl>
|
|
66
|
+
<dl><dt><strong>__weakref__</strong></dt>
|
|
67
|
+
<dd><tt>list of weak references to the object (if defined)</tt></dd>
|
|
68
|
+
</dl>
|
|
69
|
+
</td></tr></table> <p>
|
|
70
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
71
|
+
<tr bgcolor="#ffc8d8">
|
|
72
|
+
<td colspan=3 valign=bottom> <br>
|
|
73
|
+
<font color="#000000" face="helvetica, arial"><a name="Message">class <strong>Message</strong></a>(<a href="builtins.html#object">builtins.object</a>)</font></td></tr>
|
|
74
|
+
|
|
75
|
+
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
|
|
76
|
+
<td colspan=2><tt><a href="#Message">Message</a>(message: str, **kwargs)<br>
|
|
77
|
+
<br>
|
|
78
|
+
<a href="#Message">Message</a> <a href="builtins.html#object">object</a> defines a message<br>
|
|
79
|
+
<br>
|
|
80
|
+
:param message: message<br>
|
|
81
|
+
:type message: str<br> </tt></td></tr>
|
|
82
|
+
<tr><td> </td>
|
|
83
|
+
<td width="100%">Methods defined here:<br>
|
|
84
|
+
<dl><dt><a name="Message-__eq__"><strong>__eq__</strong></a>(self, other)</dt><dd><tt>Return self==value.</tt></dd></dl>
|
|
85
|
+
|
|
86
|
+
<dl><dt><a name="Message-__init__"><strong>__init__</strong></a>(self, message: str, **kwargs)</dt><dd><tt>Initialize self. See help(type(self)) for accurate signature.</tt></dd></dl>
|
|
87
|
+
|
|
88
|
+
<dl><dt><a name="Message-__str__"><strong>__str__</strong></a>(self)</dt><dd><tt>Return str(self).</tt></dd></dl>
|
|
89
|
+
|
|
90
|
+
<hr>
|
|
91
|
+
Static methods defined here:<br>
|
|
92
|
+
<dl><dt><a name="Message-from_dict"><strong>from_dict</strong></a>(message_dict: Dict[str, str])</dt><dd><tt>Returns a :class:`ai_core_sdk.models.base_models.<a href="#Message">Message</a>` <a href="builtins.html#object">object</a>, created from the values in the<br>
|
|
93
|
+
dict provided as parameter<br>
|
|
94
|
+
<br>
|
|
95
|
+
:param message_dict: Dict which includes the necessary values to create the <a href="builtins.html#object">object</a><br>
|
|
96
|
+
:type message_dict: Dict[str, str]<br>
|
|
97
|
+
:return: An <a href="builtins.html#object">object</a>, created from the values provided<br>
|
|
98
|
+
:rtype: class:`ai_core_sdk.models.base_models.<a href="#Message">Message</a>`</tt></dd></dl>
|
|
99
|
+
|
|
100
|
+
<hr>
|
|
101
|
+
Data descriptors defined here:<br>
|
|
102
|
+
<dl><dt><strong>__dict__</strong></dt>
|
|
103
|
+
<dd><tt>dictionary for instance variables (if defined)</tt></dd>
|
|
104
|
+
</dl>
|
|
105
|
+
<dl><dt><strong>__weakref__</strong></dt>
|
|
106
|
+
<dd><tt>list of weak references to the object (if defined)</tt></dd>
|
|
107
|
+
</dl>
|
|
108
|
+
<hr>
|
|
109
|
+
Data and other attributes defined here:<br>
|
|
110
|
+
<dl><dt><strong>__hash__</strong> = None</dl>
|
|
111
|
+
|
|
112
|
+
</td></tr></table></td></tr></table><p>
|
|
113
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
114
|
+
<tr bgcolor="#55aa55">
|
|
115
|
+
<td colspan=3 valign=bottom> <br>
|
|
116
|
+
<font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td></tr>
|
|
117
|
+
|
|
118
|
+
<tr><td bgcolor="#55aa55"><tt> </tt></td><td> </td>
|
|
119
|
+
<td width="100%"><strong>Dict</strong> = typing.Dict</td></tr></table>
|
|
120
|
+
</body></html>
|