Show / Hide Table of Contents

Class ComputeInstanceGroupSelectorCollection

A collection of selectors. The combination of instances matching the selectors are included in the instance group.

Inheritance
object
ComputeInstanceGroupSelectorCollection
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class ComputeInstanceGroupSelectorCollection

Properties

Items

Declaration
[Required(ErrorMessage = "Items is required.")]
[JsonProperty(PropertyName = "items")]
public List<ComputeInstanceGroupSelector> Items { get; set; }
Property Value
Type Description
List<ComputeInstanceGroupSelector>

A list of selectors for the instance group. Union operator is used for combining the instances selected by each selector.

Remarks

Required

In this article
Back to top