Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.beyondcorp/v1.AppConnection
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates a new AppConnection in a given project and location.
Create AppConnection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AppConnection(name: string, args: AppConnectionArgs, opts?: CustomResourceOptions);@overload
def AppConnection(resource_name: str,
                  args: AppConnectionArgs,
                  opts: Optional[ResourceOptions] = None)
@overload
def AppConnection(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  application_endpoint: Optional[GoogleCloudBeyondcorpAppconnectionsV1AppConnectionApplicationEndpointArgs] = None,
                  type: Optional[AppConnectionType] = None,
                  app_connection_id: Optional[str] = None,
                  connectors: Optional[Sequence[str]] = None,
                  display_name: Optional[str] = None,
                  gateway: Optional[GoogleCloudBeyondcorpAppconnectionsV1AppConnectionGatewayArgs] = None,
                  labels: Optional[Mapping[str, str]] = None,
                  location: Optional[str] = None,
                  name: Optional[str] = None,
                  project: Optional[str] = None,
                  request_id: Optional[str] = None)func NewAppConnection(ctx *Context, name string, args AppConnectionArgs, opts ...ResourceOption) (*AppConnection, error)public AppConnection(string name, AppConnectionArgs args, CustomResourceOptions? opts = null)
public AppConnection(String name, AppConnectionArgs args)
public AppConnection(String name, AppConnectionArgs args, CustomResourceOptions options)
type: google-native:beyondcorp/v1:AppConnection
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args AppConnectionArgs
- 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 AppConnectionArgs
- 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 AppConnectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AppConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AppConnectionArgs
- 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 appConnectionResource = new GoogleNative.BeyondCorp.V1.AppConnection("appConnectionResource", new()
{
    ApplicationEndpoint = new GoogleNative.BeyondCorp.V1.Inputs.GoogleCloudBeyondcorpAppconnectionsV1AppConnectionApplicationEndpointArgs
    {
        Host = "string",
        Port = 0,
    },
    Type = GoogleNative.BeyondCorp.V1.AppConnectionType.TypeUnspecified,
    AppConnectionId = "string",
    Connectors = new[]
    {
        "string",
    },
    DisplayName = "string",
    Gateway = new GoogleNative.BeyondCorp.V1.Inputs.GoogleCloudBeyondcorpAppconnectionsV1AppConnectionGatewayArgs
    {
        AppGateway = "string",
        Type = GoogleNative.BeyondCorp.V1.GoogleCloudBeyondcorpAppconnectionsV1AppConnectionGatewayType.TypeUnspecified,
    },
    Labels = 
    {
        { "string", "string" },
    },
    Location = "string",
    Name = "string",
    Project = "string",
    RequestId = "string",
});
example, err := beyondcorp.NewAppConnection(ctx, "appConnectionResource", &beyondcorp.AppConnectionArgs{
	ApplicationEndpoint: &beyondcorp.GoogleCloudBeyondcorpAppconnectionsV1AppConnectionApplicationEndpointArgs{
		Host: pulumi.String("string"),
		Port: pulumi.Int(0),
	},
	Type:            beyondcorp.AppConnectionTypeTypeUnspecified,
	AppConnectionId: pulumi.String("string"),
	Connectors: pulumi.StringArray{
		pulumi.String("string"),
	},
	DisplayName: pulumi.String("string"),
	Gateway: &beyondcorp.GoogleCloudBeyondcorpAppconnectionsV1AppConnectionGatewayArgs{
		AppGateway: pulumi.String("string"),
		Type:       beyondcorp.GoogleCloudBeyondcorpAppconnectionsV1AppConnectionGatewayTypeTypeUnspecified,
	},
	Labels: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Location:  pulumi.String("string"),
	Name:      pulumi.String("string"),
	Project:   pulumi.String("string"),
	RequestId: pulumi.String("string"),
})
var appConnectionResource = new AppConnection("appConnectionResource", AppConnectionArgs.builder()
    .applicationEndpoint(GoogleCloudBeyondcorpAppconnectionsV1AppConnectionApplicationEndpointArgs.builder()
        .host("string")
        .port(0)
        .build())
    .type("TYPE_UNSPECIFIED")
    .appConnectionId("string")
    .connectors("string")
    .displayName("string")
    .gateway(GoogleCloudBeyondcorpAppconnectionsV1AppConnectionGatewayArgs.builder()
        .appGateway("string")
        .type("TYPE_UNSPECIFIED")
        .build())
    .labels(Map.of("string", "string"))
    .location("string")
    .name("string")
    .project("string")
    .requestId("string")
    .build());
