com.pulumi.azurenative.managementpartner.ManagementpartnerFunctions 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.managementpartner;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.managementpartner.inputs.GetPartnerArgs;
import com.pulumi.azurenative.managementpartner.inputs.GetPartnerPlainArgs;
import com.pulumi.azurenative.managementpartner.outputs.GetPartnerResult;
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 ManagementpartnerFunctions {
/**
* Get the management partner using the partnerId, objectId and tenantId.
* Azure REST API version: 2018-02-01.
*
*/
public static Output getPartner(GetPartnerArgs args) {
return getPartner(args, InvokeOptions.Empty);
}
/**
* Get the management partner using the partnerId, objectId and tenantId.
* Azure REST API version: 2018-02-01.
*
*/
public static CompletableFuture getPartnerPlain(GetPartnerPlainArgs args) {
return getPartnerPlain(args, InvokeOptions.Empty);
}
/**
* Get the management partner using the partnerId, objectId and tenantId.
* Azure REST API version: 2018-02-01.
*
*/
public static Output getPartner(GetPartnerArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:managementpartner:getPartner", TypeShape.of(GetPartnerResult.class), args, Utilities.withVersion(options));
}
/**
* Get the management partner using the partnerId, objectId and tenantId.
* Azure REST API version: 2018-02-01.
*
*/
public static CompletableFuture getPartnerPlain(GetPartnerPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:managementpartner:getPartner", TypeShape.of(GetPartnerResult.class), args, Utilities.withVersion(options));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy