CertificateOperationsExtensions.GetAsync Method (ICertificateOperations, String, String)
Retrieve the certificate identified by certificate name. (see https://aka.ms/azureautomationsdk/certificateoperations for more information)
Namespace: Microsoft.WindowsAzure.Management.Automation
Assembly: Microsoft.WindowsAzure.Management.Automation (in Microsoft.WindowsAzure.Management.Automation.dll)
Syntax
public static Task<CertificateGetResponse> GetAsync(
this ICertificateOperations operations,
string automationAccount,
string certificateName
)
public:
[ExtensionAttribute]
static Task<CertificateGetResponse^>^ GetAsync(
ICertificateOperations^ operations,
String^ automationAccount,
String^ certificateName
)
static member GetAsync :
operations:ICertificateOperations *
automationAccount:string *
certificateName:string -> Task<CertificateGetResponse>
<ExtensionAttribute>
Public Shared Function GetAsync (
operations As ICertificateOperations,
automationAccount As String,
certificateName As String
) As Task(Of CertificateGetResponse)
Parameters
operations
Type: Microsoft.WindowsAzure.Management.Automation.ICertificateOperationsReference to the Microsoft.WindowsAzure.Management.Automation.ICertificateOperations.
automationAccount
Type: System.StringRequired. The automation account name.
certificateName
Type: System.StringRequired. The name of certificate.
Return Value
Type: System.Threading.Tasks.Task<CertificateGetResponse>
The response model for the get certificate operation.
See Also
CertificateOperationsExtensions Class
Microsoft.WindowsAzure.Management.Automation Namespace
Return to top