github.com/databricks/cli@v0.203.0/bundle/internal/tf/schema/resource_mws_vpc_endpoint.go (about)

     1  // Generated from Databricks Terraform provider schema. DO NOT EDIT.
     2  
     3  package schema
     4  
     5  type ResourceMwsVpcEndpointGcpVpcEndpointInfo struct {
     6  	EndpointRegion      string `json:"endpoint_region"`
     7  	ProjectId           string `json:"project_id"`
     8  	PscConnectionId     string `json:"psc_connection_id,omitempty"`
     9  	PscEndpointName     string `json:"psc_endpoint_name"`
    10  	ServiceAttachmentId string `json:"service_attachment_id,omitempty"`
    11  }
    12  
    13  type ResourceMwsVpcEndpoint struct {
    14  	AccountId            string                                    `json:"account_id,omitempty"`
    15  	AwsAccountId         string                                    `json:"aws_account_id,omitempty"`
    16  	AwsEndpointServiceId string                                    `json:"aws_endpoint_service_id,omitempty"`
    17  	AwsVpcEndpointId     string                                    `json:"aws_vpc_endpoint_id,omitempty"`
    18  	Id                   string                                    `json:"id,omitempty"`
    19  	Region               string                                    `json:"region,omitempty"`
    20  	State                string                                    `json:"state,omitempty"`
    21  	UseCase              string                                    `json:"use_case,omitempty"`
    22  	VpcEndpointId        string                                    `json:"vpc_endpoint_id,omitempty"`
    23  	VpcEndpointName      string                                    `json:"vpc_endpoint_name"`
    24  	GcpVpcEndpointInfo   *ResourceMwsVpcEndpointGcpVpcEndpointInfo `json:"gcp_vpc_endpoint_info,omitempty"`
    25  }