- 카테고리:
시스템 함수 (시스템 제어)
SYSTEM$REVOKE_STAGE_PRIVATELINK_ACCESS¶
Snowflake가 현재 계정의 내부 스테이지용 Azure Private Endpoint 를 위한 Microsoft Azure Private Endpoint에 액세스할 수 있는 권한을 취소합니다.
구문¶
Azure
SYSTEM$REVOKE_STAGE_PRIVATELINK_ACCESS( '<private_endpoint_resource_id>' )
인자¶
'private_endpoint_resource_id'The unique identifier for the Azure Private Endpoint.
Snowflake uses this value to access the internal stage through the cloud provider’s internal network and avoid using the public internet.
이 값을 얻는 방법에 대한 지침은 Snowflake 내부 스테이지에 액세스하기 위한 Private Endpoint 구성하기 섹션을 참조하십시오.
사용법 노트¶
계정 관리자(ACCOUNTADMIN 역할이 있는 사용자)만 이 함수를 호출할 수 있습니다.
This function can be used with Snowflake accounts on Azure. This function is not supported for Snowflake accounts on Amazon Web Services and Google Cloud.
예¶
Revoke Snowflake to access the Private Endpoint on Azure:
USE ROLE ACCOUNTADMIN; SELECT SYSTEM$REVOKE_STAGE_PRIVATELINK_ACCESS('/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/privateEndpoints/pe1');