Show / Hide Table of Contents

Class AccountQueuePropertiesCorsRuleArgs

Inheritance
System.Object
InputArgs
ResourceArgs
AccountQueuePropertiesCorsRuleArgs
Inherited Members
ResourceArgs.Empty
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.Azure.Storage.Inputs
Assembly: Pulumi.Azure.dll
Syntax
public sealed class AccountQueuePropertiesCorsRuleArgs : ResourceArgs

Constructors

View Source

AccountQueuePropertiesCorsRuleArgs()

Declaration
public AccountQueuePropertiesCorsRuleArgs()

Properties

View Source

AllowedHeaders

A list of headers that are allowed to be a part of the cross-origin request.

Declaration
public InputList<string> AllowedHeaders { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

AllowedMethods

A list of http headers that are allowed to be executed by the origin. Valid options are DELETE, GET, HEAD, MERGE, POST, OPTIONS, PUT or PATCH.

Declaration
public InputList<string> AllowedMethods { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

AllowedOrigins

A list of origin domains that will be allowed by CORS.

Declaration
public InputList<string> AllowedOrigins { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

ExposedHeaders

A list of response headers that are exposed to CORS clients.

Declaration
public InputList<string> ExposedHeaders { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

MaxAgeInSeconds

The number of seconds the client should cache a preflight response.

Declaration
public Input<int> MaxAgeInSeconds { get; set; }
Property Value
Type Description
Input<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.