Show / Hide Table of Contents

Class GetSSLPolicy

Inheritance
System.Object
GetSSLPolicy
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.Gcp.Compute
Assembly: Pulumi.Gcp.dll
Syntax
public static class GetSSLPolicy

Methods

View Source

InvokeAsync(GetSSLPolicyArgs, InvokeOptions)

Gets an SSL Policy within GCE from its name, for use with Target HTTPS and Target SSL Proxies. For more information see the official documentation.

{{% examples %}}

Example Usage

{{% example %}}

using Pulumi;
using Gcp = Pulumi.Gcp;

class MyStack : Stack
{
public MyStack()
{
    var my_ssl_policy = Output.Create(Gcp.Compute.GetSSLPolicy.InvokeAsync(new Gcp.Compute.GetSSLPolicyArgs
    {
        Name = "production-ssl-policy",
    }));
}

}

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

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