
com.pulumi.azurenative.workloads.outputs.GetProviderInstanceResult 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.workloads.outputs;
import com.pulumi.azurenative.workloads.outputs.DB2ProviderInstancePropertiesResponse;
import com.pulumi.azurenative.workloads.outputs.HanaDbProviderInstancePropertiesResponse;
import com.pulumi.azurenative.workloads.outputs.MsSqlServerProviderInstancePropertiesResponse;
import com.pulumi.azurenative.workloads.outputs.PrometheusHaClusterProviderInstancePropertiesResponse;
import com.pulumi.azurenative.workloads.outputs.PrometheusOSProviderInstancePropertiesResponse;
import com.pulumi.azurenative.workloads.outputs.ProviderInstancePropertiesResponseErrors;
import com.pulumi.azurenative.workloads.outputs.SapNetWeaverProviderInstancePropertiesResponse;
import com.pulumi.azurenative.workloads.outputs.SystemDataResponse;
import com.pulumi.azurenative.workloads.outputs.UserAssignedServiceIdentityResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetProviderInstanceResult {
/**
* @return Defines the provider instance errors.
*
*/
private ProviderInstancePropertiesResponseErrors errors;
/**
* @return Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*
*/
private String id;
/**
* @return [currently not in use] Managed service identity(user assigned identities)
*
*/
private @Nullable UserAssignedServiceIdentityResponse identity;
/**
* @return The name of the resource
*
*/
private String name;
/**
* @return Defines the provider specific properties.
*
*/
private @Nullable Object providerSettings;
/**
* @return State of provisioning of the provider instance
*
*/
private String provisioningState;
/**
* @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
*
*/
private SystemDataResponse systemData;
/**
* @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*
*/
private String type;
private GetProviderInstanceResult() {}
/**
* @return Defines the provider instance errors.
*
*/
public ProviderInstancePropertiesResponseErrors errors() {
return this.errors;
}
/**
* @return Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*
*/
public String id() {
return this.id;
}
/**
* @return [currently not in use] Managed service identity(user assigned identities)
*
*/
public Optional identity() {
return Optional.ofNullable(this.identity);
}
/**
* @return The name of the resource
*
*/
public String name() {
return this.name;
}
/**
* @return Defines the provider specific properties.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy