Show / Hide Table of Contents

Class AppBundlePoolConfiguration

Configurable options maintaining a pool of ICF connector instances. Values for sub attributes can be set only if the ConnectorBundle referenced in the App has connectorPoolingSupported set to true
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: complex
  • uniqueness: none
Inheritance
object
AppBundlePoolConfiguration
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 AppBundlePoolConfiguration

Properties

MaxIdle

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

Maximum number of connector instances in the pool that are idle and active.
SCIM++ Properties:

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

MaxObjects

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

Maximum number of connector instances in the pool that are idle and active.
SCIM++ Properties:

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

MaxWait

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

Maximum time (in milliseconds) to wait for a free connector instance to become available before failing.
SCIM++ Properties:

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

MinEvictableIdleTimeMillis

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

Minimum time (in milliseconds) to wait before evicting an idle conenctor instance from the pool.
SCIM++ Properties:

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

MinIdle

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

Minimum number of idle connector instances in the pool.
SCIM++ Properties:

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