com.azure.resourcemanager.storage.models.MigrationState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-storage Show documentation
Show all versions of azure-resourcemanager-storage Show documentation
This package contains Microsoft Azure Storage Management SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.storage.models;
import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;
/** This property denotes the container level immutability to object level immutability migration state. */
public final class MigrationState extends ExpandableStringEnum {
/** Static value InProgress for MigrationState. */
public static final MigrationState IN_PROGRESS = fromString("InProgress");
/** Static value Completed for MigrationState. */
public static final MigrationState COMPLETED = fromString("Completed");
/**
* Creates or finds a MigrationState from its string representation.
*
* @param name a name to look for.
* @return the corresponding MigrationState.
*/
@JsonCreator
public static MigrationState fromString(String name) {
return fromString(name, MigrationState.class);
}
/**
* Gets known MigrationState values.
*
* @return known MigrationState values.
*/
public static Collection values() {
return values(MigrationState.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy