container_apps
Creates, updates, deletes, gets or lists a container_apps resource.
Overview
| Name | container_apps |
| Type | Resource |
| Id | azure.app.container_apps |
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. |
configuration | object | Non versioned Container App configuration properties. |
customDomainVerificationId | string | Id used to verify domain name ownership. |
identity | object | managed identities for the Container App to interact with other Azure services without maintaining any secrets or credentials in code. |
latestRevisionFqdn | string | Fully Qualified Domain Name of the latest revision of the Container App. |
latestRevisionName | string | Name of the latest revision of the Container App. |
location | string | Required. The geo-location where the resource lives. |
managedEnvironmentId | string | Resource ID of the Container App's environment. |
outboundIPAddresses | array | Outbound IP Addresses for container app. |
provisioningState | string | Provisioning state of the Container App. Possible values include: "InProgress", "Succeeded", "Failed", "Canceled". |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
tags | object | A set of tags. Resource tags. |
template | object | Container App versioned application definition. |
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 the properties of a Container App. Get the properties of a Container App. | ||
list_by_subscription | exec | Get the Container Apps in a given subscription. Get the Container Apps in a given subscription. | ||
list_by_resource_group | exec | Get the Container Apps in a given resource group. Get the Container Apps in a given resource group. | ||
list_custom_host_name_analysis | exec | Analyzes a custom hostname for a Container App. Analyzes a custom hostname for a Container App. | ||
list_secrets | exec | List secrets for a container app. List secrets for a container app. |
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 the properties of a Container App. Get the properties of a Container App.
SELECT
id,
name,
configuration,
customDomainVerificationId,
identity,
latestRevisionFqdn,
latestRevisionName,
location,
managedEnvironmentId,
outboundIPAddresses,
provisioningState,
systemData,
tags,
template,
type
FROM azure.app.container_apps
;
Lifecycle Methods
- list_by_subscription
- list_by_resource_group
- list_custom_host_name_analysis
- list_secrets
Get the Container Apps in a given subscription. Get the Container Apps in a given subscription.
EXEC azure.app.container_apps.list_by_subscription
;
Get the Container Apps in a given resource group. Get the Container Apps in a given resource group.
EXEC azure.app.container_apps.list_by_resource_group
;
Analyzes a custom hostname for a Container App. Analyzes a custom hostname for a Container App.
EXEC azure.app.container_apps.list_custom_host_name_analysis
;
List secrets for a container app. List secrets for a container app.
EXEC azure.app.container_apps.list_secrets
;