Create, update, and delete EndpointGatewayResourceBindings with this resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const isVirtualEndpointGatewayResourceBindingInstance = new ibm.IsVirtualEndpointGatewayResourceBinding("is_virtual_endpoint_gateway_resource_binding_instance", {
endpointGatewayId: "endpoint_gateway_id",
name: "my-resource-binding",
target: {
crn: "crn:v1:bluemix:public:cloud-object-storage:global:a/aa2432b1fa4d4ace891e9b80fc104e34:1a0ec336-f391-4091-a6fb-5e084a4c56f4:bucket:bucket-27200-lwx4cfvcue",
},
});
import pulumi
import pulumi_ibm as ibm
is_virtual_endpoint_gateway_resource_binding_instance = ibm.IsVirtualEndpointGatewayResourceBinding("is_virtual_endpoint_gateway_resource_binding_instance",
endpoint_gateway_id="endpoint_gateway_id",
name="my-resource-binding",
target={
"crn": "crn:v1:bluemix:public:cloud-object-storage:global:a/aa2432b1fa4d4ace891e9b80fc104e34:1a0ec336-f391-4091-a6fb-5e084a4c56f4:bucket:bucket-27200-lwx4cfvcue",
})
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.NewIsVirtualEndpointGatewayResourceBinding(ctx, "is_virtual_endpoint_gateway_resource_binding_instance", &ibm.IsVirtualEndpointGatewayResourceBindingArgs{
EndpointGatewayId: pulumi.String("endpoint_gateway_id"),
Name: pulumi.String("my-resource-binding"),
Target: &ibm.IsVirtualEndpointGatewayResourceBindingTargetArgs{
Crn: pulumi.String("crn:v1:bluemix:public:cloud-object-storage:global:a/aa2432b1fa4d4ace891e9b80fc104e34:1a0ec336-f391-4091-a6fb-5e084a4c56f4:bucket:bucket-27200-lwx4cfvcue"),
},
})
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 isVirtualEndpointGatewayResourceBindingInstance = new Ibm.IsVirtualEndpointGatewayResourceBinding("is_virtual_endpoint_gateway_resource_binding_instance", new()
{
EndpointGatewayId = "endpoint_gateway_id",
Name = "my-resource-binding",
Target = new Ibm.Inputs.IsVirtualEndpointGatewayResourceBindingTargetArgs
{
Crn = "crn:v1:bluemix:public:cloud-object-storage:global:a/aa2432b1fa4d4ace891e9b80fc104e34:1a0ec336-f391-4091-a6fb-5e084a4c56f4:bucket:bucket-27200-lwx4cfvcue",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.IsVirtualEndpointGatewayResourceBinding;
import com.pulumi.ibm.IsVirtualEndpointGatewayResourceBindingArgs;
import com.pulumi.ibm.inputs.IsVirtualEndpointGatewayResourceBindingTargetArgs;
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) {
var isVirtualEndpointGatewayResourceBindingInstance = new IsVirtualEndpointGatewayResourceBinding("isVirtualEndpointGatewayResourceBindingInstance", IsVirtualEndpointGatewayResourceBindingArgs.builder()
.endpointGatewayId("endpoint_gateway_id")
.name("my-resource-binding")
.target(IsVirtualEndpointGatewayResourceBindingTargetArgs.builder()
.crn("crn:v1:bluemix:public:cloud-object-storage:global:a/aa2432b1fa4d4ace891e9b80fc104e34:1a0ec336-f391-4091-a6fb-5e084a4c56f4:bucket:bucket-27200-lwx4cfvcue")
.build())
.build());
}
}
resources:
isVirtualEndpointGatewayResourceBindingInstance:
type: ibm:IsVirtualEndpointGatewayResourceBinding
name: is_virtual_endpoint_gateway_resource_binding_instance
properties:
endpointGatewayId: endpoint_gateway_id
name: my-resource-binding
target:
crn: crn:v1:bluemix:public:cloud-object-storage:global:a/aa2432b1fa4d4ace891e9b80fc104e34:1a0ec336-f391-4091-a6fb-5e084a4c56f4:bucket:bucket-27200-lwx4cfvcue
Create IsVirtualEndpointGatewayResourceBinding Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IsVirtualEndpointGatewayResourceBinding(name: string, args: IsVirtualEndpointGatewayResourceBindingArgs, opts?: CustomResourceOptions);@overload
def IsVirtualEndpointGatewayResourceBinding(resource_name: str,
args: IsVirtualEndpointGatewayResourceBindingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IsVirtualEndpointGatewayResourceBinding(resource_name: str,
opts: Optional[ResourceOptions] = None,
endpoint_gateway_id: Optional[str] = None,
target: Optional[IsVirtualEndpointGatewayResourceBindingTargetArgs] = None,
is_virtual_endpoint_gateway_resource_binding_id: Optional[str] = None,
name: Optional[str] = None)func NewIsVirtualEndpointGatewayResourceBinding(ctx *Context, name string, args IsVirtualEndpointGatewayResourceBindingArgs, opts ...ResourceOption) (*IsVirtualEndpointGatewayResourceBinding, error)public IsVirtualEndpointGatewayResourceBinding(string name, IsVirtualEndpointGatewayResourceBindingArgs args, CustomResourceOptions? opts = null)
public IsVirtualEndpointGatewayResourceBinding(String name, IsVirtualEndpointGatewayResourceBindingArgs args)
public IsVirtualEndpointGatewayResourceBinding(String name, IsVirtualEndpointGatewayResourceBindingArgs args, CustomResourceOptions options)
type: ibm:IsVirtualEndpointGatewayResourceBinding
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 IsVirtualEndpointGatewayResourceBindingArgs
- 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 IsVirtualEndpointGatewayResourceBindingArgs
- 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 IsVirtualEndpointGatewayResourceBindingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IsVirtualEndpointGatewayResourceBindingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IsVirtualEndpointGatewayResourceBindingArgs
- 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 isVirtualEndpointGatewayResourceBindingResource = new Ibm.IsVirtualEndpointGatewayResourceBinding("isVirtualEndpointGatewayResourceBindingResource", new()
{
EndpointGatewayId = "string",
Target = new Ibm.Inputs.IsVirtualEndpointGatewayResourceBindingTargetArgs
{
Crn = "string",
},
IsVirtualEndpointGatewayResourceBindingId = "string",
Name = "string",
});
example, err := ibm.NewIsVirtualEndpointGatewayResourceBinding(ctx, "isVirtualEndpointGatewayResourceBindingResource", &ibm.IsVirtualEndpointGatewayResourceBindingArgs{
EndpointGatewayId: pulumi.String("string"),
Target: &ibm.IsVirtualEndpointGatewayResourceBindingTargetArgs{
Crn: pulumi.String("string"),
},
IsVirtualEndpointGatewayResourceBindingId: pulumi.String("string"),
Name: pulumi.String("string"),
})
var isVirtualEndpointGatewayResourceBindingResource = new IsVirtualEndpointGatewayResourceBinding("isVirtualEndpointGatewayResourceBindingResource", IsVirtualEndpointGatewayResourceBindingArgs.builder()
.endpointGatewayId("string")
.target(IsVirtualEndpointGatewayResourceBindingTargetArgs.builder()
.crn("string")
.build())
.isVirtualEndpointGatewayResourceBindingId("string")
.name("string")
.build());
is_virtual_endpoint_gateway_resource_binding_resource = ibm.IsVirtualEndpointGatewayResourceBinding("isVirtualEndpointGatewayResourceBindingResource",
endpoint_gateway_id="string",
target={
"crn": "string",
},
is_virtual_endpoint_gateway_resource_binding_id="string",
name="string")
const isVirtualEndpointGatewayResourceBindingResource = new ibm.IsVirtualEndpointGatewayResourceBinding("isVirtualEndpointGatewayResourceBindingResource", {
endpointGatewayId: "string",
target: {
crn: "string",
},
isVirtualEndpointGatewayResourceBindingId: "string",
name: "string",
});
type: ibm:IsVirtualEndpointGatewayResourceBinding
properties:
endpointGatewayId: string
isVirtualEndpointGatewayResourceBindingId: string
name: string
target:
crn: string
IsVirtualEndpointGatewayResourceBinding 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 IsVirtualEndpointGatewayResourceBinding resource accepts the following input properties:
- Endpoint
Gateway stringId - The endpoint gateway identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- Target
Is
Virtual Endpoint Gateway Resource Binding Target - The target for this endpoint gateway resource binding. Nested schema for target:
- Is
Virtual stringEndpoint Gateway Resource Binding Id - The unique identifier of the EndpointGatewayResourceBinding.
- Name string
- The name for this resource binding. The name is unique across all resource bindings for the endpoint gateway.
- Constraints: The maximum length is
63characters. The minimum length is1character. The value must match regular expression/^-?([a-z]|[a-z][-a-z0-9]*[a-z0-9]|[0-9][-a-z0-9]*([a-z]|[-a-z][-a-z0-9]*[a-z0-9]))$/.
- Constraints: The maximum length is
- Endpoint
Gateway stringId - The endpoint gateway identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- Target
Is
Virtual Endpoint Gateway Resource Binding Target Args - The target for this endpoint gateway resource binding. Nested schema for target:
- Is
Virtual stringEndpoint Gateway Resource Binding Id - The unique identifier of the EndpointGatewayResourceBinding.
- Name string
- The name for this resource binding. The name is unique across all resource bindings for the endpoint gateway.
- Constraints: The maximum length is
63characters. The minimum length is1character. The value must match regular expression/^-?([a-z]|[a-z][-a-z0-9]*[a-z0-9]|[0-9][-a-z0-9]*([a-z]|[-a-z][-a-z0-9]*[a-z0-9]))$/.
- Constraints: The maximum length is
- endpoint
Gateway StringId - The endpoint gateway identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- target
Is
Virtual Endpoint Gateway Resource Binding Target - The target for this endpoint gateway resource binding. Nested schema for target:
- is
Virtual StringEndpoint Gateway Resource Binding Id - The unique identifier of the EndpointGatewayResourceBinding.
- name String
- The name for this resource binding. The name is unique across all resource bindings for the endpoint gateway.
- Constraints: The maximum length is
63characters. The minimum length is1character. The value must match regular expression/^-?([a-z]|[a-z][-a-z0-9]*[a-z0-9]|[0-9][-a-z0-9]*([a-z]|[-a-z][-a-z0-9]*[a-z0-9]))$/.
- Constraints: The maximum length is
- endpoint
Gateway stringId - The endpoint gateway identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- target
Is
Virtual Endpoint Gateway Resource Binding Target - The target for this endpoint gateway resource binding. Nested schema for target:
- is
Virtual stringEndpoint Gateway Resource Binding Id - The unique identifier of the EndpointGatewayResourceBinding.
- name string
- The name for this resource binding. The name is unique across all resource bindings for the endpoint gateway.
- Constraints: The maximum length is
63characters. The minimum length is1character. The value must match regular expression/^-?([a-z]|[a-z][-a-z0-9]*[a-z0-9]|[0-9][-a-z0-9]*([a-z]|[-a-z][-a-z0-9]*[a-z0-9]))$/.
- Constraints: The maximum length is
- endpoint_
gateway_ strid - The endpoint gateway identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- target
Is
Virtual Endpoint Gateway Resource Binding Target Args - The target for this endpoint gateway resource binding. Nested schema for target:
- is_
virtual_ strendpoint_ gateway_ resource_ binding_ id - The unique identifier of the EndpointGatewayResourceBinding.
- name str
- The name for this resource binding. The name is unique across all resource bindings for the endpoint gateway.
- Constraints: The maximum length is
63characters. The minimum length is1character. The value must match regular expression/^-?([a-z]|[a-z][-a-z0-9]*[a-z0-9]|[0-9][-a-z0-9]*([a-z]|[-a-z][-a-z0-9]*[a-z0-9]))$/.
- Constraints: The maximum length is
- endpoint
Gateway StringId - The endpoint gateway identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- target Property Map
- The target for this endpoint gateway resource binding. Nested schema for target:
- is
Virtual StringEndpoint Gateway Resource Binding Id - The unique identifier of the EndpointGatewayResourceBinding.
- name String
- The name for this resource binding. The name is unique across all resource bindings for the endpoint gateway.
- Constraints: The maximum length is
63characters. The minimum length is1character. The value must match regular expression/^-?([a-z]|[a-z][-a-z0-9]*[a-z0-9]|[0-9][-a-z0-9]*([a-z]|[-a-z][-a-z0-9]*[a-z0-9]))$/.
- Constraints: The maximum length is
Outputs
All input properties are implicitly available as output properties. Additionally, the IsVirtualEndpointGatewayResourceBinding resource produces the following output properties:
- Created
At string - (String) The date and time that the resource binding was created.
- Endpoint
Gateway stringResource Binding Id - (String) The unique identifier for this endpoint gateway resource binding.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- Href string
- (String) The URL for this endpoint gateway resource binding.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Reasons List<IsVirtual Endpoint Gateway Resource Binding Lifecycle Reason> - (List) The reasons for the current
lifecycle_state(if any).- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- Lifecycle
State string - (String) The lifecycle state of the resource binding.
- Constraints: Allowable values are:
deleting,failed,pending,stable,suspended,updating,waiting. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- Resource
Type string - (String) The resource type.
- Constraints: Allowable values are:
endpoint_gateway_resource_binding. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- Service
Endpoint string - (String) The fully qualified domain name of the service endpoint for the resource targeted by this resource binding.
- Constraints: The maximum length is
255characters. The minimum length is4characters. The value must match regular expression/^((?=[A-Za-z0-9-]{1,63}\\.)[A-Za-z0-9-]*\\.)+[A-Za-z]{2,63}\\.?$/.
- Constraints: The maximum length is
- Type string
- (String) The type of resource binding:-
weak: The binding is not dependent on the existence of the target resource.The enumerated values for this property mayexpand in the future.- Constraints: Allowable values are:
weak. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- Created
At string - (String) The date and time that the resource binding was created.
- Endpoint
Gateway stringResource Binding Id - (String) The unique identifier for this endpoint gateway resource binding.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- Href string
- (String) The URL for this endpoint gateway resource binding.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Reasons []IsVirtual Endpoint Gateway Resource Binding Lifecycle Reason - (List) The reasons for the current
lifecycle_state(if any).- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- Lifecycle
State string - (String) The lifecycle state of the resource binding.
- Constraints: Allowable values are:
deleting,failed,pending,stable,suspended,updating,waiting. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- Resource
Type string - (String) The resource type.
- Constraints: Allowable values are:
endpoint_gateway_resource_binding. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- Service
Endpoint string - (String) The fully qualified domain name of the service endpoint for the resource targeted by this resource binding.
- Constraints: The maximum length is
255characters. The minimum length is4characters. The value must match regular expression/^((?=[A-Za-z0-9-]{1,63}\\.)[A-Za-z0-9-]*\\.)+[A-Za-z]{2,63}\\.?$/.
- Constraints: The maximum length is
- Type string
- (String) The type of resource binding:-
weak: The binding is not dependent on the existence of the target resource.The enumerated values for this property mayexpand in the future.- Constraints: Allowable values are:
weak. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- created
At String - (String) The date and time that the resource binding was created.
- endpoint
Gateway StringResource Binding Id - (String) The unique identifier for this endpoint gateway resource binding.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- href String
- (String) The URL for this endpoint gateway resource binding.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Reasons List<IsVirtual Endpoint Gateway Resource Binding Lifecycle Reason> - (List) The reasons for the current
lifecycle_state(if any).- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- lifecycle
State String - (String) The lifecycle state of the resource binding.
- Constraints: Allowable values are:
deleting,failed,pending,stable,suspended,updating,waiting. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- resource
Type String - (String) The resource type.
- Constraints: Allowable values are:
endpoint_gateway_resource_binding. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- service
Endpoint String - (String) The fully qualified domain name of the service endpoint for the resource targeted by this resource binding.
- Constraints: The maximum length is
255characters. The minimum length is4characters. The value must match regular expression/^((?=[A-Za-z0-9-]{1,63}\\.)[A-Za-z0-9-]*\\.)+[A-Za-z]{2,63}\\.?$/.
- Constraints: The maximum length is
- type String
- (String) The type of resource binding:-
weak: The binding is not dependent on the existence of the target resource.The enumerated values for this property mayexpand in the future.- Constraints: Allowable values are:
weak. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- created
At string - (String) The date and time that the resource binding was created.
- endpoint
Gateway stringResource Binding Id - (String) The unique identifier for this endpoint gateway resource binding.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- href string
- (String) The URL for this endpoint gateway resource binding.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Reasons IsVirtual Endpoint Gateway Resource Binding Lifecycle Reason[] - (List) The reasons for the current
lifecycle_state(if any).- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- lifecycle
State string - (String) The lifecycle state of the resource binding.
- Constraints: Allowable values are:
deleting,failed,pending,stable,suspended,updating,waiting. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- resource
Type string - (String) The resource type.
- Constraints: Allowable values are:
endpoint_gateway_resource_binding. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- service
Endpoint string - (String) The fully qualified domain name of the service endpoint for the resource targeted by this resource binding.
- Constraints: The maximum length is
255characters. The minimum length is4characters. The value must match regular expression/^((?=[A-Za-z0-9-]{1,63}\\.)[A-Za-z0-9-]*\\.)+[A-Za-z]{2,63}\\.?$/.
- Constraints: The maximum length is
- type string
- (String) The type of resource binding:-
weak: The binding is not dependent on the existence of the target resource.The enumerated values for this property mayexpand in the future.- Constraints: Allowable values are:
weak. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- created_
at str - (String) The date and time that the resource binding was created.
- endpoint_
gateway_ strresource_ binding_ id - (String) The unique identifier for this endpoint gateway resource binding.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- href str
- (String) The URL for this endpoint gateway resource binding.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_
reasons Sequence[IsVirtual Endpoint Gateway Resource Binding Lifecycle Reason] - (List) The reasons for the current
lifecycle_state(if any).- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- lifecycle_
state str - (String) The lifecycle state of the resource binding.
- Constraints: Allowable values are:
deleting,failed,pending,stable,suspended,updating,waiting. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- resource_
type str - (String) The resource type.
- Constraints: Allowable values are:
endpoint_gateway_resource_binding. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- service_
endpoint str - (String) The fully qualified domain name of the service endpoint for the resource targeted by this resource binding.
- Constraints: The maximum length is
255characters. The minimum length is4characters. The value must match regular expression/^((?=[A-Za-z0-9-]{1,63}\\.)[A-Za-z0-9-]*\\.)+[A-Za-z]{2,63}\\.?$/.
- Constraints: The maximum length is
- type str
- (String) The type of resource binding:-
weak: The binding is not dependent on the existence of the target resource.The enumerated values for this property mayexpand in the future.- Constraints: Allowable values are:
weak. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- created
At String - (String) The date and time that the resource binding was created.
- endpoint
Gateway StringResource Binding Id - (String) The unique identifier for this endpoint gateway resource binding.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- href String
- (String) The URL for this endpoint gateway resource binding.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Reasons List<Property Map> - (List) The reasons for the current
lifecycle_state(if any).- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- lifecycle
State String - (String) The lifecycle state of the resource binding.
- Constraints: Allowable values are:
deleting,failed,pending,stable,suspended,updating,waiting. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- resource
Type String - (String) The resource type.
- Constraints: Allowable values are:
endpoint_gateway_resource_binding. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- service
Endpoint String - (String) The fully qualified domain name of the service endpoint for the resource targeted by this resource binding.
- Constraints: The maximum length is
255characters. The minimum length is4characters. The value must match regular expression/^((?=[A-Za-z0-9-]{1,63}\\.)[A-Za-z0-9-]*\\.)+[A-Za-z]{2,63}\\.?$/.
- Constraints: The maximum length is
- type String
- (String) The type of resource binding:-
weak: The binding is not dependent on the existence of the target resource.The enumerated values for this property mayexpand in the future.- Constraints: Allowable values are:
weak. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
Look up Existing IsVirtualEndpointGatewayResourceBinding Resource
Get an existing IsVirtualEndpointGatewayResourceBinding resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: IsVirtualEndpointGatewayResourceBindingState, opts?: CustomResourceOptions): IsVirtualEndpointGatewayResourceBinding@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_at: Optional[str] = None,
endpoint_gateway_id: Optional[str] = None,
endpoint_gateway_resource_binding_id: Optional[str] = None,
href: Optional[str] = None,
is_virtual_endpoint_gateway_resource_binding_id: Optional[str] = None,
lifecycle_reasons: Optional[Sequence[IsVirtualEndpointGatewayResourceBindingLifecycleReasonArgs]] = None,
lifecycle_state: Optional[str] = None,
name: Optional[str] = None,
resource_type: Optional[str] = None,
service_endpoint: Optional[str] = None,
target: Optional[IsVirtualEndpointGatewayResourceBindingTargetArgs] = None,
type: Optional[str] = None) -> IsVirtualEndpointGatewayResourceBindingfunc GetIsVirtualEndpointGatewayResourceBinding(ctx *Context, name string, id IDInput, state *IsVirtualEndpointGatewayResourceBindingState, opts ...ResourceOption) (*IsVirtualEndpointGatewayResourceBinding, error)public static IsVirtualEndpointGatewayResourceBinding Get(string name, Input<string> id, IsVirtualEndpointGatewayResourceBindingState? state, CustomResourceOptions? opts = null)public static IsVirtualEndpointGatewayResourceBinding get(String name, Output<String> id, IsVirtualEndpointGatewayResourceBindingState state, CustomResourceOptions options)resources: _: type: ibm:IsVirtualEndpointGatewayResourceBinding get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Created
At string - (String) The date and time that the resource binding was created.
- Endpoint
Gateway stringId - The endpoint gateway identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- Endpoint
Gateway stringResource Binding Id - (String) The unique identifier for this endpoint gateway resource binding.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- Href string
- (String) The URL for this endpoint gateway resource binding.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- Is
Virtual stringEndpoint Gateway Resource Binding Id - The unique identifier of the EndpointGatewayResourceBinding.
- Lifecycle
Reasons List<IsVirtual Endpoint Gateway Resource Binding Lifecycle Reason> - (List) The reasons for the current
lifecycle_state(if any).- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- Lifecycle
State string - (String) The lifecycle state of the resource binding.
- Constraints: Allowable values are:
deleting,failed,pending,stable,suspended,updating,waiting. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- Name string
- The name for this resource binding. The name is unique across all resource bindings for the endpoint gateway.
- Constraints: The maximum length is
63characters. The minimum length is1character. The value must match regular expression/^-?([a-z]|[a-z][-a-z0-9]*[a-z0-9]|[0-9][-a-z0-9]*([a-z]|[-a-z][-a-z0-9]*[a-z0-9]))$/.
- Constraints: The maximum length is
- Resource
Type string - (String) The resource type.
- Constraints: Allowable values are:
endpoint_gateway_resource_binding. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- Service
Endpoint string - (String) The fully qualified domain name of the service endpoint for the resource targeted by this resource binding.
- Constraints: The maximum length is
255characters. The minimum length is4characters. The value must match regular expression/^((?=[A-Za-z0-9-]{1,63}\\.)[A-Za-z0-9-]*\\.)+[A-Za-z]{2,63}\\.?$/.
- Constraints: The maximum length is
- Target
Is
Virtual Endpoint Gateway Resource Binding Target - The target for this endpoint gateway resource binding. Nested schema for target:
- Type string
- (String) The type of resource binding:-
weak: The binding is not dependent on the existence of the target resource.The enumerated values for this property mayexpand in the future.- Constraints: Allowable values are:
weak. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- Created
At string - (String) The date and time that the resource binding was created.
- Endpoint
Gateway stringId - The endpoint gateway identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- Endpoint
Gateway stringResource Binding Id - (String) The unique identifier for this endpoint gateway resource binding.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- Href string
- (String) The URL for this endpoint gateway resource binding.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- Is
Virtual stringEndpoint Gateway Resource Binding Id - The unique identifier of the EndpointGatewayResourceBinding.
- Lifecycle
Reasons []IsVirtual Endpoint Gateway Resource Binding Lifecycle Reason Args - (List) The reasons for the current
lifecycle_state(if any).- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- Lifecycle
State string - (String) The lifecycle state of the resource binding.
- Constraints: Allowable values are:
deleting,failed,pending,stable,suspended,updating,waiting. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- Name string
- The name for this resource binding. The name is unique across all resource bindings for the endpoint gateway.
- Constraints: The maximum length is
63characters. The minimum length is1character. The value must match regular expression/^-?([a-z]|[a-z][-a-z0-9]*[a-z0-9]|[0-9][-a-z0-9]*([a-z]|[-a-z][-a-z0-9]*[a-z0-9]))$/.
- Constraints: The maximum length is
- Resource
Type string - (String) The resource type.
- Constraints: Allowable values are:
endpoint_gateway_resource_binding. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- Service
Endpoint string - (String) The fully qualified domain name of the service endpoint for the resource targeted by this resource binding.
- Constraints: The maximum length is
255characters. The minimum length is4characters. The value must match regular expression/^((?=[A-Za-z0-9-]{1,63}\\.)[A-Za-z0-9-]*\\.)+[A-Za-z]{2,63}\\.?$/.
- Constraints: The maximum length is
- Target
Is
Virtual Endpoint Gateway Resource Binding Target Args - The target for this endpoint gateway resource binding. Nested schema for target:
- Type string
- (String) The type of resource binding:-
weak: The binding is not dependent on the existence of the target resource.The enumerated values for this property mayexpand in the future.- Constraints: Allowable values are:
weak. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- created
At String - (String) The date and time that the resource binding was created.
- endpoint
Gateway StringId - The endpoint gateway identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- endpoint
Gateway StringResource Binding Id - (String) The unique identifier for this endpoint gateway resource binding.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- href String
- (String) The URL for this endpoint gateway resource binding.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- is
Virtual StringEndpoint Gateway Resource Binding Id - The unique identifier of the EndpointGatewayResourceBinding.
- lifecycle
Reasons List<IsVirtual Endpoint Gateway Resource Binding Lifecycle Reason> - (List) The reasons for the current
lifecycle_state(if any).- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- lifecycle
State String - (String) The lifecycle state of the resource binding.
- Constraints: Allowable values are:
deleting,failed,pending,stable,suspended,updating,waiting. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- name String
- The name for this resource binding. The name is unique across all resource bindings for the endpoint gateway.
- Constraints: The maximum length is
63characters. The minimum length is1character. The value must match regular expression/^-?([a-z]|[a-z][-a-z0-9]*[a-z0-9]|[0-9][-a-z0-9]*([a-z]|[-a-z][-a-z0-9]*[a-z0-9]))$/.
- Constraints: The maximum length is
- resource
Type String - (String) The resource type.
- Constraints: Allowable values are:
endpoint_gateway_resource_binding. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- service
Endpoint String - (String) The fully qualified domain name of the service endpoint for the resource targeted by this resource binding.
- Constraints: The maximum length is
255characters. The minimum length is4characters. The value must match regular expression/^((?=[A-Za-z0-9-]{1,63}\\.)[A-Za-z0-9-]*\\.)+[A-Za-z]{2,63}\\.?$/.
- Constraints: The maximum length is
- target
Is
Virtual Endpoint Gateway Resource Binding Target - The target for this endpoint gateway resource binding. Nested schema for target:
- type String
- (String) The type of resource binding:-
weak: The binding is not dependent on the existence of the target resource.The enumerated values for this property mayexpand in the future.- Constraints: Allowable values are:
weak. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- created
At string - (String) The date and time that the resource binding was created.
- endpoint
Gateway stringId - The endpoint gateway identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- endpoint
Gateway stringResource Binding Id - (String) The unique identifier for this endpoint gateway resource binding.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- href string
- (String) The URL for this endpoint gateway resource binding.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- is
Virtual stringEndpoint Gateway Resource Binding Id - The unique identifier of the EndpointGatewayResourceBinding.
- lifecycle
Reasons IsVirtual Endpoint Gateway Resource Binding Lifecycle Reason[] - (List) The reasons for the current
lifecycle_state(if any).- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- lifecycle
State string - (String) The lifecycle state of the resource binding.
- Constraints: Allowable values are:
deleting,failed,pending,stable,suspended,updating,waiting. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- name string
- The name for this resource binding. The name is unique across all resource bindings for the endpoint gateway.
- Constraints: The maximum length is
63characters. The minimum length is1character. The value must match regular expression/^-?([a-z]|[a-z][-a-z0-9]*[a-z0-9]|[0-9][-a-z0-9]*([a-z]|[-a-z][-a-z0-9]*[a-z0-9]))$/.
- Constraints: The maximum length is
- resource
Type string - (String) The resource type.
- Constraints: Allowable values are:
endpoint_gateway_resource_binding. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- service
Endpoint string - (String) The fully qualified domain name of the service endpoint for the resource targeted by this resource binding.
- Constraints: The maximum length is
255characters. The minimum length is4characters. The value must match regular expression/^((?=[A-Za-z0-9-]{1,63}\\.)[A-Za-z0-9-]*\\.)+[A-Za-z]{2,63}\\.?$/.
- Constraints: The maximum length is
- target
Is
Virtual Endpoint Gateway Resource Binding Target - The target for this endpoint gateway resource binding. Nested schema for target:
- type string
- (String) The type of resource binding:-
weak: The binding is not dependent on the existence of the target resource.The enumerated values for this property mayexpand in the future.- Constraints: Allowable values are:
weak. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- created_
at str - (String) The date and time that the resource binding was created.
- endpoint_
gateway_ strid - The endpoint gateway identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- endpoint_
gateway_ strresource_ binding_ id - (String) The unique identifier for this endpoint gateway resource binding.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- href str
- (String) The URL for this endpoint gateway resource binding.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- is_
virtual_ strendpoint_ gateway_ resource_ binding_ id - The unique identifier of the EndpointGatewayResourceBinding.
- lifecycle_
reasons Sequence[IsVirtual Endpoint Gateway Resource Binding Lifecycle Reason Args] - (List) The reasons for the current
lifecycle_state(if any).- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- lifecycle_
state str - (String) The lifecycle state of the resource binding.
- Constraints: Allowable values are:
deleting,failed,pending,stable,suspended,updating,waiting. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- name str
- The name for this resource binding. The name is unique across all resource bindings for the endpoint gateway.
- Constraints: The maximum length is
63characters. The minimum length is1character. The value must match regular expression/^-?([a-z]|[a-z][-a-z0-9]*[a-z0-9]|[0-9][-a-z0-9]*([a-z]|[-a-z][-a-z0-9]*[a-z0-9]))$/.
- Constraints: The maximum length is
- resource_
type str - (String) The resource type.
- Constraints: Allowable values are:
endpoint_gateway_resource_binding. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- service_
endpoint str - (String) The fully qualified domain name of the service endpoint for the resource targeted by this resource binding.
- Constraints: The maximum length is
255characters. The minimum length is4characters. The value must match regular expression/^((?=[A-Za-z0-9-]{1,63}\\.)[A-Za-z0-9-]*\\.)+[A-Za-z]{2,63}\\.?$/.
- Constraints: The maximum length is
- target
Is
Virtual Endpoint Gateway Resource Binding Target Args - The target for this endpoint gateway resource binding. Nested schema for target:
- type str
- (String) The type of resource binding:-
weak: The binding is not dependent on the existence of the target resource.The enumerated values for this property mayexpand in the future.- Constraints: Allowable values are:
weak. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- created
At String - (String) The date and time that the resource binding was created.
- endpoint
Gateway StringId - The endpoint gateway identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- endpoint
Gateway StringResource Binding Id - (String) The unique identifier for this endpoint gateway resource binding.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- href String
- (String) The URL for this endpoint gateway resource binding.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- is
Virtual StringEndpoint Gateway Resource Binding Id - The unique identifier of the EndpointGatewayResourceBinding.
- lifecycle
Reasons List<Property Map> - (List) The reasons for the current
lifecycle_state(if any).- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- lifecycle
State String - (String) The lifecycle state of the resource binding.
- Constraints: Allowable values are:
deleting,failed,pending,stable,suspended,updating,waiting. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- name String
- The name for this resource binding. The name is unique across all resource bindings for the endpoint gateway.
- Constraints: The maximum length is
63characters. The minimum length is1character. The value must match regular expression/^-?([a-z]|[a-z][-a-z0-9]*[a-z0-9]|[0-9][-a-z0-9]*([a-z]|[-a-z][-a-z0-9]*[a-z0-9]))$/.
- Constraints: The maximum length is
- resource
Type String - (String) The resource type.
- Constraints: Allowable values are:
endpoint_gateway_resource_binding. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- service
Endpoint String - (String) The fully qualified domain name of the service endpoint for the resource targeted by this resource binding.
- Constraints: The maximum length is
255characters. The minimum length is4characters. The value must match regular expression/^((?=[A-Za-z0-9-]{1,63}\\.)[A-Za-z0-9-]*\\.)+[A-Za-z]{2,63}\\.?$/.
- Constraints: The maximum length is
- target Property Map
- The target for this endpoint gateway resource binding. Nested schema for target:
- type String
- (String) The type of resource binding:-
weak: The binding is not dependent on the existence of the target resource.The enumerated values for this property mayexpand in the future.- Constraints: Allowable values are:
weak. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
Supporting Types
IsVirtualEndpointGatewayResourceBindingLifecycleReason, IsVirtualEndpointGatewayResourceBindingLifecycleReasonArgs
- Code string
- (String) A reason code for this lifecycle state:-
internal_error: internal error (contact IBM support)-resource_suspended_by_provider: The resource has been suspended (contact IBM support)The enumerated values for this property mayexpand in the future.- Constraints: Allowable values are:
internal_error,resource_suspended_by_provider. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- Message string
- (String) An explanation of the reason for this lifecycle state.
- More
Info string - (String) A link to documentation about the reason for this lifecycle state.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- Code string
- (String) A reason code for this lifecycle state:-
internal_error: internal error (contact IBM support)-resource_suspended_by_provider: The resource has been suspended (contact IBM support)The enumerated values for this property mayexpand in the future.- Constraints: Allowable values are:
internal_error,resource_suspended_by_provider. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- Message string
- (String) An explanation of the reason for this lifecycle state.
- More
Info string - (String) A link to documentation about the reason for this lifecycle state.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- code String
- (String) A reason code for this lifecycle state:-
internal_error: internal error (contact IBM support)-resource_suspended_by_provider: The resource has been suspended (contact IBM support)The enumerated values for this property mayexpand in the future.- Constraints: Allowable values are:
internal_error,resource_suspended_by_provider. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- message String
- (String) An explanation of the reason for this lifecycle state.
- more
Info String - (String) A link to documentation about the reason for this lifecycle state.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- code string
- (String) A reason code for this lifecycle state:-
internal_error: internal error (contact IBM support)-resource_suspended_by_provider: The resource has been suspended (contact IBM support)The enumerated values for this property mayexpand in the future.- Constraints: Allowable values are:
internal_error,resource_suspended_by_provider. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- message string
- (String) An explanation of the reason for this lifecycle state.
- more
Info string - (String) A link to documentation about the reason for this lifecycle state.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- code str
- (String) A reason code for this lifecycle state:-
internal_error: internal error (contact IBM support)-resource_suspended_by_provider: The resource has been suspended (contact IBM support)The enumerated values for this property mayexpand in the future.- Constraints: Allowable values are:
internal_error,resource_suspended_by_provider. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- message str
- (String) An explanation of the reason for this lifecycle state.
- more_
info str - (String) A link to documentation about the reason for this lifecycle state.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- code String
- (String) A reason code for this lifecycle state:-
internal_error: internal error (contact IBM support)-resource_suspended_by_provider: The resource has been suspended (contact IBM support)The enumerated values for this property mayexpand in the future.- Constraints: Allowable values are:
internal_error,resource_suspended_by_provider. The maximum length is128characters. The minimum length is1character. The value must match regular expression/^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
- Constraints: Allowable values are:
- message String
- (String) An explanation of the reason for this lifecycle state.
- more
Info String - (String) A link to documentation about the reason for this lifecycle state.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
IsVirtualEndpointGatewayResourceBindingTarget, IsVirtualEndpointGatewayResourceBindingTargetArgs
- Crn string
- Constraints: The maximum length is
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- Crn string
- Constraints: The maximum length is
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- crn String
- Constraints: The maximum length is
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- crn string
- Constraints: The maximum length is
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- crn str
- Constraints: The maximum length is
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- crn String
- Constraints: The maximum length is
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
Import
You can import the ibm_is_virtual_endpoint_gateway_resource_binding resource by using id.
The id property can be formed from endpoint_gateway_id, and endpoint_gateway_resource_binding_id in the following format:
<endpoint_gateway_id>/<endpoint_gateway_resource_binding_id>
endpoint_gateway_id: A string. The endpoint gateway identifier.endpoint_gateway_resource_binding_id: A string in the formatr006-a7ba95b6-a254-47e4-b129-10593df8a373. The unique identifier for this endpoint gateway resource binding.
Syntax
```sh $ pulumi import ibm:index/isVirtualEndpointGatewayResourceBinding:IsVirtualEndpointGatewayResourceBinding is_virtual_endpoint_gateway_resource_binding <endpoint_gateway_id>/<endpoint_gateway_resource_binding_id> ```
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibmTerraform Provider.
