Skip to content

Commit

Permalink
Changes in docs for release: v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
codeflare-machine-account authored and openshift-ci[bot] committed Oct 20, 2023
1 parent e44dd8e commit 2441f4f
Show file tree
Hide file tree
Showing 8 changed files with 922 additions and 182 deletions.
8 changes: 5 additions & 3 deletions docs/cluster/auth.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ <h1 class="title">Module <code>codeflare_sdk.cluster.auth</code></h1>
import urllib3
from ..utils.kube_api_helpers import _kube_api_error_handling

from typing import Optional

global api_client
api_client = None
global config_path
Expand Down Expand Up @@ -221,7 +223,7 @@ <h1 class="title">Module <code>codeflare_sdk.cluster.auth</code></h1>
return config_path


def api_config_handler() -&gt; str:
def api_config_handler() -&gt; Optional[client.ApiClient]:
&#34;&#34;&#34;
This function is used to load the api client if the user has logged in
&#34;&#34;&#34;
Expand All @@ -239,15 +241,15 @@ <h1 class="title">Module <code>codeflare_sdk.cluster.auth</code></h1>
<h2 class="section-title" id="header-functions">Functions</h2>
<dl>
<dt id="codeflare_sdk.cluster.auth.api_config_handler"><code class="name flex">
<span>def <span class="ident">api_config_handler</span></span>(<span>) ‑> str</span>
<span>def <span class="ident">api_config_handler</span></span>(<span>) ‑> Optional[kubernetes.client.api_client.ApiClient]</span>
</code></dt>
<dd>
<div class="desc"><p>This function is used to load the api client if the user has logged in</p></div>
<details class="source">
<summary>
<span>Expand source code</span>
</summary>
<pre><code class="python">def api_config_handler() -&gt; str:
<pre><code class="python">def api_config_handler() -&gt; Optional[client.ApiClient]:
&#34;&#34;&#34;
This function is used to load the api client if the user has logged in
&#34;&#34;&#34;
Expand Down
Loading

0 comments on commit 2441f4f

Please sign in to comment.