VMware vSphere Automation SDK for .NET 7.0.0.1
vmware::vcenter::certificate_management::vcenter::TrustedRootChainsStub Class Reference

Remote stub implementation of the TrustedRootChains API service. More...

Inherits vmware::vcenter::certificate_management::vcenter::TrustedRootChains.

List of all members.

Public Member Functions

 TrustedRootChainsStub (vmware.vapi.core.IApiProvider iApiProvider, vmware.vapi.bindings.TypeConverter typeConverter, vmware.vapi.bindings.IStubConfiguration config)
 TrustedRootChainsStub (vmware.vapi.core.IApiProvider iApiProvider, vmware.vapi.bindings.IStubConfiguration config)
global::System.Collections.Generic.List
< vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.Summary
List ()
 Returns summary information for each trusted root certificate chain.
global::System.Collections.Generic.List
< vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.Summary
List (global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig)
 Returns summary information for each trusted root certificate chain.
global::System.Threading.Tasks.Task
< global::System.Collections.Generic.List
< vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.Summary > > 
ListAsync ()
 Returns summary information for each trusted root certificate chain.
global::System.Threading.Tasks.Task
< global::System.Collections.Generic.List
< vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.Summary > > 
ListAsync (global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig)
 Returns summary information for each trusted root certificate chain.
string Create (vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.CreateSpec spec)
 Creates a new trusted root certificate chain from the CreateSpec.
string Create (vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.CreateSpec spec, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig)
 Creates a new trusted root certificate chain from the CreateSpec.
global::System.Threading.Tasks.Task
< string > 
CreateAsync (vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.CreateSpec spec)
 Creates a new trusted root certificate chain from the CreateSpec.
global::System.Threading.Tasks.Task
< string > 
CreateAsync (vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.CreateSpec spec, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig)
 Creates a new trusted root certificate chain from the CreateSpec.
vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.Info Get (string chain)
 Retrieve a trusted root certificate chain for a given identifier.
vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.Info Get (string chain, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig)
 Retrieve a trusted root certificate chain for a given identifier.
global::System.Threading.Tasks.Task
< vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.Info
GetAsync (string chain)
 Retrieve a trusted root certificate chain for a given identifier.
global::System.Threading.Tasks.Task
< vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.Info
GetAsync (string chain, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig)
 Retrieve a trusted root certificate chain for a given identifier.
void Delete (string chain)
 Deletes trusted root certificate chain for a given identifier.
void Delete (string chain, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig)
 Deletes trusted root certificate chain for a given identifier.
global::System.Threading.Tasks.Task DeleteAsync (string chain)
 Deletes trusted root certificate chain for a given identifier.
global::System.Threading.Tasks.Task DeleteAsync (string chain, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig)
 Deletes trusted root certificate chain for a given identifier.

Detailed Description

Remote stub implementation of the TrustedRootChains API service.


Constructor & Destructor Documentation

vmware::vcenter::certificate_management::vcenter::TrustedRootChainsStub::TrustedRootChainsStub ( vmware.vapi.core.IApiProvider  iApiProvider,
vmware.vapi.bindings.TypeConverter  typeConverter,
vmware.vapi.bindings.IStubConfiguration  config 
) [inline]
vmware::vcenter::certificate_management::vcenter::TrustedRootChainsStub::TrustedRootChainsStub ( vmware.vapi.core.IApiProvider  iApiProvider,
vmware.vapi.bindings.IStubConfiguration  config 
) [inline]

Member Function Documentation

string vmware::vcenter::certificate_management::vcenter::TrustedRootChainsStub::Create ( vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.CreateSpec  spec) [inline]

Creates a new trusted root certificate chain from the CreateSpec.

This method was added in vSphere API 6.7.2.

Exceptions:
vmware.vapi.std.errors.Unauthorizedif authorization is not given to caller.
vmware.vapi.std.errors.AlreadyExistsif a trusted root certificate chain exists with id in given spec.
vmware.vapi.std.errors.Unauthorizedif you do not have all of the privileges described as follows:
  • Method execution requires CertificateManagement.Manage and CertificateManagement.Administer .
Parameters:
specThe information needed to create a trusted root certificate chain.
Returns:
The unique identifier for the new trusted root chain.

Implements vmware::vcenter::certificate_management::vcenter::TrustedRootChains.

