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

     1  // Generated from Databricks Terraform provider schema. DO NOT EDIT.
     2  
     3  package schema
     4  
     5  type ResourceMwsNetworksErrorMessages struct {
     6  	ErrorMessage string `json:"error_message,omitempty"`
     7  	ErrorType    string `json:"error_type,omitempty"`
     8  }
     9  
    10  type ResourceMwsNetworksGcpNetworkInfo struct {
    11  	NetworkProjectId   string `json:"network_project_id"`
    12  	PodIpRangeName     string `json:"pod_ip_range_name"`
    13  	ServiceIpRangeName string `json:"service_ip_range_name"`
    14  	SubnetId           string `json:"subnet_id"`
    15  	SubnetRegion       string `json:"subnet_region"`
    16  	VpcId              string `json:"vpc_id"`
    17  }
    18  
    19  type ResourceMwsNetworksVpcEndpoints struct {
    20  	DataplaneRelay []string `json:"dataplane_relay"`
    21  	RestApi        []string `json:"rest_api"`
    22  }
    23  
    24  type ResourceMwsNetworks struct {
    25  	AccountId        string                             `json:"account_id"`
    26  	CreationTime     int                                `json:"creation_time,omitempty"`
    27  	Id               string                             `json:"id,omitempty"`
    28  	NetworkId        string                             `json:"network_id,omitempty"`
    29  	NetworkName      string                             `json:"network_name"`
    30  	SecurityGroupIds []string                           `json:"security_group_ids,omitempty"`
    31  	SubnetIds        []string                           `json:"subnet_ids,omitempty"`
    32  	VpcId            string                             `json:"vpc_id,omitempty"`
    33  	VpcStatus        string                             `json:"vpc_status,omitempty"`
    34  	WorkspaceId      int                                `json:"workspace_id,omitempty"`
    35  	ErrorMessages    []ResourceMwsNetworksErrorMessages `json:"error_messages,omitempty"`
    36  	GcpNetworkInfo   *ResourceMwsNetworksGcpNetworkInfo `json:"gcp_network_info,omitempty"`
    37  	VpcEndpoints     *ResourceMwsNetworksVpcEndpoints   `json:"vpc_endpoints,omitempty"`
    38  }