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

GCSStorageIntegration

PreviousFutureGrantNextGenericSecret

Last updated 10 months ago

Manages the integration of Google Cloud Storage (GCS) as an external stage for storing data.

Examples

Python

gcs_storage_integration = GCSStorageIntegration(
    name="some_gcs_storage_integration",
    enabled=True,
    storage_allowed_locations=['gcs://bucket/path/'],
    storage_blocked_locations=['gcs://bucket/blocked_path/']
)

YAML

gcs_storage_integrations:
  - name: some_gcs_storage_integration
    enabled: true
    storage_allowed_locations:
      - 'gcs://bucket/path/'
    storage_blocked_locations:
      - 'gcs://bucket/blocked_path/'

Fields

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

  • enabled (bool, required) - Specifies whether the storage integration is enabled.

  • storage_allowed_locations (list) - A list of allowed GCS locations for data storage.

  • storage_blocked_locations (list) - A list of blocked GCS locations for data storage.

  • comment (string) - An optional comment about the storage integration.

owner (string or ) - The owner role of the storage integration. Defaults to 'ACCOUNTADMIN'.

Snowflake Documentation
Role