com.azure.resourcemanager.recoveryservicesbackup.models.AzureWorkloadSqlPointInTimeRestoreWithRehydrateRequest Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.recoveryservicesbackup.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import java.time.OffsetDateTime;
import java.util.List;
import java.util.Map;
/**
* AzureWorkload SQL-specific restore with integrated rehydration of recovery point.
*/
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "objectType")
@JsonTypeName("AzureWorkloadSQLPointInTimeRestoreWithRehydrateRequest")
@Fluent
public final class AzureWorkloadSqlPointInTimeRestoreWithRehydrateRequest
extends AzureWorkloadSqlPointInTimeRestoreRequest {
/*
* RP Rehydration Info
*/
@JsonProperty(value = "recoveryPointRehydrationInfo")
private RecoveryPointRehydrationInfo recoveryPointRehydrationInfo;
/**
* Creates an instance of AzureWorkloadSqlPointInTimeRestoreWithRehydrateRequest class.
*/
public AzureWorkloadSqlPointInTimeRestoreWithRehydrateRequest() {
}
/**
* Get the recoveryPointRehydrationInfo property: RP Rehydration Info.
*
* @return the recoveryPointRehydrationInfo value.
*/
public RecoveryPointRehydrationInfo recoveryPointRehydrationInfo() {
return this.recoveryPointRehydrationInfo;
}
/**
* Set the recoveryPointRehydrationInfo property: RP Rehydration Info.
*
* @param recoveryPointRehydrationInfo the recoveryPointRehydrationInfo value to set.
* @return the AzureWorkloadSqlPointInTimeRestoreWithRehydrateRequest object itself.
*/
public AzureWorkloadSqlPointInTimeRestoreWithRehydrateRequest
withRecoveryPointRehydrationInfo(RecoveryPointRehydrationInfo recoveryPointRehydrationInfo) {
this.recoveryPointRehydrationInfo = recoveryPointRehydrationInfo;
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureWorkloadSqlPointInTimeRestoreWithRehydrateRequest withPointInTime(OffsetDateTime pointInTime) {
super.withPointInTime(pointInTime);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureWorkloadSqlPointInTimeRestoreWithRehydrateRequest
withShouldUseAlternateTargetLocation(Boolean shouldUseAlternateTargetLocation) {
super.withShouldUseAlternateTargetLocation(shouldUseAlternateTargetLocation);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureWorkloadSqlPointInTimeRestoreWithRehydrateRequest withIsNonRecoverable(Boolean isNonRecoverable) {
super.withIsNonRecoverable(isNonRecoverable);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureWorkloadSqlPointInTimeRestoreWithRehydrateRequest
withAlternateDirectoryPaths(List alternateDirectoryPaths) {
super.withAlternateDirectoryPaths(alternateDirectoryPaths);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureWorkloadSqlPointInTimeRestoreWithRehydrateRequest withRecoveryType(RecoveryType recoveryType) {
super.withRecoveryType(recoveryType);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureWorkloadSqlPointInTimeRestoreWithRehydrateRequest withSourceResourceId(String sourceResourceId) {
super.withSourceResourceId(sourceResourceId);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureWorkloadSqlPointInTimeRestoreWithRehydrateRequest withPropertyBag(Map propertyBag) {
super.withPropertyBag(propertyBag);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureWorkloadSqlPointInTimeRestoreWithRehydrateRequest withTargetInfo(TargetRestoreInfo targetInfo) {
super.withTargetInfo(targetInfo);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureWorkloadSqlPointInTimeRestoreWithRehydrateRequest withRecoveryMode(RecoveryMode recoveryMode) {
super.withRecoveryMode(recoveryMode);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureWorkloadSqlPointInTimeRestoreWithRehydrateRequest
withTargetResourceGroupName(String targetResourceGroupName) {
super.withTargetResourceGroupName(targetResourceGroupName);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureWorkloadSqlPointInTimeRestoreWithRehydrateRequest
withUserAssignedManagedIdentityDetails(UserAssignedManagedIdentityDetails userAssignedManagedIdentityDetails) {
super.withUserAssignedManagedIdentityDetails(userAssignedManagedIdentityDetails);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureWorkloadSqlPointInTimeRestoreWithRehydrateRequest
withSnapshotRestoreParameters(SnapshotRestoreParameters snapshotRestoreParameters) {
super.withSnapshotRestoreParameters(snapshotRestoreParameters);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureWorkloadSqlPointInTimeRestoreWithRehydrateRequest
withTargetVirtualMachineId(String targetVirtualMachineId) {
super.withTargetVirtualMachineId(targetVirtualMachineId);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
@Override
public void validate() {
super.validate();
if (recoveryPointRehydrationInfo() != null) {
recoveryPointRehydrationInfo().validate();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy