1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. servicedirectory
  5. Endpoint
Google Cloud Classic v6.66.0 published on Monday, Sep 18, 2023 by Pulumi

gcp.servicedirectory.Endpoint

Explore with Pulumi AI

gcp logo
Google Cloud Classic v6.66.0 published on Monday, Sep 18, 2023 by Pulumi

    An individual endpoint that provides a service.

    To get more information about Endpoint, see:

    Example Usage

    Service Directory Endpoint Basic

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleNamespace = new Gcp.ServiceDirectory.Namespace("exampleNamespace", new()
        {
            NamespaceId = "example-namespace",
            Location = "us-central1",
        }, new CustomResourceOptions
        {
            Provider = google_beta,
        });
    
        var exampleService = new Gcp.ServiceDirectory.Service("exampleService", new()
        {
            ServiceId = "example-service",
            Namespace = exampleNamespace.Id,
        }, new CustomResourceOptions
        {
            Provider = google_beta,
        });
    
        var exampleEndpoint = new Gcp.ServiceDirectory.Endpoint("exampleEndpoint", new()
        {
            EndpointId = "example-endpoint",
            Service = exampleService.Id,
            Metadata = 
            {
                { "stage", "prod" },
                { "region", "us-central1" },
            },
            Address = "1.2.3.4",
            Port = 5353,
        }, new CustomResourceOptions
        {
            Provider = google_beta,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v6/go/gcp/servicedirectory"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleNamespace, err := servicedirectory.NewNamespace(ctx, "exampleNamespace", &servicedirectory.NamespaceArgs{
    			NamespaceId: pulumi.String("example-namespace"),
    			Location:    pulumi.String("us-central1"),
    		}, pulumi.Provider(google_beta))
    		if err != nil {
    			return err
    		}
    		exampleService, err := servicedirectory.NewService(ctx, "exampleService", &servicedirectory.ServiceArgs{
    			ServiceId: pulumi.String("example-service"),
    			Namespace: exampleNamespace.ID(),
    		}, pulumi.Provider(google_beta))
    		if err != nil {
    			return err
    		}
    		_, err = servicedirectory.NewEndpoint(ctx, "exampleEndpoint", &servicedirectory.EndpointArgs{
    			EndpointId: pulumi.String("example-endpoint"),
    			Service:    exampleService.ID(),
    			Metadata: pulumi.StringMap{
    				"stage":  pulumi.String("prod"),
    				"region": pulumi.String("us-central1"),
    			},
    			Address: pulumi.String("1.2.3.4"),
    			Port:    pulumi.Int(5353),
    		}, pulumi.Provider(google_beta))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.servicedirectory.Namespace;
    import com.pulumi.gcp.servicedirectory.NamespaceArgs;
    import com.pulumi.gcp.servicedirectory.Service;
    import com.pulumi.gcp.servicedirectory.ServiceArgs;
    import com.pulumi.gcp.servicedirectory.Endpoint;
    import com.pulumi.gcp.servicedirectory.EndpointArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 exampleNamespace = new Namespace("exampleNamespace", NamespaceArgs.builder()        
                .namespaceId("example-namespace")
                .location("us-central1")
                .build(), CustomResourceOptions.builder()
                    .provider(google_beta)
                    .build());
    
            var exampleService = new Service("exampleService", ServiceArgs.builder()        
                .serviceId("example-service")
                .namespace(exampleNamespace.id())
                .build(), CustomResourceOptions.builder()
                    .provider(google_beta)
                    .build());
    
            var exampleEndpoint = new Endpoint("exampleEndpoint", EndpointArgs.builder()        
                .endpointId("example-endpoint")
                .service(exampleService.id())
                .metadata(Map.ofEntries(
                    Map.entry("stage", "prod"),
                    Map.entry("region", "us-central1")
                ))
                .address("1.2.3.4")
                .port(5353)
                .build(), CustomResourceOptions.builder()
                    .provider(google_beta)
                    .build());
    
        }
    }
    
    import pulumi
    import pulumi_gcp as gcp
    
    example_namespace = gcp.servicedirectory.Namespace("exampleNamespace",
        namespace_id="example-namespace",
        location="us-central1",
        opts=pulumi.ResourceOptions(provider=google_beta))
    example_service = gcp.servicedirectory.Service("exampleService",
        service_id="example-service",
        namespace=example_namespace.id,
        opts=pulumi.ResourceOptions(provider=google_beta))
    example_endpoint = gcp.servicedirectory.Endpoint("exampleEndpoint",
        endpoint_id="example-endpoint",
        service=example_service.id,
        metadata={
            "stage": "prod",
            "region": "us-central1",
        },
        address="1.2.3.4",
        port=5353,
        opts=pulumi.ResourceOptions(provider=google_beta))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const exampleNamespace = new gcp.servicedirectory.Namespace("exampleNamespace", {
        namespaceId: "example-namespace",
        location: "us-central1",
    }, {
        provider: google_beta,
    });
    const exampleService = new gcp.servicedirectory.Service("exampleService", {
        serviceId: "example-service",
        namespace: exampleNamespace.id,
    }, {
        provider: google_beta,
    });
    const exampleEndpoint = new gcp.servicedirectory.Endpoint("exampleEndpoint", {
        endpointId: "example-endpoint",
        service: exampleService.id,
        metadata: {
            stage: "prod",
            region: "us-central1",
        },
        address: "1.2.3.4",
        port: 5353,
    }, {
        provider: google_beta,
    });
    
    resources:
      exampleNamespace:
        type: gcp:servicedirectory:Namespace
        properties:
          namespaceId: example-namespace
          location: us-central1
        options:
          provider: ${["google-beta"]}
      exampleService:
        type: gcp:servicedirectory:Service
        properties:
          serviceId: example-service
          namespace: ${exampleNamespace.id}
        options:
          provider: ${["google-beta"]}
      exampleEndpoint:
        type: gcp:servicedirectory:Endpoint
        properties:
          endpointId: example-endpoint
          service: ${exampleService.id}
          metadata:
            stage: prod
            region: us-central1
          address: 1.2.3.4
          port: 5353
        options:
          provider: ${["google-beta"]}
    

    Service Directory Endpoint With Network

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var project = Gcp.Organizations.GetProject.Invoke();
    
        var exampleNetwork = new Gcp.Compute.Network("exampleNetwork", new()
        {
        }, new CustomResourceOptions
        {
            Provider = google_beta,
        });
    
        var exampleNamespace = new Gcp.ServiceDirectory.Namespace("exampleNamespace", new()
        {
            NamespaceId = "example-namespace",
            Location = "us-central1",
        }, new CustomResourceOptions
        {
            Provider = google_beta,
        });
    
        var exampleService = new Gcp.ServiceDirectory.Service("exampleService", new()
        {
            ServiceId = "example-service",
            Namespace = exampleNamespace.Id,
        }, new CustomResourceOptions
        {
            Provider = google_beta,
        });
    
        var exampleEndpoint = new Gcp.ServiceDirectory.Endpoint("exampleEndpoint", new()
        {
            EndpointId = "example-endpoint",
            Service = exampleService.Id,
            Metadata = 
            {
                { "stage", "prod" },
                { "region", "us-central1" },
            },
            Network = Output.Tuple(project, exampleNetwork.Name).Apply(values =>
            {
                var project = values.Item1;
                var name = values.Item2;
                return $"projects/{project.Apply(getProjectResult => getProjectResult.Number)}/locations/global/networks/{name}";
            }),
            Address = "1.2.3.4",
            Port = 5353,
        }, new CustomResourceOptions
        {
            Provider = google_beta,
        });
    
    });
    
    package main
    
    import (
    	"fmt"
    
    	"github.com/pulumi/pulumi-gcp/sdk/v6/go/gcp/compute"
    	"github.com/pulumi/pulumi-gcp/sdk/v6/go/gcp/organizations"
    	"github.com/pulumi/pulumi-gcp/sdk/v6/go/gcp/servicedirectory"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		project, err := organizations.LookupProject(ctx, nil, nil)
    		if err != nil {
    			return err
    		}
    		exampleNetwork, err := compute.NewNetwork(ctx, "exampleNetwork", nil, pulumi.Provider(google_beta))
    		if err != nil {
    			return err
    		}
    		exampleNamespace, err := servicedirectory.NewNamespace(ctx, "exampleNamespace", &servicedirectory.NamespaceArgs{
    			NamespaceId: pulumi.String("example-namespace"),
    			Location:    pulumi.String("us-central1"),
    		}, pulumi.Provider(google_beta))
    		if err != nil {
    			return err
    		}
    		exampleService, err := servicedirectory.NewService(ctx, "exampleService", &servicedirectory.ServiceArgs{
    			ServiceId: pulumi.String("example-service"),
    			Namespace: exampleNamespace.ID(),
    		}, pulumi.Provider(google_beta))
    		if err != nil {
    			return err
    		}
    		_, err = servicedirectory.NewEndpoint(ctx, "exampleEndpoint", &servicedirectory.EndpointArgs{
    			EndpointId: pulumi.String("example-endpoint"),
    			Service:    exampleService.ID(),
    			Metadata: pulumi.StringMap{
    				"stage":  pulumi.String("prod"),
    				"region": pulumi.String("us-central1"),
    			},
    			Network: exampleNetwork.Name.ApplyT(func(name string) (string, error) {
    				return fmt.Sprintf("projects/%v/locations/global/networks/%v", project.Number, name), nil
    			}).(pulumi.StringOutput),
    			Address: pulumi.String("1.2.3.4"),
    			Port:    pulumi.Int(5353),
    		}, pulumi.Provider(google_beta))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.organizations.OrganizationsFunctions;
    import com.pulumi.gcp.organizations.inputs.GetProjectArgs;
    import com.pulumi.gcp.compute.Network;
    import com.pulumi.gcp.compute.NetworkArgs;
    import com.pulumi.gcp.servicedirectory.Namespace;
    import com.pulumi.gcp.servicedirectory.NamespaceArgs;
    import com.pulumi.gcp.servicedirectory.Service;
    import com.pulumi.gcp.servicedirectory.ServiceArgs;
    import com.pulumi.gcp.servicedirectory.Endpoint;
    import com.pulumi.gcp.servicedirectory.EndpointArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 project = OrganizationsFunctions.getProject();
    
            var exampleNetwork = new Network("exampleNetwork", NetworkArgs.Empty, CustomResourceOptions.builder()
                .provider(google_beta)
                .build());
    
            var exampleNamespace = new Namespace("exampleNamespace", NamespaceArgs.builder()        
                .namespaceId("example-namespace")
                .location("us-central1")
                .build(), CustomResourceOptions.builder()
                    .provider(google_beta)
                    .build());
    
            var exampleService = new Service("exampleService", ServiceArgs.builder()        
                .serviceId("example-service")
                .namespace(exampleNamespace.id())
                .build(), CustomResourceOptions.builder()
                    .provider(google_beta)
                    .build());
    
            var exampleEndpoint = new Endpoint("exampleEndpoint", EndpointArgs.builder()        
                .endpointId("example-endpoint")
                .service(exampleService.id())
                .metadata(Map.ofEntries(
                    Map.entry("stage", "prod"),
                    Map.entry("region", "us-central1")
                ))
                .network(exampleNetwork.name().applyValue(name -> String.format("projects/%s/locations/global/networks/%s", project.applyValue(getProjectResult -> getProjectResult.number()),name)))
                .address("1.2.3.4")
                .port(5353)
                .build(), CustomResourceOptions.builder()
                    .provider(google_beta)
                    .build());
    
        }
    }
    
    import pulumi
    import pulumi_gcp as gcp
    
    project = gcp.organizations.get_project()
    example_network = gcp.compute.Network("exampleNetwork", opts=pulumi.ResourceOptions(provider=google_beta))
    example_namespace = gcp.servicedirectory.Namespace("exampleNamespace",
        namespace_id="example-namespace",
        location="us-central1",
        opts=pulumi.ResourceOptions(provider=google_beta))
    example_service = gcp.servicedirectory.Service("exampleService",
        service_id="example-service",
        namespace=example_namespace.id,
        opts=pulumi.ResourceOptions(provider=google_beta))
    example_endpoint = gcp.servicedirectory.Endpoint("exampleEndpoint",
        endpoint_id="example-endpoint",
        service=example_service.id,
        metadata={
            "stage": "prod",
            "region": "us-central1",
        },
        network=example_network.name.apply(lambda name: f"projects/{project.number}/locations/global/networks/{name}"),
        address="1.2.3.4",
        port=5353,
        opts=pulumi.ResourceOptions(provider=google_beta))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const project = gcp.organizations.getProject({});
    const exampleNetwork = new gcp.compute.Network("exampleNetwork", {}, {
        provider: google_beta,
    });
    const exampleNamespace = new gcp.servicedirectory.Namespace("exampleNamespace", {
        namespaceId: "example-namespace",
        location: "us-central1",
    }, {
        provider: google_beta,
    });
    const exampleService = new gcp.servicedirectory.Service("exampleService", {
        serviceId: "example-service",
        namespace: exampleNamespace.id,
    }, {
        provider: google_beta,
    });
    const exampleEndpoint = new gcp.servicedirectory.Endpoint("exampleEndpoint", {
        endpointId: "example-endpoint",
        service: exampleService.id,
        metadata: {
            stage: "prod",
            region: "us-central1",
        },
        network: pulumi.all([project, exampleNetwork.name]).apply(([project, name]) => `projects/${project.number}/locations/global/networks/${name}`),
        address: "1.2.3.4",
        port: 5353,
    }, {
        provider: google_beta,
    });
    
    resources:
      exampleNetwork:
        type: gcp:compute:Network
        options:
          provider: ${["google-beta"]}
      exampleNamespace:
        type: gcp:servicedirectory:Namespace
        properties:
          namespaceId: example-namespace
          location: us-central1
        options:
          provider: ${["google-beta"]}
      exampleService:
        type: gcp:servicedirectory:Service
        properties:
          serviceId: example-service
          namespace: ${exampleNamespace.id}
        options:
          provider: ${["google-beta"]}
      exampleEndpoint:
        type: gcp:servicedirectory:Endpoint
        properties:
          endpointId: example-endpoint
          service: ${exampleService.id}
          metadata:
            stage: prod
            region: us-central1
          network: projects/${project.number}/locations/global/networks/${exampleNetwork.name}
          address: 1.2.3.4
          port: 5353
        options:
          provider: ${["google-beta"]}
    variables:
      project:
        fn::invoke:
          Function: gcp:organizations:getProject
          Arguments: {}
    

    Create Endpoint Resource

    new Endpoint(name: string, args: EndpointArgs, opts?: CustomResourceOptions);
    @overload
    def Endpoint(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 address: Optional[str] = None,
                 endpoint_id: Optional[str] = None,
                 metadata: Optional[Mapping[str, str]] = None,
                 network: Optional[str] = None,
                 port: Optional[int] = None,
                 service: Optional[str] = None)
    @overload
    def Endpoint(resource_name: str,
                 args: EndpointArgs,
                 opts: Optional[ResourceOptions] = None)
    func NewEndpoint(ctx *Context, name string, args EndpointArgs, opts ...ResourceOption) (*Endpoint, error)
    public Endpoint(string name, EndpointArgs args, CustomResourceOptions? opts = null)
    public Endpoint(String name, EndpointArgs args)
    public Endpoint(String name, EndpointArgs args, CustomResourceOptions options)
    
    type: gcp:servicedirectory:Endpoint
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args EndpointArgs
    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 EndpointArgs
    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 EndpointArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EndpointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EndpointArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Endpoint Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Endpoint resource accepts the following input properties:

    EndpointId string

    The Resource ID must be 1-63 characters long, including digits, lowercase letters or the hyphen character.


    Service string

    The resource name of the service that this endpoint provides.

    Address string

    IPv4 or IPv6 address of the endpoint.

    Metadata Dictionary<string, string>

    Metadata for the endpoint. This data can be consumed by service clients. The entire metadata dictionary may contain up to 512 characters, spread across all key-value pairs. Metadata that goes beyond any these limits will be rejected.

    Network string

    The URL to the network, such as projects/PROJECT_NUMBER/locations/global/networks/NETWORK_NAME.

    Port int

    Port that the endpoint is running on, must be in the range of [0, 65535]. If unspecified, the default is 0.

    EndpointId string

    The Resource ID must be 1-63 characters long, including digits, lowercase letters or the hyphen character.


    Service string

    The resource name of the service that this endpoint provides.

    Address string

    IPv4 or IPv6 address of the endpoint.

    Metadata map[string]string

    Metadata for the endpoint. This data can be consumed by service clients. The entire metadata dictionary may contain up to 512 characters, spread across all key-value pairs. Metadata that goes beyond any these limits will be rejected.

    Network string

    The URL to the network, such as projects/PROJECT_NUMBER/locations/global/networks/NETWORK_NAME.

    Port int

    Port that the endpoint is running on, must be in the range of [0, 65535]. If unspecified, the default is 0.

    endpointId String

    The Resource ID must be 1-63 characters long, including digits, lowercase letters or the hyphen character.


    service String

    The resource name of the service that this endpoint provides.

    address String

    IPv4 or IPv6 address of the endpoint.

    metadata Map<String,String>

    Metadata for the endpoint. This data can be consumed by service clients. The entire metadata dictionary may contain up to 512 characters, spread across all key-value pairs. Metadata that goes beyond any these limits will be rejected.

    network String

    The URL to the network, such as projects/PROJECT_NUMBER/locations/global/networks/NETWORK_NAME.

    port Integer

    Port that the endpoint is running on, must be in the range of [0, 65535]. If unspecified, the default is 0.

    endpointId string

    The Resource ID must be 1-63 characters long, including digits, lowercase letters or the hyphen character.


    service string

    The resource name of the service that this endpoint provides.

    address string

    IPv4 or IPv6 address of the endpoint.

    metadata {[key: string]: string}

    Metadata for the endpoint. This data can be consumed by service clients. The entire metadata dictionary may contain up to 512 characters, spread across all key-value pairs. Metadata that goes beyond any these limits will be rejected.

    network string

    The URL to the network, such as projects/PROJECT_NUMBER/locations/global/networks/NETWORK_NAME.

    port number

    Port that the endpoint is running on, must be in the range of [0, 65535]. If unspecified, the default is 0.

    endpoint_id str

    The Resource ID must be 1-63 characters long, including digits, lowercase letters or the hyphen character.


    service str

    The resource name of the service that this endpoint provides.

    address str

    IPv4 or IPv6 address of the endpoint.

    metadata Mapping[str, str]

    Metadata for the endpoint. This data can be consumed by service clients. The entire metadata dictionary may contain up to 512 characters, spread across all key-value pairs. Metadata that goes beyond any these limits will be rejected.

    network str

    The URL to the network, such as projects/PROJECT_NUMBER/locations/global/networks/NETWORK_NAME.

    port int

    Port that the endpoint is running on, must be in the range of [0, 65535]. If unspecified, the default is 0.

    endpointId String

    The Resource ID must be 1-63 characters long, including digits, lowercase letters or the hyphen character.


    service String

    The resource name of the service that this endpoint provides.

    address String

    IPv4 or IPv6 address of the endpoint.

    metadata Map<String>

    Metadata for the endpoint. This data can be consumed by service clients. The entire metadata dictionary may contain up to 512 characters, spread across all key-value pairs. Metadata that goes beyond any these limits will be rejected.

    network String

    The URL to the network, such as projects/PROJECT_NUMBER/locations/global/networks/NETWORK_NAME.

    port Number

    Port that the endpoint is running on, must be in the range of [0, 65535]. If unspecified, the default is 0.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Endpoint resource produces the following output properties:

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    The resource name for the endpoint in the format projects/*/locations/*/namespaces/*/services/*/endpoints/*.

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    The resource name for the endpoint in the format projects/*/locations/*/namespaces/*/services/*/endpoints/*.

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    The resource name for the endpoint in the format projects/*/locations/*/namespaces/*/services/*/endpoints/*.

    id string

    The provider-assigned unique ID for this managed resource.

    name string

    The resource name for the endpoint in the format projects/*/locations/*/namespaces/*/services/*/endpoints/*.

    id str

    The provider-assigned unique ID for this managed resource.

    name str

    The resource name for the endpoint in the format projects/*/locations/*/namespaces/*/services/*/endpoints/*.

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    The resource name for the endpoint in the format projects/*/locations/*/namespaces/*/services/*/endpoints/*.

    Look up Existing Endpoint Resource

    Get an existing Endpoint 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?: EndpointState, opts?: CustomResourceOptions): Endpoint
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            address: Optional[str] = None,
            endpoint_id: Optional[str] = None,
            metadata: Optional[Mapping[str, str]] = None,
            name: Optional[str] = None,
            network: Optional[str] = None,
            port: Optional[int] = None,
            service: Optional[str] = None) -> Endpoint
    func GetEndpoint(ctx *Context, name string, id IDInput, state *EndpointState, opts ...ResourceOption) (*Endpoint, error)
    public static Endpoint Get(string name, Input<string> id, EndpointState? state, CustomResourceOptions? opts = null)
    public static Endpoint get(String name, Output<String> id, EndpointState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    Address string

    IPv4 or IPv6 address of the endpoint.

    EndpointId string

    The Resource ID must be 1-63 characters long, including digits, lowercase letters or the hyphen character.


    Metadata Dictionary<string, string>

    Metadata for the endpoint. This data can be consumed by service clients. The entire metadata dictionary may contain up to 512 characters, spread across all key-value pairs. Metadata that goes beyond any these limits will be rejected.

    Name string

    The resource name for the endpoint in the format projects/*/locations/*/namespaces/*/services/*/endpoints/*.

    Network string

    The URL to the network, such as projects/PROJECT_NUMBER/locations/global/networks/NETWORK_NAME.

    Port int

    Port that the endpoint is running on, must be in the range of [0, 65535]. If unspecified, the default is 0.

    Service string

    The resource name of the service that this endpoint provides.

    Address string

    IPv4 or IPv6 address of the endpoint.

    EndpointId string

    The Resource ID must be 1-63 characters long, including digits, lowercase letters or the hyphen character.


    Metadata map[string]string

    Metadata for the endpoint. This data can be consumed by service clients. The entire metadata dictionary may contain up to 512 characters, spread across all key-value pairs. Metadata that goes beyond any these limits will be rejected.

    Name string

    The resource name for the endpoint in the format projects/*/locations/*/namespaces/*/services/*/endpoints/*.

    Network string

    The URL to the network, such as projects/PROJECT_NUMBER/locations/global/networks/NETWORK_NAME.

    Port int

    Port that the endpoint is running on, must be in the range of [0, 65535]. If unspecified, the default is 0.

    Service string

    The resource name of the service that this endpoint provides.

    address String

    IPv4 or IPv6 address of the endpoint.

    endpointId String

    The Resource ID must be 1-63 characters long, including digits, lowercase letters or the hyphen character.


    metadata Map<String,String>

    Metadata for the endpoint. This data can be consumed by service clients. The entire metadata dictionary may contain up to 512 characters, spread across all key-value pairs. Metadata that goes beyond any these limits will be rejected.

    name String

    The resource name for the endpoint in the format projects/*/locations/*/namespaces/*/services/*/endpoints/*.

    network String

    The URL to the network, such as projects/PROJECT_NUMBER/locations/global/networks/NETWORK_NAME.

    port Integer

    Port that the endpoint is running on, must be in the range of [0, 65535]. If unspecified, the default is 0.

    service String

    The resource name of the service that this endpoint provides.

    address string

    IPv4 or IPv6 address of the endpoint.

    endpointId string

    The Resource ID must be 1-63 characters long, including digits, lowercase letters or the hyphen character.


    metadata {[key: string]: string}

    Metadata for the endpoint. This data can be consumed by service clients. The entire metadata dictionary may contain up to 512 characters, spread across all key-value pairs. Metadata that goes beyond any these limits will be rejected.

    name string

    The resource name for the endpoint in the format projects/*/locations/*/namespaces/*/services/*/endpoints/*.

    network string

    The URL to the network, such as projects/PROJECT_NUMBER/locations/global/networks/NETWORK_NAME.

    port number

    Port that the endpoint is running on, must be in the range of [0, 65535]. If unspecified, the default is 0.

    service string

    The resource name of the service that this endpoint provides.

    address str

    IPv4 or IPv6 address of the endpoint.

    endpoint_id str

    The Resource ID must be 1-63 characters long, including digits, lowercase letters or the hyphen character.


    metadata Mapping[str, str]

    Metadata for the endpoint. This data can be consumed by service clients. The entire metadata dictionary may contain up to 512 characters, spread across all key-value pairs. Metadata that goes beyond any these limits will be rejected.

    name str

    The resource name for the endpoint in the format projects/*/locations/*/namespaces/*/services/*/endpoints/*.

    network str

    The URL to the network, such as projects/PROJECT_NUMBER/locations/global/networks/NETWORK_NAME.

    port int

    Port that the endpoint is running on, must be in the range of [0, 65535]. If unspecified, the default is 0.

    service str

    The resource name of the service that this endpoint provides.

    address String

    IPv4 or IPv6 address of the endpoint.

    endpointId String

    The Resource ID must be 1-63 characters long, including digits, lowercase letters or the hyphen character.


    metadata Map<String>

    Metadata for the endpoint. This data can be consumed by service clients. The entire metadata dictionary may contain up to 512 characters, spread across all key-value pairs. Metadata that goes beyond any these limits will be rejected.

    name String

    The resource name for the endpoint in the format projects/*/locations/*/namespaces/*/services/*/endpoints/*.

    network String

    The URL to the network, such as projects/PROJECT_NUMBER/locations/global/networks/NETWORK_NAME.

    port Number

    Port that the endpoint is running on, must be in the range of [0, 65535]. If unspecified, the default is 0.

    service String

    The resource name of the service that this endpoint provides.

    Import

    Endpoint can be imported using any of these accepted formats

     $ pulumi import gcp:servicedirectory/endpoint:Endpoint default projects/{{project}}/locations/{{location}}/namespaces/{{namespace_id}}/services/{{service_id}}/endpoints/{{endpoint_id}}
    
     $ pulumi import gcp:servicedirectory/endpoint:Endpoint default {{project}}/{{location}}/{{namespace_id}}/{{service_id}}/{{endpoint_id}}
    
     $ pulumi import gcp:servicedirectory/endpoint:Endpoint default {{location}}/{{namespace_id}}/{{service_id}}/{{endpoint_id}}
    

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the google-beta Terraform Provider.

    gcp logo
    Google Cloud Classic v6.66.0 published on Monday, Sep 18, 2023 by Pulumi