- カテゴリ:
システム関数 (システム制御)
SYSTEM$REVOKE_STAGE_PRIVATELINK_ACCESS¶
現在のアカウントに対する 内部ステージ用のAzureプライベートエンドポイント のMicrosoft Azureプライベートエンドポイントにアクセスする、Snowflakeの認証を取り消します。
構文¶
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内部ステージにアクセスするためのプライベートエンドポイントの構成 をご参照ください。
使用上の注意¶
この関数を実行できるのは、アカウント管理者(つまり、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');