VMware vSphere Automation SDK for .NET 7.0.0.1
|
The AcqSpecs
interface provides methods to perform acquisition specification related operations.
More...
Inherited by vmware::vstats::AcqSpecsStub.
Public Member Functions | |
string | Create (vmware.vstats.AcqSpecsTypes.CreateSpec acqSpec) |
Create a new acquisition specification record. | |
string | Create (vmware.vstats.AcqSpecsTypes.CreateSpec acqSpec, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig) |
Create a new acquisition specification record. | |
global::System.Threading.Tasks.Task < string > | CreateAsync (vmware.vstats.AcqSpecsTypes.CreateSpec acqSpec) |
Create a new acquisition specification record. | |
global::System.Threading.Tasks.Task < string > | CreateAsync (vmware.vstats.AcqSpecsTypes.CreateSpec acqSpec, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig) |
Create a new acquisition specification record. | |
void | Delete (string id) |
Delete an acquisition specification. | |
void | Delete (string id, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig) |
Delete an acquisition specification. | |
global::System.Threading.Tasks.Task | DeleteAsync (string id) |
Delete an acquisition specification. | |
global::System.Threading.Tasks.Task | DeleteAsync (string id, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig) |
Delete an acquisition specification. | |
vmware.vstats.AcqSpecsTypes.ListResult | List (vmware.vstats.AcqSpecsTypes.FilterSpec filter) |
Returns information about all acquisition specifications. | |
vmware.vstats.AcqSpecsTypes.ListResult | List (vmware.vstats.AcqSpecsTypes.FilterSpec filter, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig) |
Returns information about all acquisition specifications. | |
global::System.Threading.Tasks.Task < vmware.vstats.AcqSpecsTypes.ListResult > | ListAsync (vmware.vstats.AcqSpecsTypes.FilterSpec filter) |
Returns information about all acquisition specifications. | |
global::System.Threading.Tasks.Task < vmware.vstats.AcqSpecsTypes.ListResult > | ListAsync (vmware.vstats.AcqSpecsTypes.FilterSpec filter, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig) |
Returns information about all acquisition specifications. | |
vmware.vstats.AcqSpecsTypes.Info | Get (string id) |
Returns information about a specific acquisition specification. | |
vmware.vstats.AcqSpecsTypes.Info | Get (string id, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig) |
Returns information about a specific acquisition specification. | |
global::System.Threading.Tasks.Task < vmware.vstats.AcqSpecsTypes.Info > | GetAsync (string id) |
Returns information about a specific acquisition specification. | |
global::System.Threading.Tasks.Task < vmware.vstats.AcqSpecsTypes.Info > | GetAsync (string id, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig) |
Returns information about a specific acquisition specification. | |
void | Update (string id, vmware.vstats.AcqSpecsTypes.UpdateSpec acqSpec) |
Update an existing acquisition specification. | |
void | Update (string id, vmware.vstats.AcqSpecsTypes.UpdateSpec acqSpec, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig) |
Update an existing acquisition specification. | |
global::System.Threading.Tasks.Task | UpdateAsync (string id, vmware.vstats.AcqSpecsTypes.UpdateSpec acqSpec) |
Update an existing acquisition specification. | |
global::System.Threading.Tasks.Task | UpdateAsync (string id, vmware.vstats.AcqSpecsTypes.UpdateSpec acqSpec, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig) |
Update an existing acquisition specification. |
The AcqSpecs
interface provides methods to perform acquisition specification related operations.
An acquisition specification defines the statistical data that should be collected at desired sampling rates from the underlying providers. It designates the resources and their counters which should be sampled, and a desired sampling rate. 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.
string vmware::vstats::AcqSpecs::Create | ( | vmware.vstats.AcqSpecsTypes.CreateSpec | acqSpec | ) |
Create a new acquisition specification record.
Warning: This method 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.
vmware.vapi.std.errors.Error | if the system reports an error while responding to the request. |
vmware.vapi.std.errors.InvalidArgument | if acqSpec contain any errors. |
vmware.vapi.std.errors.Unauthenticated | if the user can not be authenticated. |
vmware.vapi.std.errors.Unauthorized | if the user does not have sufficient privileges. |
acqSpec | Specification for the acquisition of stats data. |
com.vmware.vstats.model.AcqSpec
. Implemented in vmware::vstats::AcqSpecsStub.
string vmware::vstats::AcqSpecs::Create | ( | vmware.vstats.AcqSpecsTypes.CreateSpec | acqSpec, |
global::System.Action< vmware.vapi.std.Progress > | _progress, | ||
vmware.vapi.bindings.client.InvocationConfig | _invocationConfig | ||
) |
Create a new acquisition specification record.
Warning: This method 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.
vmware.vapi.std.errors.Error | if the system reports an error while responding to the request. |
vmware.vapi.std.errors.InvalidArgument | if acqSpec contain any errors. |
vmware.vapi.std.errors.Unauthenticated | if the user can not be authenticated. |
vmware.vapi.std.errors.Unauthorized | if the user does not have sufficient privileges. |
acqSpec | Specification for the acquisition of stats data. |
_progress | Progress notification call back |
_invocationConfig | Configuration for the method invocation |
com.vmware.vstats.model.AcqSpec
. Implemented in vmware::vstats::AcqSpecsStub.
global::System.Threading.Tasks.Task<string> vmware::vstats::AcqSpecs::CreateAsync | ( | vmware.vstats.AcqSpecsTypes.CreateSpec | acqSpec, |
global::System.Action< vmware.vapi.std.Progress > | _progress, | ||
vmware.vapi.bindings.client.InvocationConfig | _invocationConfig | ||
) |
Create a new acquisition specification record.
Warning: This method 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.
vmware.vapi.std.errors.Error | if the system reports an error while responding to the request. |
vmware.vapi.std.errors.InvalidArgument | if acqSpec contain any errors. |
vmware.vapi.std.errors.Unauthenticated | if the user can not be authenticated. |
vmware.vapi.std.errors.Unauthorized | if the user does not have sufficient privileges. |
acqSpec | Specification for the acquisition of stats data. |
_progress | Progress notification call back |
_invocationConfig | Configuration for the method invocation |
com.vmware.vstats.model.AcqSpec
. Implemented in vmware::vstats::AcqSpecsStub.
global::System.Threading.Tasks.Task<string> vmware::vstats::AcqSpecs::CreateAsync | ( | vmware.vstats.AcqSpecsTypes.CreateSpec | acqSpec | ) |
Create a new acquisition specification record.
Warning: This method 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.
vmware.vapi.std.errors.Error | if the system reports an error while responding to the request. |
vmware.vapi.std.errors.InvalidArgument | if acqSpec contain any errors. |
vmware.vapi.std.errors.Unauthenticated | if the user can not be authenticated. |
vmware.vapi.std.errors.Unauthorized | if the user does not have sufficient privileges. |
acqSpec | Specification for the acquisition of stats data. |
com.vmware.vstats.model.AcqSpec
. Implemented in vmware::vstats::AcqSpecsStub.
void vmware::vstats::AcqSpecs::Delete | ( | string | id | ) |
Delete an acquisition specification.
Warning: This method 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.
vmware.vapi.std.errors.Error | if the system reports an error while responding to the request. |
vmware.vapi.std.errors.InvalidArgument | if id is invalid. |
vmware.vapi.std.errors.NotFound | if acquisition specification could not be located. |
vmware.vapi.std.errors.Unauthenticated | if the user can not be authenticated. |
vmware.vapi.std.errors.Unauthorized | if the user does not have sufficient privileges. |
id | Acquisition specification ID. The parameter must be an identifier for the resource type: com.vmware.vstats.model.AcqSpec . |
Implemented in vmware::vstats::AcqSpecsStub.
void vmware::vstats::AcqSpecs::Delete | ( | string | id, |
global::System.Action< vmware.vapi.std.Progress > | _progress, | ||
vmware.vapi.bindings.client.InvocationConfig | _invocationConfig | ||
) |
Delete an acquisition specification.
Warning: This method 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.
vmware.vapi.std.errors.Error | if the system reports an error while responding to the request. |
vmware.vapi.std.errors.InvalidArgument | if id is invalid. |
vmware.vapi.std.errors.NotFound | if acquisition specification could not be located. |
vmware.vapi.std.errors.Unauthenticated | if the user can not be authenticated. |
vmware.vapi.std.errors.Unauthorized | if the user does not have sufficient privileges. |
id | Acquisition specification ID. The parameter must be an identifier for the resource type: com.vmware.vstats.model.AcqSpec . |
_progress | Progress notification call back |
_invocationConfig | Configuration for the method invocation |
Implemented in vmware::vstats::AcqSpecsStub.
global::System.Threading.Tasks.Task vmware::vstats::AcqSpecs::DeleteAsync | ( | string | id, |
global::System.Action< vmware.vapi.std.Progress > | _progress, | ||
vmware.vapi.bindings.client.InvocationConfig | _invocationConfig | ||
) |
Delete an acquisition specification.
Warning: This method 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.
vmware.vapi.std.errors.Error | if the system reports an error while responding to the request. |
vmware.vapi.std.errors.InvalidArgument | if id is invalid. |
vmware.vapi.std.errors.NotFound | if acquisition specification could not be located. |
vmware.vapi.std.errors.Unauthenticated | if the user can not be authenticated. |
vmware.vapi.std.errors.Unauthorized | if the user does not have sufficient privileges. |
id | Acquisition specification ID. The parameter must be an identifier for the resource type: com.vmware.vstats.model.AcqSpec . |
_progress | Progress notification call back |
_invocationConfig | Configuration for the method invocation |
Implemented in vmware::vstats::AcqSpecsStub.
global::System.Threading.Tasks.Task vmware::vstats::AcqSpecs::DeleteAsync | ( | string | id | ) |
Delete an acquisition specification.
Warning: This method 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.
vmware.vapi.std.errors.Error | if the system reports an error while responding to the request. |
vmware.vapi.std.errors.InvalidArgument | if id is invalid. |
vmware.vapi.std.errors.NotFound | if acquisition specification could not be located. |
vmware.vapi.std.errors.Unauthenticated | if the user can not be authenticated. |
vmware.vapi.std.errors.Unauthorized | if the user does not have sufficient privileges. |
id | Acquisition specification ID. The parameter must be an identifier for the resource type: com.vmware.vstats.model.AcqSpec . |
Implemented in vmware::vstats::AcqSpecsStub.
vmware.vstats.AcqSpecsTypes.Info vmware::vstats::AcqSpecs::Get | ( | string | id | ) |
Returns information about a specific acquisition specification.
Warning: This method 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.
vmware.vapi.std.errors.Error | if the system reports an error while responding to the request. |
vmware.vapi.std.errors.InvalidArgument | if id is invalid. |
vmware.vapi.std.errors.NotFound | acquisition specification could not be located. |
vmware.vapi.std.errors.Unauthenticated | if the user can not be authenticated. |
vmware.vapi.std.errors.Unauthorized | if the user does not have sufficient privileges. |
id | Acquisition specification ID. The parameter must be an identifier for the resource type: com.vmware.vstats.model.AcqSpec . |
Implemented in vmware::vstats::AcqSpecsStub.
vmware.vstats.AcqSpecsTypes.Info vmware::vstats::AcqSpecs::Get | ( | string | id, |
global::System.Action< vmware.vapi.std.Progress > | _progress, | ||
vmware.vapi.bindings.client.InvocationConfig | _invocationConfig | ||
) |
Returns information about a specific acquisition specification.
Warning: This method 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.
vmware.vapi.std.errors.Error | if the system reports an error while responding to the request. |
vmware.vapi.std.errors.InvalidArgument | if id is invalid. |
vmware.vapi.std.errors.NotFound | acquisition specification could not be located. |
vmware.vapi.std.errors.Unauthenticated | if the user can not be authenticated. |
vmware.vapi.std.errors.Unauthorized | if the user does not have sufficient privileges. |
id | Acquisition specification ID. The parameter must be an identifier for the resource type: com.vmware.vstats.model.AcqSpec . |
_progress | Progress notification call back |
_invocationConfig | Configuration for the method invocation |
Implemented in vmware::vstats::AcqSpecsStub.
global::System.Threading.Tasks.Task<vmware.vstats.AcqSpecsTypes.Info> vmware::vstats::AcqSpecs::GetAsync | ( | string | id | ) |
Returns information about a specific acquisition specification.
Warning: This method 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.
vmware.vapi.std.errors.Error | if the system reports an error while responding to the request. |
vmware.vapi.std.errors.InvalidArgument | if id is invalid. |
vmware.vapi.std.errors.NotFound | acquisition specification could not be located. |
vmware.vapi.std.errors.Unauthenticated | if the user can not be authenticated. |
vmware.vapi.std.errors.Unauthorized | if the user does not have sufficient privileges. |
id | Acquisition specification ID. The parameter must be an identifier for the resource type: com.vmware.vstats.model.AcqSpec . |
Implemented in vmware::vstats::AcqSpecsStub.
global::System.Threading.Tasks.Task<vmware.vstats.AcqSpecsTypes.Info> vmware::vstats::AcqSpecs::GetAsync | ( | string | id, |
global::System.Action< vmware.vapi.std.Progress > | _progress, | ||
vmware.vapi.bindings.client.InvocationConfig | _invocationConfig | ||
) |
Returns information about a specific acquisition specification.
Warning: This method 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.
vmware.vapi.std.errors.Error | if the system reports an error while responding to the request. |
vmware.vapi.std.errors.InvalidArgument | if id is invalid. |
vmware.vapi.std.errors.NotFound | acquisition specification could not be located. |
vmware.vapi.std.errors.Unauthenticated | if the user can not be authenticated. |
vmware.vapi.std.errors.Unauthorized | if the user does not have sufficient privileges. |
id | Acquisition specification ID. The parameter must be an identifier for the resource type: com.vmware.vstats.model.AcqSpec . |
_progress | Progress notification call back |
_invocationConfig | Configuration for the method invocation |
Implemented in vmware::vstats::AcqSpecsStub.
vmware.vstats.AcqSpecsTypes.ListResult vmware::vstats::AcqSpecs::List | ( | vmware.vstats.AcqSpecsTypes.FilterSpec | filter | ) |
Returns information about all acquisition specifications.
Warning: This method 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.
vmware.vapi.std.errors.Error | if the system reports an error while responding to the request. |
vmware.vapi.std.errors.InvalidArgument | if any of the specified parameters are invalid. |
vmware.vapi.std.errors.Unauthenticated | if the user can not be authenticated. |
vmware.vapi.std.errors.Unauthorized | if the user does not have sufficient privileges. |
filter | Criteria for selecting records to return. When set filtering will be applied to the result. |
Implemented in vmware::vstats::AcqSpecsStub.
vmware.vstats.AcqSpecsTypes.ListResult vmware::vstats::AcqSpecs::List | ( | vmware.vstats.AcqSpecsTypes.FilterSpec | filter, |
global::System.Action< vmware.vapi.std.Progress > | _progress, | ||
vmware.vapi.bindings.client.InvocationConfig | _invocationConfig | ||
) |
Returns information about all acquisition specifications.
Warning: This method 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.
vmware.vapi.std.errors.Error | if the system reports an error while responding to the request. |
vmware.vapi.std.errors.InvalidArgument | if any of the specified parameters are invalid. |
vmware.vapi.std.errors.Unauthenticated | if the user can not be authenticated. |
vmware.vapi.std.errors.Unauthorized | if the user does not have sufficient privileges. |
filter | Criteria for selecting records to return. When set filtering will be applied to the result. |
_progress | Progress notification call back |
_invocationConfig | Configuration for the method invocation |
Implemented in vmware::vstats::AcqSpecsStub.
global::System.Threading.Tasks.Task<vmware.vstats.AcqSpecsTypes.ListResult> vmware::vstats::AcqSpecs::ListAsync | ( | vmware.vstats.AcqSpecsTypes.FilterSpec | filter | ) |
Returns information about all acquisition specifications.
Warning: This method 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.
vmware.vapi.std.errors.Error | if the system reports an error while responding to the request. |
vmware.vapi.std.errors.InvalidArgument | if any of the specified parameters are invalid. |
vmware.vapi.std.errors.Unauthenticated | if the user can not be authenticated. |
vmware.vapi.std.errors.Unauthorized | if the user does not have sufficient privileges. |
filter | Criteria for selecting records to return. When set filtering will be applied to the result. |
Implemented in vmware::vstats::AcqSpecsStub.
global::System.Threading.Tasks.Task<vmware.vstats.AcqSpecsTypes.ListResult> vmware::vstats::AcqSpecs::ListAsync | ( | vmware.vstats.AcqSpecsTypes.FilterSpec | filter, |
global::System.Action< vmware.vapi.std.Progress > | _progress, | ||
vmware.vapi.bindings.client.InvocationConfig | _invocationConfig | ||
) |
Returns information about all acquisition specifications.
Warning: This method 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.
vmware.vapi.std.errors.Error | if the system reports an error while responding to the request. |
vmware.vapi.std.errors.InvalidArgument | if any of the specified parameters are invalid. |
vmware.vapi.std.errors.Unauthenticated | if the user can not be authenticated. |
vmware.vapi.std.errors.Unauthorized | if the user does not have sufficient privileges. |
filter | Criteria for selecting records to return. When set filtering will be applied to the result. |
_progress | Progress notification call back |
_invocationConfig | Configuration for the method invocation |
Implemented in vmware::vstats::AcqSpecsStub.
void vmware::vstats::AcqSpecs::Update | ( | string | id, |
vmware.vstats.AcqSpecsTypes.UpdateSpec | acqSpec, | ||
global::System.Action< vmware.vapi.std.Progress > | _progress, | ||
vmware.vapi.bindings.client.InvocationConfig | _invocationConfig | ||
) |
Update an existing acquisition specification.
Warning: This method 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.
vmware.vapi.std.errors.Error | if the system reports an error while responding to the request. |
vmware.vapi.std.errors.InvalidArgument | if any of the specified parameters are invalid. |
vmware.vapi.std.errors.NotFound | acquisition specification could not be located. |
vmware.vapi.std.errors.Unauthenticated | if the user can not be authenticated. |
vmware.vapi.std.errors.Unauthorized | if the user does not have sufficient privileges. |
id | Acquisition specification ID. The parameter must be an identifier for the resource type: com.vmware.vstats.model.AcqSpec . |
acqSpec | Updated acquisition specification. |
_progress | Progress notification call back |
_invocationConfig | Configuration for the method invocation |
Implemented in vmware::vstats::AcqSpecsStub.
void vmware::vstats::AcqSpecs::Update | ( | string | id, |
vmware.vstats.AcqSpecsTypes.UpdateSpec | acqSpec | ||
) |
Update an existing acquisition specification.
Warning: This method 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.
vmware.vapi.std.errors.Error | if the system reports an error while responding to the request. |
vmware.vapi.std.errors.InvalidArgument | if any of the specified parameters are invalid. |
vmware.vapi.std.errors.NotFound | acquisition specification could not be located. |
vmware.vapi.std.errors.Unauthenticated | if the user can not be authenticated. |
vmware.vapi.std.errors.Unauthorized | if the user does not have sufficient privileges. |
id | Acquisition specification ID. The parameter must be an identifier for the resource type: com.vmware.vstats.model.AcqSpec . |
acqSpec | Updated acquisition specification. |
Implemented in vmware::vstats::AcqSpecsStub.
global::System.Threading.Tasks.Task vmware::vstats::AcqSpecs::UpdateAsync | ( | string | id, |
vmware.vstats.AcqSpecsTypes.UpdateSpec | acqSpec, | ||
global::System.Action< vmware.vapi.std.Progress > | _progress, | ||
vmware.vapi.bindings.client.InvocationConfig | _invocationConfig | ||
) |
Update an existing acquisition specification.
Warning: This method 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.
vmware.vapi.std.errors.Error | if the system reports an error while responding to the request. |
vmware.vapi.std.errors.InvalidArgument | if any of the specified parameters are invalid. |
vmware.vapi.std.errors.NotFound | acquisition specification could not be located. |
vmware.vapi.std.errors.Unauthenticated | if the user can not be authenticated. |
vmware.vapi.std.errors.Unauthorized | if the user does not have sufficient privileges. |
id | Acquisition specification ID. The parameter must be an identifier for the resource type: com.vmware.vstats.model.AcqSpec . |
acqSpec | Updated acquisition specification. |
_progress | Progress notification call back |
_invocationConfig | Configuration for the method invocation |
Implemented in vmware::vstats::AcqSpecsStub.
global::System.Threading.Tasks.Task vmware::vstats::AcqSpecs::UpdateAsync | ( | string | id, |
vmware.vstats.AcqSpecsTypes.UpdateSpec | acqSpec | ||
) |
Update an existing acquisition specification.
Warning: This method 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.
vmware.vapi.std.errors.Error | if the system reports an error while responding to the request. |
vmware.vapi.std.errors.InvalidArgument | if any of the specified parameters are invalid. |
vmware.vapi.std.errors.NotFound | acquisition specification could not be located. |
vmware.vapi.std.errors.Unauthenticated | if the user can not be authenticated. |
vmware.vapi.std.errors.Unauthorized | if the user does not have sufficient privileges. |
id | Acquisition specification ID. The parameter must be an identifier for the resource type: com.vmware.vstats.model.AcqSpec . |
acqSpec | Updated acquisition specification. |
Implemented in vmware::vstats::AcqSpecsStub.