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.
Files changed (87) hide show
  1. ai_core_sdk/ai_core_v2_client.py +157 -0
  2. ai_core_sdk/cli.py +172 -0
  3. ai_core_sdk/credentials.py +196 -0
  4. ai_core_sdk/exception.py +11 -0
  5. ai_core_sdk/helpers/__init__.py +39 -0
  6. ai_core_sdk/helpers/constants.py +18 -0
  7. ai_core_sdk/helpers/logging.py +23 -0
  8. ai_core_sdk/models/__init__.py +33 -0
  9. ai_core_sdk/models/application.py +37 -0
  10. ai_core_sdk/models/application_query_response.py +30 -0
  11. ai_core_sdk/models/application_resource_sync_status.py +34 -0
  12. ai_core_sdk/models/application_source.py +34 -0
  13. ai_core_sdk/models/application_status.py +66 -0
  14. ai_core_sdk/models/base_models.py +62 -0
  15. ai_core_sdk/models/docker_registry_secret.py +23 -0
  16. ai_core_sdk/models/docker_registry_secret_query_response.py +30 -0
  17. ai_core_sdk/models/kpi.py +25 -0
  18. ai_core_sdk/models/object_store_secret.py +32 -0
  19. ai_core_sdk/models/object_store_secret_query_response.py +30 -0
  20. ai_core_sdk/models/repository.py +36 -0
  21. ai_core_sdk/models/repository_query_response.py +30 -0
  22. ai_core_sdk/models/repository_status.py +9 -0
  23. ai_core_sdk/models/resource_group.py +50 -0
  24. ai_core_sdk/models/resource_group_query_response.py +31 -0
  25. ai_core_sdk/models/resource_group_status.py +9 -0
  26. ai_core_sdk/models/secret.py +30 -0
  27. ai_core_sdk/models/secret_query_response.py +30 -0
  28. ai_core_sdk/resource_clients/__init__.py +13 -0
  29. ai_core_sdk/resource_clients/applications_client.py +173 -0
  30. ai_core_sdk/resource_clients/docker_registry_secrets_client.py +117 -0
  31. ai_core_sdk/resource_clients/internal_rest_client.py +52 -0
  32. ai_core_sdk/resource_clients/kpi_client.py +26 -0
  33. ai_core_sdk/resource_clients/metrics_client.py +131 -0
  34. ai_core_sdk/resource_clients/object_store_secrets_client.py +215 -0
  35. ai_core_sdk/resource_clients/repositories_client.py +116 -0
  36. ai_core_sdk/resource_clients/secrets_client.py +148 -0
  37. ai_core_sdk/tracking/__init__.py +2 -0
  38. ai_core_sdk/tracking/tracking.py +215 -0
  39. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.ai_core_v2_client.html +127 -0
  40. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.cli.html +59 -0
  41. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.credentials.html +209 -0
  42. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.exception.html +161 -0
  43. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.helpers.constants.html +90 -0
  44. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.helpers.html +52 -0
  45. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.helpers.logging.html +41 -0
  46. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.html +29 -0
  47. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.application.html +79 -0
  48. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.application_query_response.html +86 -0
  49. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.application_resource_sync_status.html +77 -0
  50. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.application_source.html +77 -0
  51. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.application_status.html +90 -0
  52. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.base_models.html +120 -0
  53. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.docker_registry_secret.html +85 -0
  54. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.docker_registry_secret_query_response.html +86 -0
  55. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.html +40 -0
  56. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.kpi.html +73 -0
  57. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.object_store_secret.html +71 -0
  58. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.object_store_secret_query_response.html +86 -0
  59. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.repository.html +77 -0
  60. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.repository_query_response.html +86 -0
  61. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.repository_status.html +69 -0
  62. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.resource_group.html +85 -0
  63. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.resource_group_query_response.html +86 -0
  64. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.resource_group_status.html +69 -0
  65. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.secret.html +76 -0
  66. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.models.secret_query_response.html +86 -0
  67. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.resource_clients.applications_client.html +186 -0
  68. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.resource_clients.docker_registry_secrets_client.html +147 -0
  69. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.resource_clients.html +29 -0
  70. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.resource_clients.internal_rest_client.html +181 -0
  71. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.resource_clients.kpi_client.html +87 -0
  72. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.resource_clients.metrics_client.html +189 -0
  73. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.resource_clients.object_store_secrets_client.html +205 -0
  74. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.resource_clients.repositories_client.html +148 -0
  75. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.resource_clients.resource_groups_client.html +156 -0
  76. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.resource_clients.secrets_client.html +165 -0
  77. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.tracking.html +22 -0
  78. sap_ai_sdk_core-3.0.3.data/data/docs/ai_core_sdk.tracking.tracking.html +224 -0
  79. sap_ai_sdk_core-3.0.3.dist-info/METADATA +253 -0
  80. sap_ai_sdk_core-3.0.3.dist-info/RECORD +84 -0
  81. {sap_ai_sdk_core-2.9.9.dist-info → sap_ai_sdk_core-3.0.3.dist-info}/WHEEL +1 -1
  82. sap_ai_sdk_core-3.0.3.dist-info/top_level.txt +1 -0
  83. sap_ai_sdk_core-2.9.9.dist-info/METADATA +0 -43
  84. sap_ai_sdk_core-2.9.9.dist-info/RECORD +0 -6
  85. sap_ai_sdk_core-2.9.9.dist-info/top_level.txt +0 -1
  86. {sap-ai-sdk-core → ai_core_sdk}/__init__.py +0 -0
  87. {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>&nbsp;<br>
9
+ <font color="#ffffff" face="helvetica, arial">&nbsp;<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>&nbsp;<br>
17
+ <font color="#ffffff" face="helvetica, arial"><big><strong>Classes</strong></big></font></td></tr>
18
+
19
+ <tr><td bgcolor="#ee77aa"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td><td>&nbsp;</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>&nbsp;<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>&nbsp;&nbsp;&nbsp;</tt></td>
35
+ <td colspan=2><tt><a href="#RepositoryQueryResponse">RepositoryQueryResponse</a>(resources:&nbsp;List[ai_core_sdk.models.repository.Repository],&nbsp;count:&nbsp;int,&nbsp;**kwargs)<br>
36
+ &nbsp;<br>
37
+ The&nbsp;<a href="#RepositoryQueryResponse">RepositoryQueryResponse</a>&nbsp;object&nbsp;defines&nbsp;the&nbsp;response&nbsp;of&nbsp;the&nbsp;repository&nbsp;query&nbsp;request<br>
38
+ :param&nbsp;resources:&nbsp;List&nbsp;of&nbsp;the&nbsp;repositories&nbsp;returned&nbsp;from&nbsp;the&nbsp;server<br>
39
+ :type&nbsp;resources:&nbsp;List[class:`ai_core_sdk.models.repository.Repository`]<br>
40
+ :param&nbsp;count:&nbsp;Total&nbsp;number&nbsp;of&nbsp;the&nbsp;queried&nbsp;repositories<br>
41
+ :type&nbsp;count:&nbsp;int<br>
42
+ :param&nbsp;`**kwargs`:&nbsp;The&nbsp;keyword&nbsp;arguments&nbsp;are&nbsp;there&nbsp;in&nbsp;case&nbsp;there&nbsp;are&nbsp;additional&nbsp;attributes&nbsp;returned&nbsp;from&nbsp;server<br>&nbsp;</tt></td></tr>
43
+ <tr><td>&nbsp;</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&nbsp;self.&nbsp;&nbsp;See&nbsp;help(type(self))&nbsp;for&nbsp;accurate&nbsp;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&nbsp;a<br>
56
+ :class:`ai_core_client_sdk.models.repository_query_response.<a href="#RepositoryQueryResponse">RepositoryQueryResponse</a>`<br>
57
+ object,&nbsp;created&nbsp;from&nbsp;the&nbsp;values&nbsp;in&nbsp;the&nbsp;dict&nbsp;provided&nbsp;as&nbsp;parameter<br>
58
+ &nbsp;<br>
59
+ :param&nbsp;response_dict:&nbsp;Dict&nbsp;which&nbsp;includes&nbsp;the&nbsp;necessary&nbsp;values&nbsp;to&nbsp;create&nbsp;the&nbsp;object<br>
60
+ :type&nbsp;response_dict:&nbsp;Dict[str,&nbsp;Any]<br>
61
+ :return:&nbsp;An&nbsp;object,&nbsp;created&nbsp;from&nbsp;the&nbsp;values&nbsp;provided<br>
62
+ :rtype:&nbsp;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&nbsp;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&nbsp;for&nbsp;instance&nbsp;variables&nbsp;(if&nbsp;defined)</tt></dd>
72
+ </dl>
73
+ <dl><dt><strong>__weakref__</strong></dt>
74
+ <dd><tt>list&nbsp;of&nbsp;weak&nbsp;references&nbsp;to&nbsp;the&nbsp;object&nbsp;(if&nbsp;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>&nbsp;<br>
80
+ <font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td></tr>
81
+
82
+ <tr><td bgcolor="#55aa55"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td><td>&nbsp;</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>&nbsp;<br>
9
+ <font color="#ffffff" face="helvetica, arial">&nbsp;<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>&nbsp;<br>
17
+ <font color="#ffffff" face="helvetica, arial"><big><strong>Classes</strong></big></font></td></tr>
18
+
19
+ <tr><td bgcolor="#ee77aa"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td><td>&nbsp;</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>&nbsp;<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>&nbsp;&nbsp;&nbsp;</tt></td>
35
+ <td colspan=2><tt><a href="#RepositoryStatus">RepositoryStatus</a>(value,&nbsp;names=None,&nbsp;*,&nbsp;module=None,&nbsp;qualname=None,&nbsp;type=None,&nbsp;start=1)<br>
36
+ &nbsp;<br>
37
+ <a href="#RepositoryStatus">RepositoryStatus</a>&nbsp;is&nbsp;an&nbsp;<a href="enum.html#Enum">Enum</a>&nbsp;defining&nbsp;the&nbsp;valid&nbsp;values&nbsp;of&nbsp;the&nbsp;status&nbsp;of&nbsp;a&nbsp;repository<br>&nbsp;</tt></td></tr>
38
+ <tr><td>&nbsp;</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> = &lt;RepositoryStatus.COMPLETED: 'COMPLETED'&gt;</dl>
47
+
48
+ <dl><dt><strong>ERROR</strong> = &lt;RepositoryStatus.ERROR: 'ERROR'&gt;</dl>
49
+
50
+ <dl><dt><strong>IN_PROGRESS</strong> = &lt;RepositoryStatus.IN_PROGRESS: 'IN-PROGRESS'&gt;</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&nbsp;name&nbsp;of&nbsp;the&nbsp;Enum&nbsp;member.</tt></dd>
56
+ </dl>
57
+ <dl><dt><strong>value</strong></dt>
58
+ <dd><tt>The&nbsp;value&nbsp;of&nbsp;the&nbsp;Enum&nbsp;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&nbsp;a&nbsp;mapping&nbsp;of&nbsp;member&nbsp;name-&gt;value.<br>
64
+ &nbsp;<br>
65
+ This&nbsp;mapping&nbsp;lists&nbsp;all&nbsp;enum&nbsp;members,&nbsp;including&nbsp;aliases.&nbsp;Note&nbsp;that&nbsp;this<br>
66
+ is&nbsp;a&nbsp;read-only&nbsp;view&nbsp;of&nbsp;the&nbsp;internal&nbsp;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>&nbsp;<br>
9
+ <font color="#ffffff" face="helvetica, arial">&nbsp;<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>&nbsp;<br>
17
+ <font color="#ffffff" face="helvetica, arial"><big><strong>Classes</strong></big></font></td></tr>
18
+
19
+ <tr><td bgcolor="#ee77aa"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td><td>&nbsp;</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>&nbsp;<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>&nbsp;&nbsp;&nbsp;</tt></td>
35
+ <td colspan=2><tt><a href="#ResourceGroup">ResourceGroup</a>(resource_group_id:&nbsp;str&nbsp;=&nbsp;None,&nbsp;tenant_id:&nbsp;str&nbsp;=&nbsp;None,&nbsp;zone_id:&nbsp;str&nbsp;=&nbsp;None,&nbsp;labels:&nbsp;List[ai_api_client_sdk.models.label.Label]&nbsp;=&nbsp;None,&nbsp;status:&nbsp;ai_core_sdk.models.resource_group_status.ResourceGroupStatus&nbsp;=&nbsp;None,&nbsp;status_message:&nbsp;str&nbsp;=&nbsp;None,&nbsp;**kwargs)<br>
36
+ &nbsp;<br>
37
+ <a href="#ResourceGroup">ResourceGroup</a>&nbsp;represents&nbsp;the&nbsp;resource&nbsp;group.<br>
38
+ &nbsp;<br>
39
+ :param&nbsp;resource_group_id:&nbsp;The&nbsp;resource_group_id&nbsp;of&nbsp;this&nbsp;<a href="#ResourceGroup">ResourceGroup</a>.<br>
40
+ :type&nbsp;resource_group_id:&nbsp;str<br>
41
+ :param&nbsp;tenant_id:&nbsp;The&nbsp;tenant_id&nbsp;of&nbsp;this&nbsp;<a href="#ResourceGroup">ResourceGroup</a>.<br>
42
+ :type&nbsp;tenant_id:&nbsp;str<br>
43
+ :param&nbsp;zone_id:&nbsp;The&nbsp;zone_id&nbsp;of&nbsp;this&nbsp;<a href="#ResourceGroup">ResourceGroup</a>.<br>
44
+ :type&nbsp;zone_id:&nbsp;str<br>
45
+ :param&nbsp;labels:&nbsp;The&nbsp;labels&nbsp;of&nbsp;this&nbsp;<a href="#ResourceGroup">ResourceGroup</a>.<br>
46
+ :type&nbsp;labels:&nbsp;ResourceGroupLabels<br>
47
+ :param&nbsp;status:&nbsp;The&nbsp;status&nbsp;of&nbsp;this&nbsp;<a href="#ResourceGroup">ResourceGroup</a>.<br>
48
+ :type&nbsp;status:&nbsp;str<br>
49
+ :param&nbsp;status_message:&nbsp;The&nbsp;status_message&nbsp;of&nbsp;this&nbsp;<a href="#ResourceGroup">ResourceGroup</a>.<br>
50
+ :type&nbsp;status_message:&nbsp;str<br>&nbsp;</tt></td></tr>
51
+ <tr><td>&nbsp;</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&nbsp;self.&nbsp;&nbsp;See&nbsp;help(type(self))&nbsp;for&nbsp;accurate&nbsp;signature.</tt></dd></dl>
54
+
55
+ <dl><dt><a name="ResourceGroup-__str__"><strong>__str__</strong></a>(self)</dt><dd><tt>Return&nbsp;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&nbsp;a&nbsp;:class:`ai_core_sdk.models.resource_group.<a href="#ResourceGroup">ResourceGroup</a>`&nbsp;<a href="builtins.html#object">object</a>,&nbsp;created<br>
60
+ from&nbsp;the&nbsp;values&nbsp;in&nbsp;the&nbsp;dict&nbsp;provided&nbsp;as&nbsp;parameter<br>
61
+ &nbsp;<br>
62
+ :param&nbsp;resource_group_dict:&nbsp;Dict&nbsp;which&nbsp;includes&nbsp;the&nbsp;necessary&nbsp;values&nbsp;to&nbsp;create&nbsp;the&nbsp;<a href="builtins.html#object">object</a><br>
63
+ :type&nbsp;resource_group_dict:&nbsp;Dict[str,&nbsp;Any]<br>
64
+ :return:&nbsp;An&nbsp;<a href="builtins.html#object">object</a>,&nbsp;created&nbsp;from&nbsp;the&nbsp;values&nbsp;provided<br>
65
+ :rtype:&nbsp;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&nbsp;for&nbsp;instance&nbsp;variables&nbsp;(if&nbsp;defined)</tt></dd>
71
+ </dl>
72
+ <dl><dt><strong>__weakref__</strong></dt>
73
+ <dd><tt>list&nbsp;of&nbsp;weak&nbsp;references&nbsp;to&nbsp;the&nbsp;object&nbsp;(if&nbsp;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>&nbsp;<br>
79
+ <font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td></tr>
80
+
81
+ <tr><td bgcolor="#55aa55"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td><td>&nbsp;</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>&nbsp;<br>
9
+ <font color="#ffffff" face="helvetica, arial">&nbsp;<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>&nbsp;<br>
17
+ <font color="#ffffff" face="helvetica, arial"><big><strong>Classes</strong></big></font></td></tr>
18
+
19
+ <tr><td bgcolor="#ee77aa"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td><td>&nbsp;</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>&nbsp;<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>&nbsp;&nbsp;&nbsp;</tt></td>
35
+ <td colspan=2><tt><a href="#ResourceGroupQueryResponse">ResourceGroupQueryResponse</a>(resources:&nbsp;List[ai_core_sdk.models.resource_group.ResourceGroup],&nbsp;count:&nbsp;int,&nbsp;**kwargs)<br>
36
+ &nbsp;<br>
37
+ The&nbsp;<a href="#ResourceGroupQueryResponse">ResourceGroupQueryResponse</a>&nbsp;object&nbsp;defines&nbsp;the&nbsp;response&nbsp;of&nbsp;the&nbsp;resourceGroups&nbsp;query&nbsp;request<br>
38
+ :param&nbsp;resources:&nbsp;List&nbsp;of&nbsp;the&nbsp;resource&nbsp;groups&nbsp;returned&nbsp;from&nbsp;the&nbsp;server<br>
39
+ :type&nbsp;resources:&nbsp;List[class:`ai_core_sdk.models.resource_group.ResourceGroup`]<br>
40
+ :param&nbsp;count:&nbsp;Total&nbsp;number&nbsp;of&nbsp;the&nbsp;queried&nbsp;docker&nbsp;registry&nbsp;secrets<br>
41
+ :type&nbsp;count:&nbsp;int<br>
42
+ :param&nbsp;`**kwargs`:&nbsp;The&nbsp;keyword&nbsp;arguments&nbsp;are&nbsp;there&nbsp;in&nbsp;case&nbsp;there&nbsp;are&nbsp;additional&nbsp;attributes&nbsp;returned&nbsp;from&nbsp;server<br>&nbsp;</tt></td></tr>
43
+ <tr><td>&nbsp;</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&nbsp;self.&nbsp;&nbsp;See&nbsp;help(type(self))&nbsp;for&nbsp;accurate&nbsp;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&nbsp;a<br>
56
+ :class:`ai_core_sdk.models.docker_registry_secret_query_response.DockerRegistrySecretQueryResponse`<br>
57
+ object,&nbsp;created&nbsp;from&nbsp;the&nbsp;values&nbsp;in&nbsp;the&nbsp;dict&nbsp;provided&nbsp;as&nbsp;parameter<br>
58
+ &nbsp;<br>
59
+ :param&nbsp;response_dict:&nbsp;Dict&nbsp;which&nbsp;includes&nbsp;the&nbsp;necessary&nbsp;values&nbsp;to&nbsp;create&nbsp;the&nbsp;object<br>
60
+ :type&nbsp;response_dict:&nbsp;Dict[str,&nbsp;Any]<br>
61
+ :return:&nbsp;An&nbsp;object,&nbsp;created&nbsp;from&nbsp;the&nbsp;values&nbsp;provided<br>
62
+ :rtype:&nbsp;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&nbsp;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&nbsp;for&nbsp;instance&nbsp;variables&nbsp;(if&nbsp;defined)</tt></dd>
72
+ </dl>
73
+ <dl><dt><strong>__weakref__</strong></dt>
74
+ <dd><tt>list&nbsp;of&nbsp;weak&nbsp;references&nbsp;to&nbsp;the&nbsp;object&nbsp;(if&nbsp;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>&nbsp;<br>
80
+ <font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td></tr>
81
+
82
+ <tr><td bgcolor="#55aa55"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td><td>&nbsp;</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>&nbsp;<br>
9
+ <font color="#ffffff" face="helvetica, arial">&nbsp;<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>&nbsp;<br>
17
+ <font color="#ffffff" face="helvetica, arial"><big><strong>Classes</strong></big></font></td></tr>
18
+
19
+ <tr><td bgcolor="#ee77aa"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td><td>&nbsp;</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>&nbsp;<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>&nbsp;&nbsp;&nbsp;</tt></td>
35
+ <td colspan=2><tt><a href="#ResourceGroupStatus">ResourceGroupStatus</a>(value,&nbsp;names=None,&nbsp;*,&nbsp;module=None,&nbsp;qualname=None,&nbsp;type=None,&nbsp;start=1)<br>
36
+ &nbsp;<br>
37
+ <a href="#ResourceGroupStatus">ResourceGroupStatus</a>&nbsp;is&nbsp;an&nbsp;<a href="enum.html#Enum">Enum</a>&nbsp;defining&nbsp;the&nbsp;valid&nbsp;values&nbsp;of&nbsp;the&nbsp;status&nbsp;of&nbsp;a&nbsp;resource&nbsp;group<br>&nbsp;</tt></td></tr>
38
+ <tr><td>&nbsp;</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> = &lt;ResourceGroupStatus.ERROR: 'ERROR'&gt;</dl>
47
+
48
+ <dl><dt><strong>PROVISIONED</strong> = &lt;ResourceGroupStatus.PROVISIONED: 'PROVISIONED'&gt;</dl>
49
+
50
+ <dl><dt><strong>PROVISIONING</strong> = &lt;ResourceGroupStatus.PROVISIONING: 'PROVISIONING'&gt;</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&nbsp;name&nbsp;of&nbsp;the&nbsp;Enum&nbsp;member.</tt></dd>
56
+ </dl>
57
+ <dl><dt><strong>value</strong></dt>
58
+ <dd><tt>The&nbsp;value&nbsp;of&nbsp;the&nbsp;Enum&nbsp;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&nbsp;a&nbsp;mapping&nbsp;of&nbsp;member&nbsp;name-&gt;value.<br>
64
+ &nbsp;<br>
65
+ This&nbsp;mapping&nbsp;lists&nbsp;all&nbsp;enum&nbsp;members,&nbsp;including&nbsp;aliases.&nbsp;Note&nbsp;that&nbsp;this<br>
66
+ is&nbsp;a&nbsp;read-only&nbsp;view&nbsp;of&nbsp;the&nbsp;internal&nbsp;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>&nbsp;<br>
9
+ <font color="#ffffff" face="helvetica, arial">&nbsp;<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>&nbsp;<br>
17
+ <font color="#ffffff" face="helvetica, arial"><big><strong>Classes</strong></big></font></td></tr>
18
+
19
+ <tr><td bgcolor="#ee77aa"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td><td>&nbsp;</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>&nbsp;<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>&nbsp;&nbsp;&nbsp;</tt></td>
35
+ <td colspan=2><tt><a href="#Secret">Secret</a>(name:&nbsp;str,&nbsp;data:&nbsp;Dict[str,&nbsp;str]&nbsp;=&nbsp;None,&nbsp;**kwargs)<br>
36
+ &nbsp;<br>
37
+ The&nbsp;<a href="#Secret">Secret</a>&nbsp;<a href="builtins.html#object">object</a>&nbsp;defines&nbsp;the&nbsp;secret&nbsp;response.<br>
38
+ &nbsp;<br>
39
+ :param&nbsp;name:&nbsp;<a href="#Secret">Secret</a>&nbsp;name<br>
40
+ :type&nbsp;name:&nbsp;str<br>
41
+ :param&nbsp;data:&nbsp;<a href="#Secret">Secret</a>&nbsp;data&nbsp;dictionary,&nbsp;defaults&nbsp;to&nbsp;None<br>
42
+ :type&nbsp;data:&nbsp;dict,&nbsp;optional<br>&nbsp;</tt></td></tr>
43
+ <tr><td>&nbsp;</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&nbsp;self.&nbsp;&nbsp;See&nbsp;help(type(self))&nbsp;for&nbsp;accurate&nbsp;signature.</tt></dd></dl>
46
+
47
+ <dl><dt><a name="Secret-__str__"><strong>__str__</strong></a>(self)</dt><dd><tt>Return&nbsp;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&nbsp;a&nbsp;:class:`ai_core_sdk.models.secret.<a href="#Secret">Secret</a>`&nbsp;<a href="builtins.html#object">object</a>,&nbsp;created<br>
52
+ from&nbsp;the&nbsp;values&nbsp;in&nbsp;the&nbsp;dict&nbsp;provided&nbsp;as&nbsp;parameter<br>
53
+ &nbsp;<br>
54
+ :param&nbsp;secret_dict:&nbsp;Dict&nbsp;which&nbsp;includes&nbsp;the&nbsp;necessary&nbsp;values&nbsp;to&nbsp;create&nbsp;the&nbsp;<a href="builtins.html#object">object</a><br>
55
+ :type&nbsp;secret_dict:&nbsp;Dict[str,&nbsp;Any]<br>
56
+ :return:&nbsp;An&nbsp;<a href="builtins.html#object">object</a>,&nbsp;created&nbsp;from&nbsp;the&nbsp;values&nbsp;provided<br>
57
+ :rtype:&nbsp;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&nbsp;for&nbsp;instance&nbsp;variables&nbsp;(if&nbsp;defined)</tt></dd>
63
+ </dl>
64
+ <dl><dt><strong>__weakref__</strong></dt>
65
+ <dd><tt>list&nbsp;of&nbsp;weak&nbsp;references&nbsp;to&nbsp;the&nbsp;object&nbsp;(if&nbsp;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>&nbsp;<br>
71
+ <font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td></tr>
72
+
73
+ <tr><td bgcolor="#55aa55"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td><td>&nbsp;</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>&nbsp;<br>
9
+ <font color="#ffffff" face="helvetica, arial">&nbsp;<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>&nbsp;<br>
17
+ <font color="#ffffff" face="helvetica, arial"><big><strong>Classes</strong></big></font></td></tr>
18
+
19
+ <tr><td bgcolor="#ee77aa"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td><td>&nbsp;</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>&nbsp;<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>&nbsp;&nbsp;&nbsp;</tt></td>
35
+ <td colspan=2><tt><a href="#SecretQueryResponse">SecretQueryResponse</a>(resources:&nbsp;List[ai_core_sdk.models.secret.Secret],&nbsp;count:&nbsp;int,&nbsp;**kwargs)<br>
36
+ &nbsp;<br>
37
+ The&nbsp;<a href="#SecretQueryResponse">SecretQueryResponse</a>&nbsp;object&nbsp;defines&nbsp;the&nbsp;response&nbsp;of&nbsp;the&nbsp;secret&nbsp;query&nbsp;request<br>
38
+ :param&nbsp;resources:&nbsp;List&nbsp;of&nbsp;the&nbsp;secrets&nbsp;returned&nbsp;from&nbsp;the&nbsp;server<br>
39
+ :type&nbsp;resources:&nbsp;List[class:`ai_core_sdk.models.secret.Secret`]<br>
40
+ :param&nbsp;count:&nbsp;Total&nbsp;number&nbsp;of&nbsp;the&nbsp;queried&nbsp;secrets<br>
41
+ :type&nbsp;count:&nbsp;int<br>
42
+ :param&nbsp;`**kwargs`:&nbsp;The&nbsp;keyword&nbsp;arguments&nbsp;are&nbsp;there&nbsp;in&nbsp;case&nbsp;there&nbsp;are&nbsp;additional&nbsp;attributes&nbsp;returned&nbsp;from&nbsp;server<br>&nbsp;</tt></td></tr>
43
+ <tr><td>&nbsp;</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&nbsp;self.&nbsp;&nbsp;See&nbsp;help(type(self))&nbsp;for&nbsp;accurate&nbsp;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&nbsp;a<br>
56
+ :class:`ai_core_sdk.models.secret_query_response.<a href="#SecretQueryResponse">SecretQueryResponse</a>`<br>
57
+ object,&nbsp;created&nbsp;from&nbsp;the&nbsp;values&nbsp;in&nbsp;the&nbsp;dict&nbsp;provided&nbsp;as&nbsp;parameter<br>
58
+ &nbsp;<br>
59
+ :param&nbsp;response_dict:&nbsp;Dict&nbsp;which&nbsp;includes&nbsp;the&nbsp;necessary&nbsp;values&nbsp;to&nbsp;create&nbsp;the&nbsp;object<br>
60
+ :type&nbsp;response_dict:&nbsp;Dict[str,&nbsp;Any]<br>
61
+ :return:&nbsp;An&nbsp;object,&nbsp;created&nbsp;from&nbsp;the&nbsp;values&nbsp;provided<br>
62
+ :rtype:&nbsp;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&nbsp;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&nbsp;for&nbsp;instance&nbsp;variables&nbsp;(if&nbsp;defined)</tt></dd>
72
+ </dl>
73
+ <dl><dt><strong>__weakref__</strong></dt>
74
+ <dd><tt>list&nbsp;of&nbsp;weak&nbsp;references&nbsp;to&nbsp;the&nbsp;object&nbsp;(if&nbsp;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>&nbsp;<br>
80
+ <font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td></tr>
81
+
82
+ <tr><td bgcolor="#55aa55"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td><td>&nbsp;</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>