com.azure.resourcemanager.servicefabricmanagedclusters.models.LongRunningOperationResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-servicefabricmanagedclusters Show documentation
Show all versions of azure-resourcemanager-servicefabricmanagedclusters Show documentation
This package contains Microsoft Azure SDK for Service Fabric Managed Clusters Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Service Fabric Managed Clusters Management Client. 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.servicefabricmanagedclusters.models;
import com.azure.core.management.exception.ManagementError;
import com.azure.resourcemanager.servicefabricmanagedclusters.fluent.models.LongRunningOperationResultInner;
import java.time.OffsetDateTime;
/**
* An immutable client-side representation of LongRunningOperationResult.
*/
public interface LongRunningOperationResult {
/**
* Gets the name property: The name of the operation.
*
* @return the name value.
*/
String name();
/**
* 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 percentComplete property: The completion percentage of the operation.
*
* @return the percentComplete value.
*/
Double percentComplete();
/**
* Gets the status property: The status of the operation.
*
* @return the status value.
*/
String status();
/**
* Gets the error property: The operation error.
*
* @return the error value.
*/
ManagementError error();
/**
* Gets the inner
* com.azure.resourcemanager.servicefabricmanagedclusters.fluent.models.LongRunningOperationResultInner object.
*
* @return the inner object.
*/
LongRunningOperationResultInner innerModel();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy