# SnowservicesOAuthSecurityIntegration

[Snowflake Documentation](https://docs.snowflake.com/en/sql-reference/sql/create-security-integration)

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

## Examples

### Python

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

### YAML

```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.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://titan-core.gitbook.io/titan-core/resources/snowservices_oauth_security_integration.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
