com.pulumi.aws.controltower.ControltowerFunctions Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.controltower;
import com.pulumi.aws.Utilities;
import com.pulumi.aws.controltower.inputs.GetControlsArgs;
import com.pulumi.aws.controltower.inputs.GetControlsPlainArgs;
import com.pulumi.aws.controltower.outputs.GetControlsResult;
import com.pulumi.core.Output;
import com.pulumi.core.TypeShape;
import com.pulumi.deployment.Deployment;
import com.pulumi.deployment.InvokeOptions;
import java.util.concurrent.CompletableFuture;
public final class ControltowerFunctions {
/**
* List of Control Tower controls applied to an OU.
*
* ## Example Usage
*
* <!--Start PulumiCodeChooser -->
* <!--End PulumiCodeChooser -->
*
*/
public static Output getControls(GetControlsArgs args) {
return getControls(args, InvokeOptions.Empty);
}
/**
* List of Control Tower controls applied to an OU.
*
* ## Example Usage
*
* <!--Start PulumiCodeChooser -->
* <!--End PulumiCodeChooser -->
*
*/
public static CompletableFuture getControlsPlain(GetControlsPlainArgs args) {
return getControlsPlain(args, InvokeOptions.Empty);
}
/**
* List of Control Tower controls applied to an OU.
*
* ## Example Usage
*
* <!--Start PulumiCodeChooser -->
* <!--End PulumiCodeChooser -->
*
*/
public static Output getControls(GetControlsArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("aws:controltower/getControls:getControls", TypeShape.of(GetControlsResult.class), args, Utilities.withVersion(options));
}
/**
* List of Control Tower controls applied to an OU.
*
* ## Example Usage
*
* <!--Start PulumiCodeChooser -->
* <!--End PulumiCodeChooser -->
*
*/
public static CompletableFuture getControlsPlain(GetControlsPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("aws:controltower/getControls:getControls", TypeShape.of(GetControlsResult.class), args, Utilities.withVersion(options));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy