com.pulumi.azurenative.recoveryservices.outputs.AzureFileShareProtectionPolicyResponse 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.
The newest version!
// *** 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.LogSchedulePolicyResponse;
import com.pulumi.azurenative.recoveryservices.outputs.LongTermRetentionPolicyResponse;
import com.pulumi.azurenative.recoveryservices.outputs.LongTermSchedulePolicyResponse;
import com.pulumi.azurenative.recoveryservices.outputs.SimpleRetentionPolicyResponse;
import com.pulumi.azurenative.recoveryservices.outputs.SimpleSchedulePolicyResponse;
import com.pulumi.azurenative.recoveryservices.outputs.SimpleSchedulePolicyV2Response;
import com.pulumi.core.Either;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
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 AzureFileShareProtectionPolicyResponse {
/**
* @return This property will be used as the discriminator for deciding the specific types in the polymorphic chain of types.
* Expected value is 'AzureStorage'.
*
*/
private String backupManagementType;
/**
* @return Number of items associated with this policy.
*
*/
private @Nullable Integer protectedItemsCount;
/**
* @return ResourceGuard Operation Requests
*
*/
private @Nullable List resourceGuardOperationRequests;
/**
* @return Retention policy with the details on backup copy retention ranges.
*
*/
private @Nullable Either retentionPolicy;
/**
* @return Backup schedule specified as part of backup policy.
*
*/
private @Nullable Object schedulePolicy;
/**
* @return TimeZone optional input as string. For example: TimeZone = "Pacific Standard Time".
*
*/
private @Nullable String timeZone;
/**
* @return Type of workload for the backup management
*
*/
private @Nullable String workLoadType;
private AzureFileShareProtectionPolicyResponse() {}
/**
* @return This property will be used as the discriminator for deciding the specific types in the polymorphic chain of types.
* Expected value is 'AzureStorage'.
*
*/
public String backupManagementType() {
return this.backupManagementType;
}
/**
* @return Number of items associated with this policy.
*
*/
public Optional protectedItemsCount() {
return Optional.ofNullable(this.protectedItemsCount);
}
/**
* @return ResourceGuard Operation Requests
*
*/
public List resourceGuardOperationRequests() {
return this.resourceGuardOperationRequests == null ? List.of() : this.resourceGuardOperationRequests;
}
/**
* @return Retention policy with the details on backup copy retention ranges.
*
*/
public Optional> retentionPolicy() {
return Optional.ofNullable(this.retentionPolicy);
}
/**
* @return Backup schedule specified as part of backup policy.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy