com.azure.resourcemanager.recoveryservicesbackup.models.AzureWorkloadSapHanaPointInTimeRestoreRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-recoveryservicesbackup Show documentation
Show all versions of azure-resourcemanager-recoveryservicesbackup Show documentation
This package contains Microsoft Azure SDK for RecoveryServicesBackup Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Open API 2.0 Specs for Azure RecoveryServices Backup service. Package tag package-2024-04.
// 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.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import java.time.OffsetDateTime;
import java.util.Map;
/**
* AzureWorkload SAP Hana -specific restore. Specifically for PointInTime/Log restore.
*/
@JsonTypeInfo(
use = JsonTypeInfo.Id.NAME,
include = JsonTypeInfo.As.PROPERTY,
property = "objectType",
defaultImpl = AzureWorkloadSapHanaPointInTimeRestoreRequest.class)
@JsonTypeName("AzureWorkloadSAPHanaPointInTimeRestoreRequest")
@JsonSubTypes({
@JsonSubTypes.Type(
name = "AzureWorkloadSAPHanaPointInTimeRestoreWithRehydrateRequest",
value = AzureWorkloadSapHanaPointInTimeRestoreWithRehydrateRequest.class) })
@Fluent
public class AzureWorkloadSapHanaPointInTimeRestoreRequest extends AzureWorkloadSapHanaRestoreRequest {
/*
* PointInTime value
*/
@JsonProperty(value = "pointInTime")
private OffsetDateTime pointInTime;
/**
* Creates an instance of AzureWorkloadSapHanaPointInTimeRestoreRequest class.
*/
public AzureWorkloadSapHanaPointInTimeRestoreRequest() {
}
/**
* Get the pointInTime property: PointInTime value.
*
* @return the pointInTime value.
*/
public OffsetDateTime pointInTime() {
return this.pointInTime;
}
/**
* Set the pointInTime property: PointInTime value.
*
* @param pointInTime the pointInTime value to set.
* @return the AzureWorkloadSapHanaPointInTimeRestoreRequest object itself.
*/
public AzureWorkloadSapHanaPointInTimeRestoreRequest withPointInTime(OffsetDateTime pointInTime) {
this.pointInTime = pointInTime;
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureWorkloadSapHanaPointInTimeRestoreRequest withRecoveryType(RecoveryType recoveryType) {
super.withRecoveryType(recoveryType);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureWorkloadSapHanaPointInTimeRestoreRequest withSourceResourceId(String sourceResourceId) {
super.withSourceResourceId(sourceResourceId);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureWorkloadSapHanaPointInTimeRestoreRequest withPropertyBag(Map propertyBag) {
super.withPropertyBag(propertyBag);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureWorkloadSapHanaPointInTimeRestoreRequest withTargetInfo(TargetRestoreInfo targetInfo) {
super.withTargetInfo(targetInfo);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureWorkloadSapHanaPointInTimeRestoreRequest withRecoveryMode(RecoveryMode recoveryMode) {
super.withRecoveryMode(recoveryMode);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureWorkloadSapHanaPointInTimeRestoreRequest withTargetResourceGroupName(String targetResourceGroupName) {
super.withTargetResourceGroupName(targetResourceGroupName);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureWorkloadSapHanaPointInTimeRestoreRequest
withUserAssignedManagedIdentityDetails(UserAssignedManagedIdentityDetails userAssignedManagedIdentityDetails) {
super.withUserAssignedManagedIdentityDetails(userAssignedManagedIdentityDetails);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureWorkloadSapHanaPointInTimeRestoreRequest
withSnapshotRestoreParameters(SnapshotRestoreParameters snapshotRestoreParameters) {
super.withSnapshotRestoreParameters(snapshotRestoreParameters);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureWorkloadSapHanaPointInTimeRestoreRequest 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();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy