Skip to main content

slb_mux_instances

Creates, updates, deletes, gets or lists a slb_mux_instances resource.

Overview

Nameslb_mux_instances
TypeResource
Idazure_stack.fabric_admin.slb_mux_instances

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
namestringThe name of the resource
propertiesobjectProperties of a SLB MUX.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, location, slbMuxInstanceReturns the requested software load balancer multiplexer instance.
listselectsubscriptionId, resourceGroupName, location$filterReturns a list of all software load balancer instances at a location.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
locationstringThe name of Azure region.
resourceGroupNamestringName of the resource group.
slbMuxInstancestringName of a SLB MUX instance.
subscriptionIdstringThe ID of the target subscription.
$filterstringOData filter parameter.

SELECT examples

Returns the requested software load balancer multiplexer instance.

SELECT
id,
name,
properties,
type
FROM azure_stack.fabric_admin.slb_mux_instances
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND location = '{{ location }}' -- required
AND slbMuxInstance = '{{ slbMuxInstance }}' -- required
;