public interface SupportBundle extends Service, SupportBundleTypes
SupportBundle
interface provides methods to retrieve the cluster's
Namespaces-related support bundle download location.SupportBundleTypes.Location, SupportBundleTypes.Token
_VAPI_SERVICE_ID
Modifier and Type | Method and Description |
---|---|
SupportBundleTypes.Location |
create(java.lang.String cluster)
Returns the location
SupportBundleTypes.Location information
for downloading the Namespaces-related support bundle for the specified cluster. |
void |
create(java.lang.String cluster,
AsyncCallback<SupportBundleTypes.Location> asyncCallback)
Returns the location
SupportBundleTypes.Location information
for downloading the Namespaces-related support bundle for the specified cluster. |
void |
create(java.lang.String cluster,
AsyncCallback<SupportBundleTypes.Location> asyncCallback,
InvocationConfig invocationConfig)
Returns the location
SupportBundleTypes.Location information
for downloading the Namespaces-related support bundle for the specified cluster. |
SupportBundleTypes.Location |
create(java.lang.String cluster,
InvocationConfig invocationConfig)
Returns the location
SupportBundleTypes.Location information
for downloading the Namespaces-related support bundle for the specified cluster. |
SupportBundleTypes.Location create(java.lang.String cluster)
SupportBundleTypes.Location
information
for downloading the Namespaces-related support bundle for the specified cluster.
Retrieving a support bundle involves two steps:
SupportBundleTypes.Location
response.
The HTTP GET request will:
Synchronous method overload. Result of the invocation will be reported as a method return value.
cluster
- Identifier of cluster for which the Namespaces-related support bundle should be
generated.
The parameter must be an identifier for the resource type: ClusterComputeResource
.NotFound
- if the specified cluster is not registered on this vCenter server.Error
- if the system reports an error while responding to the request.Unauthenticated
- if the user can not be authenticated.Unauthorized
- if the user does not have Global.Diagnostics privilege.SupportBundleTypes.Location create(java.lang.String cluster, InvocationConfig invocationConfig)
SupportBundleTypes.Location
information
for downloading the Namespaces-related support bundle for the specified cluster.
Retrieving a support bundle involves two steps:
SupportBundleTypes.Location
response.
The HTTP GET request will:
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 cluster for which the Namespaces-related support bundle should be
generated.
The parameter must be an identifier for the resource type: ClusterComputeResource
.invocationConfig
- Configuration for the method invocation.NotFound
- if the specified cluster is not registered on this vCenter server.Error
- if the system reports an error while responding to the request.Unauthenticated
- if the user can not be authenticated.Unauthorized
- if the user does not have Global.Diagnostics privilege.void create(java.lang.String cluster, AsyncCallback<SupportBundleTypes.Location> asyncCallback)
SupportBundleTypes.Location
information
for downloading the Namespaces-related support bundle for the specified cluster.
Retrieving a support bundle involves two steps:
SupportBundleTypes.Location
response.
The HTTP GET request will:
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback
.
Invocation Result:
the download location of the support bundle for the cluster.
Operation Errors:
NotFound
- if the specified cluster is not registered on this vCenter server.
Error
- if the system reports an error while responding to the request.
Unauthenticated
- if the user can not be authenticated.
Unauthorized
- if the user does not have Global.Diagnostics privilege.
cluster
- Identifier of cluster for which the Namespaces-related support bundle should be
generated.
The parameter must be an identifier for the resource type: ClusterComputeResource
.asyncCallback
- Receives the status (progress, result or error) of the operation invocation.void create(java.lang.String cluster, AsyncCallback<SupportBundleTypes.Location> asyncCallback, InvocationConfig invocationConfig)
SupportBundleTypes.Location
information
for downloading the Namespaces-related support bundle for the specified cluster.
Retrieving a support bundle involves two steps:
SupportBundleTypes.Location
response.
The HTTP GET request will:
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:
the download location of the support bundle for the cluster.
Operation Errors:
NotFound
- if the specified cluster is not registered on this vCenter server.
Error
- if the system reports an error while responding to the request.
Unauthenticated
- if the user can not be authenticated.
Unauthorized
- if the user does not have Global.Diagnostics privilege.
cluster
- Identifier of cluster for which the Namespaces-related support bundle should be
generated.
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.