SYMBOL INDEX (916 symbols across 110 files) FILE: cmd/jetstream-controller/main.go function main (line 51) | func main() { function run (line 58) | func run() error { function runControlLoop (line 174) | func runControlLoop(config *rest.Config, natsCfg *controller.NatsConfig,... function handleSignals (line 241) | func handleSignals(cancel context.CancelFunc) { FILE: cmd/nats-boot-config/main.go function main (line 32) | func main() { FILE: cmd/nats-server-config-reloader/main.go type StringSet (line 24) | type StringSet method String (line 26) | func (s *StringSet) String() string { method Set (line 31) | func (s *StringSet) Set(val string) error { function main (line 36) | func main() { FILE: controllers/jetstream/conn_pool.go type natsContext (line 16) | type natsContext struct method copy (line 31) | func (c *natsContext) copy() *natsContext { method hash (line 39) | func (c *natsContext) hash() (string, error) { type natsContextDefaults (line 86) | type natsContextDefaults struct type pooledNatsConn (line 95) | type pooledNatsConn struct method ReturnToPool (line 103) | func (pc *pooledNatsConn) ReturnToPool() { type natsConnPool (line 118) | type natsConnPool struct method Get (line 140) | func (cp *natsConnPool) Get(cfg *natsContext) (*pooledNatsConn, error) { method getPooledConn (line 194) | func (cp *natsConnPool) getPooledConn(key string, cfg *natsContext) (*... function newNatsConnPool (line 127) | func newNatsConnPool(logger *logrus.Logger, natsDefaults *natsContextDef... constant getPooledConnMaxTries (line 137) | getPooledConnMaxTries = 10 FILE: controllers/jetstream/conn_pool_test.go function TestConnPool (line 15) | func TestConnPool(t *testing.T) { FILE: controllers/jetstream/consumer.go method runConsumerQueue (line 21) | func (c *Controller) runConsumerQueue() { method processConsumer (line 27) | func (c *Controller) processConsumer(ns, name string, jsmClient jsmClien... method processConsumerObject (line 38) | func (c *Controller) processConsumerObject(cns *apis.Consumer, jsm jsmCl... function consumerExists (line 144) | func consumerExists(ctx context.Context, c jsmClient, spec apis.Consumer... function createConsumer (line 155) | func createConsumer(ctx context.Context, c jsmClient, spec apis.Consumer... function updateConsumer (line 170) | func updateConsumer(ctx context.Context, c jsmClient, spec apis.Consumer... function consumerSpecToOpts (line 191) | func consumerSpecToOpts(spec apis.ConsumerSpec) ([]jsm.ConsumerOption, e... function deleteConsumer (line 368) | func deleteConsumer(ctx context.Context, c jsmClient, spec apis.Consumer... function setConsumerOK (line 392) | func setConsumerOK(ctx context.Context, s *apis.Consumer, i typed.Consum... function setConsumerErrored (line 418) | func setConsumerErrored(ctx context.Context, s *apis.Consumer, sif typed... FILE: controllers/jetstream/consumer_test.go function TestProcessConsumer (line 23) | func TestProcessConsumer(t *testing.T) { function TestConsumerSpecToOpts (line 333) | func TestConsumerSpecToOpts(t *testing.T) { function testWrapJSMC (line 448) | func testWrapJSMC(jsm jsmClient) jsmClientFunc { FILE: controllers/jetstream/controller.go constant maxQueueRetries (line 58) | maxQueueRetries = 10 constant readyCondType (line 61) | readyCondType = "Ready" type Options (line 64) | type Options struct type Controller (line 89) | type Controller struct method Run (line 235) | func (c *Controller) Run() error { method RealJSMC (line 311) | func (c *Controller) RealJSMC(cfg *natsContext) (jsmClient, error) { method cleanupStreams (line 345) | func (c *Controller) cleanupStreams() error { method cleanupConsumers (line 415) | func (c *Controller) cleanupConsumers() error { method normalEvent (line 467) | func (c *Controller) normalEvent(o runtime.Object, reason, message str... method warningEvent (line 473) | func (c *Controller) warningEvent(o runtime.Object, reason, message st... method getAccountOverrides (line 491) | func (c *Controller) getAccountOverrides(account string, ns string) (*... method runWithJsmc (line 628) | func (c *Controller) runWithJsmc(jsm jsmClientFunc, acc *accountOverri... function NewController (line 122) | func NewController(opt Options) *Controller { function selectMissingStreamsFromList (line 327) | func selectMissingStreamsFromList(prev, cur map[string]*apis.Stream) []*... function streamsMap (line 337) | func streamsMap(ss []*apis.Stream) map[string]*apis.Stream { function selectMissingConsumersFromList (line 397) | func selectMissingConsumersFromList(prev, cur map[string]*apis.Consumer)... function consumerMap (line 407) | func consumerMap(cs []*apis.Consumer) map[string]*apis.Consumer { type accountOverrides (line 479) | type accountOverrides struct type jsmcSpecOverrides (line 621) | type jsmcSpecOverrides struct function splitNamespaceName (line 691) | func splitNamespaceName(item interface{}) (ns string, name string, err e... function getStorageType (line 711) | func getStorageType(s string) (jsmapi.StorageType, error) { function enqueueWork (line 722) | func enqueueWork(q workqueue.TypedRateLimitingInterface[any], item inter... type jsmClientFunc (line 733) | type jsmClientFunc type processorFunc (line 734) | type processorFunc function processQueueNext (line 737) | func processQueueNext(q workqueue.TypedRateLimitingInterface[any], jmsCl... function UpsertCondition (line 772) | func UpsertCondition(cs []apis.Condition, next apis.Condition) []apis.Co... function shouldEnqueue (line 785) | func shouldEnqueue(prevObj, nextObj interface{}) bool { function eventHandlers (line 807) | func eventHandlers(q workqueue.TypedRateLimitingInterface[any]) cache.Re... FILE: controllers/jetstream/controller_test.go function TestMain (line 19) | func TestMain(m *testing.M) { function TestGetStorageType (line 28) | func TestGetStorageType(t *testing.T) { function TestEnqueueWork (line 63) | func TestEnqueueWork(t *testing.T) { function TestProcessQueueNext (line 94) | func TestProcessQueueNext(t *testing.T) { function TestUpsertCondition (line 184) | func TestUpsertCondition(t *testing.T) { function TestShouldEnqueue (line 238) | func TestShouldEnqueue(t *testing.T) { FILE: controllers/jetstream/jsmclient.go type jsmClient (line 12) | type jsmClient interface type jsmStream (line 23) | type jsmStream interface type jsmConsumer (line 28) | type jsmConsumer interface type realJsmClient (line 33) | type realJsmClient struct method Connect (line 38) | func (c *realJsmClient) Connect(servers string, opts ...nats.Option) e... method Close (line 55) | func (c *realJsmClient) Close() { method LoadStream (line 59) | func (c *realJsmClient) LoadStream(_ context.Context, name string) (js... method NewStream (line 63) | func (c *realJsmClient) NewStream(_ context.Context, name string, opts... method LoadConsumer (line 67) | func (c *realJsmClient) LoadConsumer(_ context.Context, stream, consum... method NewConsumer (line 71) | func (c *realJsmClient) NewConsumer(_ context.Context, stream string, ... FILE: controllers/jetstream/jsmclient_test.go type mockStream (line 11) | type mockStream struct method UpdateConfiguration (line 17) | func (m *mockStream) UpdateConfiguration(cnf jsmapi.StreamConfig, opts... method Delete (line 27) | func (m *mockStream) Delete() error { type mockConsumer (line 31) | type mockConsumer struct method UpdateConfiguration (line 35) | func (m *mockConsumer) UpdateConfiguration(opts ...jsm.ConsumerOption)... method Delete (line 39) | func (m *mockConsumer) Delete() error { type mockJsmClient (line 43) | type mockJsmClient struct method Connect (line 57) | func (c *mockJsmClient) Connect(servers string, opts ...nats.Option) e... method Close (line 61) | func (c *mockJsmClient) Close() {} method LoadStream (line 63) | func (c *mockJsmClient) LoadStream(ctx context.Context, name string) (... method NewStream (line 67) | func (c *mockJsmClient) NewStream(ctx context.Context, name string, op... method LoadConsumer (line 71) | func (c *mockJsmClient) LoadConsumer(ctx context.Context, stream, cons... method NewConsumer (line 75) | func (c *mockJsmClient) NewConsumer(ctx context.Context, stream string... FILE: controllers/jetstream/stream.go method runStreamQueue (line 33) | func (c *Controller) runStreamQueue() { method processStream (line 39) | func (c *Controller) processStream(ns, name string, jsm jsmClientFunc) (... method processStreamObject (line 50) | func (c *Controller) processStreamObject(str *apis.Stream, jsm jsmClient... function streamExists (line 161) | func streamExists(ctx context.Context, c jsmClient, spec apis.StreamSpec... function createStream (line 172) | func createStream(ctx context.Context, c jsmClient, spec apis.StreamSpec... function updateStream (line 377) | func updateStream(ctx context.Context, c jsmClient, spec apis.StreamSpec... function deleteStream (line 497) | func deleteStream(ctx context.Context, c jsmClient, spec apis.StreamSpec... function setStreamErrored (line 521) | func setStreamErrored(ctx context.Context, s *apis.Stream, sif typed.Str... function setStreamOK (line 552) | func setStreamOK(ctx context.Context, s *apis.Stream, i typed.StreamInte... function getDurationFromString (line 581) | func getDurationFromString(v string) (time.Duration, error) { function getRetention (line 589) | func getRetention(v string) jsmapi.RetentionPolicy { function getStorage (line 600) | func getStorage(v string) jsmapi.StorageType { function getDiscard (line 609) | func getDiscard(v string) jsmapi.DiscardPolicy { function getDuplicates (line 618) | func getDuplicates(v string) (time.Duration, error) { function getStreamSource (line 626) | func getStreamSource(ss *apis.StreamSource) (*jsmapi.StreamSource, error) { FILE: controllers/jetstream/stream_test.go function TestProcessStream (line 21) | func TestProcessStream(t *testing.T) { FILE: internal/controller/account_controller.go type AccountReconciler (line 40) | type AccountReconciler struct method Reconcile (line 62) | func (r *AccountReconciler) Reconcile(ctx context.Context, req ctrl.Re... method findDependentResources (line 159) | func (r *AccountReconciler) findDependentResources(ctx context.Context... method SetupWithManager (line 224) | func (r *AccountReconciler) SetupWithManager(mgr ctrl.Manager) error { type JetStreamResource (line 45) | type JetStreamResource interface type JetStreamResourceList (line 50) | type JetStreamResourceList FILE: internal/controller/client.go type NatsConfig (line 15) | type NatsConfig struct method Copy (line 30) | func (o *NatsConfig) Copy() *NatsConfig { method Hash (line 39) | func (o *NatsConfig) Hash() (string, error) { method Overlay (line 92) | func (o *NatsConfig) Overlay(overlay *NatsConfig) { method HasAuth (line 136) | func (o *NatsConfig) HasAuth() bool { method UnsetAuth (line 140) | func (o *NatsConfig) UnsetAuth() { method buildOptions (line 149) | func (o *NatsConfig) buildOptions() ([]nats.Option, error) { type Closable (line 195) | type Closable interface function CreateJSMClient (line 199) | func CreateJSMClient(conn *pooledConnection, pedantic bool, domain strin... function CreateJetStreamClient (line 233) | func CreateJetStreamClient(conn *pooledConnection, pedantic bool, domain... function createNatsConn (line 251) | func createNatsConn(cfg *NatsConfig) (*nats.Conn, error) { FILE: internal/controller/connection_pool.go type pooledConnection (line 10) | type pooledConnection struct method Close (line 17) | func (pc *pooledConnection) Close() { type connectionPool (line 25) | type connectionPool struct method Get (line 38) | func (p *connectionPool) Get(c *NatsConfig, pedantic bool) (*pooledCon... method release (line 73) | func (p *connectionPool) release(hash string) { function newConnPool (line 31) | func newConnPool(gracePeriod time.Duration) *connectionPool { FILE: internal/controller/connection_pool_test.go function TestConnPool (line 12) | func TestConnPool(t *testing.T) { FILE: internal/controller/consumer_controller.go type ConsumerReconciler (line 46) | type ConsumerReconciler struct method Reconcile (line 57) | func (r *ConsumerReconciler) Reconcile(ctx context.Context, req ctrl.R... method deleteConsumer (line 139) | func (r *ConsumerReconciler) deleteConsumer(ctx context.Context, log l... method createOrUpdate (line 196) | func (r *ConsumerReconciler) createOrUpdate(ctx context.Context, log k... method SetupWithManager (line 525) | func (r *ConsumerReconciler) SetupWithManager(mgr ctrl.Manager) error { function getStoredConsumerState (line 311) | func getStoredConsumerState(consumer *api.Consumer) (*jsmapi.ConsumerCon... function getServerConsumerState (line 325) | func getServerConsumerState(js *jsm.Manager, consumer *api.Consumer) (*j... function consumerSpecToConfig (line 338) | func consumerSpecToConfig(spec *api.ConsumerSpec) ([]jsm.ConsumerOption,... FILE: internal/controller/consumer_controller_test.go function Test_consumerSpecToConfig (line 726) | func Test_consumerSpecToConfig(t *testing.T) { FILE: internal/controller/helpers_test.go function assertReadyStateMatches (line 15) | func assertReadyStateMatches(condition api.Condition, status v1.Conditio... function CreateTestServer (line 29) | func CreateTestServer() *server.Server { FILE: internal/controller/jetstream_controller.go constant JSConsumerNotFoundErr (line 29) | JSConsumerNotFoundErr uint16 = 10014 constant JSStreamNotFoundErr (line 30) | JSStreamNotFoundErr uint16 = 10059 type JetStreamController (line 35) | type JetStreamController interface function NewJSController (line 58) | func NewJSController(k8sClient client.Client, natsConfig *NatsConfig, co... type jsController (line 68) | type jsController struct method RequeueInterval (line 77) | func (c *jsController) RequeueInterval() time.Duration { method ReadOnly (line 89) | func (c *jsController) ReadOnly() bool { method ValidNamespace (line 93) | func (c *jsController) ValidNamespace(namespace string) bool { method WithJSMClient (line 98) | func (c *jsController) WithJSMClient(opts api.ConnectionOpts, ns strin... method WithJetStreamClient (line 118) | func (c *jsController) WithJetStreamClient(opts api.ConnectionOpts, ns... method natsConfigFromOpts (line 139) | func (c *jsController) natsConfigFromOpts(opts api.ConnectionOpts, ns ... function natsConfigFromOpts (line 392) | func natsConfigFromOpts(opts api.ConnectionOpts) *NatsConfig { function updateReadyCondition (line 432) | func updateReadyCondition(conditions []api.Condition, status v1.Conditio... function jsonString (line 464) | func jsonString(v string) []byte { function compareConfigState (line 468) | func compareConfigState(actual any, desired any) string { function versionComponents (line 472) | func versionComponents(version string) (major, minor, patch int, err err... FILE: internal/controller/jetstream_controller_test.go function Test_updateReadyCondition (line 12) | func Test_updateReadyCondition(t *testing.T) { FILE: internal/controller/keyvalue_controller.go constant kvStreamPrefix (line 40) | kvStreamPrefix = "KV_" type KeyValueReconciler (line 44) | type KeyValueReconciler struct method Reconcile (line 60) | func (r *KeyValueReconciler) Reconcile(ctx context.Context, req ctrl.R... method deleteKeyValue (line 135) | func (r *KeyValueReconciler) deleteKeyValue(ctx context.Context, log l... method createOrUpdate (line 185) | func (r *KeyValueReconciler) createOrUpdate(ctx context.Context, log l... method SetupWithManager (line 400) | func (r *KeyValueReconciler) SetupWithManager(mgr ctrl.Manager) error { function getStoredKeyValueState (line 301) | func getStoredKeyValueState(keyValue *api.KeyValue) (*jetstream.StreamCo... function getServerKeyValueState (line 315) | func getServerKeyValueState(ctx context.Context, js jetstream.JetStream,... function keyValueSpecToConfig (line 328) | func keyValueSpecToConfig(spec *api.KeyValueSpec) (jetstream.KeyValueCon... FILE: internal/controller/keyvalue_controller_test.go function Test_mapKVSpecToConfig (line 685) | func Test_mapKVSpecToConfig(t *testing.T) { FILE: internal/controller/objectstore_controller.go constant objStreamPrefix (line 40) | objStreamPrefix = "OBJ_" type ObjectStoreReconciler (line 44) | type ObjectStoreReconciler struct method Reconcile (line 61) | func (r *ObjectStoreReconciler) Reconcile(ctx context.Context, req ctr... method deleteObjectStore (line 133) | func (r *ObjectStoreReconciler) deleteObjectStore(ctx context.Context,... method createOrUpdate (line 183) | func (r *ObjectStoreReconciler) createOrUpdate(ctx context.Context, lo... method SetupWithManager (line 366) | func (r *ObjectStoreReconciler) SetupWithManager(mgr ctrl.Manager) err... function getStoredObjectStoreState (line 299) | func getStoredObjectStoreState(objectStore *api.ObjectStore) (*jetstream... function getServerObjectStoreState (line 313) | func getServerObjectStoreState(ctx context.Context, js jetstream.JetStre... function objectStoreSpecToConfig (line 326) | func objectStoreSpecToConfig(spec *api.ObjectStoreSpec) (jetstream.Objec... FILE: internal/controller/objectstore_controller_test.go function Test_mapobjectstoreSpecToConfig (line 675) | func Test_mapobjectstoreSpecToConfig(t *testing.T) { FILE: internal/controller/register.go type Config (line 15) | type Config struct function RegisterAll (line 26) | func RegisterAll(mgr ctrl.Manager, clientConfig *NatsConfig, config *Con... FILE: internal/controller/stream_controller.go type StreamReconciler (line 42) | type StreamReconciler struct method Reconcile (line 59) | func (r *StreamReconciler) Reconcile(ctx context.Context, req ctrl.Req... method deleteStream (line 134) | func (r *StreamReconciler) deleteStream(ctx context.Context, log logr.... method createOrUpdate (line 184) | func (r *StreamReconciler) createOrUpdate(ctx context.Context, log log... method SetupWithManager (line 649) | func (r *StreamReconciler) SetupWithManager(mgr ctrl.Manager) error { function getStoredStreamState (line 299) | func getStoredStreamState(stream *api.Stream) (*jsmapi.StreamConfig, err... function getServerStreamState (line 313) | func getServerStreamState(jsm *jsm.Manager, stream *api.Stream) (*jsmapi... function streamSpecToConfig (line 326) | func streamSpecToConfig(spec *api.StreamSpec, currentConfig *jsmapi.Stre... function mapStreamSource (line 578) | func mapStreamSource(ss *api.StreamSource) (*jetstream.StreamSource, err... function mapJSMStreamSource (line 613) | func mapJSMStreamSource(ss *api.StreamSource) (*jsmapi.StreamSource, err... FILE: internal/controller/stream_controller_test.go function Test_mapSpecToConfig (line 729) | func Test_mapSpecToConfig(t *testing.T) { function TestStreamUpdateWithoutPlacement (line 947) | func TestStreamUpdateWithoutPlacement(t *testing.T) { FILE: internal/controller/suite_test.go function TestControllers (line 55) | func TestControllers(t *testing.T) { FILE: internal/controller/types.go constant readyCondType (line 4) | readyCondType = "Ready" constant accountFinalizer (line 5) | accountFinalizer = "account.nats.io/finalizer" constant streamFinalizer (line 6) | streamFinalizer = "stream.nats.io/finalizer" constant keyValueFinalizer (line 7) | keyValueFinalizer = "kv.nats.io/finalizer" constant objectStoreFinalizer (line 8) | objectStoreFinalizer = "objectstore.nats.io/finalizer" constant consumerFinalizer (line 9) | consumerFinalizer = "consumer.nats.io/finalizer" constant stateAnnotationConsumer (line 11) | stateAnnotationConsumer = "consumer.nats.io/state" constant stateAnnotationKV (line 12) | stateAnnotationKV = "kv.nats.io/state" constant stateAnnotationObj (line 13) | stateAnnotationObj = "objectstore.nats.io/state" constant stateAnnotationStream (line 14) | stateAnnotationStream = "stream.nats.io/state" constant stateReady (line 16) | stateReady = "Ready" constant stateReconciling (line 17) | stateReconciling = "Reconciling" constant stateErrored (line 18) | stateErrored = "Errored" constant stateFinalizing (line 19) | stateFinalizing = "Finalizing" FILE: pkg/bootconfig/bootconfig.go type Options (line 29) | type Options struct type Controller (line 47) | type Controller struct method SetupClients (line 67) | func (c *Controller) SetupClients(cfg *k8srestapi.Config) error { method Run (line 77) | func (c *Controller) Run(ctx context.Context) error { function NewController (line 59) | func NewController(opts *Options) *Controller { FILE: pkg/jetstream/apis/jetstream/register.go constant GroupName (line 5) | GroupName = "jetstream.nats.io" FILE: pkg/jetstream/apis/jetstream/v1beta1/consumertypes.go type Consumer (line 11) | type Consumer struct method GetSpec (line 19) | func (c *Consumer) GetSpec() interface{} { type ConsumerSpec (line 24) | type ConsumerSpec struct type ConsumerList (line 49) | type ConsumerList struct FILE: pkg/jetstream/apis/jetstream/v1beta1/register.go function Kind (line 22) | func Kind(kind string) schema.GroupKind { function Resource (line 27) | func Resource(resource string) schema.GroupResource { function addKnownTypes (line 32) | func addKnownTypes(scheme *runtime.Scheme) error { FILE: pkg/jetstream/apis/jetstream/v1beta1/streamtemplatetypes.go type StreamTemplate (line 11) | type StreamTemplate struct method GetSpec (line 19) | func (s *StreamTemplate) GetSpec() interface{} { type StreamTemplateSpec (line 24) | type StreamTemplateSpec struct type StreamTemplateList (line 33) | type StreamTemplateList struct FILE: pkg/jetstream/apis/jetstream/v1beta1/streamtypes.go type Stream (line 11) | type Stream struct method GetSpec (line 19) | func (s *Stream) GetSpec() interface{} { type StreamSpec (line 24) | type StreamSpec struct type StreamPlacement (line 47) | type StreamPlacement struct type StreamSource (line 52) | type StreamSource struct type StreamList (line 65) | type StreamList struct FILE: pkg/jetstream/apis/jetstream/v1beta1/types.go type CredentialsSecret (line 7) | type CredentialsSecret struct type Status (line 12) | type Status struct type Condition (line 17) | type Condition struct FILE: pkg/jetstream/apis/jetstream/v1beta1/zz_generated.deepcopy.go method DeepCopyInto (line 26) | func (in *Condition) DeepCopyInto(out *Condition) { method DeepCopy (line 32) | func (in *Condition) DeepCopy() *Condition { method DeepCopyInto (line 42) | func (in *Consumer) DeepCopyInto(out *Consumer) { method DeepCopy (line 52) | func (in *Consumer) DeepCopy() *Consumer { method DeepCopyObject (line 62) | func (in *Consumer) DeepCopyObject() runtime.Object { method DeepCopyInto (line 70) | func (in *ConsumerList) DeepCopyInto(out *ConsumerList) { method DeepCopy (line 85) | func (in *ConsumerList) DeepCopy() *ConsumerList { method DeepCopyObject (line 95) | func (in *ConsumerList) DeepCopyObject() runtime.Object { method DeepCopyInto (line 103) | func (in *ConsumerSpec) DeepCopyInto(out *ConsumerSpec) { method DeepCopy (line 109) | func (in *ConsumerSpec) DeepCopy() *ConsumerSpec { method DeepCopyInto (line 119) | func (in *CredentialsSecret) DeepCopyInto(out *CredentialsSecret) { method DeepCopy (line 125) | func (in *CredentialsSecret) DeepCopy() *CredentialsSecret { method DeepCopyInto (line 135) | func (in *Status) DeepCopyInto(out *Status) { method DeepCopy (line 146) | func (in *Status) DeepCopy() *Status { method DeepCopyInto (line 156) | func (in *Stream) DeepCopyInto(out *Stream) { method DeepCopy (line 166) | func (in *Stream) DeepCopy() *Stream { method DeepCopyObject (line 176) | func (in *Stream) DeepCopyObject() runtime.Object { method DeepCopyInto (line 184) | func (in *StreamList) DeepCopyInto(out *StreamList) { method DeepCopy (line 199) | func (in *StreamList) DeepCopy() *StreamList { method DeepCopyObject (line 209) | func (in *StreamList) DeepCopyObject() runtime.Object { method DeepCopyInto (line 217) | func (in *StreamPlacement) DeepCopyInto(out *StreamPlacement) { method DeepCopy (line 228) | func (in *StreamPlacement) DeepCopy() *StreamPlacement { method DeepCopyInto (line 238) | func (in *StreamSource) DeepCopyInto(out *StreamSource) { method DeepCopy (line 244) | func (in *StreamSource) DeepCopy() *StreamSource { method DeepCopyInto (line 254) | func (in *StreamSpec) DeepCopyInto(out *StreamSpec) { method DeepCopy (line 286) | func (in *StreamSpec) DeepCopy() *StreamSpec { method DeepCopyInto (line 296) | func (in *StreamTemplate) DeepCopyInto(out *StreamTemplate) { method DeepCopy (line 306) | func (in *StreamTemplate) DeepCopy() *StreamTemplate { method DeepCopyObject (line 316) | func (in *StreamTemplate) DeepCopyObject() runtime.Object { method DeepCopyInto (line 324) | func (in *StreamTemplateList) DeepCopyInto(out *StreamTemplateList) { method DeepCopy (line 339) | func (in *StreamTemplateList) DeepCopy() *StreamTemplateList { method DeepCopyObject (line 349) | func (in *StreamTemplateList) DeepCopyObject() runtime.Object { method DeepCopyInto (line 357) | func (in *StreamTemplateSpec) DeepCopyInto(out *StreamTemplateSpec) { method DeepCopy (line 364) | func (in *StreamTemplateSpec) DeepCopy() *StreamTemplateSpec { FILE: pkg/jetstream/apis/jetstream/v1beta2/accounttypes.go type Account (line 11) | type Account struct method GetSpec (line 19) | func (c *Account) GetSpec() interface{} { type AccountSpec (line 24) | type AccountSpec struct type AccountList (line 36) | type AccountList struct FILE: pkg/jetstream/apis/jetstream/v1beta2/consumertypes.go type Consumer (line 11) | type Consumer struct method GetSpec (line 19) | func (c *Consumer) GetSpec() interface{} { type ConsumerSpec (line 24) | type ConsumerSpec struct type ConsumerList (line 65) | type ConsumerList struct FILE: pkg/jetstream/apis/jetstream/v1beta2/keyvaluetypes.go type KeyValue (line 13) | type KeyValue struct method GetSpec (line 21) | func (s *KeyValue) GetSpec() interface{} { type KeyValueSpec (line 26) | type KeyValueSpec struct type KeyValueList (line 50) | type KeyValueList struct FILE: pkg/jetstream/apis/jetstream/v1beta2/objectstoretypes.go type ObjectStore (line 11) | type ObjectStore struct method GetSpec (line 19) | func (s *ObjectStore) GetSpec() interface{} { type ObjectStoreSpec (line 24) | type ObjectStoreSpec struct type ObjectStoreList (line 40) | type ObjectStoreList struct FILE: pkg/jetstream/apis/jetstream/v1beta2/register.go function Kind (line 22) | func Kind(kind string) schema.GroupKind { function Resource (line 27) | func Resource(resource string) schema.GroupResource { function addKnownTypes (line 32) | func addKnownTypes(scheme *runtime.Scheme) error { FILE: pkg/jetstream/apis/jetstream/v1beta2/streamtypes.go type Stream (line 11) | type Stream struct method GetSpec (line 19) | func (s *Stream) GetSpec() interface{} { type StreamSpec (line 24) | type StreamSpec struct type SubjectTransform (line 65) | type SubjectTransform struct type StreamPlacement (line 70) | type StreamPlacement struct type StreamSource (line 75) | type StreamSource struct type RePublish (line 87) | type RePublish struct type StreamList (line 96) | type StreamList struct FILE: pkg/jetstream/apis/jetstream/v1beta2/types.go type CredentialsSecret (line 7) | type CredentialsSecret struct type Status (line 12) | type Status struct type Condition (line 17) | type Condition struct type BaseStreamConfig (line 25) | type BaseStreamConfig struct type ConnectionOpts (line 31) | type ConnectionOpts struct type ConsumerLimits (line 41) | type ConsumerLimits struct type TLS (line 46) | type TLS struct type TLSSecret (line 52) | type TLSSecret struct type CredsSecret (line 59) | type CredsSecret struct type NKeySecret (line 64) | type NKeySecret struct type TokenSecret (line 69) | type TokenSecret struct type User (line 74) | type User struct type SecretRef (line 80) | type SecretRef struct FILE: pkg/jetstream/apis/jetstream/v1beta2/zz_generated.deepcopy.go method DeepCopyInto (line 26) | func (in *Account) DeepCopyInto(out *Account) { method DeepCopy (line 36) | func (in *Account) DeepCopy() *Account { method DeepCopyObject (line 46) | func (in *Account) DeepCopyObject() runtime.Object { method DeepCopyInto (line 54) | func (in *AccountList) DeepCopyInto(out *AccountList) { method DeepCopy (line 69) | func (in *AccountList) DeepCopy() *AccountList { method DeepCopyObject (line 79) | func (in *AccountList) DeepCopyObject() runtime.Object { method DeepCopyInto (line 87) | func (in *AccountSpec) DeepCopyInto(out *AccountSpec) { method DeepCopy (line 123) | func (in *AccountSpec) DeepCopy() *AccountSpec { method DeepCopyInto (line 133) | func (in *BaseStreamConfig) DeepCopyInto(out *BaseStreamConfig) { method DeepCopy (line 140) | func (in *BaseStreamConfig) DeepCopy() *BaseStreamConfig { method DeepCopyInto (line 150) | func (in *Condition) DeepCopyInto(out *Condition) { method DeepCopy (line 156) | func (in *Condition) DeepCopy() *Condition { method DeepCopyInto (line 166) | func (in *ConnectionOpts) DeepCopyInto(out *ConnectionOpts) { method DeepCopy (line 182) | func (in *ConnectionOpts) DeepCopy() *ConnectionOpts { method DeepCopyInto (line 192) | func (in *Consumer) DeepCopyInto(out *Consumer) { method DeepCopy (line 202) | func (in *Consumer) DeepCopy() *Consumer { method DeepCopyObject (line 212) | func (in *Consumer) DeepCopyObject() runtime.Object { method DeepCopyInto (line 220) | func (in *ConsumerLimits) DeepCopyInto(out *ConsumerLimits) { method DeepCopy (line 226) | func (in *ConsumerLimits) DeepCopy() *ConsumerLimits { method DeepCopyInto (line 236) | func (in *ConsumerList) DeepCopyInto(out *ConsumerList) { method DeepCopy (line 251) | func (in *ConsumerList) DeepCopy() *ConsumerList { method DeepCopyObject (line 261) | func (in *ConsumerList) DeepCopyObject() runtime.Object { method DeepCopyInto (line 269) | func (in *ConsumerSpec) DeepCopyInto(out *ConsumerSpec) { method DeepCopy (line 298) | func (in *ConsumerSpec) DeepCopy() *ConsumerSpec { method DeepCopyInto (line 308) | func (in *CredentialsSecret) DeepCopyInto(out *CredentialsSecret) { method DeepCopy (line 314) | func (in *CredentialsSecret) DeepCopy() *CredentialsSecret { method DeepCopyInto (line 324) | func (in *CredsSecret) DeepCopyInto(out *CredsSecret) { method DeepCopy (line 335) | func (in *CredsSecret) DeepCopy() *CredsSecret { method DeepCopyInto (line 345) | func (in *KeyValue) DeepCopyInto(out *KeyValue) { method DeepCopy (line 355) | func (in *KeyValue) DeepCopy() *KeyValue { method DeepCopyObject (line 365) | func (in *KeyValue) DeepCopyObject() runtime.Object { method DeepCopyInto (line 373) | func (in *KeyValueList) DeepCopyInto(out *KeyValueList) { method DeepCopy (line 388) | func (in *KeyValueList) DeepCopy() *KeyValueList { method DeepCopyObject (line 398) | func (in *KeyValueList) DeepCopyObject() runtime.Object { method DeepCopyInto (line 406) | func (in *KeyValueSpec) DeepCopyInto(out *KeyValueSpec) { method DeepCopy (line 439) | func (in *KeyValueSpec) DeepCopy() *KeyValueSpec { method DeepCopyInto (line 449) | func (in *NKeySecret) DeepCopyInto(out *NKeySecret) { method DeepCopy (line 460) | func (in *NKeySecret) DeepCopy() *NKeySecret { method DeepCopyInto (line 470) | func (in *ObjectStore) DeepCopyInto(out *ObjectStore) { method DeepCopy (line 480) | func (in *ObjectStore) DeepCopy() *ObjectStore { method DeepCopyObject (line 490) | func (in *ObjectStore) DeepCopyObject() runtime.Object { method DeepCopyInto (line 498) | func (in *ObjectStoreList) DeepCopyInto(out *ObjectStoreList) { method DeepCopy (line 513) | func (in *ObjectStoreList) DeepCopy() *ObjectStoreList { method DeepCopyObject (line 523) | func (in *ObjectStoreList) DeepCopyObject() runtime.Object { method DeepCopyInto (line 531) | func (in *ObjectStoreSpec) DeepCopyInto(out *ObjectStoreSpec) { method DeepCopy (line 550) | func (in *ObjectStoreSpec) DeepCopy() *ObjectStoreSpec { method DeepCopyInto (line 560) | func (in *RePublish) DeepCopyInto(out *RePublish) { method DeepCopy (line 566) | func (in *RePublish) DeepCopy() *RePublish { method DeepCopyInto (line 576) | func (in *SecretRef) DeepCopyInto(out *SecretRef) { method DeepCopy (line 582) | func (in *SecretRef) DeepCopy() *SecretRef { method DeepCopyInto (line 592) | func (in *Status) DeepCopyInto(out *Status) { method DeepCopy (line 603) | func (in *Status) DeepCopy() *Status { method DeepCopyInto (line 613) | func (in *Stream) DeepCopyInto(out *Stream) { method DeepCopy (line 623) | func (in *Stream) DeepCopy() *Stream { method DeepCopyObject (line 633) | func (in *Stream) DeepCopyObject() runtime.Object { method DeepCopyInto (line 641) | func (in *StreamList) DeepCopyInto(out *StreamList) { method DeepCopy (line 656) | func (in *StreamList) DeepCopy() *StreamList { method DeepCopyObject (line 666) | func (in *StreamList) DeepCopyObject() runtime.Object { method DeepCopyInto (line 674) | func (in *StreamPlacement) DeepCopyInto(out *StreamPlacement) { method DeepCopy (line 685) | func (in *StreamPlacement) DeepCopy() *StreamPlacement { method DeepCopyInto (line 695) | func (in *StreamSource) DeepCopyInto(out *StreamSource) { method DeepCopy (line 712) | func (in *StreamSource) DeepCopy() *StreamSource { method DeepCopyInto (line 722) | func (in *StreamSpec) DeepCopyInto(out *StreamSpec) { method DeepCopy (line 777) | func (in *StreamSpec) DeepCopy() *StreamSpec { method DeepCopyInto (line 787) | func (in *SubjectTransform) DeepCopyInto(out *SubjectTransform) { method DeepCopy (line 793) | func (in *SubjectTransform) DeepCopy() *SubjectTransform { method DeepCopyInto (line 803) | func (in *TLS) DeepCopyInto(out *TLS) { method DeepCopy (line 814) | func (in *TLS) DeepCopy() *TLS { method DeepCopyInto (line 824) | func (in *TLSSecret) DeepCopyInto(out *TLSSecret) { method DeepCopy (line 835) | func (in *TLSSecret) DeepCopy() *TLSSecret { method DeepCopyInto (line 845) | func (in *TokenSecret) DeepCopyInto(out *TokenSecret) { method DeepCopy (line 852) | func (in *TokenSecret) DeepCopy() *TokenSecret { method DeepCopyInto (line 862) | func (in *User) DeepCopyInto(out *User) { method DeepCopy (line 869) | func (in *User) DeepCopy() *User { FILE: pkg/jetstream/generated/applyconfiguration/internal/internal.go function Parser (line 25) | func Parser() *typed.Parser { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/account.go type AccountApplyConfiguration (line 26) | type AccountApplyConfiguration struct method IsApplyConfiguration (line 43) | func (b AccountApplyConfiguration) IsApplyConfiguration() {} method WithKind (line 48) | func (b *AccountApplyConfiguration) WithKind(value string) *AccountApp... method WithAPIVersion (line 56) | func (b *AccountApplyConfiguration) WithAPIVersion(value string) *Acco... method WithName (line 64) | func (b *AccountApplyConfiguration) WithName(value string) *AccountApp... method WithGenerateName (line 73) | func (b *AccountApplyConfiguration) WithGenerateName(value string) *Ac... method WithNamespace (line 82) | func (b *AccountApplyConfiguration) WithNamespace(value string) *Accou... method WithUID (line 91) | func (b *AccountApplyConfiguration) WithUID(value types.UID) *AccountA... method WithResourceVersion (line 100) | func (b *AccountApplyConfiguration) WithResourceVersion(value string) ... method WithGeneration (line 109) | func (b *AccountApplyConfiguration) WithGeneration(value int64) *Accou... method WithCreationTimestamp (line 118) | func (b *AccountApplyConfiguration) WithCreationTimestamp(value metav1... method WithDeletionTimestamp (line 127) | func (b *AccountApplyConfiguration) WithDeletionTimestamp(value metav1... method WithDeletionGracePeriodSeconds (line 136) | func (b *AccountApplyConfiguration) WithDeletionGracePeriodSeconds(val... method WithLabels (line 146) | func (b *AccountApplyConfiguration) WithLabels(entries map[string]stri... method WithAnnotations (line 161) | func (b *AccountApplyConfiguration) WithAnnotations(entries map[string... method WithOwnerReferences (line 175) | func (b *AccountApplyConfiguration) WithOwnerReferences(values ...*v1.... method WithFinalizers (line 189) | func (b *AccountApplyConfiguration) WithFinalizers(values ...string) *... method ensureObjectMetaApplyConfigurationExists (line 197) | func (b *AccountApplyConfiguration) ensureObjectMetaApplyConfiguration... method WithSpec (line 206) | func (b *AccountApplyConfiguration) WithSpec(value *AccountSpecApplyCo... method WithStatus (line 214) | func (b *AccountApplyConfiguration) WithStatus(value *StatusApplyConfi... method GetKind (line 220) | func (b *AccountApplyConfiguration) GetKind() *string { method GetAPIVersion (line 225) | func (b *AccountApplyConfiguration) GetAPIVersion() *string { method GetName (line 230) | func (b *AccountApplyConfiguration) GetName() *string { method GetNamespace (line 236) | func (b *AccountApplyConfiguration) GetNamespace() *string { function Account (line 35) | func Account(name, namespace string) *AccountApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/accountspec.go type AccountSpecApplyConfiguration (line 20) | type AccountSpecApplyConfiguration struct method WithServers (line 38) | func (b *AccountSpecApplyConfiguration) WithServers(values ...string) ... method WithTLS (line 48) | func (b *AccountSpecApplyConfiguration) WithTLS(value *TLSSecretApplyC... method WithCreds (line 56) | func (b *AccountSpecApplyConfiguration) WithCreds(value *CredsSecretAp... method WithNKey (line 64) | func (b *AccountSpecApplyConfiguration) WithNKey(value *NKeySecretAppl... method WithToken (line 72) | func (b *AccountSpecApplyConfiguration) WithToken(value *TokenSecretAp... method WithUser (line 80) | func (b *AccountSpecApplyConfiguration) WithUser(value *UserApplyConfi... function AccountSpec (line 31) | func AccountSpec() *AccountSpecApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/basestreamconfig.go type BaseStreamConfigApplyConfiguration (line 20) | type BaseStreamConfigApplyConfiguration struct method WithPreventDelete (line 34) | func (b *BaseStreamConfigApplyConfiguration) WithPreventDelete(value b... method WithPreventUpdate (line 42) | func (b *BaseStreamConfigApplyConfiguration) WithPreventUpdate(value b... function BaseStreamConfig (line 27) | func BaseStreamConfig() *BaseStreamConfigApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/condition.go type ConditionApplyConfiguration (line 24) | type ConditionApplyConfiguration struct method WithType (line 41) | func (b *ConditionApplyConfiguration) WithType(value string) *Conditio... method WithStatus (line 49) | func (b *ConditionApplyConfiguration) WithStatus(value v1.ConditionSta... method WithReason (line 57) | func (b *ConditionApplyConfiguration) WithReason(value string) *Condit... method WithMessage (line 65) | func (b *ConditionApplyConfiguration) WithMessage(value string) *Condi... method WithLastTransitionTime (line 73) | func (b *ConditionApplyConfiguration) WithLastTransitionTime(value str... function Condition (line 34) | func Condition() *ConditionApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/connectionopts.go type ConnectionOptsApplyConfiguration (line 20) | type ConnectionOptsApplyConfiguration struct method WithAccount (line 39) | func (b *ConnectionOptsApplyConfiguration) WithAccount(value string) *... method WithCreds (line 47) | func (b *ConnectionOptsApplyConfiguration) WithCreds(value string) *Co... method WithNkey (line 55) | func (b *ConnectionOptsApplyConfiguration) WithNkey(value string) *Con... method WithServers (line 63) | func (b *ConnectionOptsApplyConfiguration) WithServers(values ...strin... method WithTLS (line 73) | func (b *ConnectionOptsApplyConfiguration) WithTLS(value *TLSApplyConf... method WithTLSFirst (line 81) | func (b *ConnectionOptsApplyConfiguration) WithTLSFirst(value bool) *C... method WithJsDomain (line 89) | func (b *ConnectionOptsApplyConfiguration) WithJsDomain(value string) ... function ConnectionOpts (line 32) | func ConnectionOpts() *ConnectionOptsApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/consumer.go type ConsumerApplyConfiguration (line 26) | type ConsumerApplyConfiguration struct method IsApplyConfiguration (line 43) | func (b ConsumerApplyConfiguration) IsApplyConfiguration() {} method WithKind (line 48) | func (b *ConsumerApplyConfiguration) WithKind(value string) *ConsumerA... method WithAPIVersion (line 56) | func (b *ConsumerApplyConfiguration) WithAPIVersion(value string) *Con... method WithName (line 64) | func (b *ConsumerApplyConfiguration) WithName(value string) *ConsumerA... method WithGenerateName (line 73) | func (b *ConsumerApplyConfiguration) WithGenerateName(value string) *C... method WithNamespace (line 82) | func (b *ConsumerApplyConfiguration) WithNamespace(value string) *Cons... method WithUID (line 91) | func (b *ConsumerApplyConfiguration) WithUID(value types.UID) *Consume... method WithResourceVersion (line 100) | func (b *ConsumerApplyConfiguration) WithResourceVersion(value string)... method WithGeneration (line 109) | func (b *ConsumerApplyConfiguration) WithGeneration(value int64) *Cons... method WithCreationTimestamp (line 118) | func (b *ConsumerApplyConfiguration) WithCreationTimestamp(value metav... method WithDeletionTimestamp (line 127) | func (b *ConsumerApplyConfiguration) WithDeletionTimestamp(value metav... method WithDeletionGracePeriodSeconds (line 136) | func (b *ConsumerApplyConfiguration) WithDeletionGracePeriodSeconds(va... method WithLabels (line 146) | func (b *ConsumerApplyConfiguration) WithLabels(entries map[string]str... method WithAnnotations (line 161) | func (b *ConsumerApplyConfiguration) WithAnnotations(entries map[strin... method WithOwnerReferences (line 175) | func (b *ConsumerApplyConfiguration) WithOwnerReferences(values ...*v1... method WithFinalizers (line 189) | func (b *ConsumerApplyConfiguration) WithFinalizers(values ...string) ... method ensureObjectMetaApplyConfigurationExists (line 197) | func (b *ConsumerApplyConfiguration) ensureObjectMetaApplyConfiguratio... method WithSpec (line 206) | func (b *ConsumerApplyConfiguration) WithSpec(value *ConsumerSpecApply... method WithStatus (line 214) | func (b *ConsumerApplyConfiguration) WithStatus(value *StatusApplyConf... method GetKind (line 220) | func (b *ConsumerApplyConfiguration) GetKind() *string { method GetAPIVersion (line 225) | func (b *ConsumerApplyConfiguration) GetAPIVersion() *string { method GetName (line 230) | func (b *ConsumerApplyConfiguration) GetName() *string { method GetNamespace (line 236) | func (b *ConsumerApplyConfiguration) GetNamespace() *string { function Consumer (line 35) | func Consumer(name, namespace string) *ConsumerApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/consumerlimits.go type ConsumerLimitsApplyConfiguration (line 20) | type ConsumerLimitsApplyConfiguration struct method WithInactiveThreshold (line 34) | func (b *ConsumerLimitsApplyConfiguration) WithInactiveThreshold(value... method WithMaxAckPending (line 42) | func (b *ConsumerLimitsApplyConfiguration) WithMaxAckPending(value int... function ConsumerLimits (line 27) | func ConsumerLimits() *ConsumerLimitsApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/consumerspec.go type ConsumerSpecApplyConfiguration (line 20) | type ConsumerSpecApplyConfiguration struct method WithDescription (line 65) | func (b *ConsumerSpecApplyConfiguration) WithDescription(value string)... method WithAckPolicy (line 73) | func (b *ConsumerSpecApplyConfiguration) WithAckPolicy(value string) *... method WithAckWait (line 81) | func (b *ConsumerSpecApplyConfiguration) WithAckWait(value string) *Co... method WithDeliverPolicy (line 89) | func (b *ConsumerSpecApplyConfiguration) WithDeliverPolicy(value strin... method WithDeliverSubject (line 97) | func (b *ConsumerSpecApplyConfiguration) WithDeliverSubject(value stri... method WithDeliverGroup (line 105) | func (b *ConsumerSpecApplyConfiguration) WithDeliverGroup(value string... method WithDurableName (line 113) | func (b *ConsumerSpecApplyConfiguration) WithDurableName(value string)... method WithFilterSubject (line 121) | func (b *ConsumerSpecApplyConfiguration) WithFilterSubject(value strin... method WithFilterSubjects (line 129) | func (b *ConsumerSpecApplyConfiguration) WithFilterSubjects(values ...... method WithFlowControl (line 139) | func (b *ConsumerSpecApplyConfiguration) WithFlowControl(value bool) *... method WithHeartbeatInterval (line 147) | func (b *ConsumerSpecApplyConfiguration) WithHeartbeatInterval(value s... method WithMaxAckPending (line 155) | func (b *ConsumerSpecApplyConfiguration) WithMaxAckPending(value int) ... method WithMaxDeliver (line 163) | func (b *ConsumerSpecApplyConfiguration) WithMaxDeliver(value int) *Co... method WithBackOff (line 171) | func (b *ConsumerSpecApplyConfiguration) WithBackOff(values ...string)... method WithMaxWaiting (line 181) | func (b *ConsumerSpecApplyConfiguration) WithMaxWaiting(value int) *Co... method WithOptStartSeq (line 189) | func (b *ConsumerSpecApplyConfiguration) WithOptStartSeq(value int) *C... method WithOptStartTime (line 197) | func (b *ConsumerSpecApplyConfiguration) WithOptStartTime(value string... method WithRateLimitBps (line 205) | func (b *ConsumerSpecApplyConfiguration) WithRateLimitBps(value int) *... method WithReplayPolicy (line 213) | func (b *ConsumerSpecApplyConfiguration) WithReplayPolicy(value string... method WithSampleFreq (line 221) | func (b *ConsumerSpecApplyConfiguration) WithSampleFreq(value string) ... method WithHeadersOnly (line 229) | func (b *ConsumerSpecApplyConfiguration) WithHeadersOnly(value bool) *... method WithMaxRequestBatch (line 237) | func (b *ConsumerSpecApplyConfiguration) WithMaxRequestBatch(value int... method WithMaxRequestExpires (line 245) | func (b *ConsumerSpecApplyConfiguration) WithMaxRequestExpires(value s... method WithMaxRequestMaxBytes (line 253) | func (b *ConsumerSpecApplyConfiguration) WithMaxRequestMaxBytes(value ... method WithInactiveThreshold (line 261) | func (b *ConsumerSpecApplyConfiguration) WithInactiveThreshold(value s... method WithReplicas (line 269) | func (b *ConsumerSpecApplyConfiguration) WithReplicas(value int) *Cons... method WithMemStorage (line 277) | func (b *ConsumerSpecApplyConfiguration) WithMemStorage(value bool) *C... method WithMetadata (line 286) | func (b *ConsumerSpecApplyConfiguration) WithMetadata(entries map[stri... method WithPauseUntil (line 299) | func (b *ConsumerSpecApplyConfiguration) WithPauseUntil(value string) ... method WithPriorityPolicy (line 307) | func (b *ConsumerSpecApplyConfiguration) WithPriorityPolicy(value stri... method WithPinnedTTL (line 315) | func (b *ConsumerSpecApplyConfiguration) WithPinnedTTL(value string) *... method WithPriorityGroups (line 323) | func (b *ConsumerSpecApplyConfiguration) WithPriorityGroups(values ...... method WithStreamName (line 333) | func (b *ConsumerSpecApplyConfiguration) WithStreamName(value string) ... function ConsumerSpec (line 58) | func ConsumerSpec() *ConsumerSpecApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/credssecret.go type CredsSecretApplyConfiguration (line 20) | type CredsSecretApplyConfiguration struct method WithFile (line 34) | func (b *CredsSecretApplyConfiguration) WithFile(value string) *CredsS... method WithSecret (line 42) | func (b *CredsSecretApplyConfiguration) WithSecret(value *SecretRefApp... function CredsSecret (line 27) | func CredsSecret() *CredsSecretApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/keyvalue.go type KeyValueApplyConfiguration (line 26) | type KeyValueApplyConfiguration struct method IsApplyConfiguration (line 43) | func (b KeyValueApplyConfiguration) IsApplyConfiguration() {} method WithKind (line 48) | func (b *KeyValueApplyConfiguration) WithKind(value string) *KeyValueA... method WithAPIVersion (line 56) | func (b *KeyValueApplyConfiguration) WithAPIVersion(value string) *Key... method WithName (line 64) | func (b *KeyValueApplyConfiguration) WithName(value string) *KeyValueA... method WithGenerateName (line 73) | func (b *KeyValueApplyConfiguration) WithGenerateName(value string) *K... method WithNamespace (line 82) | func (b *KeyValueApplyConfiguration) WithNamespace(value string) *KeyV... method WithUID (line 91) | func (b *KeyValueApplyConfiguration) WithUID(value types.UID) *KeyValu... method WithResourceVersion (line 100) | func (b *KeyValueApplyConfiguration) WithResourceVersion(value string)... method WithGeneration (line 109) | func (b *KeyValueApplyConfiguration) WithGeneration(value int64) *KeyV... method WithCreationTimestamp (line 118) | func (b *KeyValueApplyConfiguration) WithCreationTimestamp(value metav... method WithDeletionTimestamp (line 127) | func (b *KeyValueApplyConfiguration) WithDeletionTimestamp(value metav... method WithDeletionGracePeriodSeconds (line 136) | func (b *KeyValueApplyConfiguration) WithDeletionGracePeriodSeconds(va... method WithLabels (line 146) | func (b *KeyValueApplyConfiguration) WithLabels(entries map[string]str... method WithAnnotations (line 161) | func (b *KeyValueApplyConfiguration) WithAnnotations(entries map[strin... method WithOwnerReferences (line 175) | func (b *KeyValueApplyConfiguration) WithOwnerReferences(values ...*v1... method WithFinalizers (line 189) | func (b *KeyValueApplyConfiguration) WithFinalizers(values ...string) ... method ensureObjectMetaApplyConfigurationExists (line 197) | func (b *KeyValueApplyConfiguration) ensureObjectMetaApplyConfiguratio... method WithSpec (line 206) | func (b *KeyValueApplyConfiguration) WithSpec(value *KeyValueSpecApply... method WithStatus (line 214) | func (b *KeyValueApplyConfiguration) WithStatus(value *StatusApplyConf... method GetKind (line 220) | func (b *KeyValueApplyConfiguration) GetKind() *string { method GetAPIVersion (line 225) | func (b *KeyValueApplyConfiguration) GetAPIVersion() *string { method GetName (line 230) | func (b *KeyValueApplyConfiguration) GetName() *string { method GetNamespace (line 236) | func (b *KeyValueApplyConfiguration) GetNamespace() *string { function KeyValue (line 35) | func KeyValue(name, namespace string) *KeyValueApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/keyvaluespec.go type KeyValueSpecApplyConfiguration (line 26) | type KeyValueSpecApplyConfiguration struct method WithBucket (line 52) | func (b *KeyValueSpecApplyConfiguration) WithBucket(value string) *Key... method WithDescription (line 60) | func (b *KeyValueSpecApplyConfiguration) WithDescription(value string)... method WithMaxValueSize (line 68) | func (b *KeyValueSpecApplyConfiguration) WithMaxValueSize(value int) *... method WithHistory (line 76) | func (b *KeyValueSpecApplyConfiguration) WithHistory(value int) *KeyVa... method WithTTL (line 84) | func (b *KeyValueSpecApplyConfiguration) WithTTL(value string) *KeyVal... method WithMaxBytes (line 92) | func (b *KeyValueSpecApplyConfiguration) WithMaxBytes(value int) *KeyV... method WithStorage (line 100) | func (b *KeyValueSpecApplyConfiguration) WithStorage(value string) *Ke... method WithReplicas (line 108) | func (b *KeyValueSpecApplyConfiguration) WithReplicas(value int) *KeyV... method WithPlacement (line 116) | func (b *KeyValueSpecApplyConfiguration) WithPlacement(value *StreamPl... method WithRePublish (line 124) | func (b *KeyValueSpecApplyConfiguration) WithRePublish(value *RePublis... method WithMirror (line 132) | func (b *KeyValueSpecApplyConfiguration) WithMirror(value *StreamSourc... method WithSources (line 140) | func (b *KeyValueSpecApplyConfiguration) WithSources(values ...**jetst... method WithCompression (line 153) | func (b *KeyValueSpecApplyConfiguration) WithCompression(value bool) *... method WithLimitMarkerTTL (line 161) | func (b *KeyValueSpecApplyConfiguration) WithLimitMarkerTTL(value time... function KeyValueSpec (line 45) | func KeyValueSpec() *KeyValueSpecApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/nkeysecret.go type NKeySecretApplyConfiguration (line 20) | type NKeySecretApplyConfiguration struct method WithSeed (line 34) | func (b *NKeySecretApplyConfiguration) WithSeed(value string) *NKeySec... method WithSecret (line 42) | func (b *NKeySecretApplyConfiguration) WithSecret(value *SecretRefAppl... function NKeySecret (line 27) | func NKeySecret() *NKeySecretApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/objectstore.go type ObjectStoreApplyConfiguration (line 26) | type ObjectStoreApplyConfiguration struct method IsApplyConfiguration (line 43) | func (b ObjectStoreApplyConfiguration) IsApplyConfiguration() {} method WithKind (line 48) | func (b *ObjectStoreApplyConfiguration) WithKind(value string) *Object... method WithAPIVersion (line 56) | func (b *ObjectStoreApplyConfiguration) WithAPIVersion(value string) *... method WithName (line 64) | func (b *ObjectStoreApplyConfiguration) WithName(value string) *Object... method WithGenerateName (line 73) | func (b *ObjectStoreApplyConfiguration) WithGenerateName(value string)... method WithNamespace (line 82) | func (b *ObjectStoreApplyConfiguration) WithNamespace(value string) *O... method WithUID (line 91) | func (b *ObjectStoreApplyConfiguration) WithUID(value types.UID) *Obje... method WithResourceVersion (line 100) | func (b *ObjectStoreApplyConfiguration) WithResourceVersion(value stri... method WithGeneration (line 109) | func (b *ObjectStoreApplyConfiguration) WithGeneration(value int64) *O... method WithCreationTimestamp (line 118) | func (b *ObjectStoreApplyConfiguration) WithCreationTimestamp(value me... method WithDeletionTimestamp (line 127) | func (b *ObjectStoreApplyConfiguration) WithDeletionTimestamp(value me... method WithDeletionGracePeriodSeconds (line 136) | func (b *ObjectStoreApplyConfiguration) WithDeletionGracePeriodSeconds... method WithLabels (line 146) | func (b *ObjectStoreApplyConfiguration) WithLabels(entries map[string]... method WithAnnotations (line 161) | func (b *ObjectStoreApplyConfiguration) WithAnnotations(entries map[st... method WithOwnerReferences (line 175) | func (b *ObjectStoreApplyConfiguration) WithOwnerReferences(values ...... method WithFinalizers (line 189) | func (b *ObjectStoreApplyConfiguration) WithFinalizers(values ...strin... method ensureObjectMetaApplyConfigurationExists (line 197) | func (b *ObjectStoreApplyConfiguration) ensureObjectMetaApplyConfigura... method WithSpec (line 206) | func (b *ObjectStoreApplyConfiguration) WithSpec(value *ObjectStoreSpe... method WithStatus (line 214) | func (b *ObjectStoreApplyConfiguration) WithStatus(value *StatusApplyC... method GetKind (line 220) | func (b *ObjectStoreApplyConfiguration) GetKind() *string { method GetAPIVersion (line 225) | func (b *ObjectStoreApplyConfiguration) GetAPIVersion() *string { method GetName (line 230) | func (b *ObjectStoreApplyConfiguration) GetName() *string { method GetNamespace (line 236) | func (b *ObjectStoreApplyConfiguration) GetNamespace() *string { function ObjectStore (line 35) | func ObjectStore(name, namespace string) *ObjectStoreApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/objectstorespec.go type ObjectStoreSpecApplyConfiguration (line 20) | type ObjectStoreSpecApplyConfiguration struct method WithBucket (line 41) | func (b *ObjectStoreSpecApplyConfiguration) WithBucket(value string) *... method WithDescription (line 49) | func (b *ObjectStoreSpecApplyConfiguration) WithDescription(value stri... method WithTTL (line 57) | func (b *ObjectStoreSpecApplyConfiguration) WithTTL(value string) *Obj... method WithMaxBytes (line 65) | func (b *ObjectStoreSpecApplyConfiguration) WithMaxBytes(value int) *O... method WithStorage (line 73) | func (b *ObjectStoreSpecApplyConfiguration) WithStorage(value string) ... method WithReplicas (line 81) | func (b *ObjectStoreSpecApplyConfiguration) WithReplicas(value int) *O... method WithPlacement (line 89) | func (b *ObjectStoreSpecApplyConfiguration) WithPlacement(value *Strea... method WithCompression (line 97) | func (b *ObjectStoreSpecApplyConfiguration) WithCompression(value bool... method WithMetadata (line 106) | func (b *ObjectStoreSpecApplyConfiguration) WithMetadata(entries map[s... function ObjectStoreSpec (line 34) | func ObjectStoreSpec() *ObjectStoreSpecApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/republish.go type RePublishApplyConfiguration (line 20) | type RePublishApplyConfiguration struct method WithSource (line 35) | func (b *RePublishApplyConfiguration) WithSource(value string) *RePubl... method WithDestination (line 43) | func (b *RePublishApplyConfiguration) WithDestination(value string) *R... method WithHeadersOnly (line 51) | func (b *RePublishApplyConfiguration) WithHeadersOnly(value bool) *ReP... function RePublish (line 28) | func RePublish() *RePublishApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/secretref.go type SecretRefApplyConfiguration (line 20) | type SecretRefApplyConfiguration struct method WithName (line 33) | func (b *SecretRefApplyConfiguration) WithName(value string) *SecretRe... function SecretRef (line 26) | func SecretRef() *SecretRefApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/status.go type StatusApplyConfiguration (line 20) | type StatusApplyConfiguration struct method WithObservedGeneration (line 34) | func (b *StatusApplyConfiguration) WithObservedGeneration(value int64)... method WithConditions (line 42) | func (b *StatusApplyConfiguration) WithConditions(values ...*Condition... function Status (line 27) | func Status() *StatusApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/stream.go type StreamApplyConfiguration (line 26) | type StreamApplyConfiguration struct method IsApplyConfiguration (line 43) | func (b StreamApplyConfiguration) IsApplyConfiguration() {} method WithKind (line 48) | func (b *StreamApplyConfiguration) WithKind(value string) *StreamApply... method WithAPIVersion (line 56) | func (b *StreamApplyConfiguration) WithAPIVersion(value string) *Strea... method WithName (line 64) | func (b *StreamApplyConfiguration) WithName(value string) *StreamApply... method WithGenerateName (line 73) | func (b *StreamApplyConfiguration) WithGenerateName(value string) *Str... method WithNamespace (line 82) | func (b *StreamApplyConfiguration) WithNamespace(value string) *Stream... method WithUID (line 91) | func (b *StreamApplyConfiguration) WithUID(value types.UID) *StreamApp... method WithResourceVersion (line 100) | func (b *StreamApplyConfiguration) WithResourceVersion(value string) *... method WithGeneration (line 109) | func (b *StreamApplyConfiguration) WithGeneration(value int64) *Stream... method WithCreationTimestamp (line 118) | func (b *StreamApplyConfiguration) WithCreationTimestamp(value metav1.... method WithDeletionTimestamp (line 127) | func (b *StreamApplyConfiguration) WithDeletionTimestamp(value metav1.... method WithDeletionGracePeriodSeconds (line 136) | func (b *StreamApplyConfiguration) WithDeletionGracePeriodSeconds(valu... method WithLabels (line 146) | func (b *StreamApplyConfiguration) WithLabels(entries map[string]strin... method WithAnnotations (line 161) | func (b *StreamApplyConfiguration) WithAnnotations(entries map[string]... method WithOwnerReferences (line 175) | func (b *StreamApplyConfiguration) WithOwnerReferences(values ...*v1.O... method WithFinalizers (line 189) | func (b *StreamApplyConfiguration) WithFinalizers(values ...string) *S... method ensureObjectMetaApplyConfigurationExists (line 197) | func (b *StreamApplyConfiguration) ensureObjectMetaApplyConfigurationE... method WithSpec (line 206) | func (b *StreamApplyConfiguration) WithSpec(value *StreamSpecApplyConf... method WithStatus (line 214) | func (b *StreamApplyConfiguration) WithStatus(value *StatusApplyConfig... method GetKind (line 220) | func (b *StreamApplyConfiguration) GetKind() *string { method GetAPIVersion (line 225) | func (b *StreamApplyConfiguration) GetAPIVersion() *string { method GetName (line 230) | func (b *StreamApplyConfiguration) GetName() *string { method GetNamespace (line 236) | func (b *StreamApplyConfiguration) GetNamespace() *string { function Stream (line 35) | func Stream(name, namespace string) *StreamApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/streamplacement.go type StreamPlacementApplyConfiguration (line 20) | type StreamPlacementApplyConfiguration struct method WithCluster (line 34) | func (b *StreamPlacementApplyConfiguration) WithCluster(value string) ... method WithTags (line 42) | func (b *StreamPlacementApplyConfiguration) WithTags(values ...string)... function StreamPlacement (line 27) | func StreamPlacement() *StreamPlacementApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/streamsource.go type StreamSourceApplyConfiguration (line 24) | type StreamSourceApplyConfiguration struct method WithName (line 43) | func (b *StreamSourceApplyConfiguration) WithName(value string) *Strea... method WithOptStartSeq (line 51) | func (b *StreamSourceApplyConfiguration) WithOptStartSeq(value int) *S... method WithOptStartTime (line 59) | func (b *StreamSourceApplyConfiguration) WithOptStartTime(value string... method WithFilterSubject (line 67) | func (b *StreamSourceApplyConfiguration) WithFilterSubject(value strin... method WithExternalAPIPrefix (line 75) | func (b *StreamSourceApplyConfiguration) WithExternalAPIPrefix(value s... method WithExternalDeliverPrefix (line 83) | func (b *StreamSourceApplyConfiguration) WithExternalDeliverPrefix(val... method WithSubjectTransforms (line 91) | func (b *StreamSourceApplyConfiguration) WithSubjectTransforms(values ... function StreamSource (line 36) | func StreamSource() *StreamSourceApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/streamspec.go type StreamSpecApplyConfiguration (line 24) | type StreamSpecApplyConfiguration struct method WithName (line 73) | func (b *StreamSpecApplyConfiguration) WithName(value string) *StreamS... method WithDescription (line 81) | func (b *StreamSpecApplyConfiguration) WithDescription(value string) *... method WithSubjects (line 89) | func (b *StreamSpecApplyConfiguration) WithSubjects(values ...string) ... method WithRetention (line 99) | func (b *StreamSpecApplyConfiguration) WithRetention(value string) *St... method WithMaxConsumers (line 107) | func (b *StreamSpecApplyConfiguration) WithMaxConsumers(value int) *St... method WithMaxMsgsPerSubject (line 115) | func (b *StreamSpecApplyConfiguration) WithMaxMsgsPerSubject(value int... method WithMaxMsgs (line 123) | func (b *StreamSpecApplyConfiguration) WithMaxMsgs(value int) *StreamS... method WithMaxBytes (line 131) | func (b *StreamSpecApplyConfiguration) WithMaxBytes(value int) *Stream... method WithMaxAge (line 139) | func (b *StreamSpecApplyConfiguration) WithMaxAge(value string) *Strea... method WithMaxMsgSize (line 147) | func (b *StreamSpecApplyConfiguration) WithMaxMsgSize(value int) *Stre... method WithStorage (line 155) | func (b *StreamSpecApplyConfiguration) WithStorage(value string) *Stre... method WithDiscard (line 163) | func (b *StreamSpecApplyConfiguration) WithDiscard(value string) *Stre... method WithReplicas (line 171) | func (b *StreamSpecApplyConfiguration) WithReplicas(value int) *Stream... method WithNoAck (line 179) | func (b *StreamSpecApplyConfiguration) WithNoAck(value bool) *StreamSp... method WithDuplicateWindow (line 187) | func (b *StreamSpecApplyConfiguration) WithDuplicateWindow(value strin... method WithPlacement (line 195) | func (b *StreamSpecApplyConfiguration) WithPlacement(value *StreamPlac... method WithMirror (line 203) | func (b *StreamSpecApplyConfiguration) WithMirror(value *StreamSourceA... method WithSources (line 211) | func (b *StreamSpecApplyConfiguration) WithSources(values ...**jetstre... method WithCompression (line 224) | func (b *StreamSpecApplyConfiguration) WithCompression(value string) *... method WithSubjectTransform (line 232) | func (b *StreamSpecApplyConfiguration) WithSubjectTransform(value *Sub... method WithRePublish (line 240) | func (b *StreamSpecApplyConfiguration) WithRePublish(value *RePublishA... method WithSealed (line 248) | func (b *StreamSpecApplyConfiguration) WithSealed(value bool) *StreamS... method WithDenyDelete (line 256) | func (b *StreamSpecApplyConfiguration) WithDenyDelete(value bool) *Str... method WithDenyPurge (line 264) | func (b *StreamSpecApplyConfiguration) WithDenyPurge(value bool) *Stre... method WithAllowDirect (line 272) | func (b *StreamSpecApplyConfiguration) WithAllowDirect(value bool) *St... method WithAllowRollup (line 280) | func (b *StreamSpecApplyConfiguration) WithAllowRollup(value bool) *St... method WithMirrorDirect (line 288) | func (b *StreamSpecApplyConfiguration) WithMirrorDirect(value bool) *S... method WithDiscardPerSubject (line 296) | func (b *StreamSpecApplyConfiguration) WithDiscardPerSubject(value boo... method WithFirstSequence (line 304) | func (b *StreamSpecApplyConfiguration) WithFirstSequence(value uint64)... method WithMetadata (line 313) | func (b *StreamSpecApplyConfiguration) WithMetadata(entries map[string... method WithConsumerLimits (line 326) | func (b *StreamSpecApplyConfiguration) WithConsumerLimits(value *Consu... method WithAllowMsgTTL (line 334) | func (b *StreamSpecApplyConfiguration) WithAllowMsgTTL(value bool) *St... method WithSubjectDeleteMarkerTTL (line 342) | func (b *StreamSpecApplyConfiguration) WithSubjectDeleteMarkerTTL(valu... method WithAllowMsgCounter (line 350) | func (b *StreamSpecApplyConfiguration) WithAllowMsgCounter(value bool)... method WithAllowAtomicPublish (line 358) | func (b *StreamSpecApplyConfiguration) WithAllowAtomicPublish(value bo... method WithAllowMsgSchedules (line 366) | func (b *StreamSpecApplyConfiguration) WithAllowMsgSchedules(value boo... method WithPersistMode (line 374) | func (b *StreamSpecApplyConfiguration) WithPersistMode(value string) *... function StreamSpec (line 66) | func StreamSpec() *StreamSpecApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/subjecttransform.go type SubjectTransformApplyConfiguration (line 20) | type SubjectTransformApplyConfiguration struct method WithSource (line 34) | func (b *SubjectTransformApplyConfiguration) WithSource(value string) ... method WithDest (line 42) | func (b *SubjectTransformApplyConfiguration) WithDest(value string) *S... function SubjectTransform (line 27) | func SubjectTransform() *SubjectTransformApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/tls.go type TLSApplyConfiguration (line 20) | type TLSApplyConfiguration struct method WithClientCert (line 35) | func (b *TLSApplyConfiguration) WithClientCert(value string) *TLSApply... method WithClientKey (line 43) | func (b *TLSApplyConfiguration) WithClientKey(value string) *TLSApplyC... method WithRootCAs (line 51) | func (b *TLSApplyConfiguration) WithRootCAs(values ...string) *TLSAppl... function TLS (line 28) | func TLS() *TLSApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/tlssecret.go type TLSSecretApplyConfiguration (line 20) | type TLSSecretApplyConfiguration struct method WithClientCert (line 36) | func (b *TLSSecretApplyConfiguration) WithClientCert(value string) *TL... method WithClientKey (line 44) | func (b *TLSSecretApplyConfiguration) WithClientKey(value string) *TLS... method WithRootCAs (line 52) | func (b *TLSSecretApplyConfiguration) WithRootCAs(value string) *TLSSe... method WithSecret (line 60) | func (b *TLSSecretApplyConfiguration) WithSecret(value *SecretRefApply... function TLSSecret (line 29) | func TLSSecret() *TLSSecretApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/tokensecret.go type TokenSecretApplyConfiguration (line 20) | type TokenSecretApplyConfiguration struct method WithToken (line 34) | func (b *TokenSecretApplyConfiguration) WithToken(value string) *Token... method WithSecret (line 42) | func (b *TokenSecretApplyConfiguration) WithSecret(value *SecretRefApp... function TokenSecret (line 27) | func TokenSecret() *TokenSecretApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/user.go type UserApplyConfiguration (line 20) | type UserApplyConfiguration struct method WithUser (line 35) | func (b *UserApplyConfiguration) WithUser(value string) *UserApplyConf... method WithPassword (line 43) | func (b *UserApplyConfiguration) WithPassword(value string) *UserApply... method WithSecret (line 51) | func (b *UserApplyConfiguration) WithSecret(value *SecretRefApplyConfi... function User (line 28) | func User() *UserApplyConfiguration { FILE: pkg/jetstream/generated/applyconfiguration/utils.go function ForKind (line 29) | func ForKind(kind schema.GroupVersionKind) interface{} { function NewTypeConverter (line 89) | func NewTypeConverter(scheme *runtime.Scheme) managedfields.TypeConverter { FILE: pkg/jetstream/generated/clientset/versioned/clientset.go type Interface (line 28) | type Interface interface type Clientset (line 34) | type Clientset struct method JetstreamV1beta2 (line 40) | func (c *Clientset) JetstreamV1beta2() jetstreamv1beta2.JetstreamV1bet... method Discovery (line 45) | func (c *Clientset) Discovery() discovery.DiscoveryInterface { function NewForConfig (line 57) | func NewForConfig(c *rest.Config) (*Clientset, error) { function NewForConfigAndClient (line 77) | func NewForConfigAndClient(c *rest.Config, httpClient *http.Client) (*Cl... function NewForConfigOrDie (line 102) | func NewForConfigOrDie(c *rest.Config) *Clientset { function New (line 111) | func New(c rest.Interface) *Clientset { FILE: pkg/jetstream/generated/clientset/versioned/fake/clientset_generated.go function NewSimpleClientset (line 39) | func NewSimpleClientset(objects ...runtime.Object) *Clientset { type Clientset (line 70) | type Clientset struct method Discovery (line 76) | func (c *Clientset) Discovery() discovery.DiscoveryInterface { method Tracker (line 80) | func (c *Clientset) Tracker() testing.ObjectTracker { method JetstreamV1beta2 (line 126) | func (c *Clientset) JetstreamV1beta2() jetstreamv1beta2.JetstreamV1bet... function NewClientset (line 88) | func NewClientset(objects ...runtime.Object) *Clientset { FILE: pkg/jetstream/generated/clientset/versioned/fake/register.go function init (line 50) | func init() { FILE: pkg/jetstream/generated/clientset/versioned/scheme/register.go function init (line 50) | func init() { FILE: pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/account.go type AccountsGetter (line 32) | type AccountsGetter interface type AccountInterface (line 37) | type AccountInterface interface type accounts (line 55) | type accounts struct function newAccounts (line 60) | func newAccounts(c *JetstreamV1beta2Client, namespace string) *accounts { FILE: pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/consumer.go type ConsumersGetter (line 32) | type ConsumersGetter interface type ConsumerInterface (line 37) | type ConsumerInterface interface type consumers (line 55) | type consumers struct function newConsumers (line 60) | func newConsumers(c *JetstreamV1beta2Client, namespace string) *consumers { FILE: pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/fake/fake_account.go type fakeAccounts (line 26) | type fakeAccounts struct function newFakeAccounts (line 31) | func newFakeAccounts(fake *FakeJetstreamV1beta2, namespace string) typed... FILE: pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/fake/fake_consumer.go type fakeConsumers (line 26) | type fakeConsumers struct function newFakeConsumers (line 31) | func newFakeConsumers(fake *FakeJetstreamV1beta2, namespace string) type... FILE: pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/fake/fake_jetstream_client.go type FakeJetstreamV1beta2 (line 24) | type FakeJetstreamV1beta2 struct method Accounts (line 28) | func (c *FakeJetstreamV1beta2) Accounts(namespace string) v1beta2.Acco... method Consumers (line 32) | func (c *FakeJetstreamV1beta2) Consumers(namespace string) v1beta2.Con... method KeyValues (line 36) | func (c *FakeJetstreamV1beta2) KeyValues(namespace string) v1beta2.Key... method ObjectStores (line 40) | func (c *FakeJetstreamV1beta2) ObjectStores(namespace string) v1beta2.... method Streams (line 44) | func (c *FakeJetstreamV1beta2) Streams(namespace string) v1beta2.Strea... method RESTClient (line 50) | func (c *FakeJetstreamV1beta2) RESTClient() rest.Interface { FILE: pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/fake/fake_keyvalue.go type fakeKeyValues (line 26) | type fakeKeyValues struct function newFakeKeyValues (line 31) | func newFakeKeyValues(fake *FakeJetstreamV1beta2, namespace string) type... FILE: pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/fake/fake_objectstore.go type fakeObjectStores (line 26) | type fakeObjectStores struct function newFakeObjectStores (line 31) | func newFakeObjectStores(fake *FakeJetstreamV1beta2, namespace string) t... FILE: pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/fake/fake_stream.go type fakeStreams (line 26) | type fakeStreams struct function newFakeStreams (line 31) | func newFakeStreams(fake *FakeJetstreamV1beta2, namespace string) typedj... FILE: pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/generated_expansion.go type AccountExpansion (line 18) | type AccountExpansion interface type ConsumerExpansion (line 20) | type ConsumerExpansion interface type KeyValueExpansion (line 22) | type KeyValueExpansion interface type ObjectStoreExpansion (line 24) | type ObjectStoreExpansion interface type StreamExpansion (line 26) | type StreamExpansion interface FILE: pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/jetstream_client.go type JetstreamV1beta2Interface (line 26) | type JetstreamV1beta2Interface interface type JetstreamV1beta2Client (line 36) | type JetstreamV1beta2Client struct method Accounts (line 40) | func (c *JetstreamV1beta2Client) Accounts(namespace string) AccountInt... method Consumers (line 44) | func (c *JetstreamV1beta2Client) Consumers(namespace string) ConsumerI... method KeyValues (line 48) | func (c *JetstreamV1beta2Client) KeyValues(namespace string) KeyValueI... method ObjectStores (line 52) | func (c *JetstreamV1beta2Client) ObjectStores(namespace string) Object... method Streams (line 56) | func (c *JetstreamV1beta2Client) Streams(namespace string) StreamInter... method RESTClient (line 113) | func (c *JetstreamV1beta2Client) RESTClient() rest.Interface { function NewForConfig (line 63) | func NewForConfig(c *rest.Config) (*JetstreamV1beta2Client, error) { function NewForConfigAndClient (line 75) | func NewForConfigAndClient(c *rest.Config, h *http.Client) (*JetstreamV1... function NewForConfigOrDie (line 87) | func NewForConfigOrDie(c *rest.Config) *JetstreamV1beta2Client { function New (line 96) | func New(c rest.Interface) *JetstreamV1beta2Client { function setConfigDefaults (line 100) | func setConfigDefaults(config *rest.Config) { FILE: pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/keyvalue.go type KeyValuesGetter (line 32) | type KeyValuesGetter interface type KeyValueInterface (line 37) | type KeyValueInterface interface type keyValues (line 55) | type keyValues struct function newKeyValues (line 60) | func newKeyValues(c *JetstreamV1beta2Client, namespace string) *keyValues { FILE: pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/objectstore.go type ObjectStoresGetter (line 32) | type ObjectStoresGetter interface type ObjectStoreInterface (line 37) | type ObjectStoreInterface interface type objectStores (line 55) | type objectStores struct function newObjectStores (line 60) | func newObjectStores(c *JetstreamV1beta2Client, namespace string) *objec... FILE: pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/stream.go type StreamsGetter (line 32) | type StreamsGetter interface type StreamInterface (line 37) | type StreamInterface interface type streams (line 55) | type streams struct function newStreams (line 60) | func newStreams(c *JetstreamV1beta2Client, namespace string) *streams { FILE: pkg/jetstream/generated/informers/externalversions/factory.go type SharedInformerOption (line 33) | type SharedInformerOption type sharedInformerFactory (line 35) | type sharedInformerFactory struct method Start (line 121) | func (f *sharedInformerFactory) Start(stopCh <-chan struct{}) { method Shutdown (line 145) | func (f *sharedInformerFactory) Shutdown() { method WaitForCacheSync (line 154) | func (f *sharedInformerFactory) WaitForCacheSync(stopCh <-chan struct{... method InformerFor (line 177) | func (f *sharedInformerFactory) InformerFor(obj runtime.Object, newFun... method Jetstream (line 257) | func (f *sharedInformerFactory) Jetstream() jetstream.Interface { function WithCustomResyncConfig (line 56) | func WithCustomResyncConfig(resyncConfig map[v1.Object]time.Duration) Sh... function WithTweakListOptions (line 66) | func WithTweakListOptions(tweakListOptions internalinterfaces.TweakListO... function WithNamespace (line 74) | func WithNamespace(namespace string) SharedInformerOption { function WithTransform (line 82) | func WithTransform(transform cache.TransformFunc) SharedInformerOption { function NewSharedInformerFactory (line 90) | func NewSharedInformerFactory(client versioned.Interface, defaultResync ... function NewFilteredSharedInformerFactory (line 98) | func NewFilteredSharedInformerFactory(client versioned.Interface, defaul... function NewSharedInformerFactoryWithOptions (line 103) | func NewSharedInformerFactoryWithOptions(client versioned.Interface, def... type SharedInformerFactory (line 223) | type SharedInformerFactory interface FILE: pkg/jetstream/generated/informers/externalversions/generic.go type GenericInformer (line 28) | type GenericInformer interface type genericInformer (line 33) | type genericInformer struct method Informer (line 39) | func (f *genericInformer) Informer() cache.SharedIndexInformer { method Lister (line 44) | func (f *genericInformer) Lister() cache.GenericLister { method ForResource (line 50) | func (f *sharedInformerFactory) ForResource(resource schema.GroupVersion... FILE: pkg/jetstream/generated/informers/externalversions/internalinterfaces/factory_interfaces.go type NewInformerFunc (line 28) | type NewInformerFunc type SharedInformerFactory (line 31) | type SharedInformerFactory interface type TweakListOptionsFunc (line 37) | type TweakListOptionsFunc FILE: pkg/jetstream/generated/informers/externalversions/jetstream/interface.go type Interface (line 24) | type Interface interface type group (line 29) | type group struct method V1beta2 (line 41) | func (g *group) V1beta2() v1beta2.Interface { function New (line 36) | func New(f internalinterfaces.SharedInformerFactory, namespace string, t... FILE: pkg/jetstream/generated/informers/externalversions/jetstream/v1beta2/account.go type AccountInformer (line 34) | type AccountInformer interface type accountInformer (line 39) | type accountInformer struct method defaultInformer (line 89) | func (f *accountInformer) defaultInformer(client versioned.Interface, ... method Informer (line 93) | func (f *accountInformer) Informer() cache.SharedIndexInformer { method Lister (line 97) | func (f *accountInformer) Lister() jetstreamv1beta2.AccountLister { function NewAccountInformer (line 48) | func NewAccountInformer(client versioned.Interface, namespace string, re... function NewFilteredAccountInformer (line 55) | func NewFilteredAccountInformer(client versioned.Interface, namespace st... FILE: pkg/jetstream/generated/informers/externalversions/jetstream/v1beta2/consumer.go type ConsumerInformer (line 34) | type ConsumerInformer interface type consumerInformer (line 39) | type consumerInformer struct method defaultInformer (line 89) | func (f *consumerInformer) defaultInformer(client versioned.Interface,... method Informer (line 93) | func (f *consumerInformer) Informer() cache.SharedIndexInformer { method Lister (line 97) | func (f *consumerInformer) Lister() jetstreamv1beta2.ConsumerLister { function NewConsumerInformer (line 48) | func NewConsumerInformer(client versioned.Interface, namespace string, r... function NewFilteredConsumerInformer (line 55) | func NewFilteredConsumerInformer(client versioned.Interface, namespace s... FILE: pkg/jetstream/generated/informers/externalversions/jetstream/v1beta2/interface.go type Interface (line 23) | type Interface interface type version (line 36) | type version struct method Accounts (line 48) | func (v *version) Accounts() AccountInformer { method Consumers (line 53) | func (v *version) Consumers() ConsumerInformer { method KeyValues (line 58) | func (v *version) KeyValues() KeyValueInformer { method ObjectStores (line 63) | func (v *version) ObjectStores() ObjectStoreInformer { method Streams (line 68) | func (v *version) Streams() StreamInformer { function New (line 43) | func New(f internalinterfaces.SharedInformerFactory, namespace string, t... FILE: pkg/jetstream/generated/informers/externalversions/jetstream/v1beta2/keyvalue.go type KeyValueInformer (line 34) | type KeyValueInformer interface type keyValueInformer (line 39) | type keyValueInformer struct method defaultInformer (line 89) | func (f *keyValueInformer) defaultInformer(client versioned.Interface,... method Informer (line 93) | func (f *keyValueInformer) Informer() cache.SharedIndexInformer { method Lister (line 97) | func (f *keyValueInformer) Lister() jetstreamv1beta2.KeyValueLister { function NewKeyValueInformer (line 48) | func NewKeyValueInformer(client versioned.Interface, namespace string, r... function NewFilteredKeyValueInformer (line 55) | func NewFilteredKeyValueInformer(client versioned.Interface, namespace s... FILE: pkg/jetstream/generated/informers/externalversions/jetstream/v1beta2/objectstore.go type ObjectStoreInformer (line 34) | type ObjectStoreInformer interface type objectStoreInformer (line 39) | type objectStoreInformer struct method defaultInformer (line 89) | func (f *objectStoreInformer) defaultInformer(client versioned.Interfa... method Informer (line 93) | func (f *objectStoreInformer) Informer() cache.SharedIndexInformer { method Lister (line 97) | func (f *objectStoreInformer) Lister() jetstreamv1beta2.ObjectStoreLis... function NewObjectStoreInformer (line 48) | func NewObjectStoreInformer(client versioned.Interface, namespace string... function NewFilteredObjectStoreInformer (line 55) | func NewFilteredObjectStoreInformer(client versioned.Interface, namespac... FILE: pkg/jetstream/generated/informers/externalversions/jetstream/v1beta2/stream.go type StreamInformer (line 34) | type StreamInformer interface type streamInformer (line 39) | type streamInformer struct method defaultInformer (line 89) | func (f *streamInformer) defaultInformer(client versioned.Interface, r... method Informer (line 93) | func (f *streamInformer) Informer() cache.SharedIndexInformer { method Lister (line 97) | func (f *streamInformer) Lister() jetstreamv1beta2.StreamLister { function NewStreamInformer (line 48) | func NewStreamInformer(client versioned.Interface, namespace string, res... function NewFilteredStreamInformer (line 55) | func NewFilteredStreamInformer(client versioned.Interface, namespace str... FILE: pkg/jetstream/generated/listers/jetstream/v1beta2/account.go type AccountLister (line 27) | type AccountLister interface type accountLister (line 37) | type accountLister struct method Accounts (line 47) | func (s *accountLister) Accounts(namespace string) AccountNamespaceLis... function NewAccountLister (line 42) | func NewAccountLister(indexer cache.Indexer) AccountLister { type AccountNamespaceLister (line 53) | type AccountNamespaceLister interface type accountNamespaceLister (line 65) | type accountNamespaceLister struct FILE: pkg/jetstream/generated/listers/jetstream/v1beta2/consumer.go type ConsumerLister (line 27) | type ConsumerLister interface type consumerLister (line 37) | type consumerLister struct method Consumers (line 47) | func (s *consumerLister) Consumers(namespace string) ConsumerNamespace... function NewConsumerLister (line 42) | func NewConsumerLister(indexer cache.Indexer) ConsumerLister { type ConsumerNamespaceLister (line 53) | type ConsumerNamespaceLister interface type consumerNamespaceLister (line 65) | type consumerNamespaceLister struct FILE: pkg/jetstream/generated/listers/jetstream/v1beta2/expansion_generated.go type AccountListerExpansion (line 20) | type AccountListerExpansion interface type AccountNamespaceListerExpansion (line 24) | type AccountNamespaceListerExpansion interface type ConsumerListerExpansion (line 28) | type ConsumerListerExpansion interface type ConsumerNamespaceListerExpansion (line 32) | type ConsumerNamespaceListerExpansion interface type KeyValueListerExpansion (line 36) | type KeyValueListerExpansion interface type KeyValueNamespaceListerExpansion (line 40) | type KeyValueNamespaceListerExpansion interface type ObjectStoreListerExpansion (line 44) | type ObjectStoreListerExpansion interface type ObjectStoreNamespaceListerExpansion (line 48) | type ObjectStoreNamespaceListerExpansion interface type StreamListerExpansion (line 52) | type StreamListerExpansion interface type StreamNamespaceListerExpansion (line 56) | type StreamNamespaceListerExpansion interface FILE: pkg/jetstream/generated/listers/jetstream/v1beta2/keyvalue.go type KeyValueLister (line 27) | type KeyValueLister interface type keyValueLister (line 37) | type keyValueLister struct method KeyValues (line 47) | func (s *keyValueLister) KeyValues(namespace string) KeyValueNamespace... function NewKeyValueLister (line 42) | func NewKeyValueLister(indexer cache.Indexer) KeyValueLister { type KeyValueNamespaceLister (line 53) | type KeyValueNamespaceLister interface type keyValueNamespaceLister (line 65) | type keyValueNamespaceLister struct FILE: pkg/jetstream/generated/listers/jetstream/v1beta2/objectstore.go type ObjectStoreLister (line 27) | type ObjectStoreLister interface type objectStoreLister (line 37) | type objectStoreLister struct method ObjectStores (line 47) | func (s *objectStoreLister) ObjectStores(namespace string) ObjectStore... function NewObjectStoreLister (line 42) | func NewObjectStoreLister(indexer cache.Indexer) ObjectStoreLister { type ObjectStoreNamespaceLister (line 53) | type ObjectStoreNamespaceLister interface type objectStoreNamespaceLister (line 65) | type objectStoreNamespaceLister struct FILE: pkg/jetstream/generated/listers/jetstream/v1beta2/stream.go type StreamLister (line 27) | type StreamLister interface type streamLister (line 37) | type streamLister struct method Streams (line 47) | func (s *streamLister) Streams(namespace string) StreamNamespaceLister { function NewStreamLister (line 42) | func NewStreamLister(indexer cache.Indexer) StreamLister { type StreamNamespaceLister (line 53) | type StreamNamespaceLister interface type streamNamespaceLister (line 65) | type streamNamespaceLister struct FILE: pkg/natsreloader/natsreloader.go constant errorFmt (line 36) | errorFmt = "Error: %s\n" function isInotifyExhausted (line 38) | func isInotifyExhausted(err error) bool { function createInotifyExhaustedError (line 50) | func createInotifyExhaustedError(originalErr error, watchedFileCount int... type Config (line 76) | type Config struct type Reloader (line 89) | type Reloader struct method waitForProcess (line 103) | func (r *Reloader) waitForProcess() error { method createWatcherWithRetry (line 247) | func (r *Reloader) createWatcherWithRetry() (*fsnotify.Watcher, error) { method init (line 286) | func (r *Reloader) init() (*fsnotify.Watcher, map[string][]byte, error) { method reload (line 366) | func (r *Reloader) reload(updatedFiles []string) error { method Run (line 395) | func (r *Reloader) Run(ctx context.Context) error { method Stop (line 473) | func (r *Reloader) Stop() error { method pollForChanges (line 495) | func (r *Reloader) pollForChanges(lastConfigAppliedCache map[string][]... method runPollingMode (line 529) | func (r *Reloader) runPollingMode(ctx context.Context) error { function removeDuplicateStrings (line 150) | func removeDuplicateStrings(s []string) []string { function getFileDigest (line 167) | func getFileDigest(filePath string) ([]byte, error) { function handleEvent (line 180) | func handleEvent(event fsnotify.Event, lastConfigAppliedCache map[string... function handleEvents (line 219) | func handleEvents(configWatcher *fsnotify.Watcher, event fsnotify.Event,... function handleDeletedFiles (line 231) | func handleDeletedFiles(deletedFiles []string, configWatcher *fsnotify.W... function NewReloader (line 480) | func NewReloader(config *Config) (*Reloader, error) { function retryJitter (line 488) | func retryJitter(base time.Duration) time.Duration { function getServerFiles (line 595) | func getServerFiles(configFile string) ([]string, error) { function getIncludePaths (line 612) | func getIncludePaths(configFile string, checked map[string]interface{}) ... function getCertPaths (line 664) | func getCertPaths(configPaths []string) ([]string, error) { FILE: pkg/natsreloader/natsreloader_test.go constant testConfig_0 (line 33) | testConfig_0 = ` constant testConfig_1 (line 56) | testConfig_1 = `include ./testConfig_2.conf` constant testConfig_2 (line 58) | testConfig_2 = ` constant includeTest_0 (line 64) | includeTest_0 = ` constant includeTest_1 (line 75) | includeTest_1 = ` function TestReloader (line 98) | func TestReloader(t *testing.T) { function TestInclude (line 201) | func TestInclude(t *testing.T) { function TestFileFinder (line 268) | func TestFileFinder(t *testing.T) { function writeFile (line 363) | func writeFile(content, path string) error { function TestReloaderInotifyExhaustion (line 386) | func TestReloaderInotifyExhaustion(t *testing.T) { function TestReloaderPollingMode (line 459) | func TestReloaderPollingMode(t *testing.T) { function TestReloaderPollingModeFileDeletion (line 549) | func TestReloaderPollingModeFileDeletion(t *testing.T) {