com.pulumi.azurenative.quota.QuotaFunctions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.azurenative.quota;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.quota.inputs.GetGroupQuotaArgs;
import com.pulumi.azurenative.quota.inputs.GetGroupQuotaPlainArgs;
import com.pulumi.azurenative.quota.inputs.GetGroupQuotaSubscriptionArgs;
import com.pulumi.azurenative.quota.inputs.GetGroupQuotaSubscriptionPlainArgs;
import com.pulumi.azurenative.quota.outputs.GetGroupQuotaResult;
import com.pulumi.azurenative.quota.outputs.GetGroupQuotaSubscriptionResult;
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 QuotaFunctions {
/**
* Gets the GroupQuotas for the name passed. It will return the GroupQuotas properties only. The details on group quota can be access from the group quota APIs.
* Azure REST API version: 2023-06-01-preview.
*
*/
public static Output getGroupQuota(GetGroupQuotaArgs args) {
return getGroupQuota(args, InvokeOptions.Empty);
}
/**
* Gets the GroupQuotas for the name passed. It will return the GroupQuotas properties only. The details on group quota can be access from the group quota APIs.
* Azure REST API version: 2023-06-01-preview.
*
*/
public static CompletableFuture getGroupQuotaPlain(GetGroupQuotaPlainArgs args) {
return getGroupQuotaPlain(args, InvokeOptions.Empty);
}
/**
* Gets the GroupQuotas for the name passed. It will return the GroupQuotas properties only. The details on group quota can be access from the group quota APIs.
* Azure REST API version: 2023-06-01-preview.
*
*/
public static Output getGroupQuota(GetGroupQuotaArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:quota:getGroupQuota", TypeShape.of(GetGroupQuotaResult.class), args, Utilities.withVersion(options));
}
/**
* Gets the GroupQuotas for the name passed. It will return the GroupQuotas properties only. The details on group quota can be access from the group quota APIs.
* Azure REST API version: 2023-06-01-preview.
*
*/
public static CompletableFuture getGroupQuotaPlain(GetGroupQuotaPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:quota:getGroupQuota", TypeShape.of(GetGroupQuotaResult.class), args, Utilities.withVersion(options));
}
/**
* Returns the subscriptionIds along with its provisioning state for being associated with the GroupQuota. If the subscription is not a member of GroupQuota, it will return 404, else 200.
* Azure REST API version: 2023-06-01-preview.
*
*/
public static Output getGroupQuotaSubscription(GetGroupQuotaSubscriptionArgs args) {
return getGroupQuotaSubscription(args, InvokeOptions.Empty);
}
/**
* Returns the subscriptionIds along with its provisioning state for being associated with the GroupQuota. If the subscription is not a member of GroupQuota, it will return 404, else 200.
* Azure REST API version: 2023-06-01-preview.
*
*/
public static CompletableFuture getGroupQuotaSubscriptionPlain(GetGroupQuotaSubscriptionPlainArgs args) {
return getGroupQuotaSubscriptionPlain(args, InvokeOptions.Empty);
}
/**
* Returns the subscriptionIds along with its provisioning state for being associated with the GroupQuota. If the subscription is not a member of GroupQuota, it will return 404, else 200.
* Azure REST API version: 2023-06-01-preview.
*
*/
public static Output getGroupQuotaSubscription(GetGroupQuotaSubscriptionArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:quota:getGroupQuotaSubscription", TypeShape.of(GetGroupQuotaSubscriptionResult.class), args, Utilities.withVersion(options));
}
/**
* Returns the subscriptionIds along with its provisioning state for being associated with the GroupQuota. If the subscription is not a member of GroupQuota, it will return 404, else 200.
* Azure REST API version: 2023-06-01-preview.
*
*/
public static CompletableFuture getGroupQuotaSubscriptionPlain(GetGroupQuotaSubscriptionPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:quota:getGroupQuotaSubscription", TypeShape.of(GetGroupQuotaSubscriptionResult.class), args, Utilities.withVersion(options));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy