How to use the azure-mgmt-redis.azure.mgmt.redis.models.redis_resource_with_access_key.RedisResourceWithAccessKey function in azure-mgmt-redis

To help you get started, we’ve selected a few azure-mgmt-redis 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-redis / azure / mgmt / redis / models / redis_resource_with_access_key.py View on Github external
def __init__(self, location, sku, tags=None, redis_version=None, redis_configuration=None, enable_non_ssl_port=None, tenant_settings=None, shard_count=None, subnet_id=None, static_ip=None, provisioning_state=None, host_name=None, port=None, ssl_port=None, access_keys=None):
        super(RedisResourceWithAccessKey, self).__init__(location=location, tags=tags)
        self.redis_version = redis_version
        self.sku = sku
        self.redis_configuration = redis_configuration
        self.enable_non_ssl_port = enable_non_ssl_port
        self.tenant_settings = tenant_settings
        self.shard_count = shard_count
        self.subnet_id = subnet_id
        self.static_ip = static_ip
        self.provisioning_state = provisioning_state
        self.host_name = host_name
        self.port = port
        self.ssl_port = ssl_port
        self.access_keys = access_keys