StreamingSourceDetailsResponse¶
- 
class oci.sch.models.StreamingSourceDetailsResponse(**kwargs)¶
- Bases: - oci.sch.models.source_details_response.SourceDetailsResponse- The Streaming source response. Private metadata is included when the target is a stream accessed through a private endpoint. - Attributes - KIND_LOGGING- str(object=’’) -> str - KIND_MONITORING- str(object=’’) -> str - KIND_PLUGIN- str(object=’’) -> str - KIND_STREAMING- str(object=’’) -> str - cursor- Gets the cursor of this StreamingSourceDetailsResponse. - kind- [Required] Gets the kind of this SourceDetailsResponse. - private_endpoint_metadata- Gets the private_endpoint_metadata of this SourceDetailsResponse. - stream_id- [Required] Gets the stream_id of this StreamingSourceDetailsResponse. - Methods - __init__(**kwargs)- Initializes a new StreamingSourceDetailsResponse object with values from keyword arguments. - get_subtype(object_dictionary)- Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. - 
KIND_LOGGING= 'logging'¶
 - 
KIND_MONITORING= 'monitoring'¶
 - 
KIND_PLUGIN= 'plugin'¶
 - 
KIND_STREAMING= 'streaming'¶
 - 
__init__(**kwargs)¶
- Initializes a new StreamingSourceDetailsResponse object with values from keyword arguments. The default value of the - kindattribute of this class is- streamingand it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):- Parameters: - private_endpoint_metadata (oci.sch.models.PrivateEndpointMetadata) – The value to assign to the private_endpoint_metadata property of this StreamingSourceDetailsResponse.
- kind (str) – The value to assign to the kind property of this StreamingSourceDetailsResponse. Allowed values for this property are: “logging”, “monitoring”, “streaming”, “plugin”
- stream_id (str) – The value to assign to the stream_id property of this StreamingSourceDetailsResponse.
- cursor (oci.sch.models.StreamingCursorDetails) – The value to assign to the cursor property of this StreamingSourceDetailsResponse.
 
 - 
cursor¶
- Gets the cursor of this StreamingSourceDetailsResponse. - Returns: - The cursor of this StreamingSourceDetailsResponse. - Return type: - oci.sch.models.StreamingCursorDetails 
 - 
static get_subtype(object_dictionary)¶
- Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. 
 - 
kind¶
- [Required] Gets the kind of this SourceDetailsResponse. The type discriminator. - Allowed values for this property are: “logging”, “monitoring”, “streaming”, “plugin”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’. - Returns: - The kind of this SourceDetailsResponse. - Return type: - str 
 - 
private_endpoint_metadata¶
- Gets the private_endpoint_metadata of this SourceDetailsResponse. - Returns: - The private_endpoint_metadata of this SourceDetailsResponse. - Return type: - oci.sch.models.PrivateEndpointMetadata 
 
-