# README

Go API client for v1

REST API for the Schema Registry

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/oauth2
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import sw "./v1"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), sw.ContextServerIndex, 1)

Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), sw.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), sw.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), sw.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to https://psrc-00000.region.provider.confluent.cloud

ClassMethodHTTP requestDescription
CompatibilityV1ApiTestCompatibilityBySubjectNamePost /compatibility/subjects/{subject}/versions/{version}Test schema compatibility against a particular schema subject-version
CompatibilityV1ApiTestCompatibilityForSubjectPost /compatibility/subjects/{subject}/versionsTest schema compatibility against all schemas under a subject
ConfigV1ApiDeleteSubjectConfigDelete /config/{subject}Delete subject compatibility level
ConfigV1ApiDeleteTopLevelConfigDelete /configDelete global compatibility level
ConfigV1ApiGetClusterConfigGet /clusterconfigGet cluster config
ConfigV1ApiGetSubjectLevelConfigGet /config/{subject}Get subject compatibility level
ConfigV1ApiGetTopLevelConfigGet /configGet global compatibility level
ConfigV1ApiUpdateSubjectLevelConfigPut /config/{subject}Update subject compatibility level
ConfigV1ApiUpdateTopLevelConfigPut /configUpdate global compatibility level
ContextsV1ApiListContextsGet /contextsList contexts
DataEncryptionKeysV1ApiCreateDekPost /dek-registry/v1/keks/{name}/deksCreate a dek.
DataEncryptionKeysV1ApiDeleteDekVersionDelete /dek-registry/v1/keks/{name}/deks/{subject}/versions/{version}Delete a dek version.
DataEncryptionKeysV1ApiDeleteDekVersionsDelete /dek-registry/v1/keks/{name}/deks/{subject}Delete all versions of a dek.
DataEncryptionKeysV1ApiGetDekGet /dek-registry/v1/keks/{name}/deks/{subject}Get a dek by subject.
DataEncryptionKeysV1ApiGetDekByVersionGet /dek-registry/v1/keks/{name}/deks/{subject}/versions/{version}Get a dek by subject and version.
DataEncryptionKeysV1ApiGetDekSubjectsGet /dek-registry/v1/keks/{name}/deksGet a list of dek subjects.
DataEncryptionKeysV1ApiGetDekVersionsGet /dek-registry/v1/keks/{name}/deks/{subject}/versionsList versions of dek.
DataEncryptionKeysV1ApiUndeleteDekVersionPost /dek-registry/v1/keks/{name}/deks/{subject}/versions/{version}/undeleteUndelete a dek version.
DataEncryptionKeysV1ApiUndeleteDekVersionsPost /dek-registry/v1/keks/{name}/deks/{subject}/undeleteUndelete all versions of a dek.
ExportersV1ApiDeleteExporterDelete /exporters/{name}Delete schema exporter by name.
ExportersV1ApiGetExporterConfigByNameGet /exporters/{name}/configGets schema exporter config by name.
ExportersV1ApiGetExporterInfoByNameGet /exporters/{name}Gets schema exporter by name.
ExportersV1ApiGetExporterStatusByNameGet /exporters/{name}/statusGets schema exporter status by name.
ExportersV1ApiListExportersGet /exportersGets all schema exporters.
ExportersV1ApiPauseExporterByNamePut /exporters/{name}/pausePause schema exporter by name.
ExportersV1ApiRegisterExporterPost /exportersCreates a new schema exporter.
ExportersV1ApiResetExporterByNamePut /exporters/{name}/resetReset schema exporter by name.
ExportersV1ApiResumeExporterByNamePut /exporters/{name}/resumeResume schema exporter by name.
ExportersV1ApiUpdateExporterConfigByNamePut /exporters/{name}/configUpdate schema exporter config by name.
ExportersV1ApiUpdateExporterInfoPut /exporters/{name}Update schema exporter by name.
KeyEncryptionKeysV1ApiCreateKekPost /dek-registry/v1/keksCreate a kek.
KeyEncryptionKeysV1ApiDeleteKekDelete /dek-registry/v1/keks/{name}Delete a kek.
KeyEncryptionKeysV1ApiGetKekGet /dek-registry/v1/keks/{name}Get a kek by name.
KeyEncryptionKeysV1ApiGetKekNamesGet /dek-registry/v1/keksGet a list of kek names.
KeyEncryptionKeysV1ApiPutKekPut /dek-registry/v1/keks/{name}Alters a kek.
KeyEncryptionKeysV1ApiUndeleteKekPost /dek-registry/v1/keks/{name}/undeleteUndelete a kek.
ModesV1ApiDeleteSubjectModeDelete /mode/{subject}Delete subject mode
ModesV1ApiGetModeGet /mode/{subject}Get subject mode
ModesV1ApiGetTopLevelModeGet /modeGet global mode
ModesV1ApiUpdateModePut /mode/{subject}Update subject mode
ModesV1ApiUpdateTopLevelModePut /modeUpdate global mode
SchemasV1ApiGetSchemaGet /schemas/ids/{id}Get schema string by ID
SchemasV1ApiGetSchemaOnlyGet /schemas/ids/{id}/schemaGet schema by ID
SchemasV1ApiGetSchemaTypesGet /schemas/typesList supported schema types
SchemasV1ApiGetSchemasGet /schemasList schemas
SchemasV1ApiGetSubjectsGet /schemas/ids/{id}/subjectsList subjects associated to schema ID
SchemasV1ApiGetVersionsGet /schemas/ids/{id}/versionsList subject-versions associated to schema ID
SubjectsV1ApiDeleteSchemaVersionDelete /subjects/{subject}/versions/{version}Delete schema version
SubjectsV1ApiDeleteSubjectDelete /subjects/{subject}Delete subject
SubjectsV1ApiGetReferencedByGet /subjects/{subject}/versions/{version}/referencedbyList schemas referencing a schema
SubjectsV1ApiGetSchemaByVersionGet /subjects/{subject}/versions/{version}Get schema by version
SubjectsV1ApiGetSchemaOnly1Get /subjects/{subject}/versions/{version}/schemaGet schema string by version
SubjectsV1ApiListGet /subjectsList subjects
SubjectsV1ApiListVersionsGet /subjects/{subject}/versionsList versions under subject
SubjectsV1ApiLookUpSchemaUnderSubjectPost /subjects/{subject}Lookup schema under subject
SubjectsV1ApiRegisterPost /subjects/{subject}/versionsRegister schema under a subject

Documentation For Models

Documentation For Authorization

external-access-token

  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes: N/A

Example

auth := context.WithValue(context.Background(), sw.ContextAccessToken, "ACCESSTOKENSTRING")
r, err := client.Service.Operation(auth, args)

Or via OAuth2 module to automatically refresh tokens and perform user authentication.

import "golang.org/x/oauth2"

/* Perform OAuth2 round trip request and obtain a token */

tokenSource := oauth2cfg.TokenSource(createContext(httpClient), &token)
auth := context.WithValue(oauth2.NoContext, sw.ContextOAuth2, tokenSource)
r, err := client.Service.Operation(auth, args)

resource-api-key

  • Type: HTTP basic authentication

Example

auth := context.WithValue(context.Background(), sw.ContextBasicAuth, sw.BasicAuth{
    UserName: "username",
    Password: "password",
})
r, err := client.Service.Operation(auth, args)

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

[email protected]

# Packages

No description provided by the author

# Functions

CacheExpires helper function to determine remaining time before repeating a request.
NewAPIClient creates a new API client.
NewAPIResponse returns a new APIResponse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewClusterConfig instantiates a new ClusterConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewClusterConfigWithDefaults instantiates a new ClusterConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCompatibilityCheckResponse instantiates a new CompatibilityCheckResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCompatibilityCheckResponseWithDefaults instantiates a new CompatibilityCheckResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfig instantiates a new Config object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigDefaultMetadata instantiates a new ConfigDefaultMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigDefaultMetadataWithDefaults instantiates a new ConfigDefaultMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfigDefaultRuleSet instantiates a new ConfigDefaultRuleSet object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigDefaultRuleSetWithDefaults instantiates a new ConfigDefaultRuleSet object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfigOverrideMetadata instantiates a new ConfigOverrideMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigOverrideMetadataWithDefaults instantiates a new ConfigOverrideMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfigOverrideRuleSet instantiates a new ConfigOverrideRuleSet object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigOverrideRuleSetWithDefaults instantiates a new ConfigOverrideRuleSet object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfigUpdateRequest instantiates a new ConfigUpdateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigUpdateRequestWithDefaults instantiates a new ConfigUpdateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfiguration returns a new Configuration object.
NewConfigWithDefaults instantiates a new Config object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateDekRequest instantiates a new CreateDekRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateDekRequestWithDefaults instantiates a new CreateDekRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateKekRequest instantiates a new CreateKekRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateKekRequestWithDefaults instantiates a new CreateKekRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDek instantiates a new Dek object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDekWithDefaults instantiates a new Dek object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewErrorMessage instantiates a new ErrorMessage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewErrorMessageWithDefaults instantiates a new ErrorMessage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExporterConfigResponse instantiates a new ExporterConfigResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExporterConfigResponseWithDefaults instantiates a new ExporterConfigResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExporterReference instantiates a new ExporterReference object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExporterReferenceWithDefaults instantiates a new ExporterReference object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExporterResponse instantiates a new ExporterResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExporterResponseWithDefaults instantiates a new ExporterResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExporterStatusResponse instantiates a new ExporterStatusResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExporterStatusResponseWithDefaults instantiates a new ExporterStatusResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExporterUpdateRequest instantiates a new ExporterUpdateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExporterUpdateRequestWithDefaults instantiates a new ExporterUpdateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKek instantiates a new Kek object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKekWithDefaults instantiates a new Kek object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetadata instantiates a new Metadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetadataWithDefaults instantiates a new Metadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMode instantiates a new Mode object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewModeUpdateRequest instantiates a new ModeUpdateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewModeUpdateRequestWithDefaults instantiates a new ModeUpdateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewModeWithDefaults instantiates a new Mode object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewRegisterExporterRequest instantiates a new RegisterExporterRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRegisterExporterRequestWithDefaults instantiates a new RegisterExporterRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRegisterSchemaRequest instantiates a new RegisterSchemaRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRegisterSchemaRequestWithDefaults instantiates a new RegisterSchemaRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRegisterSchemaResponse instantiates a new RegisterSchemaResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRegisterSchemaResponseWithDefaults instantiates a new RegisterSchemaResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRule instantiates a new Rule object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRuleSet instantiates a new RuleSet object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRuleSetWithDefaults instantiates a new RuleSet object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRuleWithDefaults instantiates a new Rule object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSchema instantiates a new Schema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSchemaReference instantiates a new SchemaReference object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSchemaReferenceWithDefaults instantiates a new SchemaReference object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSchemaString instantiates a new SchemaString object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSchemaStringWithDefaults instantiates a new SchemaString object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSchemaWithDefaults instantiates a new Schema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSubjectVersion instantiates a new SubjectVersion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSubjectVersionWithDefaults instantiates a new SubjectVersion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateKekRequest instantiates a new UpdateKekRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateKekRequestWithDefaults instantiates a new UpdateKekRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
PtrBool is a helper routine that returns a pointer to given boolean value.
PtrFloat32 is a helper routine that returns a pointer to given float value.
PtrFloat64 is a helper routine that returns a pointer to given float value.
PtrInt is a helper routine that returns a pointer to given integer value.
PtrInt32 is a helper routine that returns a pointer to given integer value.
PtrInt64 is a helper routine that returns a pointer to given integer value.
PtrString is a helper routine that returns a pointer to given string value.
PtrTime is helper routine that returns a pointer to given Time value.

