ManagedClusterVersion interface
Interface representing a ManagedClusterVersion.
Methods
get(string, string, Managed |
Gets information about an available Service Fabric managed cluster code version. |
get |
Gets information about an available Service Fabric cluster code version by environment. |
list(string, Managed |
Gets all available code versions for Service Fabric cluster resources by location. |
list |
Gets all available code versions for Service Fabric cluster resources by environment. |
Method Details
get(string, string, ManagedClusterVersionGetOptionalParams)
Gets information about an available Service Fabric managed cluster code version.
function get(location: string, clusterVersion: string, options?: ManagedClusterVersionGetOptionalParams): Promise<ManagedClusterCodeVersionResult>
Parameters
- location
-
string
The location for the cluster code versions. This is different from cluster location.
- clusterVersion
-
string
The cluster code version.
The options parameters.
Returns
Promise<ManagedClusterCodeVersionResult>
getByEnvironment(string, string, string, ManagedClusterVersionGetByEnvironmentOptionalParams)
Gets information about an available Service Fabric cluster code version by environment.
function getByEnvironment(location: string, environment: string, clusterVersion: string, options?: ManagedClusterVersionGetByEnvironmentOptionalParams): Promise<ManagedClusterCodeVersionResult>
Parameters
- location
-
string
The location for the cluster code versions. This is different from cluster location.
- environment
-
string
The operating system of the cluster. The default means all.
- clusterVersion
-
string
The cluster code version.
The options parameters.
Returns
Promise<ManagedClusterCodeVersionResult>
list(string, ManagedClusterVersionListOptionalParams)
Gets all available code versions for Service Fabric cluster resources by location.
function list(location: string, options?: ManagedClusterVersionListOptionalParams): Promise<ManagedClusterVersionListResponse>
Parameters
- location
-
string
The location for the cluster code versions. This is different from cluster location.
The options parameters.
Returns
Promise<ManagedClusterVersionListResponse>
listByEnvironment(string, string, ManagedClusterVersionListByEnvironmentOptionalParams)
Gets all available code versions for Service Fabric cluster resources by environment.
function listByEnvironment(location: string, environment: string, options?: ManagedClusterVersionListByEnvironmentOptionalParams): Promise<ManagedClusterVersionListByEnvironmentResponse>
Parameters
- location
-
string
The location for the cluster code versions. This is different from cluster location.
- environment
-
string
The operating system of the cluster. The default means all.
The options parameters.
Returns
Azure SDK for JavaScript