File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 52
52
ContainerPlatformClientException ,
53
53
)
54
54
from .gateway import GatewayController
55
+ from .install import InstallController
55
56
from .k8s_cluster import K8sClusterController
56
57
from .k8s_worker import K8sWorkerController
57
58
from .license import LicenseController
Original file line number Diff line number Diff line change 18
18
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
19
19
# OTHER DEALINGS IN THE SOFTWARE.
20
20
21
+ """Python library code for working with install API."""
22
+
21
23
from __future__ import absolute_import
22
24
23
25
24
26
class InstallController :
27
+ """Controller for working with the install API."""
28
+
25
29
def __init__ (self , client ):
26
30
self .client = client
27
31
28
32
def get (self ):
33
+ """Get Install information.
34
+
35
+ Returns
36
+ -------
37
+ [type]
38
+ [description]
39
+ """
29
40
response = self .client ._request (
30
41
url = "/api/v1/install" ,
31
42
http_method = "get" ,
You can’t perform that action at this time.
0 commit comments