string vmware::vcenter::certificate_management::vcenter::TrustedRootChainsStub::Create ( vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.CreateSpec  spec,
global::System.Action< vmware.vapi.std.Progress >  _progress,
vmware.vapi.bindings.client.InvocationConfig  _invocationConfig 
) [inline]

Creates a new trusted root certificate chain from the CreateSpec.

This method was added in vSphere API 6.7.2.

Exceptions:
vmware.vapi.std.errors.Unauthorizedif authorization is not given to caller.
vmware.vapi.std.errors.AlreadyExistsif a trusted root certificate chain exists with id in given spec.
vmware.vapi.std.errors.Unauthorizedif you do not have all of the privileges described as follows:
  • Method execution requires CertificateManagement.Manage and CertificateManagement.Administer .
Parameters:
specThe information needed to create a trusted root certificate chain.
_progressProgress notification call back
_invocationConfigConfiguration for the method invocation
Returns:
The unique identifier for the new trusted root chain.

Implements vmware::vcenter::certificate_management::vcenter::TrustedRootChains.

global::System.Threading.Tasks.Task<string> vmware::vcenter::certificate_management::vcenter::TrustedRootChainsStub::CreateAsync ( vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.CreateSpec  spec,
global::System.Action< vmware.vapi.std.Progress >  _progress,
vmware.vapi.bindings.client.InvocationConfig  _invocationConfig 
) [inline]

Creates a new trusted root certificate chain from the CreateSpec.

This method was added in vSphere API 6.7.2.

Exceptions:
vmware.vapi.std.errors.Unauthorizedif authorization is not given to caller.
vmware.vapi.std.errors.AlreadyExistsif a trusted root certificate chain exists with id in given spec.
vmware.vapi.std.errors.Unauthorizedif you do not have all of the privileges described as follows:
  • Method execution requires CertificateManagement.Manage and CertificateManagement.Administer .
Parameters:
specThe information needed to create a trusted root certificate chain.
_progressProgress notification call back
_invocationConfigConfiguration for the method invocation
Returns:
The unique identifier for the new trusted root chain.

Implements vmware::vcenter::certificate_management::vcenter::TrustedRootChains.

global::System.Threading.Tasks.Task<string> vmware::vcenter::certificate_management::vcenter::TrustedRootChainsStub::CreateAsync ( vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.CreateSpec  spec) [inline]

Creates a new trusted root certificate chain from the CreateSpec.

This method was added in vSphere API 6.7.2.

Exceptions:
vmware.vapi.std.errors.Unauthorizedif authorization is not given to caller.
vmware.vapi.std.errors.AlreadyExistsif a trusted root certificate chain exists with id in given spec.
vmware.vapi.std.errors.Unauthorizedif you do not have all of the privileges described as follows:
  • Method execution requires CertificateManagement.Manage and CertificateManagement.Administer .
Parameters:
specThe information needed to create a trusted root certificate chain.
Returns:
The unique identifier for the new trusted root chain.

Implements vmware::vcenter::certificate_management::vcenter::TrustedRootChains.

void vmware::vcenter::certificate_management::vcenter::TrustedRootChainsStub::Delete ( string  chain) [inline]

Deletes trusted root certificate chain for a given identifier.

This method was added in vSphere API 6.7.2.

Exceptions:
vmware.vapi.std.errors.Unauthorizedif authorization is not given to caller.
vmware.vapi.std.errors.NotFoundif a trusted root certificate chain does not exist for given id.
vmware.vapi.std.errors.Unauthorizedif you do not have all of the privileges described as follows:
  • Method execution requires CertificateManagement.Manage and CertificateManagement.Administer .
Parameters:
chainUnique identifier for a trusted root cert chain.

Implements vmware::vcenter::certificate_management::vcenter::TrustedRootChains.

void vmware::vcenter::certificate_management::vcenter::TrustedRootChainsStub::Delete ( string  chain,
global::System.Action< vmware.vapi.std.Progress >  _progress,
vmware.vapi.bindings.client.InvocationConfig  _invocationConfig 
) [inline]

Deletes trusted root certificate chain for a given identifier.

This method was added in vSphere API 6.7.2.

Exceptions:
vmware.vapi.std.errors.Unauthorizedif authorization is not given to caller.
vmware.vapi.std.errors.NotFoundif a trusted root certificate chain does not exist for given id.
vmware.vapi.std.errors.Unauthorizedif you do not have all of the privileges described as follows:
  • Method execution requires CertificateManagement.Manage and CertificateManagement.Administer .
