public interface Configuration extends Service, ConfigurationTypes
Configuration
interface provides methods to control whether the
cluster is managed using desired configuration platform semantics.
Warning: This interface is available as Technology Preview. These are
early access APIs provided to test, automate and provide feedback on the
feature. Since this can change based on feedback, VMware does not guarantee
backwards compatibility and recommends against using them in production
environments. Some Technology Preview APIs might only be applicable to specific
environments.ConfigurationTypes.Info
_VAPI_SERVICE_ID
Modifier and Type | Method and Description |
---|---|
ConfigurationTypes.Info |
get(java.lang.String cluster)
Returns whether the given cluster is managed using a desired configuration
plaftorm.
|
void |
get(java.lang.String cluster,
AsyncCallback<ConfigurationTypes.Info> asyncCallback)
Returns whether the given cluster is managed using a desired configuration
plaftorm.
|
void |
get(java.lang.String cluster,
AsyncCallback<ConfigurationTypes.Info> asyncCallback,
InvocationConfig invocationConfig)
Returns whether the given cluster is managed using a desired configuration
plaftorm.
|
ConfigurationTypes.Info |
get(java.lang.String cluster,
InvocationConfig invocationConfig)
Returns whether the given cluster is managed using a desired configuration
plaftorm.
|
ConfigurationTypes.Info get(java.lang.String cluster)
Synchronous method overload. Result of the invocation will be reported as a method return value.
cluster
- Identifier of the cluster.
The parameter must be an identifier for the resource type: ClusterComputeResource
.Error
- If there is unknown internal error. The accompanying error message will give
more details about the failure.NotFound
- If there is no cluster associated with cluster
in the system.ServiceUnavailable
- If the service is not available.Unauthenticated
- If the caller is not authenticated.ConfigurationTypes.Info get(java.lang.String cluster, InvocationConfig invocationConfig)
Synchronous method overload. Result of the invocation will be
reported as a method return value.
Use invocationConfig
to specify configuration for this particular invocation.
cluster
- Identifier of the cluster.
The parameter must be an identifier for the resource type: ClusterComputeResource
.invocationConfig
- Configuration for the method invocation.Error
- If there is unknown internal error. The accompanying error message will give
more details about the failure.NotFound
- If there is no cluster associated with cluster
in the system.ServiceUnavailable
- If the service is not available.Unauthenticated
- If the caller is not authenticated.void get(java.lang.String cluster, AsyncCallback<ConfigurationTypes.Info> asyncCallback)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback
.
Invocation Result:
Information about the feature enablement.
Operation Errors:
Error
- If there is unknown internal error. The accompanying error message will give
more details about the failure.
NotFound
- If there is no cluster associated with cluster
in the system.
ServiceUnavailable
- If the service is not available.
Unauthenticated
- If the caller is not authenticated.
cluster
- Identifier of the cluster.
The parameter must be an identifier for the resource type: ClusterComputeResource
.asyncCallback
- Receives the status (progress, result or error) of the operation invocation.void get(java.lang.String cluster, AsyncCallback<ConfigurationTypes.Info> asyncCallback, InvocationConfig invocationConfig)
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:
Information about the feature enablement.
Operation Errors:
Error
- If there is unknown internal error. The accompanying error message will give
more details about the failure.
NotFound
- If there is no cluster associated with cluster
in the system.
ServiceUnavailable
- If the service is not available.
Unauthenticated
- If the caller is not authenticated.
cluster
- Identifier of the cluster.
The parameter must be an identifier for the resource type: ClusterComputeResource
.asyncCallback
- Receives the status (progress, result or error) of the operation invocation.invocationConfig
- Configuration for the method invocation.