app_connection_resource = google_native.beyondcorp.v1.AppConnection("appConnectionResource",
    application_endpoint={
        "host": "string",
        "port": 0,
    },
    type=google_native.beyondcorp.v1.AppConnectionType.TYPE_UNSPECIFIED,
    app_connection_id="string",
    connectors=["string"],
    display_name="string",
    gateway={
        "app_gateway": "string",
        "type": google_native.beyondcorp.v1.GoogleCloudBeyondcorpAppconnectionsV1AppConnectionGatewayType.TYPE_UNSPECIFIED,
    },
    labels={
        "string": "string",
    },
    location="string",
    name="string",
    project="string",
    request_id="string")
const appConnectionResource = new google_native.beyondcorp.v1.AppConnection("appConnectionResource", {
    applicationEndpoint: {
        host: "string",
        port: 0,
    },
    type: google_native.beyondcorp.v1.AppConnectionType.TypeUnspecified,
    appConnectionId: "string",
    connectors: ["string"],
    displayName: "string",
    gateway: {
        appGateway: "string",
        type: google_native.beyondcorp.v1.GoogleCloudBeyondcorpAppconnectionsV1AppConnectionGatewayType.TypeUnspecified,
    },
    labels: {
        string: "string",
    },
    location: "string",
    name: "string",
    project: "string",
    requestId: "string",
});
type: google-native:beyondcorp/v1:AppConnection
properties:
    appConnectionId: string
    applicationEndpoint:
        host: string
        port: 0
    connectors:
        - string
    displayName: string
    gateway:
        appGateway: string
        type: TYPE_UNSPECIFIED
    labels:
        string: string
    location: string
    name: string
    project: string
    requestId: string
    type: TYPE_UNSPECIFIED
