EventStreamsEnvironment
Represents an Event Streams environment with metadata including region, topic and subscription counts, producer metrics, authentication tokens, and REST API base URLs for message production.
type EventStreamsEnvironment {
region: String!
topicCount: Int!
topics: [EventStreamsTopic!]
subscriptionCount: Int!
producerCount: Int!
token: String
tokens: [EventStreamsToken!]
restProduceBaseUrl: String!
}
Fields
EventStreamsEnvironment.region ● String! non-null scalar miscellaneous
The region name of the Event Streams Cluster for this Environment
EventStreamsEnvironment.topicCount ● Int! non-null scalar miscellaneous
The number of topics in this Environment
EventStreamsEnvironment.topics ● [EventStreamsTopic!] list object event-streams-query
The list of topics in this Environment
EventStreamsEnvironment.subscriptionCount ● Int! non-null scalar miscellaneous
The current number of subscriptions on all topics in this Environment
EventStreamsEnvironment.producerCount ● Int! non-null scalar miscellaneous
The current number of producers on all topics in this Environment
EventStreamsEnvironment.token ● String scalar miscellaneous
The token used to connect to this environment on pulsar
EventStreamsEnvironment.tokens ● [EventStreamsToken!] list object event-streams-admin
All the tokens that can be used to connect to this environment on pulsar
EventStreamsEnvironment.restProduceBaseUrl ● String! non-null scalar miscellaneous
The Rest API Base URL that is used for producing messages on this environment's topics
Returned By
eventStreamsEnvironmentUpdate mutation
Member Of
Environment object