Show / Hide Table of Contents

Class ServiceCorsConfigurationArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ServiceCorsConfigurationArgs
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.Healthcare.Inputs
Assembly: Pulumi.Azure.dll
Syntax
public sealed class ServiceCorsConfigurationArgs : ResourceArgs

Constructors

View Source

ServiceCorsConfigurationArgs()

Declaration
public ServiceCorsConfigurationArgs()

Properties

View Source

AllowCredentials

If credentials are allowed via CORS.

Declaration
public Input<bool> AllowCredentials { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

AllowedHeaders

A set of headers to be allowed via CORS.

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

AllowedMethods

The methods to be allowed via CORS.

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

AllowedOrigins

A set of origins to be allowed via CORS.

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

MaxAgeInSeconds

The max age to be allowed via CORS.

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