ConnectedEnvironmentsCertificates interface
Interface representing a ConnectedEnvironmentsCertificates.
Methods
create |
Create or Update a Certificate. |
delete(string, string, string, Connected |
Deletes the specified Certificate. |
get(string, string, string, Connected |
Get the specified Certificate. |
list(string, string, Connected |
Get the Certificates in a given connected environment. |
update(string, string, string, Certificate |
Patches a certificate. Currently only patching of tags is supported |
Method Details
createOrUpdate(string, string, string, ConnectedEnvironmentsCertificatesCreateOrUpdateOptionalParams)
Create or Update a Certificate.
function createOrUpdate(resourceGroupName: string, connectedEnvironmentName: string, certificateName: string, options?: ConnectedEnvironmentsCertificatesCreateOrUpdateOptionalParams): Promise<Certificate>
Parameters
- resourceGroupName
-
string
The name of the resource group. The name is case insensitive.
- connectedEnvironmentName
-
string
Name of the Connected Environment.
- certificateName
-
string
Name of the Certificate.
The options parameters.
Returns
Promise<Certificate>
delete(string, string, string, ConnectedEnvironmentsCertificatesDeleteOptionalParams)
Deletes the specified Certificate.
function delete(resourceGroupName: string, connectedEnvironmentName: string, certificateName: string, options?: ConnectedEnvironmentsCertificatesDeleteOptionalParams): Promise<void>
Parameters
- resourceGroupName
-
string
The name of the resource group. The name is case insensitive.
- connectedEnvironmentName
-
string
Name of the Connected Environment.
- certificateName
-
string
Name of the Certificate.
The options parameters.
Returns
Promise<void>
get(string, string, string, ConnectedEnvironmentsCertificatesGetOptionalParams)
Get the specified Certificate.
function get(resourceGroupName: string, connectedEnvironmentName: string, certificateName: string, options?: ConnectedEnvironmentsCertificatesGetOptionalParams): Promise<Certificate>
Parameters
- resourceGroupName
-
string
The name of the resource group. The name is case insensitive.
- connectedEnvironmentName
-
string
Name of the Connected Environment.
- certificateName
-
string
Name of the Certificate.
The options parameters.
Returns
Promise<Certificate>
list(string, string, ConnectedEnvironmentsCertificatesListOptionalParams)
Get the Certificates in a given connected environment.
function list(resourceGroupName: string, connectedEnvironmentName: string, options?: ConnectedEnvironmentsCertificatesListOptionalParams): PagedAsyncIterableIterator<Certificate, Certificate[], PageSettings>
Parameters
- resourceGroupName
-
string
The name of the resource group. The name is case insensitive.
- connectedEnvironmentName
-
string
Name of the Connected Environment.
The options parameters.
Returns
update(string, string, string, CertificatePatch, ConnectedEnvironmentsCertificatesUpdateOptionalParams)
Patches a certificate. Currently only patching of tags is supported
function update(resourceGroupName: string, connectedEnvironmentName: string, certificateName: string, certificateEnvelope: CertificatePatch, options?: ConnectedEnvironmentsCertificatesUpdateOptionalParams): Promise<Certificate>
Parameters
- resourceGroupName
-
string
The name of the resource group. The name is case insensitive.
- connectedEnvironmentName
-
string
Name of the Connected Environment.
- certificateName
-
string
Name of the Certificate.
- certificateEnvelope
- CertificatePatch
Properties of a certificate that need to be updated
The options parameters.
Returns
Promise<Certificate>