container_apps_source_controls
Creates, updates, deletes, gets or lists a container_apps_source_controls resource.
Overview
| Name | container_apps_source_controls |
| Type | Resource |
| Id | azure.app.container_apps_source_controls |
Fields
The following fields are returned by SELECT queries:
- get
| 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. |
branch | string | The branch which will trigger the auto deployment. |
githubActionConfiguration | object | Container App Revision Template with all possible settings and the defaults if user did not provide them. The defaults are populated as they were at the creation time. |
operationState | string | Current provisioning State of the operation. Possible values include: "InProgress", "Succeeded", "Failed", "Canceled". |
repoUrl | string | The repo url which will be integrated to ContainerApp. |
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 | Get a SourceControl of a Container App. Get a SourceControl of a Container App. | ||
list_by_container_app | exec | Get the Container App SourceControls in a given resource group. Get the Container App SourceControls in a given resource group. |
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 |
|---|
SELECT examples
- get
Get a SourceControl of a Container App. Get a SourceControl of a Container App.
SELECT
id,
name,
branch,
githubActionConfiguration,
operationState,
repoUrl,
systemData,
type
FROM azure.app.container_apps_source_controls
;
Lifecycle Methods
- list_by_container_app
Get the Container App SourceControls in a given resource group. Get the Container App SourceControls in a given resource group.
EXEC azure.app.container_apps_source_controls.list_by_container_app
;