ClusterVersionsClient Interface

public interface ClusterVersionsClient

An instance of this class provides access to all the operations defined in ClusterVersionsClient.

Method Summary

Modifier and Type Method and Description
abstract ClusterCodeVersionsListResultInner get(String location, String clusterVersion)

Gets information about a Service Fabric cluster code version available in the specified location.

abstract ClusterCodeVersionsListResultInner getByEnvironment(String location, ClusterVersionsEnvironment environment, String clusterVersion)

Gets information about a Service Fabric cluster code version available for the specified environment.

abstract Response<ClusterCodeVersionsListResultInner> getByEnvironmentWithResponse(String location, ClusterVersionsEnvironment environment, String clusterVersion, Context context)

Gets information about a Service Fabric cluster code version available for the specified environment.

abstract Response<ClusterCodeVersionsListResultInner> getWithResponse(String location, String clusterVersion, Context context)

Gets information about a Service Fabric cluster code version available in the specified location.

abstract ClusterCodeVersionsListResultInner list(String location)

Gets the list of Service Fabric cluster code versions available for the specified location.

abstract ClusterCodeVersionsListResultInner listByEnvironment(String location, ClusterVersionsEnvironment environment)

Gets the list of Service Fabric cluster code versions available for the specified environment.

abstract Response<ClusterCodeVersionsListResultInner> listByEnvironmentWithResponse(String location, ClusterVersionsEnvironment environment, Context context)

Gets the list of Service Fabric cluster code versions available for the specified environment.

abstract Response<ClusterCodeVersionsListResultInner> listWithResponse(String location, Context context)

Gets the list of Service Fabric cluster code versions available for the specified location.

Method Details

get

public abstract ClusterCodeVersionsListResultInner get(String location, String clusterVersion)

Gets information about a Service Fabric cluster code version available in the specified location. Gets information about an available Service Fabric cluster code version.

Parameters:

location - The location for the cluster code versions. This is different from cluster location.
clusterVersion - The cluster code version.

Returns:

information about an available Service Fabric cluster code version.

getByEnvironment

public abstract ClusterCodeVersionsListResultInner getByEnvironment(String location, ClusterVersionsEnvironment environment, String clusterVersion)

Gets information about a Service Fabric cluster code version available for the specified environment. Gets information about an available Service Fabric cluster code version by environment.

Parameters:

location - The location for the cluster code versions. This is different from cluster location.
environment - The operating system of the cluster. The default means all.
clusterVersion - The cluster code version.

Returns:

information about an available Service Fabric cluster code version by environment.

getByEnvironmentWithResponse

public abstract Response<ClusterCodeVersionsListResultInner> getByEnvironmentWithResponse(String location, ClusterVersionsEnvironment environment, String clusterVersion, Context context)

Gets information about a Service Fabric cluster code version available for the specified environment. Gets information about an available Service Fabric cluster code version by environment.

Parameters:

location - The location for the cluster code versions. This is different from cluster location.
environment - The operating system of the cluster. The default means all.
clusterVersion - The cluster code version.
context - The context to associate with this operation.

Returns:

information about an available Service Fabric cluster code version by environment along with Response<T>.

getWithResponse

public abstract Response<ClusterCodeVersionsListResultInner> getWithResponse(String location, String clusterVersion, Context context)

Gets information about a Service Fabric cluster code version available in the specified location. Gets information about an available Service Fabric cluster code version.

Parameters:

location - The location for the cluster code versions. This is different from cluster location.
clusterVersion - The cluster code version.
context - The context to associate with this operation.

Returns:

information about an available Service Fabric cluster code version along with Response<T>.

list

public abstract ClusterCodeVersionsListResultInner list(String location)

Gets the list of Service Fabric cluster code versions available for the specified location. Gets all available code versions for Service Fabric cluster resources by location.

Parameters:

location - The location for the cluster code versions. This is different from cluster location.

Returns:

all available code versions for Service Fabric cluster resources by location.

listByEnvironment

public abstract ClusterCodeVersionsListResultInner listByEnvironment(String location, ClusterVersionsEnvironment environment)

Gets the list of Service Fabric cluster code versions available for the specified environment. Gets all available code versions for Service Fabric cluster resources by environment.

Parameters:

location - The location for the cluster code versions. This is different from cluster location.
environment - The operating system of the cluster. The default means all.

Returns:

all available code versions for Service Fabric cluster resources by environment.

listByEnvironmentWithResponse

public abstract Response<ClusterCodeVersionsListResultInner> listByEnvironmentWithResponse(String location, ClusterVersionsEnvironment environment, Context context)

Gets the list of Service Fabric cluster code versions available for the specified environment. Gets all available code versions for Service Fabric cluster resources by environment.

Parameters:

location - The location for the cluster code versions. This is different from cluster location.
environment - The operating system of the cluster. The default means all.
context - The context to associate with this operation.

Returns:

all available code versions for Service Fabric cluster resources by environment along with Response<T>.

listWithResponse

public abstract Response<ClusterCodeVersionsListResultInner> listWithResponse(String location, Context context)

Gets the list of Service Fabric cluster code versions available for the specified location. Gets all available code versions for Service Fabric cluster resources by location.

Parameters:

location - The location for the cluster code versions. This is different from cluster location.
context - The context to associate with this operation.

Returns:

all available code versions for Service Fabric cluster resources by location along with Response<T>.

Applies to