network_security_perimeter_configurations
Creates, updates, deletes, gets or lists a network_security_perimeter_configurations resource.
Overview
| Name | network_security_perimeter_configurations |
| Type | Resource |
| Id | azure.storage.network_security_perimeter_configurations |
Fields
The following fields are returned by SELECT queries:
- get
- list
| 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. |
networkSecurityPerimeter | object | NetworkSecurityPerimeter related information. |
profile | object | Network Security Perimeter profile. |
provisioningIssues | array | List of Provisioning Issues if any. |
provisioningState | string | Provisioning state of Network Security Perimeter configuration propagation. Known values are: "Accepted", "Succeeded", "Failed", "Deleting", and "Canceled". (Accepted, Succeeded, Failed, Deleting, Canceled) |
resourceAssociation | object | Information about resource association. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
| 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. |
networkSecurityPerimeter | object | NetworkSecurityPerimeter related information. |
profile | object | Network Security Perimeter profile. |
provisioningIssues | array | List of Provisioning Issues if any. |
provisioningState | string | Provisioning state of Network Security Perimeter configuration propagation. Known values are: "Accepted", "Succeeded", "Failed", "Deleting", and "Canceled". (Accepted, Succeeded, Failed, Deleting, Canceled) |
resourceAssociation | object | Information about resource association. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, account_name, network_security_perimeter_configuration_name, subscription_id | Gets effective NetworkSecurityPerimeterConfiguration for association. | |
list | select | resource_group_name, account_name, subscription_id | Gets list of effective NetworkSecurityPerimeterConfiguration for storage account. | |
reconcile | exec | resource_group_name, account_name, network_security_perimeter_configuration_name, subscription_id | Refreshes any information about the association. |
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.
| Name | Datatype | Description |
|---|---|---|
account_name | string | The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only. Required. |
network_security_perimeter_configuration_name | string | The name for Network Security Perimeter configuration. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string |
SELECT examples
- get
- list
Gets effective NetworkSecurityPerimeterConfiguration for association.
SELECT
id,
name,
networkSecurityPerimeter,
profile,
provisioningIssues,
provisioningState,
resourceAssociation,
systemData,
type
FROM azure.storage.network_security_perimeter_configurations
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND account_name = '{{ account_name }}' -- required
AND network_security_perimeter_configuration_name = '{{ network_security_perimeter_configuration_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
Gets list of effective NetworkSecurityPerimeterConfiguration for storage account.
SELECT
id,
name,
networkSecurityPerimeter,
profile,
provisioningIssues,
provisioningState,
resourceAssociation,
systemData,
type
FROM azure.storage.network_security_perimeter_configurations
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND account_name = '{{ account_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
Lifecycle Methods
- reconcile
Refreshes any information about the association.
EXEC azure.storage.network_security_perimeter_configurations.reconcile
@resource_group_name='{{ resource_group_name }}' --required,
@account_name='{{ account_name }}' --required,
@network_security_perimeter_configuration_name='{{ network_security_perimeter_configuration_name }}' --required,
@subscription_id='{{ subscription_id }}' --required
;