Show / Hide Table of Contents

Class UpdateStreamJobDetails

The information needed to update streamjob

Inheritance
object
UpdateStreamJobDetails
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 UpdateStreamJobDetails

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

Stream job display name.

Features

Declaration
[JsonProperty(PropertyName = "features")]
public List<VideoStreamFeature> Features { get; set; }
Property Value
Type Description
List<VideoStreamFeature>

List of stream analysis features.

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"}

StreamOutputLocation

Declaration
[JsonProperty(PropertyName = "streamOutputLocation")]
public StreamOutputLocation StreamOutputLocation { get; set; }
Property Value
Type Description
StreamOutputLocation

StreamSourceId

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

OCID of streamSource

In this article
Back to top