All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.migrationdiscoverysap.models.OperationStatusResult 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.migrationdiscoverysap.models;

import com.azure.core.management.exception.ManagementError;
import com.azure.resourcemanager.migrationdiscoverysap.fluent.models.OperationStatusResultInner;
import java.time.OffsetDateTime;
import java.util.List;

/**
 * An immutable client-side representation of OperationStatusResult.
 */
public interface OperationStatusResult {
    /**
     * Gets the id property: Fully qualified ID for the async operation.
     * 
     * @return the id value.
     */
    String id();

    /**
     * Gets the name property: Name of the async operation.
     * 
     * @return the name value.
     */
    String name();

    /**
     * Gets the status property: Operation status.
     * 
     * @return the status value.
     */
    String status();

    /**
     * Gets the percentComplete property: Percent of the operation that is complete.
     * 
     * @return the percentComplete value.
     */
    Float percentComplete();

    /**
     * Gets the startTime property: The start time of the operation.
     * 
     * @return the startTime value.
     */
    OffsetDateTime startTime();

    /**
     * Gets the endTime property: The end time of the operation.
     * 
     * @return the endTime value.
     */
    OffsetDateTime endTime();

    /**
     * Gets the operations property: The operations list.
     * 
     * @return the operations value.
     */
    List operations();

    /**
     * Gets the error property: If present, details of the operation error.
     * 
     * @return the error value.
     */
    ManagementError error();

    /**
     * Gets the inner com.azure.resourcemanager.migrationdiscoverysap.fluent.models.OperationStatusResultInner object.
     * 
     * @return the inner object.
     */
    OperationStatusResultInner innerModel();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy