com.pulumi.azure.paloalto.PaloaltoFunctions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.paloalto;
import com.pulumi.azure.Utilities;
import com.pulumi.azure.paloalto.inputs.GetLocalRulestackArgs;
import com.pulumi.azure.paloalto.inputs.GetLocalRulestackPlainArgs;
import com.pulumi.azure.paloalto.outputs.GetLocalRulestackResult;
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 PaloaltoFunctions {
public static Output getLocalRulestack(GetLocalRulestackArgs args) {
return getLocalRulestack(args, InvokeOptions.Empty);
}
public static CompletableFuture getLocalRulestackPlain(GetLocalRulestackPlainArgs args) {
return getLocalRulestackPlain(args, InvokeOptions.Empty);
}
public static Output getLocalRulestack(GetLocalRulestackArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure:paloalto/getLocalRulestack:getLocalRulestack", TypeShape.of(GetLocalRulestackResult.class), args, Utilities.withVersion(options));
}
public static CompletableFuture getLocalRulestackPlain(GetLocalRulestackPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure:paloalto/getLocalRulestack:getLocalRulestack", TypeShape.of(GetLocalRulestackResult.class), args, Utilities.withVersion(options));
}
}