1. Packages
  2. Control Plane (cpln)
  3. API Docs
  4. Gvc
Control Plane v0.0.27 published on Saturday, May 25, 2024 by pulumiverse

cpln.Gvc

Explore with Pulumi AI

cpln logo
Control Plane v0.0.27 published on Saturday, May 25, 2024 by pulumiverse

    Create Gvc Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Gvc(name: string, args?: GvcArgs, opts?: CustomResourceOptions);
    @overload
    def Gvc(resource_name: str,
            args: Optional[GvcArgs] = None,
            opts: Optional[ResourceOptions] = None)
    
    @overload
    def Gvc(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            controlplane_tracing: Optional[GvcControlplaneTracingArgs] = None,
            description: Optional[str] = None,
            domain: Optional[str] = None,
            env: Optional[Mapping[str, str]] = None,
            lightstep_tracing: Optional[GvcLightstepTracingArgs] = None,
            load_balancer: Optional[GvcLoadBalancerArgs] = None,
            locations: Optional[Sequence[str]] = None,
            name: Optional[str] = None,
            otel_tracing: Optional[GvcOtelTracingArgs] = None,
            pull_secrets: Optional[Sequence[str]] = None,
            sidecar: Optional[GvcSidecarArgs] = None,
            tags: Optional[Mapping[str, str]] = None)
    func NewGvc(ctx *Context, name string, args *GvcArgs, opts ...ResourceOption) (*Gvc, error)
    public Gvc(string name, GvcArgs? args = null, CustomResourceOptions? opts = null)
    public Gvc(String name, GvcArgs args)
    public Gvc(String name, GvcArgs args, CustomResourceOptions options)
    
    type: cpln:Gvc
    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 GvcArgs
    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 GvcArgs
    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 GvcArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GvcArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GvcArgs
    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 gvcResource = new Cpln.Gvc("gvcResource", new()
    {
        ControlplaneTracing = new Cpln.Inputs.GvcControlplaneTracingArgs
        {
            Sampling = 0,
            CustomTags = 
            {
                { "string", "string" },
            },
        },
        Description = "string",
        Env = 
        {
            { "string", "string" },
        },
        LightstepTracing = new Cpln.Inputs.GvcLightstepTracingArgs
        {
            Endpoint = "string",
            Sampling = 0,
            Credentials = "string",
            CustomTags = 
            {
                { "string", "string" },
            },
        },
        LoadBalancer = new Cpln.Inputs.GvcLoadBalancerArgs
        {
            Dedicated = false,
            TrustedProxies = 0,
        },
        Locations = new[]
        {
            "string",
        },
        Name = "string",
        OtelTracing = new Cpln.Inputs.GvcOtelTracingArgs
        {
            Endpoint = "string",
            Sampling = 0,
            CustomTags = 
            {
                { "string", "string" },
            },
        },
        PullSecrets = new[]
        {
            "string",
        },
        Sidecar = new Cpln.Inputs.GvcSidecarArgs
        {
            Envoy = "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := cpln.NewGvc(ctx, "gvcResource", &cpln.GvcArgs{
    	ControlplaneTracing: &cpln.GvcControlplaneTracingArgs{
    		Sampling: pulumi.Int(0),
    		CustomTags: pulumi.StringMap{
    			"string": pulumi.String("string"),
    		},
    	},
    	Description: pulumi.String("string"),
    	Env: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	LightstepTracing: &cpln.GvcLightstepTracingArgs{
    		Endpoint:    pulumi.String("string"),
    		Sampling:    pulumi.Int(0),
    		Credentials: pulumi.String("string"),
    		CustomTags: pulumi.StringMap{
    			"string": pulumi.String("string"),
    		},
    	},
    	LoadBalancer: &cpln.GvcLoadBalancerArgs{
    		Dedicated:      pulumi.Bool(false),
    		TrustedProxies: pulumi.Int(0),
    	},
    	Locations: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Name: pulumi.String("string"),
    	OtelTracing: &cpln.GvcOtelTracingArgs{
    		Endpoint: pulumi.String("string"),
    		Sampling: pulumi.Int(0),
    		CustomTags: pulumi.StringMap{
    			"string": pulumi.String("string"),
    		},
    	},
    	PullSecrets: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Sidecar: &cpln.GvcSidecarArgs{
    		Envoy: pulumi.String("string"),
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var gvcResource = new Gvc("gvcResource", GvcArgs.builder()
        .controlplaneTracing(GvcControlplaneTracingArgs.builder()
            .sampling(0)
            .customTags(Map.of("string", "string"))
            .build())
        .description("string")
        .env(Map.of("string", "string"))
        .lightstepTracing(GvcLightstepTracingArgs.builder()
            .endpoint("string")
            .sampling(0)
            .credentials("string")
            .customTags(Map.of("string", "string"))
            .build())
        .loadBalancer(GvcLoadBalancerArgs.builder()
            .dedicated(false)
            .trustedProxies(0)
            .build())
        .locations("string")
        .name("string")
        .otelTracing(GvcOtelTracingArgs.builder()
            .endpoint("string")
            .sampling(0)
            .customTags(Map.of("string", "string"))
            .build())
        .pullSecrets("string")
        .sidecar(GvcSidecarArgs.builder()
            .envoy("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    gvc_resource = cpln.Gvc("gvcResource",
        controlplane_tracing=cpln.GvcControlplaneTracingArgs(
            sampling=0,
            custom_tags={
                "string": "string",
            },
        ),
        description="string",
        env={
            "string": "string",
        },
        lightstep_tracing=cpln.GvcLightstepTracingArgs(
            endpoint="string",
            sampling=0,
            credentials="string",
            custom_tags={
                "string": "string",
            },
        ),
        load_balancer=cpln.GvcLoadBalancerArgs(
            dedicated=False,
            trusted_proxies=0,
        ),
        locations=["string"],
        name="string",
        otel_tracing=cpln.GvcOtelTracingArgs(
            endpoint="string",
            sampling=0,
            custom_tags={
                "string": "string",
            },
        ),
        pull_secrets=["string"],
        sidecar=cpln.GvcSidecarArgs(
            envoy="string",
        ),
        tags={
            "string": "string",
        })
    
    const gvcResource = new cpln.Gvc("gvcResource", {
        controlplaneTracing: {
            sampling: 0,
            customTags: {
                string: "string",
            },
        },
        description: "string",
        env: {
            string: "string",
        },
        lightstepTracing: {
            endpoint: "string",
            sampling: 0,
            credentials: "string",
            customTags: {
                string: "string",
            },
        },
        loadBalancer: {
            dedicated: false,
            trustedProxies: 0,
        },
        locations: ["string"],
        name: "string",
        otelTracing: {
            endpoint: "string",
            sampling: 0,
            customTags: {
                string: "string",
            },
        },
        pullSecrets: ["string"],
        sidecar: {
            envoy: "string",
        },
        tags: {
            string: "string",
        },
    });
    
    type: cpln:Gvc
    properties:
        controlplaneTracing:
            customTags:
                string: string
            sampling: 0
        description: string
        env:
            string: string
        lightstepTracing:
            credentials: string
            customTags:
                string: string
            endpoint: string
            sampling: 0
        loadBalancer:
            dedicated: false
            trustedProxies: 0
        locations:
            - string
        name: string
        otelTracing:
            customTags:
                string: string
            endpoint: string
            sampling: 0
        pullSecrets:
            - string
        sidecar:
            envoy: string
        tags:
            string: string
    

    Gvc 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 Gvc resource accepts the following input properties:

    ControlplaneTracing Pulumiverse.Cpln.Inputs.GvcControlplaneTracing
    Description string
    Description of the GVC.
    Domain string
    Custom domain name used by associated workloads.

    Deprecated: Selecting a domain on a GVC will be deprecated in the future. Use the 'cpln_domain resource' instead.

    Env Dictionary<string, string>
    Key-value array of resource env variables.
    LightstepTracing Pulumiverse.Cpln.Inputs.GvcLightstepTracing
    LoadBalancer Pulumiverse.Cpln.Inputs.GvcLoadBalancer
    Dedicated load balancer configuration.
    Locations List<string>
    A list of locations making up the Global Virtual Cloud.
    Name string
    Name of the GVC.
    OtelTracing Pulumiverse.Cpln.Inputs.GvcOtelTracing
    PullSecrets List<string>
    A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
    Sidecar Pulumiverse.Cpln.Inputs.GvcSidecar
    Tags Dictionary<string, string>
    Key-value map of resource tags.
    ControlplaneTracing GvcControlplaneTracingArgs
    Description string
    Description of the GVC.
    Domain string
    Custom domain name used by associated workloads.

    Deprecated: Selecting a domain on a GVC will be deprecated in the future. Use the 'cpln_domain resource' instead.

    Env map[string]string
    Key-value array of resource env variables.
    LightstepTracing GvcLightstepTracingArgs
    LoadBalancer GvcLoadBalancerArgs
    Dedicated load balancer configuration.
    Locations []string
    A list of locations making up the Global Virtual Cloud.
    Name string
    Name of the GVC.
    OtelTracing GvcOtelTracingArgs
    PullSecrets []string
    A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
    Sidecar GvcSidecarArgs
    Tags map[string]string
    Key-value map of resource tags.
    controlplaneTracing GvcControlplaneTracing
    description String
    Description of the GVC.
    domain String
    Custom domain name used by associated workloads.

    Deprecated: Selecting a domain on a GVC will be deprecated in the future. Use the 'cpln_domain resource' instead.

    env Map<String,String>
    Key-value array of resource env variables.
    lightstepTracing GvcLightstepTracing
    loadBalancer GvcLoadBalancer
    Dedicated load balancer configuration.
    locations List<String>
    A list of locations making up the Global Virtual Cloud.
    name String
    Name of the GVC.
    otelTracing GvcOtelTracing
    pullSecrets List<String>
    A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
    sidecar GvcSidecar
    tags Map<String,String>
    Key-value map of resource tags.
    controlplaneTracing GvcControlplaneTracing
    description string
    Description of the GVC.
    domain string
    Custom domain name used by associated workloads.

    Deprecated: Selecting a domain on a GVC will be deprecated in the future. Use the 'cpln_domain resource' instead.

    env {[key: string]: string}
    Key-value array of resource env variables.
    lightstepTracing GvcLightstepTracing
    loadBalancer GvcLoadBalancer
    Dedicated load balancer configuration.
    locations string[]
    A list of locations making up the Global Virtual Cloud.
    name string
    Name of the GVC.
    otelTracing GvcOtelTracing
    pullSecrets string[]
    A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
    sidecar GvcSidecar
    tags {[key: string]: string}
    Key-value map of resource tags.
    controlplane_tracing GvcControlplaneTracingArgs
    description str
    Description of the GVC.
    domain str
    Custom domain name used by associated workloads.

    Deprecated: Selecting a domain on a GVC will be deprecated in the future. Use the 'cpln_domain resource' instead.

    env Mapping[str, str]
    Key-value array of resource env variables.
    lightstep_tracing GvcLightstepTracingArgs
    load_balancer GvcLoadBalancerArgs
    Dedicated load balancer configuration.
    locations Sequence[str]
    A list of locations making up the Global Virtual Cloud.
    name str
    Name of the GVC.
    otel_tracing GvcOtelTracingArgs
    pull_secrets Sequence[str]
    A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
    sidecar GvcSidecarArgs
    tags Mapping[str, str]
    Key-value map of resource tags.
    controlplaneTracing Property Map
    description String
    Description of the GVC.
    domain String
    Custom domain name used by associated workloads.

    Deprecated: Selecting a domain on a GVC will be deprecated in the future. Use the 'cpln_domain resource' instead.

    env Map<String>
    Key-value array of resource env variables.
    lightstepTracing Property Map
    loadBalancer Property Map
    Dedicated load balancer configuration.
    locations List<String>
    A list of locations making up the Global Virtual Cloud.
    name String
    Name of the GVC.
    otelTracing Property Map
    pullSecrets List<String>
    A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
    sidecar Property Map
    tags Map<String>
    Key-value map of resource tags.

    Outputs

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

    Alias string
    The alias name of the GVC.
    CplnId string
    The ID, in GUID format, of the GVC.
    Id string
    The provider-assigned unique ID for this managed resource.
    SelfLink string
    Full link to this resource. Can be referenced by other resources.
    Alias string
    The alias name of the GVC.
    CplnId string
    The ID, in GUID format, of the GVC.
    Id string
    The provider-assigned unique ID for this managed resource.
    SelfLink string
    Full link to this resource. Can be referenced by other resources.
    alias String
    The alias name of the GVC.
    cplnId String
    The ID, in GUID format, of the GVC.
    id String
    The provider-assigned unique ID for this managed resource.
    selfLink String
    Full link to this resource. Can be referenced by other resources.
    alias string
    The alias name of the GVC.
    cplnId string
    The ID, in GUID format, of the GVC.
    id string
    The provider-assigned unique ID for this managed resource.
    selfLink string
    Full link to this resource. Can be referenced by other resources.
    alias str
    The alias name of the GVC.
    cpln_id str
    The ID, in GUID format, of the GVC.
    id str
    The provider-assigned unique ID for this managed resource.
    self_link str
    Full link to this resource. Can be referenced by other resources.
    alias String
    The alias name of the GVC.
    cplnId String
    The ID, in GUID format, of the GVC.
    id String
    The provider-assigned unique ID for this managed resource.
    selfLink String
    Full link to this resource. Can be referenced by other resources.

    Look up Existing Gvc Resource

    Get an existing Gvc 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?: GvcState, opts?: CustomResourceOptions): Gvc
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            alias: Optional[str] = None,
            controlplane_tracing: Optional[GvcControlplaneTracingArgs] = None,
            cpln_id: Optional[str] = None,
            description: Optional[str] = None,
            domain: Optional[str] = None,
            env: Optional[Mapping[str, str]] = None,
            lightstep_tracing: Optional[GvcLightstepTracingArgs] = None,
            load_balancer: Optional[GvcLoadBalancerArgs] = None,
            locations: Optional[Sequence[str]] = None,
            name: Optional[str] = None,
            otel_tracing: Optional[GvcOtelTracingArgs] = None,
            pull_secrets: Optional[Sequence[str]] = None,
            self_link: Optional[str] = None,
            sidecar: Optional[GvcSidecarArgs] = None,
            tags: Optional[Mapping[str, str]] = None) -> Gvc
    func GetGvc(ctx *Context, name string, id IDInput, state *GvcState, opts ...ResourceOption) (*Gvc, error)
    public static Gvc Get(string name, Input<string> id, GvcState? state, CustomResourceOptions? opts = null)
    public static Gvc get(String name, Output<String> id, GvcState 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:
    Alias string
    The alias name of the GVC.
    ControlplaneTracing Pulumiverse.Cpln.Inputs.GvcControlplaneTracing
    CplnId string
    The ID, in GUID format, of the GVC.
    Description string
    Description of the GVC.
    Domain string
    Custom domain name used by associated workloads.

    Deprecated: Selecting a domain on a GVC will be deprecated in the future. Use the 'cpln_domain resource' instead.

    Env Dictionary<string, string>
    Key-value array of resource env variables.
    LightstepTracing Pulumiverse.Cpln.Inputs.GvcLightstepTracing
    LoadBalancer Pulumiverse.Cpln.Inputs.GvcLoadBalancer
    Dedicated load balancer configuration.
    Locations List<string>
    A list of locations making up the Global Virtual Cloud.
    Name string
    Name of the GVC.
    OtelTracing Pulumiverse.Cpln.Inputs.GvcOtelTracing
    PullSecrets List<string>
    A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
    SelfLink string
    Full link to this resource. Can be referenced by other resources.
    Sidecar Pulumiverse.Cpln.Inputs.GvcSidecar
    Tags Dictionary<string, string>
    Key-value map of resource tags.
    Alias string
    The alias name of the GVC.
    ControlplaneTracing GvcControlplaneTracingArgs
    CplnId string
    The ID, in GUID format, of the GVC.
    Description string
    Description of the GVC.
    Domain string
    Custom domain name used by associated workloads.

    Deprecated: Selecting a domain on a GVC will be deprecated in the future. Use the 'cpln_domain resource' instead.

    Env map[string]string
    Key-value array of resource env variables.
    LightstepTracing GvcLightstepTracingArgs
    LoadBalancer GvcLoadBalancerArgs
    Dedicated load balancer configuration.
    Locations []string
    A list of locations making up the Global Virtual Cloud.
    Name string
    Name of the GVC.
    OtelTracing GvcOtelTracingArgs
    PullSecrets []string
    A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
    SelfLink string
    Full link to this resource. Can be referenced by other resources.
    Sidecar GvcSidecarArgs
    Tags map[string]string
    Key-value map of resource tags.
    alias String
    The alias name of the GVC.
    controlplaneTracing GvcControlplaneTracing
    cplnId String
    The ID, in GUID format, of the GVC.
    description String
    Description of the GVC.
    domain String
    Custom domain name used by associated workloads.

    Deprecated: Selecting a domain on a GVC will be deprecated in the future. Use the 'cpln_domain resource' instead.

    env Map<String,String>
    Key-value array of resource env variables.
    lightstepTracing GvcLightstepTracing
    loadBalancer GvcLoadBalancer
    Dedicated load balancer configuration.
    locations List<String>
    A list of locations making up the Global Virtual Cloud.
    name String
    Name of the GVC.
    otelTracing GvcOtelTracing
    pullSecrets List<String>
    A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
    selfLink String
    Full link to this resource. Can be referenced by other resources.
    sidecar GvcSidecar
    tags Map<String,String>
    Key-value map of resource tags.
    alias string
    The alias name of the GVC.
    controlplaneTracing GvcControlplaneTracing
    cplnId string
    The ID, in GUID format, of the GVC.
    description string
    Description of the GVC.
    domain string
    Custom domain name used by associated workloads.

    Deprecated: Selecting a domain on a GVC will be deprecated in the future. Use the 'cpln_domain resource' instead.

    env {[key: string]: string}
    Key-value array of resource env variables.
    lightstepTracing GvcLightstepTracing
    loadBalancer GvcLoadBalancer
    Dedicated load balancer configuration.
    locations string[]
    A list of locations making up the Global Virtual Cloud.
    name string
    Name of the GVC.
    otelTracing GvcOtelTracing
    pullSecrets string[]
    A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
    selfLink string
    Full link to this resource. Can be referenced by other resources.
    sidecar GvcSidecar
    tags {[key: string]: string}
    Key-value map of resource tags.
    alias str
    The alias name of the GVC.
    controlplane_tracing GvcControlplaneTracingArgs
    cpln_id str
    The ID, in GUID format, of the GVC.
    description str
    Description of the GVC.
    domain str
    Custom domain name used by associated workloads.

    Deprecated: Selecting a domain on a GVC will be deprecated in the future. Use the 'cpln_domain resource' instead.

    env Mapping[str, str]
    Key-value array of resource env variables.
    lightstep_tracing GvcLightstepTracingArgs
    load_balancer GvcLoadBalancerArgs
    Dedicated load balancer configuration.
    locations Sequence[str]
    A list of locations making up the Global Virtual Cloud.
    name str
    Name of the GVC.
    otel_tracing GvcOtelTracingArgs
    pull_secrets Sequence[str]
    A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
    self_link str
    Full link to this resource. Can be referenced by other resources.
    sidecar GvcSidecarArgs
    tags Mapping[str, str]
    Key-value map of resource tags.
    alias String
    The alias name of the GVC.
    controlplaneTracing Property Map
    cplnId String
    The ID, in GUID format, of the GVC.
    description String
    Description of the GVC.
    domain String
    Custom domain name used by associated workloads.

    Deprecated: Selecting a domain on a GVC will be deprecated in the future. Use the 'cpln_domain resource' instead.

    env Map<String>
    Key-value array of resource env variables.
    lightstepTracing Property Map
    loadBalancer Property Map
    Dedicated load balancer configuration.
    locations List<String>
    A list of locations making up the Global Virtual Cloud.
    name String
    Name of the GVC.
    otelTracing Property Map
    pullSecrets List<String>
    A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
    selfLink String
    Full link to this resource. Can be referenced by other resources.
    sidecar Property Map
    tags Map<String>
    Key-value map of resource tags.

    Supporting Types

    GvcControlplaneTracing, GvcControlplaneTracingArgs

    Sampling int
    CustomTags Dictionary<string, string>
    Sampling int
    CustomTags map[string]string
    sampling Integer
    customTags Map<String,String>
    sampling number
    customTags {[key: string]: string}
    sampling int
    custom_tags Mapping[str, str]
    sampling Number
    customTags Map<String>

    GvcLightstepTracing, GvcLightstepTracingArgs

    Endpoint string
    Sampling int
    Credentials string
    CustomTags Dictionary<string, string>
    Endpoint string
    Sampling int
    Credentials string
    CustomTags map[string]string
    endpoint String
    sampling Integer
    credentials String
    customTags Map<String,String>
    endpoint string
    sampling number
    credentials string
    customTags {[key: string]: string}
    endpoint str
    sampling int
    credentials str
    custom_tags Mapping[str, str]
    endpoint String
    sampling Number
    credentials String
    customTags Map<String>

    GvcLoadBalancer, GvcLoadBalancerArgs

    dedicated Boolean
    trustedProxies Integer

    GvcOtelTracing, GvcOtelTracingArgs

    Endpoint string
    Sampling int
    CustomTags Dictionary<string, string>
    Endpoint string
    Sampling int
    CustomTags map[string]string
    endpoint String
    sampling Integer
    customTags Map<String,String>
    endpoint string
    sampling number
    customTags {[key: string]: string}
    endpoint str
    sampling int
    custom_tags Mapping[str, str]
    endpoint String
    sampling Number
    customTags Map<String>

    GvcSidecar, GvcSidecarArgs

    Envoy string
    Envoy string
    envoy String
    envoy string
    envoy str
    envoy String

    Package Details

    Repository
    cpln pulumiverse/pulumi-cpln
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the cpln Terraform Provider.
    cpln logo
    Control Plane v0.0.27 published on Saturday, May 25, 2024 by pulumiverse