public interface ClusterCompatibility extends Service, ClusterCompatibilityTypes
ClusterCompatibility interface provides methods to get
Namespace-related compatibility information for clusters in this vCenter.ClusterCompatibilityTypes.FilterSpec, ClusterCompatibilityTypes.Summary_VAPI_SERVICE_ID| Modifier and Type | Method and Description |
|---|---|
java.util.List<ClusterCompatibilityTypes.Summary> |
list(ClusterCompatibilityTypes.FilterSpec filter)
Returns Namespaces compatibility information for all clusters in vCenter
matching the
ClusterCompatibilityTypes.FilterSpec. |
void |
list(ClusterCompatibilityTypes.FilterSpec filter,
AsyncCallback<java.util.List<ClusterCompatibilityTypes.Summary>> asyncCallback)
Returns Namespaces compatibility information for all clusters in vCenter
matching the
ClusterCompatibilityTypes.FilterSpec. |
void |
list(ClusterCompatibilityTypes.FilterSpec filter,
AsyncCallback<java.util.List<ClusterCompatibilityTypes.Summary>> asyncCallback,
InvocationConfig invocationConfig)
Returns Namespaces compatibility information for all clusters in vCenter
matching the
ClusterCompatibilityTypes.FilterSpec. |
java.util.List<ClusterCompatibilityTypes.Summary> |
list(ClusterCompatibilityTypes.FilterSpec filter,
InvocationConfig invocationConfig)
Returns Namespaces compatibility information for all clusters in vCenter
matching the
ClusterCompatibilityTypes.FilterSpec. |
java.util.List<ClusterCompatibilityTypes.Summary> list(ClusterCompatibilityTypes.FilterSpec filter)
ClusterCompatibilityTypes.FilterSpec.
The result contains only visible (subject to permission checks) clusters.
Synchronous method overload. Result of the invocation will be reported as a method return value.
filter - Specification of matching clusters for which information should be returned.
If null, the behavior is equivalent to a ClusterCompatibilityTypes.FilterSpec
with all properties null which means all clusters match the filter.ClusterCompatibilityTypes.FilterSpec.Error - if the system reports an error while responding to the request.InternalServerError - if the server reports an unknown internal error.Unauthenticated - if the user can not be authenticated.Unauthorized - if the user does not have System.Read privilege.java.util.List<ClusterCompatibilityTypes.Summary> list(ClusterCompatibilityTypes.FilterSpec filter, InvocationConfig invocationConfig)
ClusterCompatibilityTypes.FilterSpec.
The result contains only visible (subject to permission checks) clusters.
Synchronous method overload. Result of the invocation will be
reported as a method return value.
Use invocationConfig to specify configuration for this particular invocation.
filter - Specification of matching clusters for which information should be returned.
If null, the behavior is equivalent to a ClusterCompatibilityTypes.FilterSpec
with all properties null which means all clusters match the filter.invocationConfig - Configuration for the method invocation.ClusterCompatibilityTypes.FilterSpec.Error - if the system reports an error while responding to the request.InternalServerError - if the server reports an unknown internal error.Unauthenticated - if the user can not be authenticated.Unauthorized - if the user does not have System.Read privilege.void list(ClusterCompatibilityTypes.FilterSpec filter, AsyncCallback<java.util.List<ClusterCompatibilityTypes.Summary>> asyncCallback)
ClusterCompatibilityTypes.FilterSpec.
The result contains only visible (subject to permission checks) clusters.
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback.
Invocation Result:
Namespaces compatibility information for the clusters matching the the ClusterCompatibilityTypes.FilterSpec.
Operation Errors:
Error - if the system reports an error while responding to the request.
InternalServerError - if the server reports an unknown internal error.
Unauthenticated - if the user can not be authenticated.
Unauthorized - if the user does not have System.Read privilege.
filter - Specification of matching clusters for which information should be returned.
If null, the behavior is equivalent to a ClusterCompatibilityTypes.FilterSpec
with all properties null which means all clusters match the filter.asyncCallback - Receives the status (progress, result or error) of the operation invocation.void list(ClusterCompatibilityTypes.FilterSpec filter, AsyncCallback<java.util.List<ClusterCompatibilityTypes.Summary>> asyncCallback, InvocationConfig invocationConfig)
ClusterCompatibilityTypes.FilterSpec.
The result contains only visible (subject to permission checks) clusters.
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback.
Use invocationConfig to specify configuration for this particular invocation.
Invocation Result:
Namespaces compatibility information for the clusters matching the the ClusterCompatibilityTypes.FilterSpec.
Operation Errors:
Error - if the system reports an error while responding to the request.
InternalServerError - if the server reports an unknown internal error.
Unauthenticated - if the user can not be authenticated.
Unauthorized - if the user does not have System.Read privilege.
filter - Specification of matching clusters for which information should be returned.
If null, the behavior is equivalent to a ClusterCompatibilityTypes.FilterSpec
with all properties null which means all clusters match the filter.asyncCallback - Receives the status (progress, result or error) of the operation invocation.invocationConfig - Configuration for the method invocation.