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.
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.8.data/data/docs/ai_core_sdk.ai_core_v2_client.html +127 -0
  40. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.cli.html +59 -0
  41. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.credentials.html +209 -0
  42. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.exception.html +161 -0
  43. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.helpers.constants.html +90 -0
  44. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.helpers.html +52 -0
  45. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.helpers.logging.html +41 -0
  46. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.html +29 -0
  47. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.application.html +79 -0
  48. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.application_query_response.html +86 -0
  49. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.application_resource_sync_status.html +77 -0
  50. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.application_source.html +77 -0
  51. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.application_status.html +90 -0
  52. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.base_models.html +120 -0
  53. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.docker_registry_secret.html +85 -0
  54. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.docker_registry_secret_query_response.html +86 -0
  55. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.html +40 -0
  56. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.kpi.html +73 -0
  57. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.object_store_secret.html +71 -0
  58. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.object_store_secret_query_response.html +86 -0
  59. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.repository.html +77 -0
  60. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.repository_query_response.html +86 -0
  61. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.repository_status.html +69 -0
  62. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.resource_group.html +85 -0
  63. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.resource_group_query_response.html +86 -0
  64. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.resource_group_status.html +69 -0
  65. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.secret.html +76 -0
  66. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.models.secret_query_response.html +86 -0
  67. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.resource_clients.applications_client.html +186 -0
  68. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.resource_clients.docker_registry_secrets_client.html +147 -0
  69. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.resource_clients.html +29 -0
  70. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.resource_clients.internal_rest_client.html +181 -0
  71. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.resource_clients.kpi_client.html +87 -0
  72. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.resource_clients.metrics_client.html +189 -0
  73. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.resource_clients.object_store_secrets_client.html +205 -0
  74. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.resource_clients.repositories_client.html +148 -0
  75. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.resource_clients.resource_groups_client.html +156 -0
  76. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.resource_clients.secrets_client.html +165 -0
  77. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.tracking.html +22 -0
  78. sap_ai_sdk_core-3.0.8.data/data/docs/ai_core_sdk.tracking.tracking.html +224 -0
  79. sap_ai_sdk_core-3.0.8.dist-info/METADATA +253 -0
  80. sap_ai_sdk_core-3.0.8.dist-info/RECORD +84 -0
  81. {sap_ai_sdk_core-2.9.9.dist-info → sap_ai_sdk_core-3.0.8.dist-info}/WHEEL +1 -1
  82. sap_ai_sdk_core-3.0.8.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.8.dist-info}/LICENSE +0 -0
