
com.pulumi.azurenative.scom.ScomFunctions 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.scom;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.scom.inputs.GetInstanceArgs;
import com.pulumi.azurenative.scom.inputs.GetInstancePlainArgs;
import com.pulumi.azurenative.scom.inputs.GetManagedGatewayArgs;
import com.pulumi.azurenative.scom.inputs.GetManagedGatewayPlainArgs;
import com.pulumi.azurenative.scom.inputs.GetMonitoredResourceArgs;
import com.pulumi.azurenative.scom.inputs.GetMonitoredResourcePlainArgs;
import com.pulumi.azurenative.scom.outputs.GetInstanceResult;
import com.pulumi.azurenative.scom.outputs.GetManagedGatewayResult;
import com.pulumi.azurenative.scom.outputs.GetMonitoredResourceResult;
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 ScomFunctions {
/**
* Get SCOM managed instance details
* Azure REST API version: 2023-07-07-preview.
*
*/
public static Output getInstance(GetInstanceArgs args) {
return getInstance(args, InvokeOptions.Empty);
}
/**
* Get SCOM managed instance details
* Azure REST API version: 2023-07-07-preview.
*
*/
public static CompletableFuture getInstancePlain(GetInstancePlainArgs args) {
return getInstancePlain(args, InvokeOptions.Empty);
}
/**
* Get SCOM managed instance details
* Azure REST API version: 2023-07-07-preview.
*
*/
public static Output getInstance(GetInstanceArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:scom:getInstance", TypeShape.of(GetInstanceResult.class), args, Utilities.withVersion(options));
}
/**
* Get SCOM managed instance details
* Azure REST API version: 2023-07-07-preview.
*
*/
public static CompletableFuture getInstancePlain(GetInstancePlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:scom:getInstance", TypeShape.of(GetInstanceResult.class), args, Utilities.withVersion(options));
}
/**
* Retrieve the details of the gateway resource.
* Azure REST API version: 2023-07-07-preview.
*
*/
public static Output getManagedGateway(GetManagedGatewayArgs args) {
return getManagedGateway(args, InvokeOptions.Empty);
}
/**
* Retrieve the details of the gateway resource.
* Azure REST API version: 2023-07-07-preview.
*
*/
public static CompletableFuture getManagedGatewayPlain(GetManagedGatewayPlainArgs args) {
return getManagedGatewayPlain(args, InvokeOptions.Empty);
}
/**
* Retrieve the details of the gateway resource.
* Azure REST API version: 2023-07-07-preview.
*
*/
public static Output getManagedGateway(GetManagedGatewayArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:scom:getManagedGateway", TypeShape.of(GetManagedGatewayResult.class), args, Utilities.withVersion(options));
}
/**
* Retrieve the details of the gateway resource.
* Azure REST API version: 2023-07-07-preview.
*
*/
public static CompletableFuture getManagedGatewayPlain(GetManagedGatewayPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:scom:getManagedGateway", TypeShape.of(GetManagedGatewayResult.class), args, Utilities.withVersion(options));
}
/**
* Retrieve the details of the monitored resource.
* Azure REST API version: 2023-07-07-preview.
*
*/
public static Output getMonitoredResource(GetMonitoredResourceArgs args) {
return getMonitoredResource(args, InvokeOptions.Empty);
}
/**
* Retrieve the details of the monitored resource.
* Azure REST API version: 2023-07-07-preview.
*
*/
public static CompletableFuture getMonitoredResourcePlain(GetMonitoredResourcePlainArgs args) {
return getMonitoredResourcePlain(args, InvokeOptions.Empty);
}
/**
* Retrieve the details of the monitored resource.
* Azure REST API version: 2023-07-07-preview.
*
*/
public static Output getMonitoredResource(GetMonitoredResourceArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:scom:getMonitoredResource", TypeShape.of(GetMonitoredResourceResult.class), args, Utilities.withVersion(options));
}
/**
* Retrieve the details of the monitored resource.
* Azure REST API version: 2023-07-07-preview.
*
*/
public static CompletableFuture getMonitoredResourcePlain(GetMonitoredResourcePlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:scom:getMonitoredResource", TypeShape.of(GetMonitoredResourceResult.class), args, Utilities.withVersion(options));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy