1. Packages
  2. Packages
  3. Snowflake Provider
  4. API Docs
  5. ApiIntegrationGoogleCloudApiGateway
Viewing docs for Snowflake v2.18.0
published on Wednesday, Jul 8, 2026 by Pulumi
snowflake logo
Viewing docs for Snowflake v2.18.0
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 previewFeaturesEnabled field 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 Google Cloud API Gateway 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.ApiIntegrationGoogleCloudApiGateway("basic", {
        name: "google_cloud_api_gateway_integration",
        googleAudience: "api-gateway-id-123456.apigateway.gcp-project.cloud.goog",
        apiAllowedPrefixes: ["https://gateway-id-123456.uc.gateway.dev/"],
        enabled: true,
    });
    // complete resource
    const complete = new snowflake.ApiIntegrationGoogleCloudApiGateway("complete", {
        name: "google_cloud_api_gateway_integration_complete",
        googleAudience: "api-gateway-id-123456.apigateway.gcp-project.cloud.goog",
        apiAllowedPrefixes: ["https://gateway-id-123456.uc.gateway.dev/"],
        apiBlockedPrefixes: ["https://gateway-id-123456.uc.gateway.dev/blocked/"],
        enabled: true,
        comment: "Example Google Cloud API Gateway integration",
    });
    
    import pulumi
    import pulumi_snowflake as snowflake
    
    # basic resource
    basic = snowflake.ApiIntegrationGoogleCloudApiGateway("basic",
        name="google_cloud_api_gateway_integration",
        google_audience="api-gateway-id-123456.apigateway.gcp-project.cloud.goog",
        api_allowed_prefixes=["https://gateway-id-123456.uc.gateway.dev/"],
        enabled=True)
    # complete resource
    complete = snowflake.ApiIntegrationGoogleCloudApiGateway("complete",
        name="google_cloud_api_gateway_integration_complete",
        google_audience="api-gateway-id-123456.apigateway.gcp-project.cloud.goog",
        api_allowed_prefixes=["https://gateway-id-123456.uc.gateway.dev/"],
        api_blocked_prefixes=["https://gateway-id-123456.uc.gateway.dev/blocked/"],
        enabled=True,
        comment="Example Google Cloud API Gateway 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.NewApiIntegrationGoogleCloudApiGateway(ctx, "basic", &snowflake.ApiIntegrationGoogleCloudApiGatewayArgs{
    			Name:           pulumi.String("google_cloud_api_gateway_integration"),
    			GoogleAudience: pulumi.String("api-gateway-id-123456.apigateway.gcp-project.cloud.goog"),
    			ApiAllowedPrefixes: pulumi.StringArray{
    				pulumi.String("https://gateway-id-123456.uc.gateway.dev/"),
    			},
    			Enabled: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		// complete resource
    		_, err = snowflake.NewApiIntegrationGoogleCloudApiGateway(ctx, "complete", &snowflake.ApiIntegrationGoogleCloudApiGatewayArgs{
    			Name:           pulumi.String("google_cloud_api_gateway_integration_complete"),
    			GoogleAudience: pulumi.String("api-gateway-id-123456.apigateway.gcp-project.cloud.goog"),
    			ApiAllowedPrefixes: pulumi.StringArray{
    				pulumi.String("https://gateway-id-123456.uc.gateway.dev/"),
    			},
    			ApiBlockedPrefixes: pulumi.StringArray{
    				pulumi.String("https://gateway-id-123456.uc.gateway.dev/blocked/"),
    			},
    			Enabled: pulumi.Bool(true),
    			Comment: pulumi.String("Example Google Cloud API Gateway 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.ApiIntegrationGoogleCloudApiGateway("basic", new()
        {
            Name = "google_cloud_api_gateway_integration",
            GoogleAudience = "api-gateway-id-123456.apigateway.gcp-project.cloud.goog",
            ApiAllowedPrefixes = new[]
            {
                "https://gateway-id-123456.uc.gateway.dev/",
            },
            Enabled = true,
        });
    
        // complete resource
        var complete = new Snowflake.ApiIntegrationGoogleCloudApiGateway("complete", new()
        {
            Name = "google_cloud_api_gateway_integration_complete",
            GoogleAudience = "api-gateway-id-123456.apigateway.gcp-project.cloud.goog",
            ApiAllowedPrefixes = new[]
            {
                "https://gateway-id-123456.uc.gateway.dev/",
            },
            ApiBlockedPrefixes = new[]
            {
                "https://gateway-id-123456.uc.gateway.dev/blocked/",
            },
            Enabled = true,
            Comment = "Example Google Cloud API Gateway integration",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.snowflake.ApiIntegrationGoogleCloudApiGateway;
    import com.pulumi.snowflake.ApiIntegrationGoogleCloudApiGatewayArgs;
    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 ApiIntegrationGoogleCloudApiGateway("basic", ApiIntegrationGoogleCloudApiGatewayArgs.builder()
                .name("google_cloud_api_gateway_integration")
                .googleAudience("api-gateway-id-123456.apigateway.gcp-project.cloud.goog")
                .apiAllowedPrefixes("https://gateway-id-123456.uc.gateway.dev/")
                .enabled(true)
                .build());
    
            // complete resource
            var complete = new ApiIntegrationGoogleCloudApiGateway("complete", ApiIntegrationGoogleCloudApiGatewayArgs.builder()
                .name("google_cloud_api_gateway_integration_complete")
                .googleAudience("api-gateway-id-123456.apigateway.gcp-project.cloud.goog")
                .apiAllowedPrefixes("https://gateway-id-123456.uc.gateway.dev/")
                .apiBlockedPrefixes("https://gateway-id-123456.uc.gateway.dev/blocked/")
                .enabled(true)
                .comment("Example Google Cloud API Gateway integration")
                .build());
    
        }
    }
    
    resources:
      # basic resource
      basic:
        type: snowflake:ApiIntegrationGoogleCloudApiGateway
        properties:
          name: google_cloud_api_gateway_integration
          googleAudience: api-gateway-id-123456.apigateway.gcp-project.cloud.goog
          apiAllowedPrefixes:
            - https://gateway-id-123456.uc.gateway.dev/
          enabled: true
      # complete resource
      complete:
        type: snowflake:ApiIntegrationGoogleCloudApiGateway
        properties:
          name: google_cloud_api_gateway_integration_complete
          googleAudience: api-gateway-id-123456.apigateway.gcp-project.cloud.goog
          apiAllowedPrefixes:
            - https://gateway-id-123456.uc.gateway.dev/
          apiBlockedPrefixes:
            - https://gateway-id-123456.uc.gateway.dev/blocked/
          enabled: true
          comment: Example Google Cloud API Gateway integration
    
    pulumi {
      required_providers {
        snowflake = {
          source = "pulumi/snowflake"
        }
      }
    }
    
    # basic resource
    resource "snowflake_apiintegrationgooglecloudapigateway" "basic" {
      name                 = "google_cloud_api_gateway_integration"
      google_audience      = "api-gateway-id-123456.apigateway.gcp-project.cloud.goog"
      api_allowed_prefixes = ["https://gateway-id-123456.uc.gateway.dev/"]
      enabled              = true
    }
    # complete resource
    resource "snowflake_apiintegrationgooglecloudapigateway" "complete" {
      name                 = "google_cloud_api_gateway_integration_complete"
      google_audience      = "api-gateway-id-123456.apigateway.gcp-project.cloud.goog"
      api_allowed_prefixes = ["https://gateway-id-123456.uc.gateway.dev/"]
      api_blocked_prefixes = ["https://gateway-id-123456.uc.gateway.dev/blocked/"]
      enabled              = true
      comment              = "Example Google Cloud API Gateway integration"
    }
    

    Note If a field has a default value, it is shown next to the type in the schema.

    Create ApiIntegrationGoogleCloudApiGateway Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ApiIntegrationGoogleCloudApiGateway(name: string, args: ApiIntegrationGoogleCloudApiGatewayArgs, opts?: CustomResourceOptions);
    @overload
    def ApiIntegrationGoogleCloudApiGateway(resource_name: str,
                                            args: ApiIntegrationGoogleCloudApiGatewayArgs,
                                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def ApiIntegrationGoogleCloudApiGateway(resource_name: str,
                                            opts: Optional[ResourceOptions] = None,
                                            api_allowed_prefixes: Optional[Sequence[str]] = None,
                                            enabled: Optional[bool] = None,
                                            google_audience: Optional[str] = None,
                                            api_blocked_prefixes: Optional[Sequence[str]] = None,
                                            comment: Optional[str] = None,
                                            name: Optional[str] = None)
    func NewApiIntegrationGoogleCloudApiGateway(ctx *Context, name string, args ApiIntegrationGoogleCloudApiGatewayArgs, opts ...ResourceOption) (*ApiIntegrationGoogleCloudApiGateway, error)
    public ApiIntegrationGoogleCloudApiGateway(string name, ApiIntegrationGoogleCloudApiGatewayArgs args, CustomResourceOptions? opts = null)
    public ApiIntegrationGoogleCloudApiGateway(String name, ApiIntegrationGoogleCloudApiGatewayArgs args)
    public ApiIntegrationGoogleCloudApiGateway(String name, ApiIntegrationGoogleCloudApiGatewayArgs args, CustomResourceOptions options)
    
    type: snowflake:ApiIntegrationGoogleCloudApiGateway
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "snowflake_apiintegrationgooglecloudapigateway" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args ApiIntegrationGoogleCloudApiGatewayArgs
    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 ApiIntegrationGoogleCloudApiGatewayArgs
    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 ApiIntegrationGoogleCloudApiGatewayArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ApiIntegrationGoogleCloudApiGatewayArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ApiIntegrationGoogleCloudApiGatewayArgs
    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 apiIntegrationGoogleCloudApiGatewayResource = new Snowflake.ApiIntegrationGoogleCloudApiGateway("apiIntegrationGoogleCloudApiGatewayResource", new()
    {
        ApiAllowedPrefixes = new[]
        {
            "string",
        },
        Enabled = false,
        GoogleAudience = "string",
        ApiBlockedPrefixes = new[]
        {
            "string",
        },
        Comment = "string",
        Name = "string",
    });
    
    example, err := snowflake.NewApiIntegrationGoogleCloudApiGateway(ctx, "apiIntegrationGoogleCloudApiGatewayResource", &snowflake.ApiIntegrationGoogleCloudApiGatewayArgs{
    	ApiAllowedPrefixes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Enabled:        pulumi.Bool(false),
    	GoogleAudience: pulumi.String("string"),
    	ApiBlockedPrefixes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Comment: pulumi.String("string"),
    	Name:    pulumi.String("string"),
    })
    
    resource "snowflake_apiintegrationgooglecloudapigateway" "apiIntegrationGoogleCloudApiGatewayResource" {
      api_allowed_prefixes = ["string"]
      enabled              = false
      google_audience      = "string"
      api_blocked_prefixes = ["string"]
      comment              = "string"
      name                 = "string"
    }
    
    var apiIntegrationGoogleCloudApiGatewayResource = new ApiIntegrationGoogleCloudApiGateway("apiIntegrationGoogleCloudApiGatewayResource", ApiIntegrationGoogleCloudApiGatewayArgs.builder()
        .apiAllowedPrefixes("string")
        .enabled(false)
        .googleAudience("string")
        .apiBlockedPrefixes("string")
        .comment("string")
        .name("string")
        .build());
    
    api_integration_google_cloud_api_gateway_resource = snowflake.ApiIntegrationGoogleCloudApiGateway("apiIntegrationGoogleCloudApiGatewayResource",
        api_allowed_prefixes=["string"],
        enabled=False,
        google_audience="string",
        api_blocked_prefixes=["string"],
        comment="string",
        name="string")
    
    const apiIntegrationGoogleCloudApiGatewayResource = new snowflake.ApiIntegrationGoogleCloudApiGateway("apiIntegrationGoogleCloudApiGatewayResource", {
        apiAllowedPrefixes: ["string"],
        enabled: false,
        googleAudience: "string",
        apiBlockedPrefixes: ["string"],
        comment: "string",
        name: "string",
    });
    
    type: snowflake:ApiIntegrationGoogleCloudApiGateway
    properties:
        apiAllowedPrefixes:
            - string
        apiBlockedPrefixes:
            - string
        comment: string
        enabled: false
        googleAudience: string
        name: string
    

    ApiIntegrationGoogleCloudApiGateway 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 ApiIntegrationGoogleCloudApiGateway resource accepts the following input properties:

    ApiAllowedPrefixes List<string>
    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.
    GoogleAudience string
    Specifies the audience claim used by Snowflake when generating the JWT to authenticate with the Google Cloud API Gateway.
    ApiBlockedPrefixes List<string>
    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: |, ., ".
    ApiAllowedPrefixes []string
    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.
    GoogleAudience string
    Specifies the audience claim used by Snowflake when generating the JWT to authenticate with the Google Cloud API Gateway.
    ApiBlockedPrefixes []string
    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_prefixes list(string)
    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.
    google_audience string
    Specifies the audience claim used by Snowflake when generating the JWT to authenticate with the Google Cloud API Gateway.
    api_blocked_prefixes list(string)
    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: |, ., ".
    apiAllowedPrefixes List<String>
    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.
    googleAudience String
    Specifies the audience claim used by Snowflake when generating the JWT to authenticate with the Google Cloud API Gateway.
    apiBlockedPrefixes List<String>
    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: |, ., ".
    apiAllowedPrefixes string[]
    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.
    googleAudience string
    Specifies the audience claim used by Snowflake when generating the JWT to authenticate with the Google Cloud API Gateway.
    apiBlockedPrefixes string[]
    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_prefixes Sequence[str]
    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.
    google_audience str
    Specifies the audience claim used by Snowflake when generating the JWT to authenticate with the Google Cloud API Gateway.
    api_blocked_prefixes Sequence[str]
    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: |, ., ".
    apiAllowedPrefixes List<String>
    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.
    googleAudience String
    Specifies the audience claim used by Snowflake when generating the JWT to authenticate with the Google Cloud API Gateway.
    apiBlockedPrefixes List<String>
    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 ApiIntegrationGoogleCloudApiGateway resource produces the following output properties:

    DescribeOutputs List<ApiIntegrationGoogleCloudApiGatewayDescribeOutput>
    Outputs the result of DESCRIBE API INTEGRATION for the given integration.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    Id string
    The provider-assigned unique ID for this managed resource.
    ShowOutputs List<ApiIntegrationGoogleCloudApiGatewayShowOutput>
    Outputs the result of SHOW API INTEGRATIONS for the given integration.
    DescribeOutputs []ApiIntegrationGoogleCloudApiGatewayDescribeOutput
    Outputs the result of DESCRIBE API INTEGRATION for the given integration.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    Id string
    The provider-assigned unique ID for this managed resource.
    ShowOutputs []ApiIntegrationGoogleCloudApiGatewayShowOutput
    Outputs the result of SHOW API INTEGRATIONS for the given integration.
    describe_outputs list(object)
    Outputs the result of DESCRIBE API INTEGRATION for the given integration.
    fully_qualified_name string
    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 INTEGRATIONS for the given integration.
    describeOutputs List<ApiIntegrationGoogleCloudApiGatewayDescribeOutput>
    Outputs the result of DESCRIBE API INTEGRATION for the given integration.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    id String
    The provider-assigned unique ID for this managed resource.
    showOutputs List<ApiIntegrationGoogleCloudApiGatewayShowOutput>
    Outputs the result of SHOW API INTEGRATIONS for the given integration.
    describeOutputs ApiIntegrationGoogleCloudApiGatewayDescribeOutput[]
    Outputs the result of DESCRIBE API INTEGRATION for the given integration.
    fullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    id string
    The provider-assigned unique ID for this managed resource.
    showOutputs ApiIntegrationGoogleCloudApiGatewayShowOutput[]
    Outputs the result of SHOW API INTEGRATIONS for the given integration.
    describe_outputs Sequence[ApiIntegrationGoogleCloudApiGatewayDescribeOutput]
    Outputs the result of DESCRIBE API INTEGRATION for the given integration.
    fully_qualified_name str
    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[ApiIntegrationGoogleCloudApiGatewayShowOutput]
    Outputs the result of SHOW API INTEGRATIONS for the given integration.
    describeOutputs List<Property Map>
    Outputs the result of DESCRIBE API INTEGRATION for the given integration.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    id String
    The provider-assigned unique ID for this managed resource.
    showOutputs List<Property Map>
    Outputs the result of SHOW API INTEGRATIONS for the given integration.

    Look up Existing ApiIntegrationGoogleCloudApiGateway Resource

    Get an existing ApiIntegrationGoogleCloudApiGateway 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?: ApiIntegrationGoogleCloudApiGatewayState, opts?: CustomResourceOptions): ApiIntegrationGoogleCloudApiGateway
    @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[ApiIntegrationGoogleCloudApiGatewayDescribeOutputArgs]] = None,
            enabled: Optional[bool] = None,
            fully_qualified_name: Optional[str] = None,
            google_audience: Optional[str] = None,
            name: Optional[str] = None,
            show_outputs: Optional[Sequence[ApiIntegrationGoogleCloudApiGatewayShowOutputArgs]] = None) -> ApiIntegrationGoogleCloudApiGateway
    func GetApiIntegrationGoogleCloudApiGateway(ctx *Context, name string, id IDInput, state *ApiIntegrationGoogleCloudApiGatewayState, opts ...ResourceOption) (*ApiIntegrationGoogleCloudApiGateway, error)
    public static ApiIntegrationGoogleCloudApiGateway Get(string name, Input<string> id, ApiIntegrationGoogleCloudApiGatewayState? state, CustomResourceOptions? opts = null)
    public static ApiIntegrationGoogleCloudApiGateway get(String name, Output<String> id, ApiIntegrationGoogleCloudApiGatewayState state, CustomResourceOptions options)
    resources:  _:    type: snowflake:ApiIntegrationGoogleCloudApiGateway    get:      id: ${id}
    import {
      to = snowflake_apiintegrationgooglecloudapigateway.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.
    The following state arguments are supported:
    ApiAllowedPrefixes List<string>
    Explicitly limits external functions that use the integration to reference one or more HTTPS proxy service and remote service endpoints and resources.
    ApiBlockedPrefixes List<string>
    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.
    DescribeOutputs List<ApiIntegrationGoogleCloudApiGatewayDescribeOutput>
    Outputs the result of DESCRIBE API INTEGRATION for the given integration.
    Enabled bool
    Specifies whether this API integration is enabled or disabled.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    GoogleAudience string
    Specifies the audience claim used by Snowflake when generating the JWT to authenticate with the Google Cloud API Gateway.
    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: |, ., ".
    ShowOutputs List<ApiIntegrationGoogleCloudApiGatewayShowOutput>
    Outputs the result of SHOW API INTEGRATIONS for the given integration.
    ApiAllowedPrefixes []string
    Explicitly limits external functions that use the integration to reference one or more HTTPS proxy service and remote service endpoints and resources.
    ApiBlockedPrefixes []string
    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.
    DescribeOutputs []ApiIntegrationGoogleCloudApiGatewayDescribeOutputArgs
    Outputs the result of DESCRIBE API INTEGRATION for the given integration.
    Enabled bool
    Specifies whether this API integration is enabled or disabled.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    GoogleAudience string
    Specifies the audience claim used by Snowflake when generating the JWT to authenticate with the Google Cloud API Gateway.
    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: |, ., ".
    ShowOutputs []ApiIntegrationGoogleCloudApiGatewayShowOutputArgs
    Outputs the result of SHOW API INTEGRATIONS for the given integration.
    api_allowed_prefixes list(string)
    Explicitly limits external functions that use the integration to reference one or more HTTPS proxy service and remote service endpoints and resources.
    api_blocked_prefixes list(string)
    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 INTEGRATION for the given integration.
    enabled bool
    Specifies whether this API integration is enabled or disabled.
    fully_qualified_name string
    Fully qualified name of the resource. For more information, see object name resolution.
    google_audience string
    Specifies the audience claim used by Snowflake when generating the JWT to authenticate with the Google Cloud API Gateway.
    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: |, ., ".
    show_outputs list(object)
    Outputs the result of SHOW API INTEGRATIONS for the given integration.
    apiAllowedPrefixes List<String>
    Explicitly limits external functions that use the integration to reference one or more HTTPS proxy service and remote service endpoints and resources.
    apiBlockedPrefixes List<String>
    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.
    describeOutputs List<ApiIntegrationGoogleCloudApiGatewayDescribeOutput>
    Outputs the result of DESCRIBE API INTEGRATION for the given integration.
    enabled Boolean
    Specifies whether this API integration is enabled or disabled.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    googleAudience String
    Specifies the audience claim used by Snowflake when generating the JWT to authenticate with the Google Cloud API Gateway.
    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: |, ., ".
    showOutputs List<ApiIntegrationGoogleCloudApiGatewayShowOutput>
    Outputs the result of SHOW API INTEGRATIONS for the given integration.
    apiAllowedPrefixes string[]
    Explicitly limits external functions that use the integration to reference one or more HTTPS proxy service and remote service endpoints and resources.
    apiBlockedPrefixes string[]
    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.
    describeOutputs ApiIntegrationGoogleCloudApiGatewayDescribeOutput[]
    Outputs the result of DESCRIBE API INTEGRATION for the given integration.
    enabled boolean
    Specifies whether this API integration is enabled or disabled.
    fullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    googleAudience string
    Specifies the audience claim used by Snowflake when generating the JWT to authenticate with the Google Cloud API Gateway.
    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: |, ., ".
    showOutputs ApiIntegrationGoogleCloudApiGatewayShowOutput[]
    Outputs the result of SHOW API INTEGRATIONS for the given integration.
    api_allowed_prefixes Sequence[str]
    Explicitly limits external functions that use the integration to reference one or more HTTPS proxy service and remote service endpoints and resources.
    api_blocked_prefixes Sequence[str]
    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[ApiIntegrationGoogleCloudApiGatewayDescribeOutputArgs]
    Outputs the result of DESCRIBE API INTEGRATION for the given integration.
    enabled bool
    Specifies whether this API integration is enabled or disabled.
    fully_qualified_name str
    Fully qualified name of the resource. For more information, see object name resolution.
    google_audience str
    Specifies the audience claim used by Snowflake when generating the JWT to authenticate with the Google Cloud API Gateway.
    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: |, ., ".
    show_outputs Sequence[ApiIntegrationGoogleCloudApiGatewayShowOutputArgs]
    Outputs the result of SHOW API INTEGRATIONS for the given integration.
    apiAllowedPrefixes List<String>
    Explicitly limits external functions that use the integration to reference one or more HTTPS proxy service and remote service endpoints and resources.
    apiBlockedPrefixes List<String>
    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.
    describeOutputs List<Property Map>
    Outputs the result of DESCRIBE API INTEGRATION for the given integration.
    enabled Boolean
    Specifies whether this API integration is enabled or disabled.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    googleAudience String
    Specifies the audience claim used by Snowflake when generating the JWT to authenticate with the Google Cloud API Gateway.
    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: |, ., ".
    showOutputs List<Property Map>
    Outputs the result of SHOW API INTEGRATIONS for the given integration.

    Supporting Types

    ApiIntegrationGoogleCloudApiGatewayDescribeOutput, ApiIntegrationGoogleCloudApiGatewayDescribeOutputArgs

    AllowedPrefixes List<string>
    ApiKey string
    ApiProvider string
    BlockedPrefixes List<string>
    Comment string
    Enabled bool
    GoogleApiServiceAccount string
    GoogleAudience string
    allowedPrefixes List<String>
    apiKey String
    apiProvider String
    blockedPrefixes List<String>
    comment String
    enabled Boolean
    googleApiServiceAccount String
    googleAudience String
    allowedPrefixes List<String>
    apiKey String
    apiProvider String
    blockedPrefixes List<String>
    comment String
    enabled Boolean
    googleApiServiceAccount String
    googleAudience String

    ApiIntegrationGoogleCloudApiGatewayShowOutput, ApiIntegrationGoogleCloudApiGatewayShowOutputArgs

    ApiType string
    Category string
    Comment string
    CreatedOn string
    Enabled bool
    Name string
    ApiType string
    Category string
    Comment string
    CreatedOn string
    Enabled bool
    Name string
    api_type string
    category string
    comment string
    created_on string
    enabled bool
    name string
    apiType String
    category String
    comment String
    createdOn String
    enabled Boolean
    name String
    apiType string
    category string
    comment string
    createdOn string
    enabled boolean
    name string
    apiType String
    category String
    comment String
    createdOn String
    enabled Boolean
    name String

    Import

    $ pulumi import snowflake:index/apiIntegrationGoogleCloudApiGateway:ApiIntegrationGoogleCloudApiGateway 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 snowflake Terraform Provider.
    snowflake logo
    Viewing docs for Snowflake v2.18.0
    published on Wednesday, Jul 8, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial