ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud
ibm.getMqcloudVirtualPrivateEndpointGateway
Explore with Pulumi AI
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:
- Service
Instance stringGuid - The GUID that uniquely identifies the MQaaS service instance.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- Virtual
Private stringEndpoint Gateway Guid - The id of the virtual private endpoint gateway.
- Constraints: The maximum length is
41
characters. The minimum length is41
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}$/
.
- Constraints: The maximum length is
- Id string
- The unique identifier of the mqcloud_virtual_private_endpoint_gateway.
- Trusted
Profile string - The CRN of the trusted profile to assume for this request.
- Constraints: The maximum length is
512
characters. The minimum length is9
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:\\[\\.\\.\\.\\]$/
.
- Constraints: The maximum length is
- Service
Instance stringGuid - The GUID that uniquely identifies the MQaaS service instance.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- Virtual
Private stringEndpoint Gateway Guid - The id of the virtual private endpoint gateway.
- Constraints: The maximum length is
41
characters. The minimum length is41
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}$/
.
- Constraints: The maximum length is
- Id string
- The unique identifier of the mqcloud_virtual_private_endpoint_gateway.
- Trusted
Profile string - The CRN of the trusted profile to assume for this request.
- Constraints: The maximum length is
512
characters. The minimum length is9
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:\\[\\.\\.\\.\\]$/
.
- Constraints: The maximum length is
- service
Instance StringGuid - The GUID that uniquely identifies the MQaaS service instance.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- virtual
Private StringEndpoint Gateway Guid - The id of the virtual private endpoint gateway.
- Constraints: The maximum length is
41
characters. The minimum length is41
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}$/
.
- Constraints: The maximum length is
- id String
- The unique identifier of the mqcloud_virtual_private_endpoint_gateway.
- trusted
Profile String - The CRN of the trusted profile to assume for this request.
- Constraints: The maximum length is
512
characters. The minimum length is9
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:\\[\\.\\.\\.\\]$/
.
- Constraints: The maximum length is
- service
Instance stringGuid - The GUID that uniquely identifies the MQaaS service instance.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- virtual
Private stringEndpoint Gateway Guid - The id of the virtual private endpoint gateway.
- Constraints: The maximum length is
41
characters. The minimum length is41
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}$/
.
- Constraints: The maximum length is
- id string
- The unique identifier of the mqcloud_virtual_private_endpoint_gateway.
- trusted
Profile string - The CRN of the trusted profile to assume for this request.
- Constraints: The maximum length is
512
characters. The minimum length is9
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:\\[\\.\\.\\.\\]$/
.
- Constraints: The maximum length is
- service_
instance_ strguid - The GUID that uniquely identifies the MQaaS service instance.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- virtual_
private_ strendpoint_ gateway_ guid - The id of the virtual private endpoint gateway.
- Constraints: The maximum length is
41
characters. The minimum length is41
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}$/
.
- Constraints: The maximum length is
- 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 is9
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:\\[\\.\\.\\.\\]$/
.
- Constraints: The maximum length is
- service
Instance StringGuid - The GUID that uniquely identifies the MQaaS service instance.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- virtual
Private StringEndpoint Gateway Guid - The id of the virtual private endpoint gateway.
- Constraints: The maximum length is
41
characters. The minimum length is41
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}$/
.
- Constraints: The maximum length is
- id String
- The unique identifier of the mqcloud_virtual_private_endpoint_gateway.
- trusted
Profile String - The CRN of the trusted profile to assume for this request.
- Constraints: The maximum length is
512
characters. The minimum length is9
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:\\[\\.\\.\\.\\]$/
.
- Constraints: The maximum length is
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 is10
characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/
.
- Constraints: The maximum length is
- 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 is1
character. The value must match regular expression/^[a-z]|[a-z][-a-z0-9]*[a-z0-9]$/
.
- Constraints: The maximum length is
- Service
Instance stringGuid - Status string
- (String) The lifecycle state of this virtual privage endpoint.
- Constraints: The maximum length is
12
characters. The minimum length is2
characters. The value must match regular expression/^deleting$|failed$|pending$|stable$|suspended$|updating$|waiting$/
.
- Constraints: The maximum length is
- Target
Crn 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 is9
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:\\[\\.\\.\\.\\]$/
.
- Constraints: The maximum length is
- Virtual
Private stringEndpoint Gateway Guid - Trusted
Profile string
- Href string
- (String) URL for the details of the virtual private endpoint gateway.
- Constraints: The maximum length is
8000
characters. The minimum length is10
characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/
.
- Constraints: The maximum length is
- 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 is1
character. The value must match regular expression/^[a-z]|[a-z][-a-z0-9]*[a-z0-9]$/
.
- Constraints: The maximum length is
- Service
Instance stringGuid - Status string
- (String) The lifecycle state of this virtual privage endpoint.
- Constraints: The maximum length is
12
characters. The minimum length is2
characters. The value must match regular expression/^deleting$|failed$|pending$|stable$|suspended$|updating$|waiting$/
.
- Constraints: The maximum length is
- Target
Crn 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 is9
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:\\[\\.\\.\\.\\]$/
.
- Constraints: The maximum length is
- Virtual
Private stringEndpoint Gateway Guid - Trusted
Profile string
- href String
- (String) URL for the details of the virtual private endpoint gateway.
- Constraints: The maximum length is
8000
characters. The minimum length is10
characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/
.
- Constraints: The maximum length is
- 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 is1
character. The value must match regular expression/^[a-z]|[a-z][-a-z0-9]*[a-z0-9]$/
.
- Constraints: The maximum length is
- service
Instance StringGuid - status String
- (String) The lifecycle state of this virtual privage endpoint.
- Constraints: The maximum length is
12
characters. The minimum length is2
characters. The value must match regular expression/^deleting$|failed$|pending$|stable$|suspended$|updating$|waiting$/
.
- Constraints: The maximum length is
- target
Crn 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 is9
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:\\[\\.\\.\\.\\]$/
.
- Constraints: The maximum length is
- virtual
Private StringEndpoint Gateway Guid - trusted
Profile String
- href string
- (String) URL for the details of the virtual private endpoint gateway.
- Constraints: The maximum length is
8000
characters. The minimum length is10
characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/
.
- Constraints: The maximum length is
- 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 is1
character. The value must match regular expression/^[a-z]|[a-z][-a-z0-9]*[a-z0-9]$/
.
- Constraints: The maximum length is
- service
Instance stringGuid - status string
- (String) The lifecycle state of this virtual privage endpoint.
- Constraints: The maximum length is
12
characters. The minimum length is2
characters. The value must match regular expression/^deleting$|failed$|pending$|stable$|suspended$|updating$|waiting$/
.
- Constraints: The maximum length is
- target
Crn 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 is9
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:\\[\\.\\.\\.\\]$/
.
- Constraints: The maximum length is
- virtual
Private stringEndpoint Gateway Guid - trusted
Profile string
- href str
- (String) URL for the details of the virtual private endpoint gateway.
- Constraints: The maximum length is
8000
characters. The minimum length is10
characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/
.
- Constraints: The maximum length is
- 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 is1
character. The value must match regular expression/^[a-z]|[a-z][-a-z0-9]*[a-z0-9]$/
.
- Constraints: The maximum length is
- service_
instance_ strguid - status str
- (String) The lifecycle state of this virtual privage endpoint.
- Constraints: The maximum length is
12
characters. The minimum length is2
characters. The value must match regular expression/^deleting$|failed$|pending$|stable$|suspended$|updating$|waiting$/
.
- Constraints: The maximum length is
- 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 is9
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:\\[\\.\\.\\.\\]$/
.
- Constraints: The maximum length is
- virtual_
private_ strendpoint_ gateway_ guid - 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 is10
characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/
.
- Constraints: The maximum length is
- 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 is1
character. The value must match regular expression/^[a-z]|[a-z][-a-z0-9]*[a-z0-9]$/
.
- Constraints: The maximum length is
- service
Instance StringGuid - status String
- (String) The lifecycle state of this virtual privage endpoint.
- Constraints: The maximum length is
12
characters. The minimum length is2
characters. The value must match regular expression/^deleting$|failed$|pending$|stable$|suspended$|updating$|waiting$/
.
- Constraints: The maximum length is
- target
Crn 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 is9
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:\\[\\.\\.\\.\\]$/
.
- Constraints: The maximum length is
- virtual
Private StringEndpoint Gateway Guid - trusted
Profile String
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.