get Zero Trust Device Custom Profiles
suspend fun getZeroTrustDeviceCustomProfiles(argument: GetZeroTrustDeviceCustomProfilesPlainArgs): GetZeroTrustDeviceCustomProfilesInvokeResult
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const exampleZeroTrustDeviceCustomProfiles = cloudflare.getZeroTrustDeviceCustomProfiles({
accountId: "699d98642c564d2e855e9661899b7252",
});
Content copied to clipboard
import pulumi
import pulumi_cloudflare as cloudflare
example_zero_trust_device_custom_profiles = cloudflare.get_zero_trust_device_custom_profiles(account_id="699d98642c564d2e855e9661899b7252")
Content copied to clipboard
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
return await Deployment.RunAsync(() =>
{
var exampleZeroTrustDeviceCustomProfiles = Cloudflare.GetZeroTrustDeviceCustomProfiles.Invoke(new()
{
AccountId = "699d98642c564d2e855e9661899b7252",
});
});
Content copied to clipboard
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.LookupZeroTrustDeviceCustomProfiles(ctx, &cloudflare.LookupZeroTrustDeviceCustomProfilesArgs{
AccountId: "699d98642c564d2e855e9661899b7252",
}, nil)
if err != nil {
return err
}
return nil
})
}
Content copied to clipboard
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.GetZeroTrustDeviceCustomProfilesArgs;
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 exampleZeroTrustDeviceCustomProfiles = CloudflareFunctions.getZeroTrustDeviceCustomProfiles(GetZeroTrustDeviceCustomProfilesArgs.builder()
.accountId("699d98642c564d2e855e9661899b7252")
.build());
}
}
Content copied to clipboard
variables:
exampleZeroTrustDeviceCustomProfiles:
fn::invoke:
function: cloudflare:getZeroTrustDeviceCustomProfiles
arguments:
accountId: 699d98642c564d2e855e9661899b7252
Content copied to clipboard
Return
A collection of values returned by getZeroTrustDeviceCustomProfiles.
Parameters
argument
A collection of arguments for invoking getZeroTrustDeviceCustomProfiles.
suspend fun getZeroTrustDeviceCustomProfiles(accountId: String, maxItems: Int? = null): GetZeroTrustDeviceCustomProfilesInvokeResult
Return
A collection of values returned by getZeroTrustDeviceCustomProfiles.
Parameters
account Id
max Items
Max items to fetch, default: 1000
See also
suspend fun getZeroTrustDeviceCustomProfiles(argument: suspend GetZeroTrustDeviceCustomProfilesPlainArgsBuilder.() -> Unit): GetZeroTrustDeviceCustomProfilesInvokeResult
Return
A collection of values returned by getZeroTrustDeviceCustomProfiles.
Parameters
argument
Builder for com.pulumi.cloudflare.kotlin.inputs.GetZeroTrustDeviceCustomProfilesPlainArgs.