network_manager_deployment_status
Creates, updates, deletes, gets or lists a network_manager_deployment_status resource.
Overview
| Name | network_manager_deployment_status |
| Type | Resource |
| Id | azure.network.network_manager_deployment_status |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
commitTime | string (date-time) | Commit Time. |
configurationIds | array | List of configuration ids. |
deploymentStatus | string | Deployment Status. Known values are: "NotStarted", "Deploying", "Deployed", and "Failed". (NotStarted, Deploying, Deployed, Failed) |
deploymentType | string | Configuration Deployment Type. Known values are: "SecurityAdmin", "Connectivity", "SecurityUser", and "Routing". (SecurityAdmin, Connectivity, SecurityUser, Routing) |
errorMessage | string | Error Message. |
region | string | Region Name. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | resource_group_name, network_manager_name, subscription_id | $top | Post to List of Network Manager Deployment Status. |
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 |
|---|---|---|
network_manager_name | string | The name of the network manager. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string | |
$top | integer | An optional query parameter which specifies the maximum number of records to be returned by the server. Default value is None. |
SELECT examples
- list
Post to List of Network Manager Deployment Status.
SELECT
commitTime,
configurationIds,
deploymentStatus,
deploymentType,
errorMessage,
region
FROM azure.network.network_manager_deployment_status
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND network_manager_name = '{{ network_manager_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
AND $top = '{{ $top }}'
;