
com.pulumi.azurenative.recoveryservices.outputs.ProtectionContainerMappingPropertiesResponse 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.recoveryservices.outputs;
import com.pulumi.azurenative.recoveryservices.outputs.A2AProtectionContainerMappingDetailsResponse;
import com.pulumi.azurenative.recoveryservices.outputs.HealthErrorResponse;
import com.pulumi.azurenative.recoveryservices.outputs.InMageRcmProtectionContainerMappingDetailsResponse;
import com.pulumi.azurenative.recoveryservices.outputs.VMwareCbtProtectionContainerMappingDetailsResponse;
import com.pulumi.core.annotations.CustomType;
import java.lang.Object;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ProtectionContainerMappingPropertiesResponse {
/**
* @return Health of pairing.
*
*/
private @Nullable String health;
/**
* @return Health error.
*
*/
private @Nullable List healthErrorDetails;
/**
* @return Friendly name of replication policy.
*
*/
private @Nullable String policyFriendlyName;
/**
* @return Policy ARM Id.
*
*/
private @Nullable String policyId;
/**
* @return Provider specific provider details.
*
*/
private @Nullable Object providerSpecificDetails;
/**
* @return Friendly name of source fabric.
*
*/
private @Nullable String sourceFabricFriendlyName;
/**
* @return Friendly name of source protection container.
*
*/
private @Nullable String sourceProtectionContainerFriendlyName;
/**
* @return Association Status.
*
*/
private @Nullable String state;
/**
* @return Friendly name of target fabric.
*
*/
private @Nullable String targetFabricFriendlyName;
/**
* @return Friendly name of paired container.
*
*/
private @Nullable String targetProtectionContainerFriendlyName;
/**
* @return Paired protection container ARM ID.
*
*/
private @Nullable String targetProtectionContainerId;
private ProtectionContainerMappingPropertiesResponse() {}
/**
* @return Health of pairing.
*
*/
public Optional health() {
return Optional.ofNullable(this.health);
}
/**
* @return Health error.
*
*/
public List healthErrorDetails() {
return this.healthErrorDetails == null ? List.of() : this.healthErrorDetails;
}
/**
* @return Friendly name of replication policy.
*
*/
public Optional policyFriendlyName() {
return Optional.ofNullable(this.policyFriendlyName);
}
/**
* @return Policy ARM Id.
*
*/
public Optional policyId() {
return Optional.ofNullable(this.policyId);
}
/**
* @return Provider specific provider details.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy