SnowflakePartnerOAuthSecurityIntegration
Examples
Python
snowflake_partner_oauth_security_integration = SnowflakePartnerOAuthSecurityIntegration(
name="some_security_integration",
enabled=True,
oauth_client="LOOKER",
oauth_client_secret="secret123",
oauth_redirect_uri="https://example.com/oauth/callback",
oauth_issue_refresh_tokens=True,
oauth_refresh_token_validity=7776000,
comment="Integration for Looker OAuth"
)YAML
security_integrations:
- name: some_security_integration
enabled: true
oauth_client: LOOKER
oauth_client_secret: secret123
oauth_redirect_uri: https://example.com/oauth/callback
oauth_issue_refresh_tokens: true
oauth_refresh_token_validity: 7776000
comment: Integration for Looker OAuthFields
Last updated