Parameters:
chainUnique identifier for a trusted root cert chain.
_progressProgress notification call back
_invocationConfigConfiguration for the method invocation

Implements vmware::vcenter::certificate_management::vcenter::TrustedRootChains.

global::System.Threading.Tasks.Task vmware::vcenter::certificate_management::vcenter::TrustedRootChainsStub::DeleteAsync ( string  chain) [inline]

Deletes trusted root certificate chain for a given identifier.

This method was added in vSphere API 6.7.2.

Exceptions:
vmware.vapi.std.errors.Unauthorizedif authorization is not given to caller.
vmware.vapi.std.errors.NotFoundif a trusted root certificate chain does not exist for given id.
vmware.vapi.std.errors.Unauthorizedif you do not have all of the privileges described as follows:
  • Method execution requires CertificateManagement.Manage and CertificateManagement.Administer .
Parameters:
chainUnique identifier for a trusted root cert chain.

Implements vmware::vcenter::certificate_management::vcenter::TrustedRootChains.

global::System.Threading.Tasks.Task vmware::vcenter::certificate_management::vcenter::TrustedRootChainsStub::DeleteAsync ( string  chain,
global::System.Action< vmware.vapi.std.Progress >  _progress,
vmware.vapi.bindings.client.InvocationConfig  _invocationConfig 
) [inline]

Deletes trusted root certificate chain for a given identifier.

This method was added in vSphere API 6.7.2.

Exceptions:
vmware.vapi.std.errors.Unauthorizedif authorization is not given to caller.
vmware.vapi.std.errors.NotFoundif a trusted root certificate chain does not exist for given id.
vmware.vapi.std.errors.Unauthorizedif you do not have all of the privileges described as follows:
  • Method execution requires CertificateManagement.Manage and CertificateManagement.Administer .
Parameters:
chainUnique identifier for a trusted root cert chain.
_progressProgress notification call back
_invocationConfigConfiguration for the method invocation

Implements vmware::vcenter::certificate_management::vcenter::TrustedRootChains.

vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.Info vmware::vcenter::certificate_management::vcenter::TrustedRootChainsStub::Get ( string  chain) [inline]

Retrieve a trusted root certificate chain for a given identifier.

This method was added in vSphere API 6.7.2.

Exceptions:
vmware.vapi.std.errors.Unauthorizedif authorization is not given to caller.
vmware.vapi.std.errors.NotFoundif a trusted root certificate chain does not exist for given id.
vmware.vapi.std.errors.Unauthorizedif you do not have all of the privileges described as follows:
  • Method execution requires System.Read .
Parameters:
chainUnique identifier for a trusted root cert chain.
Returns:
TrustedRootChain.

Implements vmware::vcenter::certificate_management::vcenter::TrustedRootChains.

vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.Info vmware::vcenter::certificate_management::vcenter::TrustedRootChainsStub::Get ( string  chain,
global::System.Action< vmware.vapi.std.Progress >  _progress,
vmware.vapi.bindings.client.InvocationConfig  _invocationConfig 
) [inline]

Retrieve a trusted root certificate chain for a given identifier.

This method was added in vSphere API 6.7.2.

Exceptions:
vmware.vapi.std.errors.Unauthorizedif authorization is not given to caller.
vmware.vapi.std.errors.NotFoundif a trusted root certificate chain does not exist for given id.
vmware.vapi.std.errors.Unauthorizedif you do not have all of the privileges described as follows:
  • Method execution requires System.Read .
Parameters:
chainUnique identifier for a trusted root cert chain.
_progressProgress notification call back
_invocationConfigConfiguration for the method invocation
Returns:
TrustedRootChain.

Implements vmware::vcenter::certificate_management::vcenter::TrustedRootChains.

global::System.Threading.Tasks.Task<vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.Info> vmware::vcenter::certificate_management::vcenter::TrustedRootChainsStub::GetAsync ( string  chain) [inline]

Retrieve a trusted root certificate chain for a given identifier.

This method was added in vSphere API 6.7.2.

