Titan Core
  • Overview
  • Getting Started
  • Working With Resources
  • Blueprint
  • GitHub Action
  • Resources
    • APIAuthenticationSecurityIntegration
    • APIIntegration
    • AccountParameter
    • AggregationPolicy
    • Alert
    • AuthenticationPolicy
    • AzureStorageIntegration
    • ComputePool
    • Database
    • DatabaseRole
    • DynamicTable
    • EmailNotificationIntegration
    • EventTable
    • ExternalAccessIntegration
    • ExternalStage
    • FailoverGroup
    • FutureGrant
    • GCSStorageIntegration
    • GenericSecret
    • GlueCatalogIntegration
    • Grant
    • GrantOnAll
    • HybridTable
    • ImageRepository
    • InternalStage
    • JSONFileFormat
    • JavascriptUDF
    • MaterializedView
    • NetworkPolicy
    • NetworkRule
    • OAuthSecret
    • ObjectStoreCatalogIntegration
    • PackagesPolicy
    • ParquetFileFormat
    • PasswordPolicy
    • PasswordSecret
    • Pipe
    • PythonStoredProcedure
    • PythonUDF
    • ReplicationGroup
    • ResourceMonitor
    • Role
    • RoleGrant
    • S3StorageIntegration
    • Schema
    • Sequence
    • Service
    • SessionPolicy
    • Share
    • SnowflakePartnerOAuthSecurityIntegration
    • SnowservicesOAuthSecurityIntegration
    • StageStream
    • Table
    • TableStream
    • Tag
    • Task
    • User
    • View
    • ViewStream
    • Warehouse
Powered by GitBook
On this page
  • Examples
  • Python
  • YAML
  • Fields
  1. Resources

SnowservicesOAuthSecurityIntegration

PreviousSnowflakePartnerOAuthSecurityIntegrationNextStageStream

Last updated 10 months ago

Manages OAuth security integrations for Snowservices in Snowflake, allowing external authentication mechanisms.

Examples

Python

snowservices_oauth = SnowservicesOAuthSecurityIntegration(
    name="some_security_integration",
    enabled=True,
    comment="Integration for external OAuth services."
)

YAML

snowservices_oauth:
  - name: some_security_integration
    enabled: true
    comment: Integration for external OAuth services.

Fields

  • name (string, required) - The name of the security integration.

  • enabled (bool) - Specifies if the security integration is enabled. Defaults to True.

  • comment (string) - A comment about the security integration.

Snowflake Documentation