Skip to main content

private_endpoint_connections_for_scc_powershell

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

Overview

Nameprivate_endpoint_connections_for_scc_powershell
TypeResource
Idazure_extras.m365_security_and_compliance.private_endpoint_connections_for_scc_powershell

Fields

The following fields are returned by SELECT queries:

The request was successful; the request was well-formed and received properly.

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
namestringThe name of the resource
propertiesobjectResource properties.
systemDataobjectRequired property for system data
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, resourceName, privateEndpointConnectionNameGets the specified private endpoint connection associated with the service.
list_by_serviceselectsubscriptionId, resourceGroupName, resourceNameLists all private endpoint connections for a service.
create_or_updateinsertsubscriptionId, resourceGroupName, resourceName, privateEndpointConnectionNameUpdate the state of the specified private endpoint connection associated with the service.
deletedeletesubscriptionId, resourceGroupName, resourceName, privateEndpointConnectionNameDeletes a private endpoint connection.

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
privateEndpointConnectionNamestringThe name of the private endpoint connection associated with the Azure resource
resourceGroupNamestringThe name of the resource group that contains the service instance.
resourceNamestringThe name of the service instance.
subscriptionIdstringThe subscription identifier.

SELECT examples

Gets the specified private endpoint connection associated with the service.

SELECT
id,
name,
properties,
systemData,
type
FROM azure_extras.m365_security_and_compliance.private_endpoint_connections_for_scc_powershell
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}' -- required
;

INSERT examples

Update the state of the specified private endpoint connection associated with the service.

INSERT INTO azure_extras.m365_security_and_compliance.private_endpoint_connections_for_scc_powershell (
data__properties,
subscriptionId,
resourceGroupName,
resourceName,
privateEndpointConnectionName
)
SELECT
'{{ properties }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ resourceName }}',
'{{ privateEndpointConnectionName }}'
RETURNING
id,
name,
properties,
systemData,
type
;

DELETE examples

Deletes a private endpoint connection.

DELETE FROM azure_extras.m365_security_and_compliance.private_endpoint_connections_for_scc_powershell
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND resourceName = '{{ resourceName }}' --required
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}' --required
;