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
FluxConfiguration Operation Status
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. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , clusterRp , clusterResourceName , clusterName , fluxConfigurationName , operationId | 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 |
---|---|---|
clusterName | string | The name of the kubernetes cluster. |
clusterResourceName | string | The Kubernetes cluster resource name - i.e. managedClusters, connectedClusters, provisionedClusters. |
clusterRp | string | The Kubernetes cluster RP - i.e. Microsoft.ContainerService, Microsoft.Kubernetes, Microsoft.HybridContainerService. |
fluxConfigurationName | string | Name of the Flux Configuration. |
operationId | string | operation Id |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- get
Get Async Operation status
SELECT
id,
name,
error,
properties,
status
FROM azure.kubernetes_configuration.flux_config_operation_status
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND clusterRp = '{{ clusterRp }}' -- required
AND clusterResourceName = '{{ clusterResourceName }}' -- required
AND clusterName = '{{ clusterName }}' -- required
AND fluxConfigurationName = '{{ fluxConfigurationName }}' -- required
AND operationId = '{{ operationId }}' -- required
;