com.azure.resourcemanager.servicefabricmanagedclusters.models.ManagedClusterCodeVersionResult 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.resourcemanager.servicefabricmanagedclusters.fluent.models.ManagedClusterCodeVersionResultInner;
/**
* An immutable client-side representation of ManagedClusterCodeVersionResult.
*/
public interface ManagedClusterCodeVersionResult {
/**
* Gets the id property: The identification of the result.
*
* @return the id value.
*/
String id();
/**
* Gets the name property: The name of the result.
*
* @return the name value.
*/
String name();
/**
* Gets the type property: The result resource type.
*
* @return the type value.
*/
String type();
/**
* Gets the clusterCodeVersion property: The Service Fabric runtime version of the cluster.
*
* @return the clusterCodeVersion value.
*/
String clusterCodeVersion();
/**
* Gets the supportExpiryUtc property: The date of expiry of support of the version.
*
* @return the supportExpiryUtc value.
*/
String supportExpiryUtc();
/**
* Gets the osType property: Cluster operating system, the default will be Windows.
*
* @return the osType value.
*/
OsType osType();
/**
* Gets the inner
* com.azure.resourcemanager.servicefabricmanagedclusters.fluent.models.ManagedClusterCodeVersionResultInner object.
*
* @return the inner object.
*/
ManagedClusterCodeVersionResultInner innerModel();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy