Class SettingsCloudGateCorsSettings
A complex attribute that specifies the Cloud Gate cross origin resource sharing settings.
Added In: 2011192329
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
Inherited Members
Namespace: Oci.IdentitydomainsService.Models
Assembly: OCI.DotNetSDK.Identitydomains.dll
Syntax
public class SettingsCloudGateCorsSettings
Properties
CloudGateCorsAllowNullOrigin
Declaration
[JsonProperty(PropertyName = "cloudGateCorsAllowNullOrigin")]
public bool? CloudGateCorsAllowNullOrigin { get; set; }
Property Value
Type | Description |
---|---|
bool? | Allow Null Origin (CORS) for this tenant.
|
CloudGateCorsAllowedOrigins
Declaration
[JsonProperty(PropertyName = "cloudGateCorsAllowedOrigins")]
public List<string> CloudGateCorsAllowedOrigins { get; set; }
Property Value
Type | Description |
---|---|
List<string> | Cloud Gate Allowed Cross-Origin Resource Sharing (CORS) Origins for this tenant.
|
CloudGateCorsEnabled
Declaration
[JsonProperty(PropertyName = "cloudGateCorsEnabled")]
public bool? CloudGateCorsEnabled { get; set; }
Property Value
Type | Description |
---|---|
bool? | Enable Cloud Gate Cross-Origin Resource Sharing (CORS) for this tenant.
|
CloudGateCorsExposedHeaders
Declaration
[JsonProperty(PropertyName = "cloudGateCorsExposedHeaders")]
public List<string> CloudGateCorsExposedHeaders { get; set; }
Property Value
Type | Description |
---|---|
List<string> | List of Response Headers Cloud Gate is allowed to expose in the CORS Response Header: Access-Control-Expose-Headers.
|
CloudGateCorsMaxAge
Declaration
[JsonProperty(PropertyName = "cloudGateCorsMaxAge")]
public int? CloudGateCorsMaxAge { get; set; }
Property Value
Type | Description |
---|---|
int? | Maximum number of seconds a CORS Pre-flight Response may be cached by client.
|