- 基本情報
- 通知
- ライセンス
- トラブルシューティング
- コネクタ ビルダー
- Act! 365
- ActiveCampaign
- Active Directory - プレビュー
- Adobe Acrobat Sign
- Adobe PDF Services
- Amazon Bedrock
- Amazon Connect
- Amazon Polly
- Amazon SES
- Amazon Transcribe
- Amazon Web Services
- Anthropic Claude
- Asana
- AWeber
- Azure AI Document Intelligence
- Azure Maps
- BambooHR
- Box
- Brevo
- Calendly
- Campaign Monitor
- Cisco Webex Teams
- Citrix Hypervisor
- Citrix ShareFile
- Clearbit
- Confluence Cloud
- Constant Contact
- Coupa
- Customer.io
- Datadog
- DeepSeek
- Deputy
- Discord - プレビュー
- DocuSign
- Drip
- Dropbox
- Dropbox Business
- Egnyte
- Eventbrite
- Exchangerates
- Exchange Server - プレビュー
- Expensify
- Facebook
- Freshbooks
- Freshdesk
- Freshsales
- FreshService
- Getresponse
- GitHub
- Gmail
- Google Cloud Platform
- Google ドキュメント
- Google ドライブ
- Google フォーム - プレビュー
- Google Maps
- Google スプレッドシート
- Google Speech-to-Text
- Google Text-to-Speech
- Google ToDo リスト - プレビュー
- Google Vertex
- Google Vision
- Google Workspace
- GoToWebinar
- Greenhouse
- Hootsuite
- HTTP Webhook - プレビュー
- HubSpot CRM
- Hubspot Marketing
- HyperV - プレビュー
- IcertisIcertis
- iContact
- Insightly CRM
- Intercom
- Jina.ai
- Jira
- Keap
- Klaviyo
- LinkedIn
- メール
- Mailchimp
- Mailgun
- Mailjet
- MailerLite
- Marketo
- Microsoft 365
- Microsoft Azure
- Microsoft Azure Active Directory
- Microsoft Azure OpenAI
- Microsoft Dynamics 365 CRM
- Microsoft OneDrive & SharePoint
- Microsoft Outlook 365
- Microsoft Sentiment
- Microsoft Teams
- Microsoft Translator
- Microsoft Vision
- Miro
- NetIQ eDirectory
- Okta
- OpenAI
- OpenAI V1 準拠の LLM
- Oracle Eloqua
- Oracle NetSuite
- PagerDuty
- Paypal
- PDFMonkey
- Perplexity
- Pinecone
- Pipedrive
- QuickBooks Online
- Quip
- Salesforce
- Salesforce Marketing Cloud
- SAP BAPI
- SAP Cloud for Customer
- SAP Concur
- SAP OData
- SendGrid
- ServiceNow
- Shopify
- Slack
- SmartRecruiters
- Smartsheet
- Snowflake
- Snowflake コネクタについて
- Snowflake の認証
- Snowflake イベント
- Stripe
- Sugar Enterprise
- Sugar Professional
- Sugar Sell
- Sugar Serve
- システム センター - プレビュー
- TangoCard
- Todoist
- Trello
- Twilio
- UiPath Data Service - プレビュー
- UiPath GenAI アクティビティ
- X(旧ツイッター)
- Xero
- watsonx.ai
- WhatsApp Business
- WooCommerce
- Workable
- Workday
- Workday REST
- VMware ESXi vSphere
- YouTube
- Zendesk
- Zoho Campaigns
- Zoho Desk
- Zoho Mail
- Zoom
- ZoomInfo

