getZeroTrustGatewayProxyEndpoint

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const exampleZeroTrustGatewayProxyEndpoint = cloudflare.getZeroTrustGatewayProxyEndpoint({
accountId: "699d98642c564d2e855e9661899b7252",
proxyEndpointId: "ed35569b41ce4d1facfe683550f54086",
});
import pulumi
import pulumi_cloudflare as cloudflare
example_zero_trust_gateway_proxy_endpoint = cloudflare.get_zero_trust_gateway_proxy_endpoint(account_id="699d98642c564d2e855e9661899b7252",
proxy_endpoint_id="ed35569b41ce4d1facfe683550f54086")
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
return await Deployment.RunAsync(() =>
{
var exampleZeroTrustGatewayProxyEndpoint = Cloudflare.GetZeroTrustGatewayProxyEndpoint.Invoke(new()
{
AccountId = "699d98642c564d2e855e9661899b7252",
ProxyEndpointId = "ed35569b41ce4d1facfe683550f54086",
});
});
package main
import (
"github.com/pulumi/pulumi-cloudflare/sdk/v6/go/cloudflare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudflare.LookupZeroTrustGatewayProxyEndpoint(ctx, &cloudflare.LookupZeroTrustGatewayProxyEndpointArgs{
AccountId: "699d98642c564d2e855e9661899b7252",
ProxyEndpointId: "ed35569b41ce4d1facfe683550f54086",
}, nil)
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.cloudflare.CloudflareFunctions;
import com.pulumi.cloudflare.inputs.GetZeroTrustGatewayProxyEndpointArgs;
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 exampleZeroTrustGatewayProxyEndpoint = CloudflareFunctions.getZeroTrustGatewayProxyEndpoint(GetZeroTrustGatewayProxyEndpointArgs.builder()
.accountId("699d98642c564d2e855e9661899b7252")
.proxyEndpointId("ed35569b41ce4d1facfe683550f54086")
.build());
}
}
variables:
exampleZeroTrustGatewayProxyEndpoint:
fn::invoke:
function: cloudflare:getZeroTrustGatewayProxyEndpoint
arguments:
accountId: 699d98642c564d2e855e9661899b7252
proxyEndpointId: ed35569b41ce4d1facfe683550f54086

Return

A collection of values returned by getZeroTrustGatewayProxyEndpoint.

Parameters

argument

A collection of arguments for invoking getZeroTrustGatewayProxyEndpoint.


Return

A collection of values returned by getZeroTrustGatewayProxyEndpoint.

Parameters

accountId
proxyEndpointId

See also


Return

A collection of values returned by getZeroTrustGatewayProxyEndpoint.

Parameters

argument

Builder for com.pulumi.cloudflare.kotlin.inputs.GetZeroTrustGatewayProxyEndpointPlainArgs.

See also