disaster_recovery_configs_authorization_rules
Creates, updates, deletes, gets or lists a disaster_recovery_configs_authorization_rules
resource.
Overview
Name | disaster_recovery_configs_authorization_rules |
Type | Resource |
Id | azure.event_hubs.disaster_recovery_configs_authorization_rules |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | string | The name of the resource |
location | string | The geo-location where the resource lives |
properties | `` | Properties supplied to create or update AuthorizationRule |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs" |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | alias, authorizationRuleName, namespaceName, resourceGroupName, subscriptionId | Gets an AuthorizationRule for a Namespace by rule name. |
list | SELECT | alias, namespaceName, resourceGroupName, subscriptionId | Gets a list of authorization rules for a Namespace. |
SELECT
examples
Gets a list of authorization rules for a Namespace.
SELECT
id,
name,
location,
properties,
systemData,
type
FROM azure.event_hubs.disaster_recovery_configs_authorization_rules
WHERE alias = '{{ alias }}'
AND namespaceName = '{{ namespaceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';