Integration Service ユーザー ガイド
Snowflake の認証
選択した認証の種類に応じて、次のいずれかの資格情報が必要です。
- カスタム認証 (JDBC 認証) の場合:
- データベース ホスト
- ユーザー名
- パスワード
- ウェアハウス
- データベース スキーマ名
- データベース名
- OAuth 2.0 Authorization code:
- クライアント ID
- クライアント シークレット
- データベース ホスト
- ウェアハウス
- データベース スキーマ名
- データベース名
- ロール
- RSA (キー ペア認証およびキー ペア ローテーション)
- データベース ホスト
- ユーザー名
- RSA 秘密キー
- ウェアハウス
- データベース スキーマ名
- データベース名
既知の制限事項:
-
RSA を使用して認証するには、暗号化されていない RSA 秘密キーを使用する必要があります。
-
AWS PrivateLink 経由の接続はサポートされていません。
- Irrespective of the selected authentication method, if your Snowflake instance restricts access by IP, you must configure an allow list for the IPs used by Integration Service. For details, refer to the Configuring the firewall section from the Automation Cloud Admin guide.
To retrieve the credentials from Snowflake, take the following steps:
-
データベース ホストは、Snowflake アプリへの接続に使用した URL で取得できます。
Note: The Database host format may differ depending on your account identifier type. To learn more, refer to the section on Database Host available on this page, as well as the official Snowflake documentation.
For example, for the following URLhttps://app.snowflake.com/east-us-2.azure/za96341/dashboards
, theaccountID
isza96341
and theregion
iseast-us-2.azure
.データベース・ホストを構成するには、accountID.region.snowflakecomputing.com
形式を使用する必要があります。 したがって、前の URL については、構築されるデータベース ホストはza96341.east-us-2.azure.snowflakecomputing.com
です。 -
ログインしたら、左側のメニューで [Data]、[Databases] の順に選択します。
-
Database name: データベースのリストが表示されます。
-
データベース スキーマ名 - データベース スキーマ名のリストを表示するデータベースを選択します。
-
-
ウェアハウスを取得するには、左側のメニューで [Admin] > [Warehouses] に移動します。
To create an OAuth 2.0 client for Snowflake, take the following steps:
- Run the following query to create the OAuth integration.
This query does not show the Client ID. You must run a second query to view the client details. Make sure to include the correct redirect URL in the query: https://cloud.uipath.com/provisioning_/callback.
CREATE SECURITY INTEGRATION my_oauth_integration_uipath TYPE=OAUTH OAUTH_CLIENT= CUSTOM OAUTH_REDIRECT_URI='https://cloud.uipath.com/provisioning_/callback' OAUTH_CLIENT_TYPE='CONFIDENTIAL' OAUTH_ISSUE_REFRESH_TOKENS=true OAUTH_REFRESH_TOKEN_VALIDITY= 86400 ENABLED=true;
CREATE SECURITY INTEGRATION my_oauth_integration_uipath TYPE=OAUTH OAUTH_CLIENT= CUSTOM OAUTH_REDIRECT_URI='https://cloud.uipath.com/provisioning_/callback' OAUTH_CLIENT_TYPE='CONFIDENTIAL' OAUTH_ISSUE_REFRESH_TOKENS=true OAUTH_REFRESH_TOKEN_VALIDITY= 86400 ENABLED=true; - Run the following query to view the client details. Copy the
OAUTH_CLIENT_ID
.DESCRIBE SECURITY INTEGRATION my_oauth_integration_uipath
DESCRIBE SECURITY INTEGRATION my_oauth_integration_uipath - Run the following query to view the client secret. Copy the
OAUTH_CLIENT_SECRET
.This query outputs two items:OAUTH_CLIENT_SECRET
andOAUTH_CLIENT_SECRET_2
. You must useOAUTH_CLIENT_SECRET
.select system$show_oauth_client_secrets('MY_OAUTH_INTEGRATION_UIPATH');
select system$show_oauth_client_secrets('MY_OAUTH_INTEGRATION_UIPATH');
For details, refer to Configure Snowflake OAuth for custom clients.
-
Automation CloudTM で [Integration Service] を選択します。
- [ コネクタ] のリストから [Snowflake] を選択します。 検索バーを使用してコネクタを検索することもできます。
- Select the Connect to Snowflake button and select your preferred authentication method.
- 必要な Snowflake の資格情報を入力します。
-
[接続] を選択します。
-
コネクションが追加されました。
Snowflake administrators can set up custom roles for users, because not everyone is granted administrator roles for security reasons.
Snowflake の正常な認証は、これらの設定に依存します。管理者は、ロールに対して追加の権限をいつでも割り当てることができます。