Show / Hide Table of Contents

Class GetCaCertificates

Inheritance
System.Object
GetCaCertificates
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.AliCloud.Slb
Assembly: Pulumi.AliCloud.dll
Syntax
public static class GetCaCertificates

Methods

View Source

InvokeAsync(GetCaCertificatesArgs, InvokeOptions)

This data source provides the CA certificate list.

{{% examples %}}

Example Usage

{{% example %}}

using Pulumi;
using AliCloud = Pulumi.AliCloud;

class MyStack : Stack
{
public MyStack()
{
    var sampleDs = Output.Create(AliCloud.Slb.GetCaCertificates.InvokeAsync());
    this.FirstSlbCaCertificateId = sampleDs.Apply(sampleDs => sampleDs.Certificates[0].Id);
}

[Output("firstSlbCaCertificateId")]
public Output<string> FirstSlbCaCertificateId { get; set; }
}

{{% /example %}} {{% /examples %}}

Declaration
public static Task<GetCaCertificatesResult> InvokeAsync(GetCaCertificatesArgs args = null, InvokeOptions options = null)
Parameters
Type Name Description
GetCaCertificatesArgs args
InvokeOptions options
Returns
Type Description
System.Threading.Tasks.Task<GetCaCertificatesResult>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.