flux_config_operation_status
Creates, updates, deletes, gets or lists a flux_config_operation_status resource.
Overview
| Name | flux_config_operation_status |
| Type | Resource |
| Id | azure.kubernetes_configuration.flux_config_operation_status |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified ID for the async operation. |
name | string | Name of the async operation. |
error | object | If present, details of the operation error. |
properties | object | Additional information, if available. |
status | string | Operation status. Required. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, cluster_rp, cluster_resource_name, cluster_name, flux_configuration_name, operation_id, subscription_id | Get Async Operation 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 |
|---|---|---|
cluster_name | string | The name of the kubernetes cluster. Required. |
cluster_resource_name | string | The Kubernetes cluster resource name - i.e. managedClusters, connectedClusters, provisionedClusters, appliances. Required. |
cluster_rp | string | The Kubernetes cluster RP - i.e. Microsoft.ContainerService, Microsoft.Kubernetes, Microsoft.HybridContainerService. Required. |
flux_configuration_name | string | Name of the Flux Configuration. Required. |
operation_id | string | Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string |
SELECT examples
- get
Get Async Operation status.
SELECT
id,
name,
error,
properties,
status
FROM azure.kubernetes_configuration.flux_config_operation_status
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND cluster_rp = '{{ cluster_rp }}' -- required
AND cluster_resource_name = '{{ cluster_resource_name }}' -- required
AND cluster_name = '{{ cluster_name }}' -- required
AND flux_configuration_name = '{{ flux_configuration_name }}' -- required
AND operation_id = '{{ operation_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;