@@ -0,0 +1,87 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2
+ <html><head><title>Python: module ai_core_sdk.resource_clients.kpi_client</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.resource_clients.html"><font color="#ffffff">resource_clients</font></a>.kpi_client</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/resource_clients/kpi_client.py">/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/resource_clients/kpi_client.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.resource_clients.base_client.html#BaseClient">ai_api_client_sdk.resource_clients.base_client.BaseClient</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.resource_clients.kpi_client.html#KpiClient">KpiClient</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="KpiClient">class <strong>KpiClient</strong></a>(<a href="ai_api_client_sdk.resource_clients.base_client.html#BaseClient">ai_api_client_sdk.resource_clients.base_client.BaseClient</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="#KpiClient">KpiClient</a>(rest_client:&nbsp;ai_api_client_sdk.helpers.rest_client.RestClient)<br>
36
+ &nbsp;<br>
37
+ <a href="#KpiClient">KpiClient</a>&nbsp;is&nbsp;a&nbsp;class&nbsp;implemented&nbsp;for&nbsp;interacting&nbsp;with&nbsp;the&nbsp;analytics&nbsp;kpi<br>
38
+ endpoint&nbsp;of&nbsp;the&nbsp;server.&nbsp;It&nbsp;implements&nbsp;the&nbsp;base&nbsp;class<br>
39
+ :class:`ai_api_client_sdk.resource_clients.base_client.<a href="ai_api_client_sdk.resource_clients.base_client.html#BaseClient">BaseClient</a>`<br>&nbsp;</tt></td></tr>
40
+ <tr><td>&nbsp;</td>
41
+ <td width="100%"><dl><dt>Method resolution order:</dt>
42
+ <dd><a href="ai_core_sdk.resource_clients.kpi_client.html#KpiClient">KpiClient</a></dd>
43
+ <dd><a href="ai_api_client_sdk.resource_clients.base_client.html#BaseClient">ai_api_client_sdk.resource_clients.base_client.BaseClient</a></dd>
44
+ <dd><a href="builtins.html#object">builtins.object</a></dd>
45
+ </dl>
46
+ <hr>
47
+ Methods defined here:<br>
48
+ <dl><dt><a name="KpiClient-query"><strong>query</strong></a>(self) -&gt; ai_core_sdk.models.kpi.Kpi</dt><dd><tt>Retrieves&nbsp;the&nbsp;number&nbsp;of&nbsp;executions,&nbsp;artifacts,&nbsp;and&nbsp;deployments<br>
49
+ for&nbsp;each&nbsp;resource&nbsp;group,&nbsp;scenario,&nbsp;and&nbsp;executable.<br>
50
+ &nbsp;<br>
51
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIAuthorizationException`&nbsp;if&nbsp;a&nbsp;401&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
52
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
53
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPINotFoundException`&nbsp;if&nbsp;a&nbsp;404&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
54
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
55
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIServerException`&nbsp;if&nbsp;a&nbsp;non-2XX&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
56
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
57
+ :return:&nbsp;The&nbsp;retrieved&nbsp;KPI&nbsp;data<br>
58
+ :rtype:&nbsp;class:`ai_core_sdk.models.kpi.Kpi`</tt></dd></dl>
59
+
60
+ <hr>
61
+ Methods inherited from <a href="ai_api_client_sdk.resource_clients.base_client.html#BaseClient">ai_api_client_sdk.resource_clients.base_client.BaseClient</a>:<br>
62
+ <dl><dt><a name="KpiClient-__init__"><strong>__init__</strong></a>(self, rest_client: ai_api_client_sdk.helpers.rest_client.RestClient)</dt><dd><tt>Initialize&nbsp;self.&nbsp;&nbsp;See&nbsp;help(type(self))&nbsp;for&nbsp;accurate&nbsp;signature.</tt></dd></dl>
63
+
64
+ <dl><dt><a name="KpiClient-bulk_modify"><strong>bulk_modify</strong></a>(self, *args, **kwargs)</dt><dd><tt>Modifies&nbsp;multiple&nbsp;instances&nbsp;of&nbsp;the&nbsp;relevant&nbsp;resource.&nbsp;Will&nbsp;be&nbsp;implemented&nbsp;by&nbsp;the&nbsp;respective&nbsp;resource&nbsp;clients</tt></dd></dl>
65
+
66
+ <dl><dt><a name="KpiClient-count"><strong>count</strong></a>(self, *args, **kwargs)</dt><dd><tt>Counts&nbsp;the&nbsp;relevant&nbsp;resources.&nbsp;Will&nbsp;be&nbsp;implemented&nbsp;by&nbsp;the&nbsp;respective&nbsp;resource&nbsp;clients</tt></dd></dl>
67
+
68
+ <dl><dt><a name="KpiClient-create"><strong>create</strong></a>(self, *args, **kwargs)</dt><dd><tt>Creates&nbsp;the&nbsp;relevant&nbsp;resource.&nbsp;Will&nbsp;be&nbsp;implemented&nbsp;by&nbsp;the&nbsp;respective&nbsp;resource&nbsp;clients</tt></dd></dl>
69
+
70
+ <dl><dt><a name="KpiClient-delete"><strong>delete</strong></a>(self, *args, **kwargs)</dt><dd><tt>Deletes&nbsp;the&nbsp;relevant&nbsp;resource.&nbsp;Will&nbsp;be&nbsp;implemented&nbsp;by&nbsp;the&nbsp;respective&nbsp;resource&nbsp;clients</tt></dd></dl>
71
+
72
+ <dl><dt><a name="KpiClient-get"><strong>get</strong></a>(self, *args, **kwargs)</dt><dd><tt>Retrieves&nbsp;the&nbsp;relevant&nbsp;resource.&nbsp;Will&nbsp;be&nbsp;implemented&nbsp;by&nbsp;the&nbsp;respective&nbsp;resource&nbsp;clients</tt></dd></dl>
73
+
74
+ <dl><dt><a name="KpiClient-modify"><strong>modify</strong></a>(self, *args, **kwargs)</dt><dd><tt>Modifies&nbsp;the&nbsp;relevant&nbsp;resource.&nbsp;Will&nbsp;be&nbsp;implemented&nbsp;by&nbsp;the&nbsp;respective&nbsp;resource&nbsp;clients</tt></dd></dl>
75
+
76
+ <dl><dt><a name="KpiClient-query_logs"><strong>query_logs</strong></a>(self, *args, **kwargs)</dt><dd><tt>Queries&nbsp;the&nbsp;relevant&nbsp;logs.&nbsp;Will&nbsp;be&nbsp;implemented&nbsp;by&nbsp;the&nbsp;respective&nbsp;resource&nbsp;clients</tt></dd></dl>
77
+
78
+ <hr>
79
+ Data descriptors inherited from <a href="ai_api_client_sdk.resource_clients.base_client.html#BaseClient">ai_api_client_sdk.resource_clients.base_client.BaseClient</a>:<br>
80
+ <dl><dt><strong>__dict__</strong></dt>
81
+ <dd><tt>dictionary&nbsp;for&nbsp;instance&nbsp;variables&nbsp;(if&nbsp;defined)</tt></dd>
82
+ </dl>
83
+ <dl><dt><strong>__weakref__</strong></dt>
84
+ <dd><tt>list&nbsp;of&nbsp;weak&nbsp;references&nbsp;to&nbsp;the&nbsp;object&nbsp;(if&nbsp;defined)</tt></dd>
85
+ </dl>
86
+ </td></tr></table></td></tr></table>
87
+ </body></html>
@@ -0,0 +1,189 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2
+ <html><head><title>Python: module ai_core_sdk.resource_clients.metrics_client</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.resource_clients.html"><font color="#ffffff">resource_clients</font></a>.metrics_client</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/resource_clients/metrics_client.py">/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/resource_clients/metrics_client.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.resource_clients.metrics_client.html#MetricsClient">ai_api_client_sdk.resource_clients.metrics_client.MetricsClient</a>(<a href="ai_api_client_sdk.resource_clients.base_client.html#BaseClient">ai_api_client_sdk.resource_clients.base_client.BaseClient</a>)
22
+ </font></dt><dd>
23
+ <dl>
24
+ <dt><font face="helvetica, arial"><a href="ai_core_sdk.resource_clients.metrics_client.html#MetricsCoreClient">MetricsCoreClient</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="MetricsCoreClient">class <strong>MetricsCoreClient</strong></a>(<a href="ai_api_client_sdk.resource_clients.metrics_client.html#MetricsClient">ai_api_client_sdk.resource_clients.metrics_client.MetricsClient</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="#MetricsCoreClient">MetricsCoreClient</a>(rest_client,&nbsp;execution_id:&nbsp;str&nbsp;=&nbsp;None)&nbsp;-&amp;gt;&nbsp;None<br>
36
+ &nbsp;<br>
37
+ <a href="#MetricsCoreClient">MetricsCoreClient</a>&nbsp;is&nbsp;a&nbsp;class&nbsp;implemented&nbsp;for&nbsp;interacting&nbsp;with&nbsp;the&nbsp;metrics&nbsp;related<br>
38
+ endpoints&nbsp;of&nbsp;the&nbsp;server.&nbsp;It&nbsp;is&nbsp;inherited&nbsp;from&nbsp;the&nbsp;base&nbsp;class<br>
39
+ :class:`ai_api_client_sdk.resource_clients.metrics_client.<a href="ai_api_client_sdk.resource_clients.metrics_client.html#MetricsClient">MetricsClient</a>`<br>&nbsp;</tt></td></tr>
40
+ <tr><td>&nbsp;</td>
41
+ <td width="100%"><dl><dt>Method resolution order:</dt>
42
+ <dd><a href="ai_core_sdk.resource_clients.metrics_client.html#MetricsCoreClient">MetricsCoreClient</a></dd>
43
+ <dd><a href="ai_api_client_sdk.resource_clients.metrics_client.html#MetricsClient">ai_api_client_sdk.resource_clients.metrics_client.MetricsClient</a></dd>
44
+ <dd><a href="ai_api_client_sdk.resource_clients.base_client.html#BaseClient">ai_api_client_sdk.resource_clients.base_client.BaseClient</a></dd>
45
+ <dd><a href="builtins.html#object">builtins.object</a></dd>
46
+ </dl>
47
+ <hr>
48
+ Methods defined here:<br>
49
+ <dl><dt><a name="MetricsCoreClient-__init__"><strong>__init__</strong></a>(self, rest_client, execution_id: str = None) -&gt; None</dt><dd><tt>Initialize&nbsp;self.&nbsp;&nbsp;See&nbsp;help(type(self))&nbsp;for&nbsp;accurate&nbsp;signature.</tt></dd></dl>
50
+
51
+ <dl><dt><a name="MetricsCoreClient-log_metrics"><strong>log_metrics</strong></a>(self, metrics: List[ai_api_client_sdk.models.metric.Metric], execution_id: str = '', artifact_name: str = None, resource_group: str = None) -&gt; None</dt><dd><tt>Creates&nbsp;or&nbsp;updates&nbsp;the&nbsp;metrics&nbsp;for&nbsp;an&nbsp;execution.<br>
52
+ &nbsp;<br>
53
+ &nbsp;&nbsp;&nbsp;&nbsp;:param&nbsp;metrics:&nbsp;List&nbsp;of&nbsp;the&nbsp;metrics&nbsp;related&nbsp;to&nbsp;the&nbsp;execution,<br>
54
+ &nbsp;&nbsp;&nbsp;&nbsp;:type&nbsp;metrics:&nbsp;List[class:`ai_api_client_sdk.metric.Metric`]<br>
55
+ &nbsp;&nbsp;&nbsp;&nbsp;:param&nbsp;execution_id:&nbsp;ID&nbsp;of&nbsp;the&nbsp;execution,&nbsp;of&nbsp;which&nbsp;the&nbsp;metrics&nbsp;should&nbsp;be&nbsp;modified.<br>
56
+ &nbsp;&nbsp;&nbsp;&nbsp;:type&nbsp;execution_id:&nbsp;str<br>
57
+ &nbsp;&nbsp;&nbsp;&nbsp;:param&nbsp;artifact_name:&nbsp;Name&nbsp;of&nbsp;the&nbsp;artifact&nbsp;to&nbsp;associate&nbsp;with&nbsp;a&nbsp;metric,&nbsp;defaults&nbsp;to&nbsp;None<br>
58
+ &nbsp;&nbsp;&nbsp;&nbsp;:type&nbsp;artifact_name:&nbsp;str<br>
59
+ &nbsp;&nbsp;&nbsp;&nbsp;:param&nbsp;resource_group:&nbsp;Resource&nbsp;Group&nbsp;which&nbsp;the&nbsp;request&nbsp;should&nbsp;be&nbsp;sent&nbsp;on&nbsp;behalf.&nbsp;Either&nbsp;this&nbsp;or&nbsp;a&nbsp;default<br>
60
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;resource&nbsp;group&nbsp;in&nbsp;the&nbsp;:class:`ai_api_client_sdk.ai_api_v2_client.AIAPIV2Client`&nbsp;should&nbsp;be&nbsp;specified,<br>
61
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;defaults&nbsp;to&nbsp;None<br>
62
+ &nbsp;&nbsp;&nbsp;&nbsp;:type&nbsp;resource_group:&nbsp;str<br>
63
+ &nbsp;&nbsp;&nbsp;&nbsp;:raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIInvalidRequestException`&nbsp;if&nbsp;a&nbsp;400&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
64
+ server<br>
65
+ &nbsp;&nbsp;&nbsp;&nbsp;:raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIServerException`&nbsp;if&nbsp;a&nbsp;non-2XX&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
66
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;server</tt></dd></dl>
67
+
68
+ <dl><dt><a name="MetricsCoreClient-modify"><strong>modify</strong></a>(self, execution_id: str = '', metrics: List[ai_api_client_sdk.models.metric.Metric] = None, tags: List[ai_api_client_sdk.models.metric_tag.MetricTag] = None, custom_info: List[ai_api_client_sdk.models.metric_custom_info.MetricCustomInfo] = None, resource_group: str = None) -&gt; None</dt><dd><tt>Creates&nbsp;or&nbsp;updates&nbsp;the&nbsp;metrics&nbsp;for&nbsp;an&nbsp;execution.<br>
69
+ &nbsp;<br>
70
+ &nbsp;&nbsp;&nbsp;&nbsp;:param&nbsp;execution_id:&nbsp;ID&nbsp;of&nbsp;the&nbsp;execution,&nbsp;of&nbsp;which&nbsp;the&nbsp;metrics&nbsp;should&nbsp;be&nbsp;modified.<br>
71
+ &nbsp;&nbsp;&nbsp;&nbsp;:type&nbsp;execution_id:&nbsp;str<br>
72
+ &nbsp;&nbsp;&nbsp;&nbsp;:param&nbsp;metrics:&nbsp;List&nbsp;of&nbsp;the&nbsp;metrics&nbsp;related&nbsp;to&nbsp;the&nbsp;execution,&nbsp;defaults&nbsp;to&nbsp;None<br>
73
+ &nbsp;&nbsp;&nbsp;&nbsp;:type&nbsp;metrics:&nbsp;List[class:`ai_api_client_sdk.metric.Metric`],&nbsp;optional<br>
74
+ &nbsp;&nbsp;&nbsp;&nbsp;:param&nbsp;tags:&nbsp;List&nbsp;of&nbsp;the&nbsp;tags&nbsp;related&nbsp;to&nbsp;the&nbsp;execution,&nbsp;defaults&nbsp;to&nbsp;None<br>
75
+ &nbsp;&nbsp;&nbsp;&nbsp;:type&nbsp;tags:&nbsp;List[class:'ai_api_client_sdk.models.metric_tag.MetricTag'],&nbsp;optional<br>
76
+ &nbsp;&nbsp;&nbsp;&nbsp;:param&nbsp;custom_info:&nbsp;List&nbsp;of&nbsp;custom&nbsp;info&nbsp;related&nbsp;to&nbsp;the&nbsp;execution,&nbsp;defaults&nbsp;to&nbsp;None<br>
77
+ &nbsp;&nbsp;&nbsp;&nbsp;:type&nbsp;custom_info:&nbsp;List[class:`ai_api_client_sdk.models.metric_custom_info.MetricCustomInfo`],&nbsp;optional<br>
78
+ &nbsp;&nbsp;&nbsp;&nbsp;:param&nbsp;resource_group:&nbsp;Resource&nbsp;Group&nbsp;which&nbsp;the&nbsp;request&nbsp;should&nbsp;be&nbsp;sent&nbsp;on&nbsp;behalf.&nbsp;Either&nbsp;this&nbsp;or&nbsp;a&nbsp;default<br>
79
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;resource&nbsp;group&nbsp;in&nbsp;the&nbsp;:class:`ai_api_client_sdk.ai_api_v2_client.AIAPIV2Client`&nbsp;should&nbsp;be&nbsp;specified,<br>
80
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;defaults&nbsp;to&nbsp;None<br>
81
+ &nbsp;&nbsp;&nbsp;&nbsp;:type&nbsp;resource_group:&nbsp;str<br>
82
+ &nbsp;&nbsp;&nbsp;&nbsp;:raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIInvalidRequestException`&nbsp;if&nbsp;a&nbsp;400&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
83
+ server<br>
84
+ &nbsp;&nbsp;&nbsp;&nbsp;:raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIServerException`&nbsp;if&nbsp;a&nbsp;non-2XX&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
85
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;server</tt></dd></dl>
86
+
87
+ <dl><dt><a name="MetricsCoreClient-set_custom_info"><strong>set_custom_info</strong></a>(self, custom_info: List[ai_api_client_sdk.models.metric_custom_info.MetricCustomInfo], execution_id: str = '', resource_group: str = None) -&gt; None</dt><dd><tt>log&nbsp;custom&nbsp;info&nbsp;against&nbsp;the&nbsp;given&nbsp;execution<br>
88
+ &nbsp;&nbsp;&nbsp;&nbsp;captures&nbsp;consumption&nbsp;semantics&nbsp;for&nbsp;the&nbsp;metrics&nbsp;or&nbsp;complex&nbsp;metric&nbsp;in&nbsp;JSON&nbsp;format.<br>
89
+ &nbsp;<br>
90
+ &nbsp;<br>
91
+ &nbsp;&nbsp;&nbsp;&nbsp;:param&nbsp;custom_info:&nbsp;List&nbsp;of&nbsp;custom&nbsp;info&nbsp;related&nbsp;to&nbsp;the&nbsp;execution<br>
92
+ &nbsp;&nbsp;&nbsp;&nbsp;:type&nbsp;custom_info:&nbsp;List[class:`ai_api_client_sdk.models.metric_custom_info.MetricCustomInfo`],&nbsp;optional<br>
93
+ &nbsp;&nbsp;&nbsp;&nbsp;:param&nbsp;execution_id:&nbsp;ID&nbsp;of&nbsp;the&nbsp;execution,&nbsp;of&nbsp;which&nbsp;the&nbsp;metrics&nbsp;should&nbsp;be&nbsp;modified.<br>
94
+ &nbsp;&nbsp;&nbsp;&nbsp;:type&nbsp;execution_id:&nbsp;str<br>
95
+ &nbsp;&nbsp;&nbsp;&nbsp;:param&nbsp;resource_group:&nbsp;Resource&nbsp;Group&nbsp;which&nbsp;the&nbsp;request&nbsp;should&nbsp;be&nbsp;sent&nbsp;on&nbsp;behalf.&nbsp;Either&nbsp;this&nbsp;or&nbsp;a&nbsp;default<br>
96
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;resource&nbsp;group&nbsp;in&nbsp;the&nbsp;:class:`ai_api_client_sdk.ai_api_v2_client.AIAPIV2Client`&nbsp;should&nbsp;be&nbsp;specified,<br>
97
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;defaults&nbsp;to&nbsp;None<br>
98
+ &nbsp;&nbsp;&nbsp;&nbsp;:type&nbsp;resource_group:&nbsp;str<br>
99
+ &nbsp;&nbsp;&nbsp;&nbsp;:raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIInvalidRequestException`&nbsp;if&nbsp;a&nbsp;400&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
100
+ server<br>
101
+ &nbsp;&nbsp;&nbsp;&nbsp;:raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIServerException`&nbsp;if&nbsp;a&nbsp;non-2XX&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
102
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;server</tt></dd></dl>
103
+
104
+ <dl><dt><a name="MetricsCoreClient-set_tags"><strong>set_tags</strong></a>(self, tags: List[ai_api_client_sdk.models.metric_tag.MetricTag], execution_id: str = '', resource_group: str = None) -&gt; None</dt><dd><tt>log&nbsp;tags&nbsp;against&nbsp;the&nbsp;given&nbsp;execution<br>
105
+ &nbsp;<br>
106
+ &nbsp;&nbsp;&nbsp;&nbsp;:param&nbsp;tags:&nbsp;List&nbsp;of&nbsp;the&nbsp;tags&nbsp;related&nbsp;to&nbsp;the&nbsp;execution,&nbsp;defaults&nbsp;to&nbsp;None<br>
107
+ &nbsp;&nbsp;&nbsp;&nbsp;:type&nbsp;tags:&nbsp;List[class:'ai_api_client_sdk.models.metric_tag.MetricTag']<br>
108
+ &nbsp;&nbsp;&nbsp;&nbsp;:param&nbsp;execution_id:&nbsp;ID&nbsp;of&nbsp;the&nbsp;execution,&nbsp;of&nbsp;which&nbsp;the&nbsp;metrics&nbsp;should&nbsp;be&nbsp;modified.<br>
109
+ &nbsp;&nbsp;&nbsp;&nbsp;:type&nbsp;execution_id:&nbsp;str<br>
110
+ &nbsp;&nbsp;&nbsp;&nbsp;:param&nbsp;resource_group:&nbsp;Resource&nbsp;Group&nbsp;which&nbsp;the&nbsp;request&nbsp;should&nbsp;be&nbsp;sent&nbsp;on&nbsp;behalf.&nbsp;Either&nbsp;this&nbsp;or&nbsp;a&nbsp;default<br>
111
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;resource&nbsp;group&nbsp;in&nbsp;the&nbsp;:class:`ai_api_client_sdk.ai_api_v2_client.AIAPIV2Client`&nbsp;should&nbsp;be&nbsp;specified,<br>
112
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;defaults&nbsp;to&nbsp;None<br>
113
+ &nbsp;&nbsp;&nbsp;&nbsp;:type&nbsp;resource_group:&nbsp;str<br>
114
+ &nbsp;&nbsp;&nbsp;&nbsp;:raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIInvalidRequestException`&nbsp;if&nbsp;a&nbsp;400&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
115
+ server<br>
116
+ &nbsp;&nbsp;&nbsp;&nbsp;:raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIServerException`&nbsp;if&nbsp;a&nbsp;non-2XX&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
117
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;server</tt></dd></dl>
118
+
119
+ <hr>
120
+ Methods inherited from <a href="ai_api_client_sdk.resource_clients.metrics_client.html#MetricsClient">ai_api_client_sdk.resource_clients.metrics_client.MetricsClient</a>:<br>
121
+ <dl><dt><a name="MetricsCoreClient-delete"><strong>delete</strong></a>(self, execution_id: str, resource_group: str = None) -&gt; None</dt><dd><tt>Deletes&nbsp;the&nbsp;metrics.<br>
122
+ &nbsp;<br>
123
+ :param&nbsp;execution_id:&nbsp;ID&nbsp;of&nbsp;the&nbsp;execution,&nbsp;of&nbsp;which&nbsp;the&nbsp;metrics&nbsp;should&nbsp;be&nbsp;deleted.<br>
124
+ :type&nbsp;execution_id:&nbsp;str<br>
125
+ :param&nbsp;resource_group:&nbsp;Resource&nbsp;Group&nbsp;which&nbsp;the&nbsp;request&nbsp;should&nbsp;be&nbsp;sent&nbsp;on&nbsp;behalf.&nbsp;Either&nbsp;this&nbsp;or&nbsp;a&nbsp;default<br>
126
+ &nbsp;&nbsp;&nbsp;&nbsp;resource&nbsp;group&nbsp;in&nbsp;the&nbsp;:class:`ai_api_client_sdk.ai_api_v2_client.AIAPIV2Client`&nbsp;should&nbsp;be&nbsp;specified,<br>
127
+ &nbsp;&nbsp;&nbsp;&nbsp;defaults&nbsp;to&nbsp;None<br>
128
+ :type&nbsp;resource_group:&nbsp;str<br>
129
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIInvalidRequestException`&nbsp;if&nbsp;a&nbsp;400&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
130
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
131
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIAuthorizationException`&nbsp;if&nbsp;a&nbsp;401&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
132
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
133
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPINotFoundException`&nbsp;if&nbsp;a&nbsp;404&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
134
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
135
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIServerException`&nbsp;if&nbsp;a&nbsp;non-2XX&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
136
+ &nbsp;&nbsp;&nbsp;&nbsp;server</tt></dd></dl>
137
+
138
+ <dl><dt><a name="MetricsCoreClient-query"><strong>query</strong></a>(self, filter: str = None, execution_ids: List[str] = None, select: List[str] = None, resource_group: str = None) -&gt; ai_api_client_sdk.models.metrics_query_response.MetricsQueryResponse</dt><dd><tt>Queries&nbsp;the&nbsp;metrics.<br>
139
+ &nbsp;<br>
140
+ :param&nbsp;filter:&nbsp;Deprecated.&nbsp;Use&nbsp;parameter&nbsp;execution_ids&nbsp;instead.&nbsp;A&nbsp;filter&nbsp;expression&nbsp;that&nbsp;filters&nbsp;the&nbsp;metric<br>
141
+ &nbsp;&nbsp;&nbsp;&nbsp;resources&nbsp;using&nbsp;execution&nbsp;IDs.&nbsp;User&nbsp;can&nbsp;only&nbsp;use&nbsp;in,&nbsp;eq&nbsp;operators&nbsp;in&nbsp;filter&nbsp;expression,&nbsp;defaults&nbsp;to&nbsp;None<br>
142
+ :type&nbsp;filter:&nbsp;str,&nbsp;optional<br>
143
+ :param&nbsp;execution_ids:&nbsp;IDs&nbsp;of&nbsp;the&nbsp;executions,&nbsp;of&nbsp;which&nbsp;the&nbsp;metrics&nbsp;should&nbsp;be&nbsp;retrieved,&nbsp;defaults&nbsp;to&nbsp;None<br>
144
+ :type&nbsp;execution_ids:&nbsp;List[str],&nbsp;optional<br>
145
+ :param&nbsp;select:&nbsp;Values&nbsp;of&nbsp;select&nbsp;can&nbsp;be&nbsp;metrics,tags,customInfo&nbsp;or&nbsp;any&nbsp;of&nbsp;the&nbsp;combinations&nbsp;of&nbsp;these&nbsp;or&nbsp;*.&nbsp;<br>
146
+ &nbsp;&nbsp;&nbsp;&nbsp;Can&nbsp;be&nbsp;used&nbsp;to&nbsp;select(project)&nbsp;only&nbsp;the&nbsp;resources&nbsp;specified<br>
147
+ :type&nbsp;select:&nbsp;List[str],&nbsp;optional<br>
148
+ :param&nbsp;resource_group:&nbsp;Resource&nbsp;Group&nbsp;which&nbsp;the&nbsp;request&nbsp;should&nbsp;be&nbsp;sent&nbsp;on&nbsp;behalf.&nbsp;Either&nbsp;this&nbsp;or&nbsp;a&nbsp;default<br>
149
+ &nbsp;&nbsp;&nbsp;&nbsp;resource&nbsp;group&nbsp;in&nbsp;the&nbsp;:class:`ai_api_client_sdk.ai_api_v2_client.AIAPIV2Client`&nbsp;should&nbsp;be&nbsp;specified,<br>
150
+ &nbsp;&nbsp;&nbsp;&nbsp;defaults&nbsp;to&nbsp;None<br>
151
+ :type&nbsp;resource_group:&nbsp;str<br>
152
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIInvalidRequestException`&nbsp;if&nbsp;a&nbsp;400&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
153
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
154
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIAuthorizationException`&nbsp;if&nbsp;a&nbsp;401&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
155
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
156
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIServerException`&nbsp;if&nbsp;a&nbsp;non-2XX&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
157
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
158
+ :return:&nbsp;An&nbsp;object&nbsp;representing&nbsp;the&nbsp;response&nbsp;from&nbsp;the&nbsp;server<br>
159
+ :rtype:&nbsp;class:`ai_api_client_sdk.models.metrics_query_response.MetricsQueryResponse`</tt></dd></dl>
160
+
161
+ <hr>
162
+ Methods inherited from <a href="ai_api_client_sdk.resource_clients.base_client.html#BaseClient">ai_api_client_sdk.resource_clients.base_client.BaseClient</a>:<br>
163
+ <dl><dt><a name="MetricsCoreClient-bulk_modify"><strong>bulk_modify</strong></a>(self, *args, **kwargs)</dt><dd><tt>Modifies&nbsp;multiple&nbsp;instances&nbsp;of&nbsp;the&nbsp;relevant&nbsp;resource.&nbsp;Will&nbsp;be&nbsp;implemented&nbsp;by&nbsp;the&nbsp;respective&nbsp;resource&nbsp;clients</tt></dd></dl>
164
+
165
+ <dl><dt><a name="MetricsCoreClient-count"><strong>count</strong></a>(self, *args, **kwargs)</dt><dd><tt>Counts&nbsp;the&nbsp;relevant&nbsp;resources.&nbsp;Will&nbsp;be&nbsp;implemented&nbsp;by&nbsp;the&nbsp;respective&nbsp;resource&nbsp;clients</tt></dd></dl>
166
+
167
+ <dl><dt><a name="MetricsCoreClient-create"><strong>create</strong></a>(self, *args, **kwargs)</dt><dd><tt>Creates&nbsp;the&nbsp;relevant&nbsp;resource.&nbsp;Will&nbsp;be&nbsp;implemented&nbsp;by&nbsp;the&nbsp;respective&nbsp;resource&nbsp;clients</tt></dd></dl>
168
+
169
+ <dl><dt><a name="MetricsCoreClient-get"><strong>get</strong></a>(self, *args, **kwargs)</dt><dd><tt>Retrieves&nbsp;the&nbsp;relevant&nbsp;resource.&nbsp;Will&nbsp;be&nbsp;implemented&nbsp;by&nbsp;the&nbsp;respective&nbsp;resource&nbsp;clients</tt></dd></dl>
170
+
171
+ <dl><dt><a name="MetricsCoreClient-query_logs"><strong>query_logs</strong></a>(self, *args, **kwargs)</dt><dd><tt>Queries&nbsp;the&nbsp;relevant&nbsp;logs.&nbsp;Will&nbsp;be&nbsp;implemented&nbsp;by&nbsp;the&nbsp;respective&nbsp;resource&nbsp;clients</tt></dd></dl>
172
+
173
+ <hr>
174
+ Data descriptors inherited from <a href="ai_api_client_sdk.resource_clients.base_client.html#BaseClient">ai_api_client_sdk.resource_clients.base_client.BaseClient</a>:<br>
175
+ <dl><dt><strong>__dict__</strong></dt>
176
+ <dd><tt>dictionary&nbsp;for&nbsp;instance&nbsp;variables&nbsp;(if&nbsp;defined)</tt></dd>
177
+ </dl>
178
+ <dl><dt><strong>__weakref__</strong></dt>
179
+ <dd><tt>list&nbsp;of&nbsp;weak&nbsp;references&nbsp;to&nbsp;the&nbsp;object&nbsp;(if&nbsp;defined)</tt></dd>
180
+ </dl>
181
+ </td></tr></table></td></tr></table><p>
182
+ <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
183
+ <tr bgcolor="#55aa55">
184
+ <td colspan=3 valign=bottom>&nbsp;<br>
185
+ <font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td></tr>
186
+
187
+ <tr><td bgcolor="#55aa55"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td><td>&nbsp;</td>
188
+ <td width="100%"><strong>List</strong> = typing.List</td></tr></table>
189
+ </body></html>
@@ -0,0 +1,205 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2
+ <html><head><title>Python: module ai_core_sdk.resource_clients.object_store_secrets_client</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.resource_clients.html"><font color="#ffffff">resource_clients</font></a>.object_store_secrets_client</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/resource_clients/object_store_secrets_client.py">/home/jenkins/agent/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/resource_clients/object_store_secrets_client.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.resource_clients.base_client.html#BaseClient">ai_api_client_sdk.resource_clients.base_client.BaseClient</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.resource_clients.object_store_secrets_client.html#ObjectStoreSecretsClient">ObjectStoreSecretsClient</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="ObjectStoreSecretsClient">class <strong>ObjectStoreSecretsClient</strong></a>(<a href="ai_api_client_sdk.resource_clients.base_client.html#BaseClient">ai_api_client_sdk.resource_clients.base_client.BaseClient</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="#ObjectStoreSecretsClient">ObjectStoreSecretsClient</a>(rest_client:&nbsp;ai_api_client_sdk.helpers.rest_client.RestClient)<br>
36
+ &nbsp;<br>
37
+ <a href="#ObjectStoreSecretsClient">ObjectStoreSecretsClient</a>&nbsp;is&nbsp;a&nbsp;class&nbsp;implemented&nbsp;for&nbsp;interacting&nbsp;with&nbsp;the&nbsp;object&nbsp;store&nbsp;secret&nbsp;related<br>
38
+ endpoints&nbsp;of&nbsp;the&nbsp;server.&nbsp;It&nbsp;implements&nbsp;the&nbsp;base&nbsp;class<br>
39
+ :class:`ai_api_client_sdk.resource_clients.base_client.<a href="ai_api_client_sdk.resource_clients.base_client.html#BaseClient">BaseClient</a>`<br>&nbsp;</tt></td></tr>
40
+ <tr><td>&nbsp;</td>
41
+ <td width="100%"><dl><dt>Method resolution order:</dt>
42
+ <dd><a href="ai_core_sdk.resource_clients.object_store_secrets_client.html#ObjectStoreSecretsClient">ObjectStoreSecretsClient</a></dd>
43
+ <dd><a href="ai_api_client_sdk.resource_clients.base_client.html#BaseClient">ai_api_client_sdk.resource_clients.base_client.BaseClient</a></dd>
44
+ <dd><a href="builtins.html#object">builtins.object</a></dd>
45
+ </dl>
46
+ <hr>
47
+ Methods defined here:<br>
48
+ <dl><dt><a name="ObjectStoreSecretsClient-create"><strong>create</strong></a>(self, name: str, type: str, data: dict, bucket: str = None, endpoint: str = None, region: str = None, path_prefix: str = None, verifyssl: str = None, usehttps: str = None, resource_group: str = None) -&gt; ai_core_sdk.models.base_models.Message</dt><dd><tt>Creates&nbsp;an&nbsp;object&nbsp;store&nbsp;secret.<br>
49
+ &nbsp;<br>
50
+ :param&nbsp;name:&nbsp;name&nbsp;of&nbsp;the&nbsp;object&nbsp;store&nbsp;secret<br>
51
+ :type&nbsp;name:&nbsp;str<br>
52
+ :param&nbsp;type:&nbsp;type&nbsp;of&nbsp;object&nbsp;storage<br>
53
+ :type&nbsp;type:&nbsp;str<br>
54
+ :param&nbsp;data:&nbsp;data&nbsp;to&nbsp;be&nbsp;posted<br>
55
+ :type&nbsp;data:&nbsp;str<br>
56
+ :param&nbsp;bucket:&nbsp;name&nbsp;of&nbsp;the&nbsp;bucket<br>
57
+ :type&nbsp;bucket:&nbsp;str<br>
58
+ :param&nbsp;endpoint:&nbsp;endpoint&nbsp;of&nbsp;object&nbsp;storage<br>
59
+ :type&nbsp;endpoint:&nbsp;str<br>
60
+ :param&nbsp;region:&nbsp;region&nbsp;of&nbsp;object&nbsp;storage<br>
61
+ :type&nbsp;region:&nbsp;str<br>
62
+ :param&nbsp;path_prefix:&nbsp;path&nbsp;prefix<br>
63
+ :type&nbsp;path_prefix:&nbsp;str<br>
64
+ :param&nbsp;verifyssl:&nbsp;verify&nbsp;ssl<br>
65
+ :type&nbsp;verifyssl:&nbsp;str<br>
66
+ :param&nbsp;usehttps:&nbsp;use&nbsp;https<br>
67
+ :type&nbsp;usehttps:&nbsp;str<br>
68
+ :param&nbsp;resource_group:&nbsp;Resource&nbsp;Group&nbsp;which&nbsp;the&nbsp;request&nbsp;should&nbsp;be&nbsp;sent&nbsp;on&nbsp;behalf.&nbsp;Either&nbsp;this&nbsp;or&nbsp;a&nbsp;default<br>
69
+ &nbsp;&nbsp;&nbsp;&nbsp;resource&nbsp;group&nbsp;in&nbsp;the&nbsp;:class:`ai_core_sdk.ai_core_v2_client.AICoreV2Client`&nbsp;should&nbsp;be&nbsp;specified,<br>
70
+ &nbsp;&nbsp;&nbsp;&nbsp;defaults&nbsp;to&nbsp;None<br>
71
+ :type&nbsp;resource_group:&nbsp;str<br>
72
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIInvalidRequestException`&nbsp;if&nbsp;a&nbsp;400&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
73
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
74
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIAuthorizationException`&nbsp;if&nbsp;a&nbsp;401&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
75
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
76
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIForbiddenException`&nbsp;if&nbsp;a&nbsp;403&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
77
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
78
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIConflictException`&nbsp;if&nbsp;a&nbsp;409&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
79
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
80
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIServerException`&nbsp;if&nbsp;a&nbsp;non-2XX&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
81
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
82
+ :return:&nbsp;A&nbsp;list&nbsp;of&nbsp;metadata&nbsp;of&nbsp;available&nbsp;secrets<br>
83
+ :rtype:&nbsp;class:`ai_core_sdk.models.base_models.BasicNameResponse`</tt></dd></dl>
84
+
85
+ <dl><dt><a name="ObjectStoreSecretsClient-delete"><strong>delete</strong></a>(self, name: str, resource_group: str = None) -&gt; ai_api_client_sdk.models.base_models.BasicResponse</dt><dd><tt>Deletes&nbsp;the&nbsp;object&nbsp;store&nbsp;secret.<br>
86
+ &nbsp;<br>
87
+ :param&nbsp;name:&nbsp;name&nbsp;of&nbsp;the&nbsp;object&nbsp;store&nbsp;secret&nbsp;to&nbsp;be&nbsp;deleted<br>
88
+ :type&nbsp;name:&nbsp;str<br>
89
+ :param&nbsp;resource_group:&nbsp;Resource&nbsp;Group&nbsp;which&nbsp;the&nbsp;request&nbsp;should&nbsp;be&nbsp;sent&nbsp;on&nbsp;behalf.&nbsp;Either&nbsp;this&nbsp;or&nbsp;a&nbsp;default<br>
90
+ &nbsp;&nbsp;&nbsp;&nbsp;resource&nbsp;group&nbsp;in&nbsp;the&nbsp;:class:`ai_core_sdk.ai_core_v2_client.AICoreV2Client`&nbsp;should&nbsp;be&nbsp;specified,<br>
91
+ &nbsp;&nbsp;&nbsp;&nbsp;defaults&nbsp;to&nbsp;None<br>
92
+ :type&nbsp;resource_group:&nbsp;str<br>
93
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIInvalidRequestException`&nbsp;if&nbsp;a&nbsp;400&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
94
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
95
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIAuthorizationException`&nbsp;if&nbsp;a&nbsp;401&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
96
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
97
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIForbiddenException`&nbsp;if&nbsp;a&nbsp;403&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
98
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
99
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPINotFoundException`&nbsp;if&nbsp;a&nbsp;404&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
100
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
101
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIServerException`&nbsp;if&nbsp;a&nbsp;non-2XX&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
102
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
103
+ :return:&nbsp;An&nbsp;object&nbsp;representing&nbsp;the&nbsp;response&nbsp;from&nbsp;the&nbsp;server<br>
104
+ :rtype:&nbsp;class:`ai_api_client_sdk.models.base_models.BasicResponse`</tt></dd></dl>
105
+
106
+ <dl><dt><a name="ObjectStoreSecretsClient-get"><strong>get</strong></a>(self, name: str, resource_group: str = None) -&gt; ai_core_sdk.models.object_store_secret.ObjectStoreSecret</dt><dd><tt>Retrieves&nbsp;the&nbsp;object&nbsp;store&nbsp;secret&nbsp;from&nbsp;the&nbsp;server.<br>
107
+ &nbsp;<br>
108
+ :param&nbsp;name:&nbsp;name&nbsp;of&nbsp;the&nbsp;object&nbsp;store&nbsp;secret&nbsp;to&nbsp;be&nbsp;retrieved<br>
109
+ :type&nbsp;name:&nbsp;str<br>
110
+ :param&nbsp;resource_group:&nbsp;Resource&nbsp;Group&nbsp;which&nbsp;the&nbsp;request&nbsp;should&nbsp;be&nbsp;sent&nbsp;on&nbsp;behalf.&nbsp;Either&nbsp;this&nbsp;or&nbsp;a&nbsp;default<br>
111
+ &nbsp;&nbsp;&nbsp;&nbsp;resource&nbsp;group&nbsp;in&nbsp;the&nbsp;:class:`ai_core_sdk.ai_core_v2_client.AICoreV2Client`&nbsp;should&nbsp;be&nbsp;specified,<br>
112
+ &nbsp;&nbsp;&nbsp;&nbsp;defaults&nbsp;to&nbsp;None<br>
113
+ :type&nbsp;resource_group:&nbsp;str<br>
114
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIInvalidRequestException`&nbsp;if&nbsp;a&nbsp;400&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
115
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
116
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIAuthorizationException`&nbsp;if&nbsp;a&nbsp;401&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
117
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
118
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIForbiddenException`&nbsp;if&nbsp;a&nbsp;403&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
119
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
120
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPINotFoundException`&nbsp;if&nbsp;a&nbsp;404&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
121
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
122
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIServerException`&nbsp;if&nbsp;a&nbsp;non-2XX&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
123
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
124
+ :return:&nbsp;The&nbsp;retrieved&nbsp;object&nbsp;store&nbsp;secret<br>
125
+ :rtype:&nbsp;class:`ai_core_sdk.models.object_store_secret.ObjectStoreSecret`</tt></dd></dl>
126
+
127
+ <dl><dt><a name="ObjectStoreSecretsClient-modify"><strong>modify</strong></a>(self, name: str, type: str, data: dict, bucket: str = None, endpoint: str = None, region: str = None, path_prefix: str = None, verifyssl: str = None, usehttps: str = None, resource_group: str = None) -&gt; ai_api_client_sdk.models.base_models.BasicResponse</dt><dd><tt>Modifies&nbsp;the&nbsp;object&nbsp;store&nbsp;secret<br>
128
+ &nbsp;<br>
129
+ :param&nbsp;name:&nbsp;name&nbsp;of&nbsp;the&nbsp;object&nbsp;store&nbsp;secret&nbsp;to&nbsp;be&nbsp;modified<br>
130
+ :type&nbsp;name:&nbsp;str<br>
131
+ :param&nbsp;type:&nbsp;type&nbsp;of&nbsp;object&nbsp;storage<br>
132
+ :type&nbsp;type:&nbsp;str<br>
133
+ :param&nbsp;data:&nbsp;data&nbsp;to&nbsp;be&nbsp;posted<br>
134
+ :type&nbsp;data:&nbsp;str<br>
135
+ :param&nbsp;bucket:&nbsp;name&nbsp;of&nbsp;the&nbsp;bucket<br>
136
+ :type&nbsp;bucket:&nbsp;str<br>
137
+ :param&nbsp;endpoint:&nbsp;endpoint&nbsp;of&nbsp;object&nbsp;storage<br>
138
+ :type&nbsp;endpoint:&nbsp;str<br>
139
+ :param&nbsp;region:&nbsp;region&nbsp;of&nbsp;object&nbsp;storage<br>
140
+ :type&nbsp;region:&nbsp;str<br>
141
+ :param&nbsp;path_prefix:&nbsp;path&nbsp;prefix<br>
142
+ :type&nbsp;path_prefix:&nbsp;str<br>
143
+ :param&nbsp;verifyssl:&nbsp;verify&nbsp;ssl<br>
144
+ :type&nbsp;verifyssl:&nbsp;str<br>
145
+ :param&nbsp;usehttps:&nbsp;use&nbsp;https<br>
146
+ :type&nbsp;usehttps:&nbsp;str<br>
147
+ :param&nbsp;resource_group:&nbsp;Resource&nbsp;Group&nbsp;which&nbsp;the&nbsp;request&nbsp;should&nbsp;be&nbsp;sent&nbsp;on&nbsp;behalf.&nbsp;Either&nbsp;this&nbsp;or&nbsp;a&nbsp;default<br>
148
+ &nbsp;&nbsp;&nbsp;&nbsp;resource&nbsp;group&nbsp;in&nbsp;the&nbsp;:class:`ai_core_sdk.ai_core_v2_client.AICoreV2Client`&nbsp;should&nbsp;be&nbsp;specified,<br>
149
+ &nbsp;&nbsp;&nbsp;&nbsp;defaults&nbsp;to&nbsp;None<br>
150
+ :type&nbsp;resource_group:&nbsp;str<br>
151
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIInvalidRequestException`&nbsp;if&nbsp;a&nbsp;400&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
152
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
153
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIAuthorizationException`&nbsp;if&nbsp;a&nbsp;401&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
154
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
155
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIForbiddenException`&nbsp;if&nbsp;a&nbsp;403&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
156
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
157
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPINotFoundException`&nbsp;if&nbsp;a&nbsp;404&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
158
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
159
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIPreconditionFailedException`&nbsp;if&nbsp;a&nbsp;412&nbsp;response&nbsp;is&nbsp;received&nbsp;from<br>
160
+ &nbsp;&nbsp;&nbsp;&nbsp;the&nbsp;server<br>
161
+ :return:&nbsp;An&nbsp;object&nbsp;representing&nbsp;the&nbsp;response&nbsp;from&nbsp;the&nbsp;server<br>
162
+ :rtype:&nbsp;class:`ai_api_client_sdk.models.base_models.BasicResponse`</tt></dd></dl>
163
+
164
+ <dl><dt><a name="ObjectStoreSecretsClient-query"><strong>query</strong></a>(self, top: int = None, skip: int = None, resource_group: str = None) -&gt; ai_core_sdk.models.object_store_secret_query_response.ObjectStoreSecretQueryResponse</dt><dd><tt>Returns&nbsp;the&nbsp;object&nbsp;store&nbsp;secrets.<br>
165
+ &nbsp;<br>
166
+ :param&nbsp;top:&nbsp;Number&nbsp;of&nbsp;object&nbsp;store&nbsp;secrets&nbsp;to&nbsp;be&nbsp;retrieved,&nbsp;defaults&nbsp;to&nbsp;None<br>
167
+ :type&nbsp;top:&nbsp;int,&nbsp;optional<br>
168
+ :param&nbsp;skip:&nbsp;Number&nbsp;of&nbsp;object&nbsp;store&nbsp;secrets&nbsp;to&nbsp;be&nbsp;skipped,&nbsp;from&nbsp;the&nbsp;list&nbsp;of&nbsp;the&nbsp;queried&nbsp;object&nbsp;store<br>
169
+ &nbsp;&nbsp;&nbsp;&nbsp;secrets,&nbsp;defaults&nbsp;to&nbsp;None<br>
170
+ :type&nbsp;skip:&nbsp;int,&nbsp;optional<br>
171
+ :param&nbsp;resource_group:&nbsp;Resource&nbsp;Group&nbsp;which&nbsp;the&nbsp;request&nbsp;should&nbsp;be&nbsp;sent&nbsp;on&nbsp;behalf.&nbsp;Either&nbsp;this&nbsp;or&nbsp;a&nbsp;default<br>
172
+ &nbsp;&nbsp;&nbsp;&nbsp;resource&nbsp;group&nbsp;in&nbsp;the&nbsp;:class:`ai_core_sdk.ai_core_v2_client.AICoreV2Client`&nbsp;should&nbsp;be&nbsp;specified,<br>
173
+ &nbsp;&nbsp;&nbsp;&nbsp;defaults&nbsp;to&nbsp;None<br>
174
+ :type&nbsp;resource_group:&nbsp;str<br>
175
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIInvalidRequestException`&nbsp;if&nbsp;a&nbsp;400&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
176
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
177
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIAuthorizationException`&nbsp;if&nbsp;a&nbsp;401&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
178
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
179
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIForbiddenException`&nbsp;if&nbsp;a&nbsp;403&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
180
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
181
+ :raises:&nbsp;class:`ai_api_client_sdk.exception.AIAPIServerException`&nbsp;if&nbsp;a&nbsp;non-2XX&nbsp;response&nbsp;is&nbsp;received&nbsp;from&nbsp;the<br>
182
+ &nbsp;&nbsp;&nbsp;&nbsp;server<br>
183
+ :return:&nbsp;A&nbsp;list&nbsp;of&nbsp;object&nbsp;store&nbsp;secrets<br>
184
+ :rtype:&nbsp;class:`ai_core_sdk.models.object_store_secret_query_response.ObjectStoreSecretQueryResponse`</tt></dd></dl>
185
+
186
+ <hr>
187
+ Methods inherited from <a href="ai_api_client_sdk.resource_clients.base_client.html#BaseClient">ai_api_client_sdk.resource_clients.base_client.BaseClient</a>:<br>
188
+ <dl><dt><a name="ObjectStoreSecretsClient-__init__"><strong>__init__</strong></a>(self, rest_client: ai_api_client_sdk.helpers.rest_client.RestClient)</dt><dd><tt>Initialize&nbsp;self.&nbsp;&nbsp;See&nbsp;help(type(self))&nbsp;for&nbsp;accurate&nbsp;signature.</tt></dd></dl>
189
+
190
+ <dl><dt><a name="ObjectStoreSecretsClient-bulk_modify"><strong>bulk_modify</strong></a>(self, *args, **kwargs)</dt><dd><tt>Modifies&nbsp;multiple&nbsp;instances&nbsp;of&nbsp;the&nbsp;relevant&nbsp;resource.&nbsp;Will&nbsp;be&nbsp;implemented&nbsp;by&nbsp;the&nbsp;respective&nbsp;resource&nbsp;clients</tt></dd></dl>
191
+
192
+ <dl><dt><a name="ObjectStoreSecretsClient-count"><strong>count</strong></a>(self, *args, **kwargs)</dt><dd><tt>Counts&nbsp;the&nbsp;relevant&nbsp;resources.&nbsp;Will&nbsp;be&nbsp;implemented&nbsp;by&nbsp;the&nbsp;respective&nbsp;resource&nbsp;clients</tt></dd></dl>
193
+
194
+ <dl><dt><a name="ObjectStoreSecretsClient-query_logs"><strong>query_logs</strong></a>(self, *args, **kwargs)</dt><dd><tt>Queries&nbsp;the&nbsp;relevant&nbsp;logs.&nbsp;Will&nbsp;be&nbsp;implemented&nbsp;by&nbsp;the&nbsp;respective&nbsp;resource&nbsp;clients</tt></dd></dl>
195
+
196
+ <hr>
197
+ Data descriptors inherited from <a href="ai_api_client_sdk.resource_clients.base_client.html#BaseClient">ai_api_client_sdk.resource_clients.base_client.BaseClient</a>:<br>
198
+ <dl><dt><strong>__dict__</strong></dt>
199
+ <dd><tt>dictionary&nbsp;for&nbsp;instance&nbsp;variables&nbsp;(if&nbsp;defined)</tt></dd>
200
+ </dl>
201
+ <dl><dt><strong>__weakref__</strong></dt>
202
+ <dd><tt>list&nbsp;of&nbsp;weak&nbsp;references&nbsp;to&nbsp;the&nbsp;object&nbsp;(if&nbsp;defined)</tt></dd>
203
+ </dl>
204
+ </td></tr></table></td></tr></table>
205
+ </body></html>