Exceptions:
vmware.vapi.std.errors.Unauthorizedif authorization is not given to caller.
vmware.vapi.std.errors.NotFoundif a trusted root certificate chain does not exist for given id.
vmware.vapi.std.errors.Unauthorizedif you do not have all of the privileges described as follows:
  • Method execution requires System.Read .
Parameters:
chainUnique identifier for a trusted root cert chain.
Returns:
TrustedRootChain.

Implements vmware::vcenter::certificate_management::vcenter::TrustedRootChains.

global::System.Threading.Tasks.Task<vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.Info> vmware::vcenter::certificate_management::vcenter::TrustedRootChainsStub::GetAsync ( string  chain,
global::System.Action< vmware.vapi.std.Progress >  _progress,
vmware.vapi.bindings.client.InvocationConfig  _invocationConfig 
) [inline]

Retrieve a trusted root certificate chain for a given identifier.

This method was added in vSphere API 6.7.2.

Exceptions:
vmware.vapi.std.errors.Unauthorizedif authorization is not given to caller.
vmware.vapi.std.errors.NotFoundif a trusted root certificate chain does not exist for given id.
vmware.vapi.std.errors.Unauthorizedif you do not have all of the privileges described as follows:
  • Method execution requires System.Read .
Parameters:
chainUnique identifier for a trusted root cert chain.
_progressProgress notification call back
_invocationConfigConfiguration for the method invocation
Returns:
TrustedRootChain.

Implements vmware::vcenter::certificate_management::vcenter::TrustedRootChains.

global::System.Collections.Generic.List<vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.Summary> vmware::vcenter::certificate_management::vcenter::TrustedRootChainsStub::List ( ) [inline]

Returns summary information for each trusted root certificate chain.

This method was added in vSphere API 6.7.2.

Exceptions:
vmware.vapi.std.errors.Unauthorizedif authorization is not given to caller.
vmware.vapi.std.errors.Unauthorizedif you do not have all of the privileges described as follows:
  • Method execution requires System.Read .
Returns:
List of trusted root certificate chains summaries.

Implements vmware::vcenter::certificate_management::vcenter::TrustedRootChains.

global::System.Collections.Generic.List<vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.Summary> vmware::vcenter::certificate_management::vcenter::TrustedRootChainsStub::List ( global::System.Action< vmware.vapi.std.Progress >  _progress,
vmware.vapi.bindings.client.InvocationConfig  _invocationConfig 
) [inline]

Returns summary information for each trusted root certificate chain.

This method was added in vSphere API 6.7.2.

Exceptions:
vmware.vapi.std.errors.Unauthorizedif authorization is not given to caller.
vmware.vapi.std.errors.Unauthorizedif you do not have all of the privileges described as follows:
  • Method execution requires System.Read .
Returns:
List of trusted root certificate chains summaries.

Implements vmware::vcenter::certificate_management::vcenter::TrustedRootChains.

global::System.Threading.Tasks.Task<global::System.Collections.Generic.List<vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.Summary> > vmware::vcenter::certificate_management::vcenter::TrustedRootChainsStub::ListAsync ( ) [inline]

Returns summary information for each trusted root certificate chain.

This method was added in vSphere API 6.7.2.

Exceptions:
vmware.vapi.std.errors.Unauthorizedif authorization is not given to caller.
vmware.vapi.std.errors.Unauthorizedif you do not have all of the privileges described as follows:
  • Method execution requires System.Read .
Returns:
List of trusted root certificate chains summaries.

Implements vmware::vcenter::certificate_management::vcenter::TrustedRootChains.

global::System.Threading.Tasks.Task<global::System.Collections.Generic.List<vmware.vcenter.certificate_management.vcenter.TrustedRootChainsTypes.Summary> > vmware::vcenter::certificate_management::vcenter::TrustedRootChainsStub::ListAsync ( global::System.Action< vmware.vapi.std.Progress >  _progress,
vmware.vapi.bindings.client.InvocationConfig  _invocationConfig 
) [inline]

Returns summary information for each trusted root certificate chain.

This method was added in vSphere API 6.7.2.

Exceptions:
vmware.vapi.std.errors.Unauthorizedif authorization is not given to caller.
vmware.vapi.std.errors.Unauthorizedif you do not have all of the privileges described as follows:
  • Method execution requires System.Read .
Returns:
List of trusted root certificate chains summaries.

Implements vmware::vcenter::certificate_management::vcenter::TrustedRootChains.


The documentation for this class was generated from the following file: