Class CreatePoolDetails
The details required to create a pool.
Inherited Members
Namespace: Oci.DataflowService.Models
Assembly: OCI.DotNetSDK.Dataflow.dll
Syntax
public class CreatePoolDetails
Properties
CompartmentId
Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type | Description |
---|---|
string | The OCID of a compartment. |
Remarks
Required
Configurations
Declaration
[Required(ErrorMessage = "Configurations is required.")]
[JsonProperty(PropertyName = "configurations")]
public List<PoolConfig> Configurations { get; set; }
Property Value
Type | Description |
---|---|
List<PoolConfig> | List of PoolConfig items. |
Remarks
Required
DefinedTags
Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, Dictionary<string, object>> | Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations": {"CostCenter": "42"}} |
Description
Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type | Description |
---|---|
string | A user-friendly description. Avoid entering confidential information. |
DisplayName
Declaration
[Required(ErrorMessage = "DisplayName is required.")]
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type | Description |
---|---|
string | A user-friendly name. It does not have to be unique. Avoid entering confidential information. |
Remarks
Required
FreeformTags
Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, string> | Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"} |
IdleTimeoutInMinutes
Declaration
[JsonProperty(PropertyName = "idleTimeoutInMinutes")]
public int? IdleTimeoutInMinutes { get; set; }
Property Value
Type | Description |
---|---|
int? | Optional timeout value in minutes used to auto stop Pools. A Pool will be auto stopped after inactivity for this amount of time period. If value not set, pool will not be auto stopped auto. |
Schedules
Declaration
[JsonProperty(PropertyName = "schedules")]
public List<PoolSchedule> Schedules { get; set; }
Property Value
Type | Description |
---|---|
List<PoolSchedule> | A list of schedules for pool to auto start and stop. |