Source code for azure.mgmt.machinelearningcompute.models.kubernetes_cluster_properties

# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from msrest.serialization import Model


[docs]class KubernetesClusterProperties(Model): """Kubernetes cluster specific properties. :param service_principal: The Azure Service Principal used by Kubernetes :type service_principal: ~azure.mgmt.machinelearningcompute.models.ServicePrincipalProperties """ _attribute_map = { 'service_principal': {'key': 'servicePrincipal', 'type': 'ServicePrincipalProperties'}, } def __init__(self, service_principal=None): super(KubernetesClusterProperties, self).__init__() self.service_principal = service_principal