Show / Hide Table of Contents

Class CreateStreamJobDetails

The information needed to create new Streamjob

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

Properties

CompartmentId

Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

OCID of the compartment

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 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
[Required(ErrorMessage = "Features is required.")]
[JsonProperty(PropertyName = "features")]
public List<VideoStreamFeature> Features { get; set; }
Property Value
Type Description
List<VideoStreamFeature>

a list of stream analysis features.

Remarks

Required

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
[Required(ErrorMessage = "StreamOutputLocation is required.")]
[JsonProperty(PropertyName = "streamOutputLocation")]
public StreamOutputLocation StreamOutputLocation { get; set; }
Property Value
Type Description
StreamOutputLocation
Remarks

Required

StreamSourceId

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

OCID of streamSource.

Remarks

Required

In this article
Back to top