1. Packages
  2. Ibm Provider
  3. API Docs
  4. getMqcloudVirtualPrivateEndpointGateway
ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud

ibm.getMqcloudVirtualPrivateEndpointGateway

Explore with Pulumi AI

ibm logo
ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const mqcloudVirtualPrivateEndpointGateway = ibm.getMqcloudVirtualPrivateEndpointGateway({
        serviceInstanceGuid: ibm_mqcloud_virtual_private_endpoint_gateway.mqcloud_virtual_private_endpoint_gateway_instance.service_instance_guid,
        trustedProfile: ibm_mqcloud_virtual_private_endpoint_gateway.mqcloud_virtual_private_endpoint_gateway_instance.trusted_profile,
        virtualPrivateEndpointGatewayGuid: ibm_mqcloud_virtual_private_endpoint_gateway.mqcloud_virtual_private_endpoint_gateway_instance.virtual_private_endpoint_gateway_guid,
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    mqcloud_virtual_private_endpoint_gateway = ibm.get_mqcloud_virtual_private_endpoint_gateway(service_instance_guid=ibm_mqcloud_virtual_private_endpoint_gateway["mqcloud_virtual_private_endpoint_gateway_instance"]["service_instance_guid"],
        trusted_profile=ibm_mqcloud_virtual_private_endpoint_gateway["mqcloud_virtual_private_endpoint_gateway_instance"]["trusted_profile"],
        virtual_private_endpoint_gateway_guid=ibm_mqcloud_virtual_private_endpoint_gateway["mqcloud_virtual_private_endpoint_gateway_instance"]["virtual_private_endpoint_gateway_guid"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ibm.LookupMqcloudVirtualPrivateEndpointGateway(ctx, &ibm.LookupMqcloudVirtualPrivateEndpointGatewayArgs{
    			ServiceInstanceGuid:               ibm_mqcloud_virtual_private_endpoint_gateway.Mqcloud_virtual_private_endpoint_gateway_instance.Service_instance_guid,
    			TrustedProfile:                    pulumi.StringRef(ibm_mqcloud_virtual_private_endpoint_gateway.Mqcloud_virtual_private_endpoint_gateway_instance.Trusted_profile),
    			VirtualPrivateEndpointGatewayGuid: ibm_mqcloud_virtual_private_endpoint_gateway.Mqcloud_virtual_private_endpoint_gateway_instance.Virtual_private_endpoint_gateway_guid,
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ibm = Pulumi.Ibm;
    
    return await Deployment.RunAsync(() => 
    {
        var mqcloudVirtualPrivateEndpointGateway = Ibm.GetMqcloudVirtualPrivateEndpointGateway.Invoke(new()
        {
            ServiceInstanceGuid = ibm_mqcloud_virtual_private_endpoint_gateway.Mqcloud_virtual_private_endpoint_gateway_instance.Service_instance_guid,
            TrustedProfile = ibm_mqcloud_virtual_private_endpoint_gateway.Mqcloud_virtual_private_endpoint_gateway_instance.Trusted_profile,
            VirtualPrivateEndpointGatewayGuid = ibm_mqcloud_virtual_private_endpoint_gateway.Mqcloud_virtual_private_endpoint_gateway_instance.Virtual_private_endpoint_gateway_guid,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.IbmFunctions;
    import com.pulumi.ibm.inputs.GetMqcloudVirtualPrivateEndpointGatewayArgs;
    import java.util.List;
    import java.util.ArrayList;
    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) {
            final var mqcloudVirtualPrivateEndpointGateway = IbmFunctions.getMqcloudVirtualPrivateEndpointGateway(GetMqcloudVirtualPrivateEndpointGatewayArgs.builder()
                .serviceInstanceGuid(ibm_mqcloud_virtual_private_endpoint_gateway.mqcloud_virtual_private_endpoint_gateway_instance().service_instance_guid())
                .trustedProfile(ibm_mqcloud_virtual_private_endpoint_gateway.mqcloud_virtual_private_endpoint_gateway_instance().trusted_profile())
                .virtualPrivateEndpointGatewayGuid(ibm_mqcloud_virtual_private_endpoint_gateway.mqcloud_virtual_private_endpoint_gateway_instance().virtual_private_endpoint_gateway_guid())
                .build());
    
        }
    }
    
    variables:
      mqcloudVirtualPrivateEndpointGateway:
        fn::invoke:
          function: ibm:getMqcloudVirtualPrivateEndpointGateway
          arguments:
            serviceInstanceGuid: ${ibm_mqcloud_virtual_private_endpoint_gateway.mqcloud_virtual_private_endpoint_gateway_instance.service_instance_guid}
            trustedProfile: ${ibm_mqcloud_virtual_private_endpoint_gateway.mqcloud_virtual_private_endpoint_gateway_instance.trusted_profile}
            virtualPrivateEndpointGatewayGuid: ${ibm_mqcloud_virtual_private_endpoint_gateway.mqcloud_virtual_private_endpoint_gateway_instance.virtual_private_endpoint_gateway_guid}
    

    Using getMqcloudVirtualPrivateEndpointGateway

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getMqcloudVirtualPrivateEndpointGateway(args: GetMqcloudVirtualPrivateEndpointGatewayArgs, opts?: InvokeOptions): Promise<GetMqcloudVirtualPrivateEndpointGatewayResult>
    function getMqcloudVirtualPrivateEndpointGatewayOutput(args: GetMqcloudVirtualPrivateEndpointGatewayOutputArgs, opts?: InvokeOptions): Output<GetMqcloudVirtualPrivateEndpointGatewayResult>
    def get_mqcloud_virtual_private_endpoint_gateway(id: Optional[str] = None,
                                                     service_instance_guid: Optional[str] = None,
                                                     trusted_profile: Optional[str] = None,
                                                     virtual_private_endpoint_gateway_guid: Optional[str] = None,
                                                     opts: Optional[InvokeOptions] = None) -> GetMqcloudVirtualPrivateEndpointGatewayResult
    def get_mqcloud_virtual_private_endpoint_gateway_output(id: Optional[pulumi.Input[str]] = None,
                                                     service_instance_guid: Optional[pulumi.Input[str]] = None,
                                                     trusted_profile: Optional[pulumi.Input[str]] = None,
                                                     virtual_private_endpoint_gateway_guid: Optional[pulumi.Input[str]] = None,
                                                     opts: Optional[InvokeOptions] = None) -> Output[GetMqcloudVirtualPrivateEndpointGatewayResult]
    func LookupMqcloudVirtualPrivateEndpointGateway(ctx *Context, args *LookupMqcloudVirtualPrivateEndpointGatewayArgs, opts ...InvokeOption) (*LookupMqcloudVirtualPrivateEndpointGatewayResult, error)
    func LookupMqcloudVirtualPrivateEndpointGatewayOutput(ctx *Context, args *LookupMqcloudVirtualPrivateEndpointGatewayOutputArgs, opts ...InvokeOption) LookupMqcloudVirtualPrivateEndpointGatewayResultOutput

    > Note: This function is named LookupMqcloudVirtualPrivateEndpointGateway in the Go SDK.

    public static class GetMqcloudVirtualPrivateEndpointGateway 
    {
        public static Task<GetMqcloudVirtualPrivateEndpointGatewayResult> InvokeAsync(GetMqcloudVirtualPrivateEndpointGatewayArgs args, InvokeOptions? opts = null)
        public static Output<GetMqcloudVirtualPrivateEndpointGatewayResult> Invoke(GetMqcloudVirtualPrivateEndpointGatewayInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetMqcloudVirtualPrivateEndpointGatewayResult> getMqcloudVirtualPrivateEndpointGateway(GetMqcloudVirtualPrivateEndpointGatewayArgs args, InvokeOptions options)
    public static Output<GetMqcloudVirtualPrivateEndpointGatewayResult> getMqcloudVirtualPrivateEndpointGateway(GetMqcloudVirtualPrivateEndpointGatewayArgs args, InvokeOptions options)
    
    fn::invoke:
      function: ibm:index/getMqcloudVirtualPrivateEndpointGateway:getMqcloudVirtualPrivateEndpointGateway
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ServiceInstanceGuid string
    The GUID that uniquely identifies the MQaaS service instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/.
    VirtualPrivateEndpointGatewayGuid string
    The id of the virtual private endpoint gateway.

    • Constraints: The maximum length is 41 characters. The minimum length is 41 characters. The value must match regular expression /^[0-9a-zA-Z]{4}-[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/.
    Id string
    The unique identifier of the mqcloud_virtual_private_endpoint_gateway.
    TrustedProfile string
    The CRN of the trusted profile to assume for this request.

    • Constraints: The maximum length is 512 characters. The minimum length is 9 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$|^crn:\\[\\.\\.\\.\\]$/.
    ServiceInstanceGuid string
    The GUID that uniquely identifies the MQaaS service instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/.
    VirtualPrivateEndpointGatewayGuid string
    The id of the virtual private endpoint gateway.

    • Constraints: The maximum length is 41 characters. The minimum length is 41 characters. The value must match regular expression /^[0-9a-zA-Z]{4}-[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/.
    Id string
    The unique identifier of the mqcloud_virtual_private_endpoint_gateway.
    TrustedProfile string
    The CRN of the trusted profile to assume for this request.

    • Constraints: The maximum length is 512 characters. The minimum length is 9 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$|^crn:\\[\\.\\.\\.\\]$/.
    serviceInstanceGuid String
    The GUID that uniquely identifies the MQaaS service instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/.
    virtualPrivateEndpointGatewayGuid String
    The id of the virtual private endpoint gateway.

    • Constraints: The maximum length is 41 characters. The minimum length is 41 characters. The value must match regular expression /^[0-9a-zA-Z]{4}-[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/.
    id String
    The unique identifier of the mqcloud_virtual_private_endpoint_gateway.
    trustedProfile String
    The CRN of the trusted profile to assume for this request.

    • Constraints: The maximum length is 512 characters. The minimum length is 9 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$|^crn:\\[\\.\\.\\.\\]$/.
    serviceInstanceGuid string
    The GUID that uniquely identifies the MQaaS service instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/.
    virtualPrivateEndpointGatewayGuid string
    The id of the virtual private endpoint gateway.

    • Constraints: The maximum length is 41 characters. The minimum length is 41 characters. The value must match regular expression /^[0-9a-zA-Z]{4}-[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/.
    id string
    The unique identifier of the mqcloud_virtual_private_endpoint_gateway.
    trustedProfile string
    The CRN of the trusted profile to assume for this request.

    • Constraints: The maximum length is 512 characters. The minimum length is 9 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$|^crn:\\[\\.\\.\\.\\]$/.
    service_instance_guid str
    The GUID that uniquely identifies the MQaaS service instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/.
    virtual_private_endpoint_gateway_guid str
    The id of the virtual private endpoint gateway.

    • Constraints: The maximum length is 41 characters. The minimum length is 41 characters. The value must match regular expression /^[0-9a-zA-Z]{4}-[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/.
    id str
    The unique identifier of the mqcloud_virtual_private_endpoint_gateway.
    trusted_profile str
    The CRN of the trusted profile to assume for this request.

    • Constraints: The maximum length is 512 characters. The minimum length is 9 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$|^crn:\\[\\.\\.\\.\\]$/.
    serviceInstanceGuid String
    The GUID that uniquely identifies the MQaaS service instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/.
    virtualPrivateEndpointGatewayGuid String
    The id of the virtual private endpoint gateway.

    • Constraints: The maximum length is 41 characters. The minimum length is 41 characters. The value must match regular expression /^[0-9a-zA-Z]{4}-[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/.
    id String
    The unique identifier of the mqcloud_virtual_private_endpoint_gateway.
    trustedProfile String
    The CRN of the trusted profile to assume for this request.

    • Constraints: The maximum length is 512 characters. The minimum length is 9 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$|^crn:\\[\\.\\.\\.\\]$/.

    getMqcloudVirtualPrivateEndpointGateway Result

    The following output properties are available:

    Href string
    (String) URL for the details of the virtual private endpoint gateway.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    Id string
    The unique identifier of the mqcloud_virtual_private_endpoint_gateway.
    Name string
    (Forces new resource, String) The name of the virtual private endpoint gateway, created by the user.

    • Constraints: The maximum length is 63 characters. The minimum length is 1 character. The value must match regular expression /^[a-z]|[a-z][-a-z0-9]*[a-z0-9]$/.
    ServiceInstanceGuid string
    Status string
    (String) The lifecycle state of this virtual privage endpoint.

    • Constraints: The maximum length is 12 characters. The minimum length is 2 characters. The value must match regular expression /^deleting$|failed$|pending$|stable$|suspended$|updating$|waiting$/.
    TargetCrn string
    (String) The CRN of the reserved capacity service instance the user is trying to connect to.

    • Constraints: The maximum length is 512 characters. The minimum length is 9 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$|^crn:\\[\\.\\.\\.\\]$/.
    VirtualPrivateEndpointGatewayGuid string
    TrustedProfile string
    Href string
    (String) URL for the details of the virtual private endpoint gateway.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    Id string
    The unique identifier of the mqcloud_virtual_private_endpoint_gateway.
    Name string
    (Forces new resource, String) The name of the virtual private endpoint gateway, created by the user.

    • Constraints: The maximum length is 63 characters. The minimum length is 1 character. The value must match regular expression /^[a-z]|[a-z][-a-z0-9]*[a-z0-9]$/.
    ServiceInstanceGuid string
    Status string
    (String) The lifecycle state of this virtual privage endpoint.

    • Constraints: The maximum length is 12 characters. The minimum length is 2 characters. The value must match regular expression /^deleting$|failed$|pending$|stable$|suspended$|updating$|waiting$/.
    TargetCrn string
    (String) The CRN of the reserved capacity service instance the user is trying to connect to.

    • Constraints: The maximum length is 512 characters. The minimum length is 9 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$|^crn:\\[\\.\\.\\.\\]$/.
    VirtualPrivateEndpointGatewayGuid string
    TrustedProfile string
    href String
    (String) URL for the details of the virtual private endpoint gateway.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    id String
    The unique identifier of the mqcloud_virtual_private_endpoint_gateway.
    name String
    (Forces new resource, String) The name of the virtual private endpoint gateway, created by the user.

    • Constraints: The maximum length is 63 characters. The minimum length is 1 character. The value must match regular expression /^[a-z]|[a-z][-a-z0-9]*[a-z0-9]$/.
    serviceInstanceGuid String
    status String
    (String) The lifecycle state of this virtual privage endpoint.

    • Constraints: The maximum length is 12 characters. The minimum length is 2 characters. The value must match regular expression /^deleting$|failed$|pending$|stable$|suspended$|updating$|waiting$/.
    targetCrn String
    (String) The CRN of the reserved capacity service instance the user is trying to connect to.

    • Constraints: The maximum length is 512 characters. The minimum length is 9 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$|^crn:\\[\\.\\.\\.\\]$/.
    virtualPrivateEndpointGatewayGuid String
    trustedProfile String
    href string
    (String) URL for the details of the virtual private endpoint gateway.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    id string
    The unique identifier of the mqcloud_virtual_private_endpoint_gateway.
    name string
    (Forces new resource, String) The name of the virtual private endpoint gateway, created by the user.

    • Constraints: The maximum length is 63 characters. The minimum length is 1 character. The value must match regular expression /^[a-z]|[a-z][-a-z0-9]*[a-z0-9]$/.
    serviceInstanceGuid string
    status string
    (String) The lifecycle state of this virtual privage endpoint.

    • Constraints: The maximum length is 12 characters. The minimum length is 2 characters. The value must match regular expression /^deleting$|failed$|pending$|stable$|suspended$|updating$|waiting$/.
    targetCrn string
    (String) The CRN of the reserved capacity service instance the user is trying to connect to.

    • Constraints: The maximum length is 512 characters. The minimum length is 9 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$|^crn:\\[\\.\\.\\.\\]$/.
    virtualPrivateEndpointGatewayGuid string
    trustedProfile string
    href str
    (String) URL for the details of the virtual private endpoint gateway.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    id str
    The unique identifier of the mqcloud_virtual_private_endpoint_gateway.
    name str
    (Forces new resource, String) The name of the virtual private endpoint gateway, created by the user.

    • Constraints: The maximum length is 63 characters. The minimum length is 1 character. The value must match regular expression /^[a-z]|[a-z][-a-z0-9]*[a-z0-9]$/.
    service_instance_guid str
    status str
    (String) The lifecycle state of this virtual privage endpoint.

    • Constraints: The maximum length is 12 characters. The minimum length is 2 characters. The value must match regular expression /^deleting$|failed$|pending$|stable$|suspended$|updating$|waiting$/.
    target_crn str
    (String) The CRN of the reserved capacity service instance the user is trying to connect to.

    • Constraints: The maximum length is 512 characters. The minimum length is 9 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$|^crn:\\[\\.\\.\\.\\]$/.
    virtual_private_endpoint_gateway_guid str
    trusted_profile str
    href String
    (String) URL for the details of the virtual private endpoint gateway.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    id String
    The unique identifier of the mqcloud_virtual_private_endpoint_gateway.
    name String
    (Forces new resource, String) The name of the virtual private endpoint gateway, created by the user.

    • Constraints: The maximum length is 63 characters. The minimum length is 1 character. The value must match regular expression /^[a-z]|[a-z][-a-z0-9]*[a-z0-9]$/.
    serviceInstanceGuid String
    status String
    (String) The lifecycle state of this virtual privage endpoint.

    • Constraints: The maximum length is 12 characters. The minimum length is 2 characters. The value must match regular expression /^deleting$|failed$|pending$|stable$|suspended$|updating$|waiting$/.
    targetCrn String
    (String) The CRN of the reserved capacity service instance the user is trying to connect to.

    • Constraints: The maximum length is 512 characters. The minimum length is 9 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$|^crn:\\[\\.\\.\\.\\]$/.
    virtualPrivateEndpointGatewayGuid String
    trustedProfile String

    Package Details

    Repository
    ibm ibm-cloud/terraform-provider-ibm
    License
    Notes
    This Pulumi package is based on the ibm Terraform Provider.
    ibm logo
    ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud