Show / Hide Table of Contents

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
Inheritance
object
SettingsCloudGateCorsSettings
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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.
Added In: 2011192329
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: boolean
  • uniqueness: none

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.
Added In: 2011192329
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

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.
Added In: 2011192329
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: boolean
  • uniqueness: none

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.
Added In: 2205182039
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

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.
Added In: 2205182039
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: integer
  • uniqueness: none
In this article
Back to top