Show / Hide Table of Contents

Class UpdateStreamGroupDetails

The information needed to create a stream group

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

Properties

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 Example: {"foo-namespace": {"bar-key": "value"}}

DisplayName

Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

A human-friendly name for the streamGroup.

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For Example: {"bar-key": "value"}

IsEnabled

Declaration
[JsonProperty(PropertyName = "isEnabled")]
public bool? IsEnabled { get; set; }
Property Value
Type Description
bool?

Stream

StreamOverlaps

Declaration
[JsonProperty(PropertyName = "streamOverlaps")]
public List<StreamGroupOverlap> StreamOverlaps { get; set; }
Property Value
Type Description
List<StreamGroupOverlap>

List of streamSource OCIDs where the streamSource overlaps in field of view.

StreamSourceIds

Declaration
[JsonProperty(PropertyName = "streamSourceIds")]
public List<string> StreamSourceIds { get; set; }
Property Value
Type Description
List<string>

List of streamSource OCIDs associated with the stream group

In this article
Back to top