Skip to main content

connected_environments_certificates

Creates, updates, deletes, gets or lists a connected_environments_certificates resource.

Overview

Nameconnected_environments_certificates
TypeResource
Idazure.container_apps.connected_environments_certificates

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
locationstringThe geo-location where the resource lives
propertiesobjectCertificate resource specific properties
tagsobjectResource tags.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, connectedEnvironmentName, certificateName
listselectsubscriptionId, resourceGroupName, connectedEnvironmentName
create_or_updateinsertsubscriptionId, resourceGroupName, connectedEnvironmentName, certificateName
updateupdatesubscriptionId, resourceGroupName, connectedEnvironmentName, certificateNamePatches a certificate. Currently only patching of tags is supported
deletedeletesubscriptionId, resourceGroupName, connectedEnvironmentName, certificateName

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.

NameDatatypeDescription
certificateNamestringName of the Certificate.
connectedEnvironmentNamestringName of the Connected Environment.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

OK

SELECT
location,
properties,
tags
FROM azure.container_apps.connected_environments_certificates
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND connectedEnvironmentName = '{{ connectedEnvironmentName }}' -- required
AND certificateName = '{{ certificateName }}' -- required
;

INSERT examples

No description available.

INSERT INTO azure.container_apps.connected_environments_certificates (
data__tags,
data__location,
data__properties,
subscriptionId,
resourceGroupName,
connectedEnvironmentName,
certificateName
)
SELECT
'{{ tags }}',
'{{ location }}',
'{{ properties }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ connectedEnvironmentName }}',
'{{ certificateName }}'
RETURNING
location,
properties,
tags
;

UPDATE examples

Patches a certificate. Currently only patching of tags is supported

UPDATE azure.container_apps.connected_environments_certificates
SET
data__tags = '{{ tags }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND connectedEnvironmentName = '{{ connectedEnvironmentName }}' --required
AND certificateName = '{{ certificateName }}' --required
RETURNING
location,
properties,
tags;

DELETE examples

No description available.

DELETE FROM azure.container_apps.connected_environments_certificates
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND connectedEnvironmentName = '{{ connectedEnvironmentName }}' --required
AND certificateName = '{{ certificateName }}' --required
;