# Variables

ContextAccessToken takes a string oauth2 access token as authentication for the request.
ContextAPIKeys takes a string apikey as authentication for the request.
ContextBasicAuth takes BasicAuth as authentication for the request.
ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
ContextOperationServerIndices uses a server configuration from the index mapping.
ContextOperationServerVariables overrides a server configuration variables using operation specific values.
ContextServerIndex uses a server configuration from the index.
ContextServerVariables overrides a server configuration variables.

# Structs

APIClient manages communication with the Confluent Schema Registry APIs API v1.0.0 In most cases there should be only one, shared, APIClient.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIResponse stores the API response returned by the server.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
ClusterConfig Cluster Config.
CompatibilityCheckResponse Compatibility check response.
Config Config.
ConfigDefaultMetadata Default value for the metadata to be used during schema registration.
ConfigDefaultRuleSet Default value for the ruleSet to be used during schema registration.
ConfigOverrideMetadata Override value for the metadata to be used during schema registration.
ConfigOverrideRuleSet Override value for the ruleSet to be used during schema registration.
ConfigUpdateRequest Config update request.
Configuration stores the configuration of the API client.
CreateDekRequest struct for CreateDekRequest.
CreateKekRequest struct for CreateKekRequest.
Dek struct for Dek.
ErrorMessage Error message.
ExporterConfigResponse The map containing exporter’s configurations.
ExporterReference The format for a typical exporter object.
ExporterResponse Exporter register response.
ExporterStatusResponse Exporter status get request.
ExporterUpdateRequest Exporter update request.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
Kek struct for Kek.
Metadata User-defined metadata.
Mode Schema Registry operating mode.
ModeUpdateRequest Mode update request.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
RegisterExporterRequest Exporter register request.
RegisterSchemaRequest Schema register request.
RegisterSchemaResponse Schema register response.
Rule Rule.
RuleSet Schema rule set.
Schema Schema.
SchemaReference Schema reference.
SchemaString Schema definition.
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
SubjectVersion Subject version pair.
UpdateKekRequest struct for UpdateKekRequest.

# Interfaces

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Type aliases

CompatibilityV1ApiService CompatibilityV1Api service.
ConfigV1ApiService ConfigV1Api service.
ContextsV1ApiService ContextsV1Api service.
DataEncryptionKeysV1ApiService DataEncryptionKeysV1Api service.
ExportersV1ApiService ExportersV1Api service.
KeyEncryptionKeysV1ApiService KeyEncryptionKeysV1Api service.
ModesV1ApiService ModesV1Api service.
SchemasV1ApiService SchemasV1Api service.
ServerConfigurations stores multiple ServerConfiguration items.
SubjectsV1ApiService SubjectsV1Api service.