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
Inherited Members
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.
|
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.
|
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.
|
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.
|
MinIdle
Declaration
[JsonProperty(PropertyName = "minIdle")]
public int? MinIdle { get; set; }
Property Value
Type | Description |
---|---|
int? | Minimum number of idle connector instances in the pool.
|