sap-ai-sdk-core 2.9.9__py3-none-any.whl → 3.0.8__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.8.data/data/docs/ai_core_sdk.ai_core_v2_client.html +127 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.cli.html +59 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.credentials.html +209 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.exception.html +161 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.helpers.constants.html +90 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.helpers.html +52 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.helpers.logging.html +41 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.html +29 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.application.html +79 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.application_query_response.html +86 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.application_resource_sync_status.html +77 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.application_source.html +77 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.application_status.html +90 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.base_models.html +120 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.docker_registry_secret.html +85 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.docker_registry_secret_query_response.html +86 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.html +40 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.kpi.html +73 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.object_store_secret.html +71 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.object_store_secret_query_response.html +86 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.repository.html +77 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.repository_query_response.html +86 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.repository_status.html +69 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.resource_group.html +85 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.resource_group_query_response.html +86 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.resource_group_status.html +69 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.secret.html +76 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.secret_query_response.html +86 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.resource_clients.applications_client.html +186 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.resource_clients.docker_registry_secrets_client.html +147 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.resource_clients.html +29 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.resource_clients.internal_rest_client.html +181 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.resource_clients.kpi_client.html +87 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.resource_clients.metrics_client.html +189 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.resource_clients.object_store_secrets_client.html +205 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.resource_clients.repositories_client.html +148 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.resource_clients.resource_groups_client.html +156 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.resource_clients.secrets_client.html +165 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.tracking.html +22 -0
- sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.tracking.tracking.html +224 -0
- sap_ai_sdk_core-3.0.8.dist-info/METADATA +253 -0
- sap_ai_sdk_core-3.0.8.dist-info/RECORD +84 -0
- {sap_ai_sdk_core-2.9.9.dist-info → sap_ai_sdk_core-3.0.8.dist-info}/WHEEL +1 -1
- sap_ai_sdk_core-3.0.8.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.8.dist-info}/LICENSE +0 -0
|
@@ -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.docker_registry_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>.docker_registry_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/docker_registry_secret.py">/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/docker_registry_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="ai_api_client_sdk.models.base_models.html#Name">ai_api_client_sdk.models.base_models.Name</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.docker_registry_secret.html#DockerRegistrySecret">DockerRegistrySecret</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="DockerRegistrySecret">class <strong>DockerRegistrySecret</strong></a>(<a href="ai_api_client_sdk.models.base_models.html#Name">ai_api_client_sdk.models.base_models.Name</a>)</font></td></tr>
|
|
33
|
+
|
|
34
|
+
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
|
|
35
|
+
<td colspan=2><tt><a href="#DockerRegistrySecret">DockerRegistrySecret</a>(name: str, **kwargs)<br>
|
|
36
|
+
<br>
|
|
37
|
+
The <a href="#DockerRegistrySecret">DockerRegistrySecret</a> object defines the docker registry secret. Refer to<br>
|
|
38
|
+
:class:`ai_api_client_sdk.models.base_models.<a href="ai_api_client_sdk.models.base_models.html#Name">Name</a>`, for the object definition<br> </tt></td></tr>
|
|
39
|
+
<tr><td> </td>
|
|
40
|
+
<td width="100%"><dl><dt>Method resolution order:</dt>
|
|
41
|
+
<dd><a href="ai_core_sdk.models.docker_registry_secret.html#DockerRegistrySecret">DockerRegistrySecret</a></dd>
|
|
42
|
+
<dd><a href="ai_api_client_sdk.models.base_models.html#Name">ai_api_client_sdk.models.base_models.Name</a></dd>
|
|
43
|
+
<dd><a href="builtins.html#object">builtins.object</a></dd>
|
|
44
|
+
</dl>
|
|
45
|
+
<hr>
|
|
46
|
+
Methods defined here:<br>
|
|
47
|
+
<dl><dt><a name="DockerRegistrySecret-__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="DockerRegistrySecret-from_dict"><strong>from_dict</strong></a>(docker_registry_secret_dict: Dict[str, str])</dt><dd><tt>Returns a :class:`ai_core_sdk.models.docker_registry_secret.<a href="#DockerRegistrySecret">DockerRegistrySecret</a>` object, created<br>
|
|
52
|
+
from the values in the dict provided as parameter<br>
|
|
53
|
+
<br>
|
|
54
|
+
:param docker_registry_secret_dict: Dict which includes the necessary values to create the object<br>
|
|
55
|
+
:type docker_registry_secret_dict: Dict[str, str]<br>
|
|
56
|
+
:return: An object, created from the values provided<br>
|
|
57
|
+
:rtype: class:`ai_core_sdk.models.docker_registry_secret.<a href="#DockerRegistrySecret">DockerRegistrySecret</a>`</tt></dd></dl>
|
|
58
|
+
|
|
59
|
+
<hr>
|
|
60
|
+
Methods inherited from <a href="ai_api_client_sdk.models.base_models.html#Name">ai_api_client_sdk.models.base_models.Name</a>:<br>
|
|
61
|
+
<dl><dt><a name="DockerRegistrySecret-__eq__"><strong>__eq__</strong></a>(self, other)</dt><dd><tt>Return self==value.</tt></dd></dl>
|
|
62
|
+
|
|
63
|
+
<dl><dt><a name="DockerRegistrySecret-__init__"><strong>__init__</strong></a>(self, name: str, **kwargs)</dt><dd><tt>Initialize self. See help(type(self)) for accurate signature.</tt></dd></dl>
|
|
64
|
+
|
|
65
|
+
<hr>
|
|
66
|
+
Data descriptors inherited from <a href="ai_api_client_sdk.models.base_models.html#Name">ai_api_client_sdk.models.base_models.Name</a>:<br>
|
|
67
|
+
<dl><dt><strong>__dict__</strong></dt>
|
|
68
|
+
<dd><tt>dictionary for instance variables (if defined)</tt></dd>
|
|
69
|
+
</dl>
|
|
70
|
+
<dl><dt><strong>__weakref__</strong></dt>
|
|
71
|
+
<dd><tt>list of weak references to the object (if defined)</tt></dd>
|
|
72
|
+
</dl>
|
|
73
|
+
<hr>
|
|
74
|
+
Data and other attributes inherited from <a href="ai_api_client_sdk.models.base_models.html#Name">ai_api_client_sdk.models.base_models.Name</a>:<br>
|
|
75
|
+
<dl><dt><strong>__hash__</strong> = None</dl>
|
|
76
|
+
|
|
77
|
+
</td></tr></table></td></tr></table><p>
|
|
78
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
79
|
+
<tr bgcolor="#55aa55">
|
|
80
|
+
<td colspan=3 valign=bottom> <br>
|
|
81
|
+
<font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td></tr>
|
|
82
|
+
|
|
83
|
+
<tr><td bgcolor="#55aa55"><tt> </tt></td><td> </td>
|
|
84
|
+
<td width="100%"><strong>Dict</strong> = typing.Dict</td></tr></table>
|
|
85
|
+
</body></html>
|
sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.docker_registry_secret_query_response.html
ADDED
|
@@ -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.docker_registry_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>.docker_registry_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/docker_registry_secret_query_response.py">/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/docker_registry_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.docker_registry_secret_query_response.html#DockerRegistrySecretQueryResponse">DockerRegistrySecretQueryResponse</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="DockerRegistrySecretQueryResponse">class <strong>DockerRegistrySecretQueryResponse</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="#DockerRegistrySecretQueryResponse">DockerRegistrySecretQueryResponse</a>(resources: List[ai_core_sdk.models.docker_registry_secret.DockerRegistrySecret], count: int, **kwargs)<br>
|
|
36
|
+
<br>
|
|
37
|
+
The <a href="#DockerRegistrySecretQueryResponse">DockerRegistrySecretQueryResponse</a> object defines the response of the dockerRegistrySecrets query request<br>
|
|
38
|
+
:param resources: List of the docker registry secrets returned from the server<br>
|
|
39
|
+
:type resources: List[class:`ai_core_sdk.models.docker_registry_secret.DockerRegistrySecret`]<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.docker_registry_secret_query_response.html#DockerRegistrySecretQueryResponse">DockerRegistrySecretQueryResponse</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="DockerRegistrySecretQueryResponse-__init__"><strong>__init__</strong></a>(self, resources: List[ai_core_sdk.models.docker_registry_secret.DockerRegistrySecret], 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="DockerRegistrySecretQueryResponse-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.<a href="#DockerRegistrySecretQueryResponse">DockerRegistrySecretQueryResponse</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.docker_registry_secret_query_response.<a href="#DockerRegistrySecretQueryResponse">DockerRegistrySecretQueryResponse</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="DockerRegistrySecretQueryResponse-__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,40 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
2
|
+
<html><head><title>Python: package ai_core_sdk.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>.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/__init__.py">/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/__init__.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="#aa55cc">
|
|
16
|
+
<td colspan=3 valign=bottom> <br>
|
|
17
|
+
<font color="#ffffff" face="helvetica, arial"><big><strong>Package Contents</strong></big></font></td></tr>
|
|
18
|
+
|
|
19
|
+
<tr><td bgcolor="#aa55cc"><tt> </tt></td><td> </td>
|
|
20
|
+
<td width="100%"><table width="100%" summary="list"><tr><td width="25%" valign=top><a href="ai_core_sdk.models.application.html">application</a><br>
|
|
21
|
+
<a href="ai_core_sdk.models.application_query_response.html">application_query_response</a><br>
|
|
22
|
+
<a href="ai_core_sdk.models.application_resource_sync_status.html">application_resource_sync_status</a><br>
|
|
23
|
+
<a href="ai_core_sdk.models.application_source.html">application_source</a><br>
|
|
24
|
+
<a href="ai_core_sdk.models.application_status.html">application_status</a><br>
|
|
25
|
+
</td><td width="25%" valign=top><a href="ai_core_sdk.models.base_models.html">base_models</a><br>
|
|
26
|
+
<a href="ai_core_sdk.models.docker_registry_secret.html">docker_registry_secret</a><br>
|
|
27
|
+
<a href="ai_core_sdk.models.docker_registry_secret_query_response.html">docker_registry_secret_query_response</a><br>
|
|
28
|
+
<a href="ai_core_sdk.models.kpi.html">kpi</a><br>
|
|
29
|
+
<a href="ai_core_sdk.models.object_store_secret.html">object_store_secret</a><br>
|
|
30
|
+
</td><td width="25%" valign=top><a href="ai_core_sdk.models.object_store_secret_query_response.html">object_store_secret_query_response</a><br>
|
|
31
|
+
<a href="ai_core_sdk.models.repository.html">repository</a><br>
|
|
32
|
+
<a href="ai_core_sdk.models.repository_query_response.html">repository_query_response</a><br>
|
|
33
|
+
<a href="ai_core_sdk.models.repository_status.html">repository_status</a><br>
|
|
34
|
+
<a href="ai_core_sdk.models.resource_group.html">resource_group</a><br>
|
|
35
|
+
</td><td width="25%" valign=top><a href="ai_core_sdk.models.resource_group_query_response.html">resource_group_query_response</a><br>
|
|
36
|
+
<a href="ai_core_sdk.models.resource_group_status.html">resource_group_status</a><br>
|
|
37
|
+
<a href="ai_core_sdk.models.secret.html">secret</a><br>
|
|
38
|
+
<a href="ai_core_sdk.models.secret_query_response.html">secret_query_response</a><br>
|
|
39
|
+
</td></tr></table></td></tr></table>
|
|
40
|
+
</body></html>
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
2
|
+
<html><head><title>Python: module ai_core_sdk.models.kpi</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>.kpi</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/kpi.py">/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/kpi.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.kpi.html#Kpi">Kpi</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="Kpi">class <strong>Kpi</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="#Kpi">Kpi</a>(header: List[str], rows: List[Union[str, int]], **kwargs)<br>
|
|
36
|
+
<br>
|
|
37
|
+
The <a href="#Kpi">Kpi</a> <a href="builtins.html#object">object</a> defines the <a href="#Kpi">Kpi</a> data.<br> </tt></td></tr>
|
|
38
|
+
<tr><td> </td>
|
|
39
|
+
<td width="100%">Methods defined here:<br>
|
|
40
|
+
<dl><dt><a name="Kpi-__init__"><strong>__init__</strong></a>(self, header: List[str], rows: List[Union[str, int]], **kwargs)</dt><dd><tt>Initialize self. See help(type(self)) for accurate signature.</tt></dd></dl>
|
|
41
|
+
|
|
42
|
+
<dl><dt><a name="Kpi-__str__"><strong>__str__</strong></a>(self)</dt><dd><tt>Return str(self).</tt></dd></dl>
|
|
43
|
+
|
|
44
|
+
<hr>
|
|
45
|
+
Static methods defined here:<br>
|
|
46
|
+
<dl><dt><a name="Kpi-from_dict"><strong>from_dict</strong></a>(kpi_dict: Dict[str, Any])</dt><dd><tt>Returns a :class:`ai_core_sdk.models.kpi.<a href="#Kpi">Kpi</a>` <a href="builtins.html#object">object</a>, created<br>
|
|
47
|
+
from the values in the dict provided as parameter<br>
|
|
48
|
+
<br>
|
|
49
|
+
:param kpi_dict: Dict which includes the necessary values to create the <a href="builtins.html#object">object</a><br>
|
|
50
|
+
:type kpi_dict: Dict[str, Any]<br>
|
|
51
|
+
:return: An <a href="builtins.html#object">object</a>, created from the values provided<br>
|
|
52
|
+
:rtype: class:`ai_core_sdk.models.kpi.<a href="#Kpi">Kpi</a>`</tt></dd></dl>
|
|
53
|
+
|
|
54
|
+
<hr>
|
|
55
|
+
Data descriptors defined here:<br>
|
|
56
|
+
<dl><dt><strong>__dict__</strong></dt>
|
|
57
|
+
<dd><tt>dictionary for instance variables (if defined)</tt></dd>
|
|
58
|
+
</dl>
|
|
59
|
+
<dl><dt><strong>__weakref__</strong></dt>
|
|
60
|
+
<dd><tt>list of weak references to the object (if defined)</tt></dd>
|
|
61
|
+
</dl>
|
|
62
|
+
</td></tr></table></td></tr></table><p>
|
|
63
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
64
|
+
<tr bgcolor="#55aa55">
|
|
65
|
+
<td colspan=3 valign=bottom> <br>
|
|
66
|
+
<font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td></tr>
|
|
67
|
+
|
|
68
|
+
<tr><td bgcolor="#55aa55"><tt> </tt></td><td> </td>
|
|
69
|
+
<td width="100%"><strong>Any</strong> = typing.Any<br>
|
|
70
|
+
<strong>Dict</strong> = typing.Dict<br>
|
|
71
|
+
<strong>List</strong> = typing.List<br>
|
|
72
|
+
<strong>Union</strong> = typing.Union</td></tr></table>
|
|
73
|
+
</body></html>
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
2
|
+
<html><head><title>Python: module ai_core_sdk.models.object_store_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>.object_store_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/object_store_secret.py">/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/object_store_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.object_store_secret.html#ObjectStoreSecret">ObjectStoreSecret</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="ObjectStoreSecret">class <strong>ObjectStoreSecret</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="#ObjectStoreSecret">ObjectStoreSecret</a>(name: str, metadata: Dict[str, str], **kwargs)<br>
|
|
36
|
+
<br>
|
|
37
|
+
The <a href="#ObjectStoreSecret">ObjectStoreSecret</a> <a href="builtins.html#object">object</a> defines the <a href="builtins.html#object">object</a> store secret response.<br> </tt></td></tr>
|
|
38
|
+
<tr><td> </td>
|
|
39
|
+
<td width="100%">Methods defined here:<br>
|
|
40
|
+
<dl><dt><a name="ObjectStoreSecret-__init__"><strong>__init__</strong></a>(self, name: str, metadata: Dict[str, str], **kwargs)</dt><dd><tt>Initialize self. See help(type(self)) for accurate signature.</tt></dd></dl>
|
|
41
|
+
|
|
42
|
+
<dl><dt><a name="ObjectStoreSecret-__str__"><strong>__str__</strong></a>(self)</dt><dd><tt>Return str(self).</tt></dd></dl>
|
|
43
|
+
|
|
44
|
+
<hr>
|
|
45
|
+
Static methods defined here:<br>
|
|
46
|
+
<dl><dt><a name="ObjectStoreSecret-from_dict"><strong>from_dict</strong></a>(object_store_secret_dict: Dict[str, Any])</dt><dd><tt>Returns a :class:`ai_core_sdk.models.object_store_secret.<a href="#ObjectStoreSecret">ObjectStoreSecret</a>` <a href="builtins.html#object">object</a>, created<br>
|
|
47
|
+
from the values in the dict provided as parameter<br>
|
|
48
|
+
<br>
|
|
49
|
+
:param object_store_secret_dict: Dict which includes the necessary values to create the <a href="builtins.html#object">object</a><br>
|
|
50
|
+
:type object_store_secret_dict: Dict[str, Any]<br>
|
|
51
|
+
:return: An <a href="builtins.html#object">object</a>, created from the values provided<br>
|
|
52
|
+
:rtype: class:`ai_core_sdk.models.object_store_secret.<a href="#ObjectStoreSecret">ObjectStoreSecret</a>`</tt></dd></dl>
|
|
53
|
+
|
|
54
|
+
<hr>
|
|
55
|
+
Data descriptors defined here:<br>
|
|
56
|
+
<dl><dt><strong>__dict__</strong></dt>
|
|
57
|
+
<dd><tt>dictionary for instance variables (if defined)</tt></dd>
|
|
58
|
+
</dl>
|
|
59
|
+
<dl><dt><strong>__weakref__</strong></dt>
|
|
60
|
+
<dd><tt>list of weak references to the object (if defined)</tt></dd>
|
|
61
|
+
</dl>
|
|
62
|
+
</td></tr></table></td></tr></table><p>
|
|
63
|
+
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
|
64
|
+
<tr bgcolor="#55aa55">
|
|
65
|
+
<td colspan=3 valign=bottom> <br>
|
|
66
|
+
<font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td></tr>
|
|
67
|
+
|
|
68
|
+
<tr><td bgcolor="#55aa55"><tt> </tt></td><td> </td>
|
|
69
|
+
<td width="100%"><strong>Any</strong> = typing.Any<br>
|
|
70
|
+
<strong>Dict</strong> = typing.Dict</td></tr></table>
|
|
71
|
+
</body></html>
|
sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.object_store_secret_query_response.html
ADDED
|
@@ -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.object_store_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>.object_store_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/object_store_secret_query_response.py">/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/object_store_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.object_store_secret_query_response.html#ObjectStoreSecretQueryResponse">ObjectStoreSecretQueryResponse</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="ObjectStoreSecretQueryResponse">class <strong>ObjectStoreSecretQueryResponse</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="#ObjectStoreSecretQueryResponse">ObjectStoreSecretQueryResponse</a>(resources: List[ai_core_sdk.models.object_store_secret.ObjectStoreSecret], count: int, **kwargs)<br>
|
|
36
|
+
<br>
|
|
37
|
+
The <a href="#ObjectStoreSecretQueryResponse">ObjectStoreSecretQueryResponse</a> object defines the response of the object store secret query request<br>
|
|
38
|
+
:param resources: List of the object store secrets returned from the server<br>
|
|
39
|
+
:type resources: List[class:`ai_core_sdk.models.object_store_secret.ObjectStoreSecret`]<br>
|
|
40
|
+
:param count: Total number of the queried object store 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.object_store_secret_query_response.html#ObjectStoreSecretQueryResponse">ObjectStoreSecretQueryResponse</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="ObjectStoreSecretQueryResponse-__init__"><strong>__init__</strong></a>(self, resources: List[ai_core_sdk.models.object_store_secret.ObjectStoreSecret], 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="ObjectStoreSecretQueryResponse-from_dict"><strong>from_dict</strong></a>(response_dict: Dict[str, Any])</dt><dd><tt>Returns a<br>
|
|
56
|
+
:class:`ai_core_sdk.models.object_store_secret_query_response.<a href="#ObjectStoreSecretQueryResponse">ObjectStoreSecretQueryResponse</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.object_store_secret_query_response.<a href="#ObjectStoreSecretQueryResponse">ObjectStoreSecretQueryResponse</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="ObjectStoreSecretQueryResponse-__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.repository</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</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.py">/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/repository.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.repository.html#Repository">Repository</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="Repository">class <strong>Repository</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="#Repository">Repository</a>(name: str, url: str, status: ai_core_sdk.models.repository_status.RepositoryStatus = None, **kwargs)<br>
|
|
36
|
+
<br>
|
|
37
|
+
The <a href="#Repository">Repository</a> <a href="builtins.html#object">object</a> defines the repository<br>
|
|
38
|
+
<br>
|
|
39
|
+
:param name: name of the repository<br>
|
|
40
|
+
:type name: str<br>
|
|
41
|
+
:param url: URL of the repository<br>
|
|
42
|
+
:type url: str<br>
|
|
43
|
+
:param status: status of the repository, defaults to None<br>
|
|
44
|
+
:type status: class:`ai_core_sdk.models.repository_status.RepositoryStatus`, optional<br> </tt></td></tr>
|
|
45
|
+
<tr><td> </td>
|
|
46
|
+
<td width="100%">Methods defined here:<br>
|
|
47
|
+
<dl><dt><a name="Repository-__init__"><strong>__init__</strong></a>(self, name: str, url: str, status: ai_core_sdk.models.repository_status.RepositoryStatus = None, **kwargs)</dt><dd><tt>Initialize self. See help(type(self)) for accurate signature.</tt></dd></dl>
|
|
48
|
+
|
|
49
|
+
<dl><dt><a name="Repository-__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="Repository-from_dict"><strong>from_dict</strong></a>(repository_dict: Dict[str, str])</dt><dd><tt>Returns a :class:`ai_core_sdk.models.repository.<a href="#Repository">Repository</a>` <a href="builtins.html#object">object</a>, created<br>
|
|
54
|
+
from the values in the dict provided as parameter<br>
|
|
55
|
+
<br>
|
|
56
|
+
:param repository_dict: Dict which includes the necessary values to create the <a href="builtins.html#object">object</a><br>
|
|
57
|
+
:type repository_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.repository.<a href="#Repository">Repository</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>
|