Interface Livetraces
-
- All Superinterfaces:
LivetracesTypes
,com.vmware.vapi.bindings.Service
- All Known Implementing Classes:
LivetracesStub
public interface Livetraces extends com.vmware.vapi.bindings.Service, LivetracesTypes
-
-
Field Summary
-
Fields inherited from interface com.vmware.nsx_policy.infra.LivetracesTypes
_VAPI_SERVICE_ID
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LiveTraceConfig
create(java.lang.String livetraceId, java.lang.String action)
Restart a livetrace session with the same set of parameters used in creating or updating of a livetrace config.void
create(java.lang.String livetraceId, java.lang.String action, com.vmware.vapi.bindings.client.AsyncCallback<LiveTraceConfig> asyncCallback)
Restart a livetrace session with the same set of parameters used in creating or updating of a livetrace config.void
create(java.lang.String livetraceId, java.lang.String action, com.vmware.vapi.bindings.client.AsyncCallback<LiveTraceConfig> asyncCallback, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
Restart a livetrace session with the same set of parameters used in creating or updating of a livetrace config.LiveTraceConfig
create(java.lang.String livetraceId, java.lang.String action, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
Restart a livetrace session with the same set of parameters used in creating or updating of a livetrace config.void
delete(java.lang.String livetraceId)
Delete livetrace config with the specified identifier.void
delete(java.lang.String livetraceId, com.vmware.vapi.bindings.client.AsyncCallback<java.lang.Void> asyncCallback)
Delete livetrace config with the specified identifier.void
delete(java.lang.String livetraceId, com.vmware.vapi.bindings.client.AsyncCallback<java.lang.Void> asyncCallback, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
Delete livetrace config with the specified identifier.void
delete(java.lang.String livetraceId, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
Delete livetrace config with the specified identifier.LiveTraceConfig
get(java.lang.String livetraceId)
Read livetrace config with the specified identifier.void
get(java.lang.String livetraceId, com.vmware.vapi.bindings.client.AsyncCallback<LiveTraceConfig> asyncCallback)
Read livetrace config with the specified identifier.void
get(java.lang.String livetraceId, com.vmware.vapi.bindings.client.AsyncCallback<LiveTraceConfig> asyncCallback, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
Read livetrace config with the specified identifier.LiveTraceConfig
get(java.lang.String livetraceId, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
Read livetrace config with the specified identifier.LiveTraceConfigListResult
list(java.lang.String cursor, java.lang.Boolean includeMarkForDeleteObjects, java.lang.String includedFields, java.lang.Long pageSize, java.lang.Boolean sortAscending, java.lang.String sortBy)
Get a paginated list of all livetrace config entities.void
list(java.lang.String cursor, java.lang.Boolean includeMarkForDeleteObjects, java.lang.String includedFields, java.lang.Long pageSize, java.lang.Boolean sortAscending, java.lang.String sortBy, com.vmware.vapi.bindings.client.AsyncCallback<LiveTraceConfigListResult> asyncCallback)
Get a paginated list of all livetrace config entities.void
list(java.lang.String cursor, java.lang.Boolean includeMarkForDeleteObjects, java.lang.String includedFields, java.lang.Long pageSize, java.lang.Boolean sortAscending, java.lang.String sortBy, com.vmware.vapi.bindings.client.AsyncCallback<LiveTraceConfigListResult> asyncCallback, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
Get a paginated list of all livetrace config entities.LiveTraceConfigListResult
list(java.lang.String cursor, java.lang.Boolean includeMarkForDeleteObjects, java.lang.String includedFields, java.lang.Long pageSize, java.lang.Boolean sortAscending, java.lang.String sortBy, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
Get a paginated list of all livetrace config entities.void
patch(java.lang.String livetraceId, LiveTraceConfig liveTraceConfig)
If a livetrace config with the specified identifier is not present, then create a new livetrace config.void
patch(java.lang.String livetraceId, LiveTraceConfig liveTraceConfig, com.vmware.vapi.bindings.client.AsyncCallback<java.lang.Void> asyncCallback)
If a livetrace config with the specified identifier is not present, then create a new livetrace config.void
patch(java.lang.String livetraceId, LiveTraceConfig liveTraceConfig, com.vmware.vapi.bindings.client.AsyncCallback<java.lang.Void> asyncCallback, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
If a livetrace config with the specified identifier is not present, then create a new livetrace config.void
patch(java.lang.String livetraceId, LiveTraceConfig liveTraceConfig, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
If a livetrace config with the specified identifier is not present, then create a new livetrace config.LiveTraceConfig
update(java.lang.String livetraceId, LiveTraceConfig liveTraceConfig)
If a livetrace config with the specified identifier is not present, then create a new livetrace config.void
update(java.lang.String livetraceId, LiveTraceConfig liveTraceConfig, com.vmware.vapi.bindings.client.AsyncCallback<LiveTraceConfig> asyncCallback)
If a livetrace config with the specified identifier is not present, then create a new livetrace config.void
update(java.lang.String livetraceId, LiveTraceConfig liveTraceConfig, com.vmware.vapi.bindings.client.AsyncCallback<LiveTraceConfig> asyncCallback, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
If a livetrace config with the specified identifier is not present, then create a new livetrace config.LiveTraceConfig
update(java.lang.String livetraceId, LiveTraceConfig liveTraceConfig, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
If a livetrace config with the specified identifier is not present, then create a new livetrace config.
-
-
-
Method Detail
-
create
LiveTraceConfig create(java.lang.String livetraceId, java.lang.String action)
Restart a livetrace session with the same set of parameters used in creating or updating of a livetrace config.Synchronous method overload. Result of the invocation will be reported as a method return value.
- Parameters:
livetraceId
- (required)action
- Action to be performed (optional)- Returns:
- com.vmware.nsx_policy.model.LiveTraceConfig
- Throws:
com.vmware.vapi.std.errors.InvalidRequest
- Bad Request, Precondition Failedcom.vmware.vapi.std.errors.Unauthorized
- Forbiddencom.vmware.vapi.std.errors.ServiceUnavailable
- Service Unavailablecom.vmware.vapi.std.errors.InternalServerError
- Internal Server Errorcom.vmware.vapi.std.errors.NotFound
- Not Found
-
create
LiveTraceConfig create(java.lang.String livetraceId, java.lang.String action, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
Restart a livetrace session with the same set of parameters used in creating or updating of a livetrace config.Synchronous method overload. Result of the invocation will be reported as a method return value. Use
invocationConfig
to specify configuration for this particular invocation.- Parameters:
livetraceId
- (required)action
- Action to be performed (optional)invocationConfig
- Configuration for the method invocation.- Returns:
- com.vmware.nsx_policy.model.LiveTraceConfig
- Throws:
com.vmware.vapi.std.errors.InvalidRequest
- Bad Request, Precondition Failedcom.vmware.vapi.std.errors.Unauthorized
- Forbiddencom.vmware.vapi.std.errors.ServiceUnavailable
- Service Unavailablecom.vmware.vapi.std.errors.InternalServerError
- Internal Server Errorcom.vmware.vapi.std.errors.NotFound
- Not Found
-
create
void create(java.lang.String livetraceId, java.lang.String action, com.vmware.vapi.bindings.client.AsyncCallback<LiveTraceConfig> asyncCallback)
Restart a livetrace session with the same set of parameters used in creating or updating of a livetrace config.Asynchronous method overload. Result of the invocation will be reported via the specified
asyncCallback
.Invocation Result:
com.vmware.nsx_policy.model.LiveTraceConfigOperation Errors:
InvalidRequest
- Bad Request, Precondition Failed
Unauthorized
- Forbidden
ServiceUnavailable
- Service Unavailable
InternalServerError
- Internal Server Error
NotFound
- Not Found
- Parameters:
livetraceId
- (required)action
- Action to be performed (optional)asyncCallback
- Receives the status (progress, result or error) of the operation invocation.
-
create
void create(java.lang.String livetraceId, java.lang.String action, com.vmware.vapi.bindings.client.AsyncCallback<LiveTraceConfig> asyncCallback, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
Restart a livetrace session with the same set of parameters used in creating or updating of a livetrace config.Asynchronous method overload. Result of the invocation will be reported via the specified
asyncCallback
. UseinvocationConfig
to specify configuration for this particular invocation.Invocation Result:
com.vmware.nsx_policy.model.LiveTraceConfigOperation Errors:
InvalidRequest
- Bad Request, Precondition Failed
Unauthorized
- Forbidden
ServiceUnavailable
- Service Unavailable
InternalServerError
- Internal Server Error
NotFound
- Not Found
- Parameters:
livetraceId
- (required)action
- Action to be performed (optional)asyncCallback
- Receives the status (progress, result or error) of the operation invocation.invocationConfig
- Configuration for the method invocation.
-
delete
void delete(java.lang.String livetraceId)
Delete livetrace config with the specified identifier.Synchronous method overload. Result of the invocation will be reported as a method return value.
- Parameters:
livetraceId
- (required)- Throws:
com.vmware.vapi.std.errors.InvalidRequest
- Bad Request, Precondition Failedcom.vmware.vapi.std.errors.Unauthorized
- Forbiddencom.vmware.vapi.std.errors.ServiceUnavailable
- Service Unavailablecom.vmware.vapi.std.errors.InternalServerError
- Internal Server Errorcom.vmware.vapi.std.errors.NotFound
- Not Found
-
delete
void delete(java.lang.String livetraceId, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
Delete livetrace config with the specified identifier.Synchronous method overload. Result of the invocation will be reported as a method return value. Use
invocationConfig
to specify configuration for this particular invocation.- Parameters:
livetraceId
- (required)invocationConfig
- Configuration for the method invocation.- Throws:
com.vmware.vapi.std.errors.InvalidRequest
- Bad Request, Precondition Failedcom.vmware.vapi.std.errors.Unauthorized
- Forbiddencom.vmware.vapi.std.errors.ServiceUnavailable
- Service Unavailablecom.vmware.vapi.std.errors.InternalServerError
- Internal Server Errorcom.vmware.vapi.std.errors.NotFound
- Not Found
-
delete
void delete(java.lang.String livetraceId, com.vmware.vapi.bindings.client.AsyncCallback<java.lang.Void> asyncCallback)
Delete livetrace config with the specified identifier.Asynchronous method overload. Result of the invocation will be reported via the specified
asyncCallback
.Operation Errors:
InvalidRequest
- Bad Request, Precondition Failed
Unauthorized
- Forbidden
ServiceUnavailable
- Service Unavailable
InternalServerError
- Internal Server Error
NotFound
- Not Found
- Parameters:
livetraceId
- (required)asyncCallback
- Receives the status (progress, result or error) of the operation invocation.
-
delete
void delete(java.lang.String livetraceId, com.vmware.vapi.bindings.client.AsyncCallback<java.lang.Void> asyncCallback, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
Delete livetrace config with the specified identifier.Asynchronous method overload. Result of the invocation will be reported via the specified
asyncCallback
. UseinvocationConfig
to specify configuration for this particular invocation.Operation Errors:
InvalidRequest
- Bad Request, Precondition Failed
Unauthorized
- Forbidden
ServiceUnavailable
- Service Unavailable
InternalServerError
- Internal Server Error
NotFound
- Not Found
- Parameters:
livetraceId
- (required)asyncCallback
- Receives the status (progress, result or error) of the operation invocation.invocationConfig
- Configuration for the method invocation.
-
get
LiveTraceConfig get(java.lang.String livetraceId)
Read livetrace config with the specified identifier.Synchronous method overload. Result of the invocation will be reported as a method return value.
- Parameters:
livetraceId
- (required)- Returns:
- com.vmware.nsx_policy.model.LiveTraceConfig
- Throws:
com.vmware.vapi.std.errors.InvalidRequest
- Bad Request, Precondition Failedcom.vmware.vapi.std.errors.Unauthorized
- Forbiddencom.vmware.vapi.std.errors.ServiceUnavailable
- Service Unavailablecom.vmware.vapi.std.errors.InternalServerError
- Internal Server Errorcom.vmware.vapi.std.errors.NotFound
- Not Found
-
get
LiveTraceConfig get(java.lang.String livetraceId, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
Read livetrace config with the specified identifier.Synchronous method overload. Result of the invocation will be reported as a method return value. Use
invocationConfig
to specify configuration for this particular invocation.- Parameters:
livetraceId
- (required)invocationConfig
- Configuration for the method invocation.- Returns:
- com.vmware.nsx_policy.model.LiveTraceConfig
- Throws:
com.vmware.vapi.std.errors.InvalidRequest
- Bad Request, Precondition Failedcom.vmware.vapi.std.errors.Unauthorized
- Forbiddencom.vmware.vapi.std.errors.ServiceUnavailable
- Service Unavailablecom.vmware.vapi.std.errors.InternalServerError
- Internal Server Errorcom.vmware.vapi.std.errors.NotFound
- Not Found
-
get
void get(java.lang.String livetraceId, com.vmware.vapi.bindings.client.AsyncCallback<LiveTraceConfig> asyncCallback)
Read livetrace config with the specified identifier.Asynchronous method overload. Result of the invocation will be reported via the specified
asyncCallback
.Invocation Result:
com.vmware.nsx_policy.model.LiveTraceConfigOperation Errors:
InvalidRequest
- Bad Request, Precondition Failed
Unauthorized
- Forbidden
ServiceUnavailable
- Service Unavailable
InternalServerError
- Internal Server Error
NotFound
- Not Found
- Parameters:
livetraceId
- (required)asyncCallback
- Receives the status (progress, result or error) of the operation invocation.
-
get
void get(java.lang.String livetraceId, com.vmware.vapi.bindings.client.AsyncCallback<LiveTraceConfig> asyncCallback, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
Read livetrace config with the specified identifier.Asynchronous method overload. Result of the invocation will be reported via the specified
asyncCallback
. UseinvocationConfig
to specify configuration for this particular invocation.Invocation Result:
com.vmware.nsx_policy.model.LiveTraceConfigOperation Errors:
InvalidRequest
- Bad Request, Precondition Failed
Unauthorized
- Forbidden
ServiceUnavailable
- Service Unavailable
InternalServerError
- Internal Server Error
NotFound
- Not Found
- Parameters:
livetraceId
- (required)asyncCallback
- Receives the status (progress, result or error) of the operation invocation.invocationConfig
- Configuration for the method invocation.
-
list
LiveTraceConfigListResult list(java.lang.String cursor, java.lang.Boolean includeMarkForDeleteObjects, java.lang.String includedFields, java.lang.Long pageSize, java.lang.Boolean sortAscending, java.lang.String sortBy)
Get a paginated list of all livetrace config entities.Synchronous method overload. Result of the invocation will be reported as a method return value.
- Parameters:
cursor
- Opaque cursor to be used for getting next page of records (supplied by current result page) (optional)includeMarkForDeleteObjects
- Include objects that are marked for deletion in results (optional, default to false)includedFields
- Comma separated list of fields that should be included in query result (optional)pageSize
- Maximum number of results to return in this page (server may return fewer) (optional, default to 1000)sortAscending
- (optional)sortBy
- Field by which records are sorted (optional)- Returns:
- com.vmware.nsx_policy.model.LiveTraceConfigListResult
- Throws:
com.vmware.vapi.std.errors.InvalidRequest
- Bad Request, Precondition Failedcom.vmware.vapi.std.errors.Unauthorized
- Forbiddencom.vmware.vapi.std.errors.ServiceUnavailable
- Service Unavailablecom.vmware.vapi.std.errors.InternalServerError
- Internal Server Errorcom.vmware.vapi.std.errors.NotFound
- Not Found
-
list
LiveTraceConfigListResult list(java.lang.String cursor, java.lang.Boolean includeMarkForDeleteObjects, java.lang.String includedFields, java.lang.Long pageSize, java.lang.Boolean sortAscending, java.lang.String sortBy, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
Get a paginated list of all livetrace config entities.Synchronous method overload. Result of the invocation will be reported as a method return value. Use
invocationConfig
to specify configuration for this particular invocation.- Parameters:
cursor
- Opaque cursor to be used for getting next page of records (supplied by current result page) (optional)includeMarkForDeleteObjects
- Include objects that are marked for deletion in results (optional, default to false)includedFields
- Comma separated list of fields that should be included in query result (optional)pageSize
- Maximum number of results to return in this page (server may return fewer) (optional, default to 1000)sortAscending
- (optional)sortBy
- Field by which records are sorted (optional)invocationConfig
- Configuration for the method invocation.- Returns:
- com.vmware.nsx_policy.model.LiveTraceConfigListResult
- Throws:
com.vmware.vapi.std.errors.InvalidRequest
- Bad Request, Precondition Failedcom.vmware.vapi.std.errors.Unauthorized
- Forbiddencom.vmware.vapi.std.errors.ServiceUnavailable
- Service Unavailablecom.vmware.vapi.std.errors.InternalServerError
- Internal Server Errorcom.vmware.vapi.std.errors.NotFound
- Not Found
-
list
void list(java.lang.String cursor, java.lang.Boolean includeMarkForDeleteObjects, java.lang.String includedFields, java.lang.Long pageSize, java.lang.Boolean sortAscending, java.lang.String sortBy, com.vmware.vapi.bindings.client.AsyncCallback<LiveTraceConfigListResult> asyncCallback)
Get a paginated list of all livetrace config entities.Asynchronous method overload. Result of the invocation will be reported via the specified
asyncCallback
.Invocation Result:
com.vmware.nsx_policy.model.LiveTraceConfigListResultOperation Errors:
InvalidRequest
- Bad Request, Precondition Failed
Unauthorized
- Forbidden
ServiceUnavailable
- Service Unavailable
InternalServerError
- Internal Server Error
NotFound
- Not Found
- Parameters:
cursor
- Opaque cursor to be used for getting next page of records (supplied by current result page) (optional)includeMarkForDeleteObjects
- Include objects that are marked for deletion in results (optional, default to false)includedFields
- Comma separated list of fields that should be included in query result (optional)pageSize
- Maximum number of results to return in this page (server may return fewer) (optional, default to 1000)sortAscending
- (optional)sortBy
- Field by which records are sorted (optional)asyncCallback
- Receives the status (progress, result or error) of the operation invocation.
-
list
void list(java.lang.String cursor, java.lang.Boolean includeMarkForDeleteObjects, java.lang.String includedFields, java.lang.Long pageSize, java.lang.Boolean sortAscending, java.lang.String sortBy, com.vmware.vapi.bindings.client.AsyncCallback<LiveTraceConfigListResult> asyncCallback, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
Get a paginated list of all livetrace config entities.Asynchronous method overload. Result of the invocation will be reported via the specified
asyncCallback
. UseinvocationConfig
to specify configuration for this particular invocation.Invocation Result:
com.vmware.nsx_policy.model.LiveTraceConfigListResultOperation Errors:
InvalidRequest
- Bad Request, Precondition Failed
Unauthorized
- Forbidden
ServiceUnavailable
- Service Unavailable
InternalServerError
- Internal Server Error
NotFound
- Not Found
- Parameters:
cursor
- Opaque cursor to be used for getting next page of records (supplied by current result page) (optional)includeMarkForDeleteObjects
- Include objects that are marked for deletion in results (optional, default to false)includedFields
- Comma separated list of fields that should be included in query result (optional)pageSize
- Maximum number of results to return in this page (server may return fewer) (optional, default to 1000)sortAscending
- (optional)sortBy
- Field by which records are sorted (optional)asyncCallback
- Receives the status (progress, result or error) of the operation invocation.invocationConfig
- Configuration for the method invocation.
-
patch
void patch(java.lang.String livetraceId, LiveTraceConfig liveTraceConfig)
If a livetrace config with the specified identifier is not present, then create a new livetrace config. If it already exists, update the livetrace config with a full replacement.Synchronous method overload. Result of the invocation will be reported as a method return value.
- Parameters:
livetraceId
- (required)liveTraceConfig
- (required)- Throws:
com.vmware.vapi.std.errors.InvalidRequest
- Bad Request, Precondition Failedcom.vmware.vapi.std.errors.Unauthorized
- Forbiddencom.vmware.vapi.std.errors.ServiceUnavailable
- Service Unavailablecom.vmware.vapi.std.errors.InternalServerError
- Internal Server Errorcom.vmware.vapi.std.errors.NotFound
- Not Found
-
patch
void patch(java.lang.String livetraceId, LiveTraceConfig liveTraceConfig, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
If a livetrace config with the specified identifier is not present, then create a new livetrace config. If it already exists, update the livetrace config with a full replacement.Synchronous method overload. Result of the invocation will be reported as a method return value. Use
invocationConfig
to specify configuration for this particular invocation.- Parameters:
livetraceId
- (required)liveTraceConfig
- (required)invocationConfig
- Configuration for the method invocation.- Throws:
com.vmware.vapi.std.errors.InvalidRequest
- Bad Request, Precondition Failedcom.vmware.vapi.std.errors.Unauthorized
- Forbiddencom.vmware.vapi.std.errors.ServiceUnavailable
- Service Unavailablecom.vmware.vapi.std.errors.InternalServerError
- Internal Server Errorcom.vmware.vapi.std.errors.NotFound
- Not Found
-
patch
void patch(java.lang.String livetraceId, LiveTraceConfig liveTraceConfig, com.vmware.vapi.bindings.client.AsyncCallback<java.lang.Void> asyncCallback)
If a livetrace config with the specified identifier is not present, then create a new livetrace config. If it already exists, update the livetrace config with a full replacement.Asynchronous method overload. Result of the invocation will be reported via the specified
asyncCallback
.Operation Errors:
InvalidRequest
- Bad Request, Precondition Failed
Unauthorized
- Forbidden
ServiceUnavailable
- Service Unavailable
InternalServerError
- Internal Server Error
NotFound
- Not Found
- Parameters:
livetraceId
- (required)liveTraceConfig
- (required)asyncCallback
- Receives the status (progress, result or error) of the operation invocation.
-
patch
void patch(java.lang.String livetraceId, LiveTraceConfig liveTraceConfig, com.vmware.vapi.bindings.client.AsyncCallback<java.lang.Void> asyncCallback, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
If a livetrace config with the specified identifier is not present, then create a new livetrace config. If it already exists, update the livetrace config with a full replacement.Asynchronous method overload. Result of the invocation will be reported via the specified
asyncCallback
. UseinvocationConfig
to specify configuration for this particular invocation.Operation Errors:
InvalidRequest
- Bad Request, Precondition Failed
Unauthorized
- Forbidden
ServiceUnavailable
- Service Unavailable
InternalServerError
- Internal Server Error
NotFound
- Not Found
- Parameters:
livetraceId
- (required)liveTraceConfig
- (required)asyncCallback
- Receives the status (progress, result or error) of the operation invocation.invocationConfig
- Configuration for the method invocation.
-
update
LiveTraceConfig update(java.lang.String livetraceId, LiveTraceConfig liveTraceConfig)
If a livetrace config with the specified identifier is not present, then create a new livetrace config. If it already exists, update the livetrace config with a full replacement.Synchronous method overload. Result of the invocation will be reported as a method return value.
- Parameters:
livetraceId
- (required)liveTraceConfig
- (required)- Returns:
- com.vmware.nsx_policy.model.LiveTraceConfig
- Throws:
com.vmware.vapi.std.errors.InvalidRequest
- Bad Request, Precondition Failedcom.vmware.vapi.std.errors.Unauthorized
- Forbiddencom.vmware.vapi.std.errors.ServiceUnavailable
- Service Unavailablecom.vmware.vapi.std.errors.InternalServerError
- Internal Server Errorcom.vmware.vapi.std.errors.NotFound
- Not Found
-
update
LiveTraceConfig update(java.lang.String livetraceId, LiveTraceConfig liveTraceConfig, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
If a livetrace config with the specified identifier is not present, then create a new livetrace config. If it already exists, update the livetrace config with a full replacement.Synchronous method overload. Result of the invocation will be reported as a method return value. Use
invocationConfig
to specify configuration for this particular invocation.- Parameters:
livetraceId
- (required)liveTraceConfig
- (required)invocationConfig
- Configuration for the method invocation.- Returns:
- com.vmware.nsx_policy.model.LiveTraceConfig
- Throws:
com.vmware.vapi.std.errors.InvalidRequest
- Bad Request, Precondition Failedcom.vmware.vapi.std.errors.Unauthorized
- Forbiddencom.vmware.vapi.std.errors.ServiceUnavailable
- Service Unavailablecom.vmware.vapi.std.errors.InternalServerError
- Internal Server Errorcom.vmware.vapi.std.errors.NotFound
- Not Found
-
update
void update(java.lang.String livetraceId, LiveTraceConfig liveTraceConfig, com.vmware.vapi.bindings.client.AsyncCallback<LiveTraceConfig> asyncCallback)
If a livetrace config with the specified identifier is not present, then create a new livetrace config. If it already exists, update the livetrace config with a full replacement.Asynchronous method overload. Result of the invocation will be reported via the specified
asyncCallback
.Invocation Result:
com.vmware.nsx_policy.model.LiveTraceConfigOperation Errors:
InvalidRequest
- Bad Request, Precondition Failed
Unauthorized
- Forbidden
ServiceUnavailable
- Service Unavailable
InternalServerError
- Internal Server Error
NotFound
- Not Found
- Parameters:
livetraceId
- (required)liveTraceConfig
- (required)asyncCallback
- Receives the status (progress, result or error) of the operation invocation.
-
update
void update(java.lang.String livetraceId, LiveTraceConfig liveTraceConfig, com.vmware.vapi.bindings.client.AsyncCallback<LiveTraceConfig> asyncCallback, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
If a livetrace config with the specified identifier is not present, then create a new livetrace config. If it already exists, update the livetrace config with a full replacement.Asynchronous method overload. Result of the invocation will be reported via the specified
asyncCallback
. UseinvocationConfig
to specify configuration for this particular invocation.Invocation Result:
com.vmware.nsx_policy.model.LiveTraceConfigOperation Errors:
InvalidRequest
- Bad Request, Precondition Failed
Unauthorized
- Forbidden
ServiceUnavailable
- Service Unavailable
InternalServerError
- Internal Server Error
NotFound
- Not Found
- Parameters:
livetraceId
- (required)liveTraceConfig
- (required)asyncCallback
- Receives the status (progress, result or error) of the operation invocation.invocationConfig
- Configuration for the method invocation.
-
-