published on Wednesday, Jul 8, 2026 by Pulumi
published on Wednesday, Jul 8, 2026 by Pulumi
Caution: Preview Feature This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to
previewFeaturesEnabledfield in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.
Resource used to manage API integration External MCP Dynamic Client Registration objects. For more information, check api integration documentation.
Example Usage
Note Instead of using fully_qualified_name, you can reference objects managed outside Terraform by constructing a correct ID, consult identifiers guide.
import * as pulumi from "@pulumi/pulumi";
import * as snowflake from "@pulumi/snowflake";
// basic resource
const basic = new snowflake.ApiIntegrationExternalMcpDynamicClient("basic", {
name: "external_mcp_dynamic_client_integration",
oauthResourceUrl: "https://mcp-server.example.com",
apiAllowedPrefixes: ["https://mcp-server.example.com/"],
enabled: true,
});
// complete resource
const complete = new snowflake.ApiIntegrationExternalMcpDynamicClient("complete", {
name: "external_mcp_dynamic_client_integration_complete",
oauthResourceUrl: "https://mcp-server.example.com",
apiAllowedPrefixes: ["https://mcp-server.example.com/"],
apiBlockedPrefixes: ["https://mcp-server.example.com/blocked/"],
enabled: true,
comment: "Example External MCP Dynamic Client Registration integration",
});
import pulumi
import pulumi_snowflake as snowflake
# basic resource
basic = snowflake.ApiIntegrationExternalMcpDynamicClient("basic",
name="external_mcp_dynamic_client_integration",
oauth_resource_url="https://mcp-server.example.com",
api_allowed_prefixes=["https://mcp-server.example.com/"],
enabled=True)
# complete resource
complete = snowflake.ApiIntegrationExternalMcpDynamicClient("complete",
name="external_mcp_dynamic_client_integration_complete",
oauth_resource_url="https://mcp-server.example.com",
api_allowed_prefixes=["https://mcp-server.example.com/"],
api_blocked_prefixes=["https://mcp-server.example.com/blocked/"],
enabled=True,
comment="Example External MCP Dynamic Client Registration integration")
package main
import (
"github.com/pulumi/pulumi-snowflake/sdk/v2/go/snowflake"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// basic resource
_, err := snowflake.NewApiIntegrationExternalMcpDynamicClient(ctx, "basic", &snowflake.ApiIntegrationExternalMcpDynamicClientArgs{
Name: pulumi.String("external_mcp_dynamic_client_integration"),
OauthResourceUrl: pulumi.String("https://mcp-server.example.com"),
ApiAllowedPrefixes: pulumi.StringArray{
pulumi.String("https://mcp-server.example.com/"),
},
Enabled: pulumi.Bool(true),
})
if err != nil {
return err
}
// complete resource
_, err = snowflake.NewApiIntegrationExternalMcpDynamicClient(ctx, "complete", &snowflake.ApiIntegrationExternalMcpDynamicClientArgs{
Name: pulumi.String("external_mcp_dynamic_client_integration_complete"),
OauthResourceUrl: pulumi.String("https://mcp-server.example.com"),
ApiAllowedPrefixes: pulumi.StringArray{
pulumi.String("https://mcp-server.example.com/"),
},
ApiBlockedPrefixes: pulumi.StringArray{
pulumi.String("https://mcp-server.example.com/blocked/"),
},
Enabled: pulumi.Bool(true),
Comment: pulumi.String("Example External MCP Dynamic Client Registration integration"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Snowflake = Pulumi.Snowflake;
return await Deployment.RunAsync(() =>
{
// basic resource
var basic = new Snowflake.ApiIntegrationExternalMcpDynamicClient("basic", new()
{
Name = "external_mcp_dynamic_client_integration",
OauthResourceUrl = "https://mcp-server.example.com",
ApiAllowedPrefixes = new[]
{
"https://mcp-server.example.com/",
},
Enabled = true,
});
// complete resource
var complete = new Snowflake.ApiIntegrationExternalMcpDynamicClient("complete", new()
{
Name = "external_mcp_dynamic_client_integration_complete",
OauthResourceUrl = "https://mcp-server.example.com",
ApiAllowedPrefixes = new[]
{
"https://mcp-server.example.com/",
},
ApiBlockedPrefixes = new[]
{
"https://mcp-server.example.com/blocked/",
},
Enabled = true,
Comment = "Example External MCP Dynamic Client Registration integration",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.snowflake.ApiIntegrationExternalMcpDynamicClient;
import com.pulumi.snowflake.ApiIntegrationExternalMcpDynamicClientArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
// basic resource
var basic = new ApiIntegrationExternalMcpDynamicClient("basic", ApiIntegrationExternalMcpDynamicClientArgs.builder()
.name("external_mcp_dynamic_client_integration")
.oauthResourceUrl("https://mcp-server.example.com")
.apiAllowedPrefixes("https://mcp-server.example.com/")
.enabled(true)
.build());
// complete resource
var complete = new ApiIntegrationExternalMcpDynamicClient("complete", ApiIntegrationExternalMcpDynamicClientArgs.builder()
.name("external_mcp_dynamic_client_integration_complete")
.oauthResourceUrl("https://mcp-server.example.com")
.apiAllowedPrefixes("https://mcp-server.example.com/")
.apiBlockedPrefixes("https://mcp-server.example.com/blocked/")
.enabled(true)
.comment("Example External MCP Dynamic Client Registration integration")
.build());
}
}
resources:
# basic resource
basic:
type: snowflake:ApiIntegrationExternalMcpDynamicClient
properties:
name: external_mcp_dynamic_client_integration
oauthResourceUrl: https://mcp-server.example.com
apiAllowedPrefixes:
- https://mcp-server.example.com/
enabled: true
# complete resource
complete:
type: snowflake:ApiIntegrationExternalMcpDynamicClient
properties:
name: external_mcp_dynamic_client_integration_complete
oauthResourceUrl: https://mcp-server.example.com
apiAllowedPrefixes:
- https://mcp-server.example.com/
apiBlockedPrefixes:
- https://mcp-server.example.com/blocked/
enabled: true
comment: Example External MCP Dynamic Client Registration integration
pulumi {
required_providers {
snowflake = {
source = "pulumi/snowflake"
}
}
}
# basic resource
resource "snowflake_apiintegrationexternalmcpdynamicclient" "basic" {
name = "external_mcp_dynamic_client_integration"
oauth_resource_url = "https://mcp-server.example.com"
api_allowed_prefixes = ["https://mcp-server.example.com/"]
enabled = true
}
# complete resource
resource "snowflake_apiintegrationexternalmcpdynamicclient" "complete" {
name = "external_mcp_dynamic_client_integration_complete"
oauth_resource_url = "https://mcp-server.example.com"
api_allowed_prefixes = ["https://mcp-server.example.com/"]
api_blocked_prefixes = ["https://mcp-server.example.com/blocked/"]
enabled = true
comment = "Example External MCP Dynamic Client Registration integration"
}
Note If a field has a default value, it is shown next to the type in the schema.
Create ApiIntegrationExternalMcpDynamicClient Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ApiIntegrationExternalMcpDynamicClient(name: string, args: ApiIntegrationExternalMcpDynamicClientArgs, opts?: CustomResourceOptions);@overload
def ApiIntegrationExternalMcpDynamicClient(resource_name: str,
args: ApiIntegrationExternalMcpDynamicClientArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ApiIntegrationExternalMcpDynamicClient(resource_name: str,
opts: Optional[ResourceOptions] = None,
api_allowed_prefixes: Optional[Sequence[str]] = None,
enabled: Optional[bool] = None,
oauth_resource_url: Optional[str] = None,
api_blocked_prefixes: Optional[Sequence[str]] = None,
comment: Optional[str] = None,
name: Optional[str] = None)func NewApiIntegrationExternalMcpDynamicClient(ctx *Context, name string, args ApiIntegrationExternalMcpDynamicClientArgs, opts ...ResourceOption) (*ApiIntegrationExternalMcpDynamicClient, error)public ApiIntegrationExternalMcpDynamicClient(string name, ApiIntegrationExternalMcpDynamicClientArgs args, CustomResourceOptions? opts = null)
public ApiIntegrationExternalMcpDynamicClient(String name, ApiIntegrationExternalMcpDynamicClientArgs args)
public ApiIntegrationExternalMcpDynamicClient(String name, ApiIntegrationExternalMcpDynamicClientArgs args, CustomResourceOptions options)
type: snowflake:ApiIntegrationExternalMcpDynamicClient
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "snowflake_apiintegrationexternalmcpdynamicclient" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ApiIntegrationExternalMcpDynamicClientArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ApiIntegrationExternalMcpDynamicClientArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ApiIntegrationExternalMcpDynamicClientArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ApiIntegrationExternalMcpDynamicClientArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ApiIntegrationExternalMcpDynamicClientArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var apiIntegrationExternalMcpDynamicClientResource = new Snowflake.ApiIntegrationExternalMcpDynamicClient("apiIntegrationExternalMcpDynamicClientResource", new()
{
ApiAllowedPrefixes = new[]
{
"string",
},
Enabled = false,
OauthResourceUrl = "string",
ApiBlockedPrefixes = new[]
{
"string",
},
Comment = "string",
Name = "string",
});
example, err := snowflake.NewApiIntegrationExternalMcpDynamicClient(ctx, "apiIntegrationExternalMcpDynamicClientResource", &snowflake.ApiIntegrationExternalMcpDynamicClientArgs{
ApiAllowedPrefixes: pulumi.StringArray{
pulumi.String("string"),
},
Enabled: pulumi.Bool(false),
OauthResourceUrl: pulumi.String("string"),
ApiBlockedPrefixes: pulumi.StringArray{
pulumi.String("string"),
},
Comment: pulumi.String("string"),
Name: pulumi.String("string"),
})
resource "snowflake_apiintegrationexternalmcpdynamicclient" "apiIntegrationExternalMcpDynamicClientResource" {
api_allowed_prefixes = ["string"]
enabled = false
oauth_resource_url = "string"
api_blocked_prefixes = ["string"]
comment = "string"
name = "string"
}
var apiIntegrationExternalMcpDynamicClientResource = new ApiIntegrationExternalMcpDynamicClient("apiIntegrationExternalMcpDynamicClientResource", ApiIntegrationExternalMcpDynamicClientArgs.builder()
.apiAllowedPrefixes("string")
.enabled(false)
.oauthResourceUrl("string")
.apiBlockedPrefixes("string")
.comment("string")
.name("string")
.build());
api_integration_external_mcp_dynamic_client_resource = snowflake.ApiIntegrationExternalMcpDynamicClient("apiIntegrationExternalMcpDynamicClientResource",
api_allowed_prefixes=["string"],
enabled=False,
oauth_resource_url="string",
api_blocked_prefixes=["string"],
comment="string",
name="string")
const apiIntegrationExternalMcpDynamicClientResource = new snowflake.ApiIntegrationExternalMcpDynamicClient("apiIntegrationExternalMcpDynamicClientResource", {
apiAllowedPrefixes: ["string"],
enabled: false,
oauthResourceUrl: "string",
apiBlockedPrefixes: ["string"],
comment: "string",
name: "string",
});
type: snowflake:ApiIntegrationExternalMcpDynamicClient
properties:
apiAllowedPrefixes:
- string
apiBlockedPrefixes:
- string
comment: string
enabled: false
name: string
oauthResourceUrl: string
ApiIntegrationExternalMcpDynamicClient Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ApiIntegrationExternalMcpDynamicClient resource accepts the following input properties:
- Api
Allowed List<string>Prefixes - Explicitly limits external functions that use the integration to reference one or more HTTPS proxy service and remote service endpoints and resources.
- Enabled bool
- Specifies whether this API integration is enabled or disabled.
- Oauth
Resource stringUrl - The URL of the OAuth2 protected resource server. This URL is used by Snowflake to discover OAuth2 provider endpoints via RFC 8414 server metadata.
- Api
Blocked List<string>Prefixes - Lists the endpoints and resources in the HTTPS proxy service that are not allowed to be called from Snowflake.
- Comment string
- Specifies a comment for the integration.
- Name string
- Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,".
- Api
Allowed []stringPrefixes - Explicitly limits external functions that use the integration to reference one or more HTTPS proxy service and remote service endpoints and resources.
- Enabled bool
- Specifies whether this API integration is enabled or disabled.
- Oauth
Resource stringUrl - The URL of the OAuth2 protected resource server. This URL is used by Snowflake to discover OAuth2 provider endpoints via RFC 8414 server metadata.
- Api
Blocked []stringPrefixes - Lists the endpoints and resources in the HTTPS proxy service that are not allowed to be called from Snowflake.
- Comment string
- Specifies a comment for the integration.
- Name string
- Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,".
- api_
allowed_ list(string)prefixes - Explicitly limits external functions that use the integration to reference one or more HTTPS proxy service and remote service endpoints and resources.
- enabled bool
- Specifies whether this API integration is enabled or disabled.
- oauth_
resource_ stringurl - The URL of the OAuth2 protected resource server. This URL is used by Snowflake to discover OAuth2 provider endpoints via RFC 8414 server metadata.
- api_
blocked_ list(string)prefixes - Lists the endpoints and resources in the HTTPS proxy service that are not allowed to be called from Snowflake.
- comment string
- Specifies a comment for the integration.
- name string
- Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,".
- api
Allowed List<String>Prefixes - Explicitly limits external functions that use the integration to reference one or more HTTPS proxy service and remote service endpoints and resources.
- enabled Boolean
- Specifies whether this API integration is enabled or disabled.
- oauth
Resource StringUrl - The URL of the OAuth2 protected resource server. This URL is used by Snowflake to discover OAuth2 provider endpoints via RFC 8414 server metadata.
- api
Blocked List<String>Prefixes - Lists the endpoints and resources in the HTTPS proxy service that are not allowed to be called from Snowflake.
- comment String
- Specifies a comment for the integration.
- name String
- Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,".
- api
Allowed string[]Prefixes - Explicitly limits external functions that use the integration to reference one or more HTTPS proxy service and remote service endpoints and resources.
- enabled boolean
- Specifies whether this API integration is enabled or disabled.
- oauth
Resource stringUrl - The URL of the OAuth2 protected resource server. This URL is used by Snowflake to discover OAuth2 provider endpoints via RFC 8414 server metadata.
- api
Blocked string[]Prefixes - Lists the endpoints and resources in the HTTPS proxy service that are not allowed to be called from Snowflake.
- comment string
- Specifies a comment for the integration.
- name string
- Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,".
- api_
allowed_ Sequence[str]prefixes - Explicitly limits external functions that use the integration to reference one or more HTTPS proxy service and remote service endpoints and resources.
- enabled bool
- Specifies whether this API integration is enabled or disabled.
- oauth_
resource_ strurl - The URL of the OAuth2 protected resource server. This URL is used by Snowflake to discover OAuth2 provider endpoints via RFC 8414 server metadata.
- api_
blocked_ Sequence[str]prefixes - Lists the endpoints and resources in the HTTPS proxy service that are not allowed to be called from Snowflake.
- comment str
- Specifies a comment for the integration.
- name str
- Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,".
- api
Allowed List<String>Prefixes - Explicitly limits external functions that use the integration to reference one or more HTTPS proxy service and remote service endpoints and resources.
- enabled Boolean
- Specifies whether this API integration is enabled or disabled.
- oauth
Resource StringUrl - The URL of the OAuth2 protected resource server. This URL is used by Snowflake to discover OAuth2 provider endpoints via RFC 8414 server metadata.
- api
Blocked List<String>Prefixes - Lists the endpoints and resources in the HTTPS proxy service that are not allowed to be called from Snowflake.
- comment String
- Specifies a comment for the integration.
- name String
- Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,".
Outputs
All input properties are implicitly available as output properties. Additionally, the ApiIntegrationExternalMcpDynamicClient resource produces the following output properties:
- Describe
Outputs List<ApiIntegration External Mcp Dynamic Client Describe Output> - Outputs the result of
DESCRIBE API INTEGRATIONfor the given integration. - Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Id string
- The provider-assigned unique ID for this managed resource.
- Show
Outputs List<ApiIntegration External Mcp Dynamic Client Show Output> - Outputs the result of
SHOW API INTEGRATIONSfor the given integration.
- Describe
Outputs []ApiIntegration External Mcp Dynamic Client Describe Output - Outputs the result of
DESCRIBE API INTEGRATIONfor the given integration. - Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Id string
- The provider-assigned unique ID for this managed resource.
- Show
Outputs []ApiIntegration External Mcp Dynamic Client Show Output - Outputs the result of
SHOW API INTEGRATIONSfor the given integration.
- describe_
outputs list(object) - Outputs the result of
DESCRIBE API INTEGRATIONfor the given integration. - fully_
qualified_ stringname - Fully qualified name of the resource. For more information, see object name resolution.
- id string
- The provider-assigned unique ID for this managed resource.
- show_
outputs list(object) - Outputs the result of
SHOW API INTEGRATIONSfor the given integration.
- describe
Outputs List<ApiIntegration External Mcp Dynamic Client Describe Output> - Outputs the result of
DESCRIBE API INTEGRATIONfor the given integration. - fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- id String
- The provider-assigned unique ID for this managed resource.
- show
Outputs List<ApiIntegration External Mcp Dynamic Client Show Output> - Outputs the result of
SHOW API INTEGRATIONSfor the given integration.
- describe
Outputs ApiIntegration External Mcp Dynamic Client Describe Output[] - Outputs the result of
DESCRIBE API INTEGRATIONfor the given integration. - fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- id string
- The provider-assigned unique ID for this managed resource.
- show
Outputs ApiIntegration External Mcp Dynamic Client Show Output[] - Outputs the result of
SHOW API INTEGRATIONSfor the given integration.
- describe_
outputs Sequence[ApiIntegration External Mcp Dynamic Client Describe Output] - Outputs the result of
DESCRIBE API INTEGRATIONfor the given integration. - fully_
qualified_ strname - Fully qualified name of the resource. For more information, see object name resolution.
- id str
- The provider-assigned unique ID for this managed resource.
- show_
outputs Sequence[ApiIntegration External Mcp Dynamic Client Show Output] - Outputs the result of
SHOW API INTEGRATIONSfor the given integration.
- describe
Outputs List<Property Map> - Outputs the result of
DESCRIBE API INTEGRATIONfor the given integration. - fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- id String
- The provider-assigned unique ID for this managed resource.
- show
Outputs List<Property Map> - Outputs the result of
SHOW API INTEGRATIONSfor the given integration.
Look up Existing ApiIntegrationExternalMcpDynamicClient Resource
Get an existing ApiIntegrationExternalMcpDynamicClient resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ApiIntegrationExternalMcpDynamicClientState, opts?: CustomResourceOptions): ApiIntegrationExternalMcpDynamicClient@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
api_allowed_prefixes: Optional[Sequence[str]] = None,
api_blocked_prefixes: Optional[Sequence[str]] = None,
comment: Optional[str] = None,
describe_outputs: Optional[Sequence[ApiIntegrationExternalMcpDynamicClientDescribeOutputArgs]] = None,
enabled: Optional[bool] = None,
fully_qualified_name: Optional[str] = None,
name: Optional[str] = None,
oauth_resource_url: Optional[str] = None,
show_outputs: Optional[Sequence[ApiIntegrationExternalMcpDynamicClientShowOutputArgs]] = None) -> ApiIntegrationExternalMcpDynamicClientfunc GetApiIntegrationExternalMcpDynamicClient(ctx *Context, name string, id IDInput, state *ApiIntegrationExternalMcpDynamicClientState, opts ...ResourceOption) (*ApiIntegrationExternalMcpDynamicClient, error)public static ApiIntegrationExternalMcpDynamicClient Get(string name, Input<string> id, ApiIntegrationExternalMcpDynamicClientState? state, CustomResourceOptions? opts = null)public static ApiIntegrationExternalMcpDynamicClient get(String name, Output<String> id, ApiIntegrationExternalMcpDynamicClientState state, CustomResourceOptions options)resources: _: type: snowflake:ApiIntegrationExternalMcpDynamicClient get: id: ${id}import {
to = snowflake_apiintegrationexternalmcpdynamicclient.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Api
Allowed List<string>Prefixes - Explicitly limits external functions that use the integration to reference one or more HTTPS proxy service and remote service endpoints and resources.
- Api
Blocked List<string>Prefixes - Lists the endpoints and resources in the HTTPS proxy service that are not allowed to be called from Snowflake.
- Comment string
- Specifies a comment for the integration.
- Describe
Outputs List<ApiIntegration External Mcp Dynamic Client Describe Output> - Outputs the result of
DESCRIBE API INTEGRATIONfor the given integration. - Enabled bool
- Specifies whether this API integration is enabled or disabled.
- Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Name string
- Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Oauth
Resource stringUrl - The URL of the OAuth2 protected resource server. This URL is used by Snowflake to discover OAuth2 provider endpoints via RFC 8414 server metadata.
- Show
Outputs List<ApiIntegration External Mcp Dynamic Client Show Output> - Outputs the result of
SHOW API INTEGRATIONSfor the given integration.
- Api
Allowed []stringPrefixes - Explicitly limits external functions that use the integration to reference one or more HTTPS proxy service and remote service endpoints and resources.
- Api
Blocked []stringPrefixes - Lists the endpoints and resources in the HTTPS proxy service that are not allowed to be called from Snowflake.
- Comment string
- Specifies a comment for the integration.
- Describe
Outputs []ApiIntegration External Mcp Dynamic Client Describe Output Args - Outputs the result of
DESCRIBE API INTEGRATIONfor the given integration. - Enabled bool
- Specifies whether this API integration is enabled or disabled.
- Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Name string
- Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Oauth
Resource stringUrl - The URL of the OAuth2 protected resource server. This URL is used by Snowflake to discover OAuth2 provider endpoints via RFC 8414 server metadata.
- Show
Outputs []ApiIntegration External Mcp Dynamic Client Show Output Args - Outputs the result of
SHOW API INTEGRATIONSfor the given integration.
- api_
allowed_ list(string)prefixes - Explicitly limits external functions that use the integration to reference one or more HTTPS proxy service and remote service endpoints and resources.
- api_
blocked_ list(string)prefixes - Lists the endpoints and resources in the HTTPS proxy service that are not allowed to be called from Snowflake.
- comment string
- Specifies a comment for the integration.
- describe_
outputs list(object) - Outputs the result of
DESCRIBE API INTEGRATIONfor the given integration. - enabled bool
- Specifies whether this API integration is enabled or disabled.
- fully_
qualified_ stringname - Fully qualified name of the resource. For more information, see object name resolution.
- name string
- Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - oauth_
resource_ stringurl - The URL of the OAuth2 protected resource server. This URL is used by Snowflake to discover OAuth2 provider endpoints via RFC 8414 server metadata.
- show_
outputs list(object) - Outputs the result of
SHOW API INTEGRATIONSfor the given integration.
- api
Allowed List<String>Prefixes - Explicitly limits external functions that use the integration to reference one or more HTTPS proxy service and remote service endpoints and resources.
- api
Blocked List<String>Prefixes - Lists the endpoints and resources in the HTTPS proxy service that are not allowed to be called from Snowflake.
- comment String
- Specifies a comment for the integration.
- describe
Outputs List<ApiIntegration External Mcp Dynamic Client Describe Output> - Outputs the result of
DESCRIBE API INTEGRATIONfor the given integration. - enabled Boolean
- Specifies whether this API integration is enabled or disabled.
- fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- name String
- Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - oauth
Resource StringUrl - The URL of the OAuth2 protected resource server. This URL is used by Snowflake to discover OAuth2 provider endpoints via RFC 8414 server metadata.
- show
Outputs List<ApiIntegration External Mcp Dynamic Client Show Output> - Outputs the result of
SHOW API INTEGRATIONSfor the given integration.
- api
Allowed string[]Prefixes - Explicitly limits external functions that use the integration to reference one or more HTTPS proxy service and remote service endpoints and resources.
- api
Blocked string[]Prefixes - Lists the endpoints and resources in the HTTPS proxy service that are not allowed to be called from Snowflake.
- comment string
- Specifies a comment for the integration.
- describe
Outputs ApiIntegration External Mcp Dynamic Client Describe Output[] - Outputs the result of
DESCRIBE API INTEGRATIONfor the given integration. - enabled boolean
- Specifies whether this API integration is enabled or disabled.
- fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- name string
- Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - oauth
Resource stringUrl - The URL of the OAuth2 protected resource server. This URL is used by Snowflake to discover OAuth2 provider endpoints via RFC 8414 server metadata.
- show
Outputs ApiIntegration External Mcp Dynamic Client Show Output[] - Outputs the result of
SHOW API INTEGRATIONSfor the given integration.
- api_
allowed_ Sequence[str]prefixes - Explicitly limits external functions that use the integration to reference one or more HTTPS proxy service and remote service endpoints and resources.
- api_
blocked_ Sequence[str]prefixes - Lists the endpoints and resources in the HTTPS proxy service that are not allowed to be called from Snowflake.
- comment str
- Specifies a comment for the integration.
- describe_
outputs Sequence[ApiIntegration External Mcp Dynamic Client Describe Output Args] - Outputs the result of
DESCRIBE API INTEGRATIONfor the given integration. - enabled bool
- Specifies whether this API integration is enabled or disabled.
- fully_
qualified_ strname - Fully qualified name of the resource. For more information, see object name resolution.
- name str
- Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - oauth_
resource_ strurl - The URL of the OAuth2 protected resource server. This URL is used by Snowflake to discover OAuth2 provider endpoints via RFC 8414 server metadata.
- show_
outputs Sequence[ApiIntegration External Mcp Dynamic Client Show Output Args] - Outputs the result of
SHOW API INTEGRATIONSfor the given integration.
- api
Allowed List<String>Prefixes - Explicitly limits external functions that use the integration to reference one or more HTTPS proxy service and remote service endpoints and resources.
- api
Blocked List<String>Prefixes - Lists the endpoints and resources in the HTTPS proxy service that are not allowed to be called from Snowflake.
- comment String
- Specifies a comment for the integration.
- describe
Outputs List<Property Map> - Outputs the result of
DESCRIBE API INTEGRATIONfor the given integration. - enabled Boolean
- Specifies whether this API integration is enabled or disabled.
- fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- name String
- Specifies the identifier (i.e. name) for the integration. This value must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - oauth
Resource StringUrl - The URL of the OAuth2 protected resource server. This URL is used by Snowflake to discover OAuth2 provider endpoints via RFC 8414 server metadata.
- show
Outputs List<Property Map> - Outputs the result of
SHOW API INTEGRATIONSfor the given integration.
Supporting Types
ApiIntegrationExternalMcpDynamicClientDescribeOutput, ApiIntegrationExternalMcpDynamicClientDescribeOutputArgs
- Allowed
Prefixes List<string> - Api
Provider string - Blocked
Prefixes List<string> - Comment string
- Enabled bool
- Oauth
Resource stringUrl - User
Auth stringType
- Allowed
Prefixes []string - Api
Provider string - Blocked
Prefixes []string - Comment string
- Enabled bool
- Oauth
Resource stringUrl - User
Auth stringType
- allowed_
prefixes list(string) - api_
provider string - blocked_
prefixes list(string) - comment string
- enabled bool
- oauth_
resource_ stringurl - user_
auth_ stringtype
- allowed
Prefixes List<String> - api
Provider String - blocked
Prefixes List<String> - comment String
- enabled Boolean
- oauth
Resource StringUrl - user
Auth StringType
- allowed
Prefixes string[] - api
Provider string - blocked
Prefixes string[] - comment string
- enabled boolean
- oauth
Resource stringUrl - user
Auth stringType
- allowed_
prefixes Sequence[str] - api_
provider str - blocked_
prefixes Sequence[str] - comment str
- enabled bool
- oauth_
resource_ strurl - user_
auth_ strtype
- allowed
Prefixes List<String> - api
Provider String - blocked
Prefixes List<String> - comment String
- enabled Boolean
- oauth
Resource StringUrl - user
Auth StringType
ApiIntegrationExternalMcpDynamicClientShowOutput, ApiIntegrationExternalMcpDynamicClientShowOutputArgs
Import
$ pulumi import snowflake:index/apiIntegrationExternalMcpDynamicClient:ApiIntegrationExternalMcpDynamicClient example '"<name>"'
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Snowflake pulumi/pulumi-snowflake
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
snowflakeTerraform Provider.
published on Wednesday, Jul 8, 2026 by Pulumi