How to use azure-mgmt-hanaonazure - 7 common examples

To help you get started, we’ve selected a few azure-mgmt-hanaonazure examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Azure / azure-sdk-for-python / azure-mgmt-hanaonazure / azure / mgmt / hanaonazure / models / disk.py View on Github external
def __init__(self, **kwargs):
        super(Disk, self).__init__(**kwargs)
        self.name = kwargs.get('name', None)
        self.disk_size_gb = kwargs.get('disk_size_gb', None)
        self.lun = None
github Azure / azure-sdk-for-python / azure-mgmt-hanaonazure / azure / mgmt / hanaonazure / models / error_response.py View on Github external
def __init__(self, **kwargs):
        super(ErrorResponse, self).__init__(**kwargs)
        self.code = kwargs.get('code', None)
        self.message = kwargs.get('message', None)
github Azure / azure-sdk-for-python / azure-mgmt-hanaonazure / azure / mgmt / hanaonazure / models / error_response.py View on Github external
def __init__(self, deserialize, response, *args):

        super(ErrorResponseException, self).__init__(deserialize, response, 'ErrorResponse', *args)
github Azure / azure-sdk-for-python / azure-mgmt-hanaonazure / azure / mgmt / hanaonazure / models / ip_address.py View on Github external
def __init__(self, **kwargs):
        super(IpAddress, self).__init__(**kwargs)
        self.ip_address = None
github Azure / azure-sdk-for-python / azure-mgmt-hanaonazure / azure / mgmt / hanaonazure / models / network_profile.py View on Github external
def __init__(self, **kwargs):
        super(NetworkProfile, self).__init__(**kwargs)
        self.network_interfaces = kwargs.get('network_interfaces', None)
        self.circuit_id = None
github Azure / azure-sdk-for-python / azure-mgmt-hanaonazure / azure / mgmt / hanaonazure / models / operation.py View on Github external
def __init__(self, **kwargs):
        super(Operation, self).__init__(**kwargs)
        self.name = None
        self.display = kwargs.get('display', None)
github Azure / azure-sdk-for-python / azure-mgmt-hanaonazure / azure / mgmt / hanaonazure / models / storage_profile.py View on Github external
def __init__(self, **kwargs):
        super(StorageProfile, self).__init__(**kwargs)
        self.nfs_ip_address = None
        self.os_disks = kwargs.get('os_disks', None)