Show / Hide Table of Contents

Class AppFlatFileBundleConfigurationProperties

Flat file connector bundle configuration properties
SCIM++ Properties:

  • idcsCompositeKey: [name]
  • idcsSearchable: true
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: default
  • type: complex
  • uniqueness: none
Inheritance
object
AppFlatFileBundleConfigurationProperties
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 AppFlatFileBundleConfigurationProperties

Properties

Confidential

Declaration
[JsonProperty(PropertyName = "confidential")]
public bool? Confidential { get; set; }
Property Value
Type Description
bool?

If true, this flatfile bundle configuration property value is confidential and will be encrypted in Oracle Identity Cloud Service. This attribute maps to \"isConfidential\" attribute in \"ConfigurationProperty\" in ICF.
SCIM++ Properties:

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

DisplayName

Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

Display name of the flatfile bundle configuration property. This attribute maps to \"displayName\" attribute in \"ConfigurationProperty\" in ICF.
SCIM++ Properties:

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

HelpMessage

Declaration
[JsonProperty(PropertyName = "helpMessage")]
public string HelpMessage { get; set; }
Property Value
Type Description
string

Help message of the flatfile bundle configuration property. This attribute maps to \"helpMessage\" attribute in \"ConfigurationProperty\" in ICF.
SCIM++ Properties:

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

IcfType

Declaration
[Required(ErrorMessage = "IcfType is required.")]
[JsonProperty(PropertyName = "icfType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AppFlatFileBundleConfigurationProperties.IcfTypeEnum? IcfType { get; set; }
Property Value
Type Description
AppFlatFileBundleConfigurationProperties.IcfTypeEnum?

ICF data type of flatfile the bundle configuration property. This attribute maps to \"type\" attribute in \"ConfigurationProperty\" in ICF.
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Remarks

Required

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

Name of the flatfile bundle configuration property. This attribute maps to \"name\" attribute in \"ConfigurationProperty\" in ICF.
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Remarks

Required

Order

Declaration
[JsonProperty(PropertyName = "order")]
public int? Order { get; set; }
Property Value
Type Description
int?

Display sequence of the bundle configuration property.
SCIM++ Properties:

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

Required

Declaration
[Required(ErrorMessage = "Required is required.")]
[JsonProperty(PropertyName = "required")]
public bool? Required { get; set; }
Property Value
Type Description
bool?

If true, this flatfile bundle configuration property is required to connect to the target connected managed app. This attribute maps to \"isRequired\" attribute in \"ConfigurationProperty\" in ICF.
SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: boolean
  • uniqueness: none
Remarks

Required

Value

Declaration
[JsonProperty(PropertyName = "value")]
public List<string> Value { get; set; }
Property Value
Type Description
List<string>

Value of the flatfile bundle configuration property. This attribute maps to \"value\" attribute in \"ConfigurationProperty\" in ICF.
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • idcsSensitive: encrypt
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
In this article
Back to top