slb_mux_instances
Creates, updates, deletes, gets or lists a slb_mux_instances
resource.
Overview
Name | slb_mux_instances |
Type | Resource |
Id | azure_stack.fabric_admin.slb_mux_instances |
Fields
- vw_slb_mux_instances
- slb_mux_instances
Name | Datatype | Description |
---|---|---|
id | text | URI of the resource. |
name | text | Name of the resource. |
bgp_peers | text | field from the properties object |
configuration_state | text | field from the properties object |
location | text | The region where the resource is located. |
resourceGroupName | text | field from the properties object |
slbMuxInstance | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | List of key-value pairs. |
type | text | Type of resource. |
virtual_server | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | URI of the resource. |
name | string | Name of the resource. |
location | string | The region where the resource is located. |
properties | object | Properties of a SLB MUX. |
tags | object | List of key-value pairs. |
type | string | Type of resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, resourceGroupName, slbMuxInstance, subscriptionId | Returns the requested software load balancer multiplexer instance. |
list | SELECT | location, resourceGroupName, subscriptionId | Returns a list of all software load balancer instances at a location. |
SELECT
examples
Returns a list of all software load balancer instances at a location.
- vw_slb_mux_instances
- slb_mux_instances
SELECT
id,
name,
bgp_peers,
configuration_state,
location,
resourceGroupName,
slbMuxInstance,
subscriptionId,
tags,
type,
virtual_server
FROM azure_stack.fabric_admin.vw_slb_mux_instances
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_stack.fabric_admin.slb_mux_instances
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';