Show / Hide Table of Contents

Class UpdateOSSChannelDetails

Properties to update an Oracle Streaming Service (OSS) channel.

Inheritance
object
UpdateChannelDetails
UpdateOSSChannelDetails
Inherited Members
UpdateChannelDetails.Name
UpdateChannelDetails.Description
UpdateChannelDetails.SessionExpiryDurationInMilliseconds
UpdateChannelDetails.FreeformTags
UpdateChannelDetails.DefinedTags
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OdaService.Models
Assembly: OCI.DotNetSDK.Oda.dll
Syntax
public class UpdateOSSChannelDetails : UpdateChannelDetails

Properties

AuthToken

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

The authentication token to use when connecting to the Oracle Streaming Service.

BootstrapServers

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

The Oracle Streaming Service bootstrap servers.

EventSinkBotIds

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

The IDs of the Skills and Digital Assistants that the Channel is routed to.

InboundMessageTopic

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

The topic inbound messages are received on.

OutboundMessageTopic

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

The topic outbound messages are sent on.

SaslMechanism

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

The SASL mechanmism to use when conecting to the Oracle Streaming Service. See Oracle Streaming Service documentation for a list of valid values.

SecurityProtocol

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

The security protocol to use when conecting to the Oracle Streaming Service. See Oracle Streaming Service documentation for a list of valid values.

StreamPoolId

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

The stream pool OCI to use when connecting to the Oracle Streaming Service.

TenancyName

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

The tenancy to use when connecting to the Oracle Streaming Service.

UserName

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

The user name to use when connecting to the Oracle Streaming Service.

In this article
Back to top