AppConnection 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 AppConnection resource accepts the following input properties:
- ApplicationEndpoint Pulumi.Google Native. Beyond Corp. V1. Inputs. Google Cloud Beyondcorp Appconnections V1App Connection Application Endpoint 
- Address of the remote application endpoint for the BeyondCorp AppConnection.
- Type
Pulumi.Google Native. Beyond Corp. V1. App Connection Type 
- The type of network connectivity used by the AppConnection.
- AppConnection stringId 
- Optional. User-settable AppConnection resource ID. * Must start with a letter. * Must contain between 4-63 characters from /a-z-/. * Must end with a number or a letter.
- Connectors List<string>
- Optional. List of [google.cloud.beyondcorp.v1main.Connector.name] that are authorised to be associated with this AppConnection.
- DisplayName string
- Optional. An arbitrary user-provided name for the AppConnection. Cannot exceed 64 characters.
- Gateway
Pulumi.Google Native. Beyond Corp. V1. Inputs. Google Cloud Beyondcorp Appconnections V1App Connection Gateway 
- Optional. Gateway used by the AppConnection.
- Labels Dictionary<string, string>
- Optional. Resource labels to represent user provided metadata.
- Location string
- Name string
- Unique resource name of the AppConnection. The name is ignored when creating a AppConnection.
- Project string
- RequestId string
- Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
- ApplicationEndpoint GoogleCloud Beyondcorp Appconnections V1App Connection Application Endpoint Args 
- Address of the remote application endpoint for the BeyondCorp AppConnection.
- Type
AppConnection Type 
- The type of network connectivity used by the AppConnection.
- AppConnection stringId 
- Optional. User-settable AppConnection resource ID. * Must start with a letter. * Must contain between 4-63 characters from /a-z-/. * Must end with a number or a letter.
- Connectors []string
- Optional. List of [google.cloud.beyondcorp.v1main.Connector.name] that are authorised to be associated with this AppConnection.
- DisplayName string
- Optional. An arbitrary user-provided name for the AppConnection. Cannot exceed 64 characters.
- Gateway
GoogleCloud Beyondcorp Appconnections V1App Connection Gateway Args 
- Optional. Gateway used by the AppConnection.
- Labels map[string]string
- Optional. Resource labels to represent user provided metadata.
- Location string
- Name string
- Unique resource name of the AppConnection. The name is ignored when creating a AppConnection.
- Project string
- RequestId string
- Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
- applicationEndpoint GoogleCloud Beyondcorp Appconnections V1App Connection Application Endpoint 
- Address of the remote application endpoint for the BeyondCorp AppConnection.
- type
AppConnection Type 
- The type of network connectivity used by the AppConnection.
- appConnection StringId 
- Optional. User-settable AppConnection resource ID. * Must start with a letter. * Must contain between 4-63 characters from /a-z-/. * Must end with a number or a letter.
- connectors List<String>
- Optional. List of [google.cloud.beyondcorp.v1main.Connector.name] that are authorised to be associated with this AppConnection.
- displayName String
- Optional. An arbitrary user-provided name for the AppConnection. Cannot exceed 64 characters.
- gateway
GoogleCloud Beyondcorp Appconnections V1App Connection Gateway 
- Optional. Gateway used by the AppConnection.
- labels Map<String,String>
- Optional. Resource labels to represent user provided metadata.
- location String
- name String
- Unique resource name of the AppConnection. The name is ignored when creating a AppConnection.
- project String
- requestId String
- Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
- applicationEndpoint GoogleCloud Beyondcorp Appconnections V1App Connection Application Endpoint 
- Address of the remote application endpoint for the BeyondCorp AppConnection.
- type
AppConnection Type 
- The type of network connectivity used by the AppConnection.
- appConnection stringId 
- Optional. User-settable AppConnection resource ID. * Must start with a letter. * Must contain between 4-63 characters from /a-z-/. * Must end with a number or a letter.
- connectors string[]
- Optional. List of [google.cloud.beyondcorp.v1main.Connector.name] that are authorised to be associated with this AppConnection.
- displayName string
- Optional. An arbitrary user-provided name for the AppConnection. Cannot exceed 64 characters.
- gateway
GoogleCloud Beyondcorp Appconnections V1App Connection Gateway 
- Optional. Gateway used by the AppConnection.
- labels {[key: string]: string}
- Optional. Resource labels to represent user provided metadata.
- location string
- name string
- Unique resource name of the AppConnection. The name is ignored when creating a AppConnection.
- project string
- requestId string
- Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
- application_endpoint GoogleCloud Beyondcorp Appconnections V1App Connection Application Endpoint Args 
- Address of the remote application endpoint for the BeyondCorp AppConnection.
- type
AppConnection Type 
- The type of network connectivity used by the AppConnection.
- app_connection_ strid 
- Optional. User-settable AppConnection resource ID. * Must start with a letter. * Must contain between 4-63 characters from /a-z-/. * Must end with a number or a letter.
- connectors Sequence[str]
- Optional. List of [google.cloud.beyondcorp.v1main.Connector.name] that are authorised to be associated with this AppConnection.
- display_name str
- Optional. An arbitrary user-provided name for the AppConnection. Cannot exceed 64 characters.
- gateway
GoogleCloud Beyondcorp Appconnections V1App Connection Gateway Args 
- Optional. Gateway used by the AppConnection.
- labels Mapping[str, str]
- Optional. Resource labels to represent user provided metadata.
- location str
- name str
- Unique resource name of the AppConnection. The name is ignored when creating a AppConnection.
- project str
- request_id str
- Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
- applicationEndpoint Property Map
- Address of the remote application endpoint for the BeyondCorp AppConnection.
- type "TYPE_UNSPECIFIED" | "TCP_PROXY"
- The type of network connectivity used by the AppConnection.
- appConnection StringId 
- Optional. User-settable AppConnection resource ID. * Must start with a letter. * Must contain between 4-63 characters from /a-z-/. * Must end with a number or a letter.
- connectors List<String>
- Optional. List of [google.cloud.beyondcorp.v1main.Connector.name] that are authorised to be associated with this AppConnection.
- displayName String
- Optional. An arbitrary user-provided name for the AppConnection. Cannot exceed 64 characters.
- gateway Property Map
- Optional. Gateway used by the AppConnection.
- labels Map<String>
- Optional. Resource labels to represent user provided metadata.
- location String
- name String
- Unique resource name of the AppConnection. The name is ignored when creating a AppConnection.
- project String
- requestId String
- Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
Outputs
All input properties are implicitly available as output properties. Additionally, the AppConnection resource produces the following output properties:
- CreateTime string
- Timestamp when the resource was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The current state of the AppConnection.
- Uid string
- A unique identifier for the instance generated by the system.
- UpdateTime string
- Timestamp when the resource was last modified.
- CreateTime string
- Timestamp when the resource was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The current state of the AppConnection.
- Uid string
- A unique identifier for the instance generated by the system.
- UpdateTime string
- Timestamp when the resource was last modified.
- createTime String
- Timestamp when the resource was created.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The current state of the AppConnection.
- uid String
- A unique identifier for the instance generated by the system.
- updateTime String
- Timestamp when the resource was last modified.
- createTime string
- Timestamp when the resource was created.
- id string
- The provider-assigned unique ID for this managed resource.
- state string
- The current state of the AppConnection.
- uid string
- A unique identifier for the instance generated by the system.
- updateTime string
- Timestamp when the resource was last modified.
- create_time str
- Timestamp when the resource was created.
- id str
- The provider-assigned unique ID for this managed resource.
- state str
- The current state of the AppConnection.
- uid str
- A unique identifier for the instance generated by the system.
- update_time str
- Timestamp when the resource was last modified.
- createTime String
- Timestamp when the resource was created.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The current state of the AppConnection.
- uid String
- A unique identifier for the instance generated by the system.
- updateTime String
- Timestamp when the resource was last modified.
Supporting Types
AppConnectionType, AppConnectionTypeArgs      
- TypeUnspecified 
- TYPE_UNSPECIFIEDDefault value. This value is unused.
- TcpProxy 
- TCP_PROXYTCP Proxy based BeyondCorp AppConnection. API will default to this if unset.
- AppConnection Type Type Unspecified 
- TYPE_UNSPECIFIEDDefault value. This value is unused.
- AppConnection Type Tcp Proxy 
- TCP_PROXYTCP Proxy based BeyondCorp AppConnection. API will default to this if unset.
- TypeUnspecified 
- TYPE_UNSPECIFIEDDefault value. This value is unused.
- TcpProxy 
- TCP_PROXYTCP Proxy based BeyondCorp AppConnection. API will default to this if unset.
- TypeUnspecified 
- TYPE_UNSPECIFIEDDefault value. This value is unused.
- TcpProxy 
- TCP_PROXYTCP Proxy based BeyondCorp AppConnection. API will default to this if unset.
- TYPE_UNSPECIFIED
- TYPE_UNSPECIFIEDDefault value. This value is unused.
- TCP_PROXY
- TCP_PROXYTCP Proxy based BeyondCorp AppConnection. API will default to this if unset.
- "TYPE_UNSPECIFIED"
- TYPE_UNSPECIFIEDDefault value. This value is unused.
- "TCP_PROXY"
- TCP_PROXYTCP Proxy based BeyondCorp AppConnection. API will default to this if unset.
GoogleCloudBeyondcorpAppconnectionsV1AppConnectionApplicationEndpoint, GoogleCloudBeyondcorpAppconnectionsV1AppConnectionApplicationEndpointArgs                
GoogleCloudBeyondcorpAppconnectionsV1AppConnectionApplicationEndpointResponse, GoogleCloudBeyondcorpAppconnectionsV1AppConnectionApplicationEndpointResponseArgs                  
GoogleCloudBeyondcorpAppconnectionsV1AppConnectionGateway, GoogleCloudBeyondcorpAppconnectionsV1AppConnectionGatewayArgs              
- AppGateway string
- AppGateway name in following format: projects/{project_id}/locations/{location_id}/appgateways/{gateway_id}
- Type
Pulumi.Google Native. Beyond Corp. V1. Google Cloud Beyondcorp Appconnections V1App Connection Gateway Type 
- The type of hosting used by the gateway.
- AppGateway string
- AppGateway name in following format: projects/{project_id}/locations/{location_id}/appgateways/{gateway_id}
- Type
GoogleCloud Beyondcorp Appconnections V1App Connection Gateway Type 
- The type of hosting used by the gateway.
- appGateway String
- AppGateway name in following format: projects/{project_id}/locations/{location_id}/appgateways/{gateway_id}
- type
GoogleCloud Beyondcorp Appconnections V1App Connection Gateway Type 
- The type of hosting used by the gateway.
- appGateway string
- AppGateway name in following format: projects/{project_id}/locations/{location_id}/appgateways/{gateway_id}
- type
GoogleCloud Beyondcorp Appconnections V1App Connection Gateway Type 
- The type of hosting used by the gateway.
- app_gateway str
- AppGateway name in following format: projects/{project_id}/locations/{location_id}/appgateways/{gateway_id}
- type
GoogleCloud Beyondcorp Appconnections V1App Connection Gateway Type 
- The type of hosting used by the gateway.
- appGateway String
- AppGateway name in following format: projects/{project_id}/locations/{location_id}/appgateways/{gateway_id}
- type "TYPE_UNSPECIFIED" | "GCP_REGIONAL_MIG"
- The type of hosting used by the gateway.
GoogleCloudBeyondcorpAppconnectionsV1AppConnectionGatewayResponse, GoogleCloudBeyondcorpAppconnectionsV1AppConnectionGatewayResponseArgs                
- AppGateway string
- AppGateway name in following format: projects/{project_id}/locations/{location_id}/appgateways/{gateway_id}
- IngressPort int
- Ingress port reserved on the gateways for this AppConnection, if not specified or zero, the default port is 19443.
- L7psc string
- L7 private service connection for this resource.
- Type string
- The type of hosting used by the gateway.
- Uri string
- Server-defined URI for this resource.
- AppGateway string
- AppGateway name in following format: projects/{project_id}/locations/{location_id}/appgateways/{gateway_id}
- IngressPort int
- Ingress port reserved on the gateways for this AppConnection, if not specified or zero, the default port is 19443.
- L7psc string
- L7 private service connection for this resource.
- Type string
- The type of hosting used by the gateway.
- Uri string
- Server-defined URI for this resource.
- appGateway String
- AppGateway name in following format: projects/{project_id}/locations/{location_id}/appgateways/{gateway_id}
- ingressPort Integer
- Ingress port reserved on the gateways for this AppConnection, if not specified or zero, the default port is 19443.
- l7psc String
- L7 private service connection for this resource.
- type String
- The type of hosting used by the gateway.
- uri String
- Server-defined URI for this resource.
- appGateway string
- AppGateway name in following format: projects/{project_id}/locations/{location_id}/appgateways/{gateway_id}
- ingressPort number
- Ingress port reserved on the gateways for this AppConnection, if not specified or zero, the default port is 19443.
- l7psc string
- L7 private service connection for this resource.
- type string
- The type of hosting used by the gateway.
- uri string
- Server-defined URI for this resource.
- app_gateway str
- AppGateway name in following format: projects/{project_id}/locations/{location_id}/appgateways/{gateway_id}
- ingress_port int
- Ingress port reserved on the gateways for this AppConnection, if not specified or zero, the default port is 19443.
- l7psc str
- L7 private service connection for this resource.
- type str
- The type of hosting used by the gateway.
- uri str
- Server-defined URI for this resource.
- appGateway String
- AppGateway name in following format: projects/{project_id}/locations/{location_id}/appgateways/{gateway_id}
- ingressPort Number
- Ingress port reserved on the gateways for this AppConnection, if not specified or zero, the default port is 19443.
- l7psc String
- L7 private service connection for this resource.
- type String
- The type of hosting used by the gateway.
- uri String
- Server-defined URI for this resource.
GoogleCloudBeyondcorpAppconnectionsV1AppConnectionGatewayType, GoogleCloudBeyondcorpAppconnectionsV1AppConnectionGatewayTypeArgs                
- TypeUnspecified 
- TYPE_UNSPECIFIEDDefault value. This value is unused.
- GcpRegional Mig 
- GCP_REGIONAL_MIGGateway hosted in a GCP regional managed instance group.
- GoogleCloud Beyondcorp Appconnections V1App Connection Gateway Type Type Unspecified 
- TYPE_UNSPECIFIEDDefault value. This value is unused.
- GoogleCloud Beyondcorp Appconnections V1App Connection Gateway Type Gcp Regional Mig 
- GCP_REGIONAL_MIGGateway hosted in a GCP regional managed instance group.
- TypeUnspecified 
- TYPE_UNSPECIFIEDDefault value. This value is unused.
- GcpRegional Mig 
- GCP_REGIONAL_MIGGateway hosted in a GCP regional managed instance group.
- TypeUnspecified 
- TYPE_UNSPECIFIEDDefault value. This value is unused.
- GcpRegional Mig 
- GCP_REGIONAL_MIGGateway hosted in a GCP regional managed instance group.
- TYPE_UNSPECIFIED
- TYPE_UNSPECIFIEDDefault value. This value is unused.
- GCP_REGIONAL_MIG
- GCP_REGIONAL_MIGGateway hosted in a GCP regional managed instance group.
- "TYPE_UNSPECIFIED"
- TYPE_UNSPECIFIEDDefault value. This value is unused.
- "GCP_REGIONAL_MIG"
- GCP_REGIONAL_MIGGateway hosted in a GCP regional managed instance group.
Package Details
- Repository
- Google Cloud Native pulumi/pulumi-google-native
- License
- Apache-2.0
Google Cloud Native is in preview. Google Cloud Classic is fully supported.