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
Inherited Members
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.
|
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.
|
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.
|
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.
|
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.
|
Remarks
Required
Order
Declaration
[JsonProperty(PropertyName = "order")]
public int? Order { get; set; }
Property Value
Type | Description |
---|---|
int? | Display sequence of the bundle configuration property.
|
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.
|
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.
|