Waiting for engine...
Skip to main content

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!
routeCount: Int!
}

Fields​

EventStreamsEnvironment.region ● String! non-null scalar miscellaneous {#region}

The region name of the Event Streams Cluster for this Environment

EventStreamsEnvironment.topicCount ● Int! non-null scalar miscellaneous {#topic-count}

The number of topics in this Environment

EventStreamsEnvironment.topics ● [EventStreamsTopic!] list object event-streams-query {#topics}

The list of topics in this Environment

EventStreamsEnvironment.subscriptionCount ● Int! non-null scalar miscellaneous {#subscription-count}

The current number of subscriptions on all topics in this Environment

EventStreamsEnvironment.producerCount ● Int! non-null scalar miscellaneous {#producer-count}

The current number of producers on all topics in this Environment

EventStreamsEnvironment.token ● String scalar miscellaneous {#token}

The token used to connect to this environment on pulsar

EventStreamsEnvironment.tokens ● [EventStreamsToken!] list object event-streams-admin {#tokens}

All the tokens that can be used to connect to this environment on pulsar

EventStreamsEnvironment.restProduceBaseUrl ● String! non-null scalar miscellaneous {#rest-produce-base-url}

The Rest API Base URL that is used for producing messages on this environment's topics

EventStreamsEnvironment.routeCount ● Int! non-null scalar miscellaneous {#route-count}

The current number of routes in this Environment

Returned By​

eventStreamsEnvironmentUpdate mutation

Member Of​

Environment object

On this Page