thousandeyes-sdk-python/thousandeyes-sdk-streaming/docs/CreateStreamResponse.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

2.4 KiB

CreateStreamResponse

Properties

Name Type Description Notes
id str The data stream ID [optional] [readonly]
enabled bool Flag to enable or disable the stream integration. [optional]
links StreamLinks [optional]
type StreamType [optional]
endpoint_type EndpointType [optional]
stream_endpoint_url str The URL ThousandEyes sends data stream to. For a URL to be valid, it needs to: - Be syntactically correct. - Be reachable. - Use the HTTPS protocol. - When using the `grpc` endpointType, streamEndpointUrl cannot contain paths: - Valid . `grpc` - `https://example.com` - Invalid . `grpc` - `https://example.com/collector`. - Valid . `http` - `https://example.com/collector`. - When using the `http` endpointType, the endpoint must match the exact final full URL (including the path if there is one) to which the metrics will be sent. Examples below: - `https://api.honeycomb.io:443/v1/metrics` - `https://ingest.eu0.signalfx.com/v2/datapoint/otlp` [optional]
custom_headers Dict[str, str] Custom headers [optional]
tag_match **List[TagMatch]** A collection of tags that determine what tests are included in the data stream. These tag values are also included as attributes in the data stream metrics. [optional]
audit_operation AuditOperation [optional]

Example

from thousandeyes_sdk.streaming.models.create_stream_response import CreateStreamResponse

# TODO update the JSON string below
json = "{}"
# create an instance of CreateStreamResponse from a JSON string
create_stream_response_instance = CreateStreamResponse.from_json(json)
# print the JSON string representation of the object
print(CreateStreamResponse.to_json())

# convert the object into a dict
create_stream_response_dict = create_stream_response_instance.to_dict()
# create an instance of CreateStreamResponse from a dict
create_stream_response_from_dict = CreateStreamResponse.from_dict(create_stream_response_dict)

[Back to Model list] [Back to API list] [Back to README]