schemaregistry

package
v0.20220610.102640 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 10, 2022 License: MPL-2.0 Imports: 11 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func PossibleValuesForSchemaCompatibility

func PossibleValuesForSchemaCompatibility() []string

func PossibleValuesForSchemaType

func PossibleValuesForSchemaType() []string

func ValidateNamespaceID

func ValidateNamespaceID(input interface{}, key string) (warnings []string, errors []error)

ValidateNamespaceID checks that 'input' can be parsed as a Namespace ID

func ValidateSchemagroupID

func ValidateSchemagroupID(input interface{}, key string) (warnings []string, errors []error)

ValidateSchemagroupID checks that 'input' can be parsed as a Schemagroup ID

Types

type CreateOrUpdateOperationResponse

type CreateOrUpdateOperationResponse struct {
	HttpResponse *http.Response
	Model        *SchemaGroup
}

type DeleteOperationResponse

type DeleteOperationResponse struct {
	HttpResponse *http.Response
}

type GetOperationResponse

type GetOperationResponse struct {
	HttpResponse *http.Response
	Model        *SchemaGroup
}

type ListByNamespaceCompleteResult

type ListByNamespaceCompleteResult struct {
	Items []SchemaGroup
}

type ListByNamespaceOperationOptions

type ListByNamespaceOperationOptions struct {
	Skip *int64
	Top  *int64
}

func DefaultListByNamespaceOperationOptions

func DefaultListByNamespaceOperationOptions() ListByNamespaceOperationOptions

type ListByNamespaceOperationResponse

type ListByNamespaceOperationResponse struct {
	HttpResponse *http.Response
	Model        *[]SchemaGroup
	// contains filtered or unexported fields
}

func (ListByNamespaceOperationResponse) HasMore

func (ListByNamespaceOperationResponse) LoadMore

type NamespaceId

type NamespaceId struct {
	SubscriptionId    string
	ResourceGroupName string
	NamespaceName     string
}

NamespaceId is a struct representing the Resource ID for a Namespace

func NewNamespaceID

func NewNamespaceID(subscriptionId string, resourceGroupName string, namespaceName string) NamespaceId

NewNamespaceID returns a new NamespaceId struct

func ParseNamespaceID

func ParseNamespaceID(input string) (*NamespaceId, error)

ParseNamespaceID parses 'input' into a NamespaceId

func ParseNamespaceIDInsensitively

func ParseNamespaceIDInsensitively(input string) (*NamespaceId, error)

ParseNamespaceIDInsensitively parses 'input' case-insensitively into a NamespaceId note: this method should only be used for API response data and not user input

func (NamespaceId) ID

func (id NamespaceId) ID() string

ID returns the formatted Namespace ID

func (NamespaceId) Segments

func (id NamespaceId) Segments() []resourceids.Segment

Segments returns a slice of Resource ID Segments which comprise this Namespace ID

func (NamespaceId) String

func (id NamespaceId) String() string

String returns a human-readable description of this Namespace ID

type SchemaCompatibility

type SchemaCompatibility string
const (
	SchemaCompatibilityBackward SchemaCompatibility = "Backward"
	SchemaCompatibilityForward  SchemaCompatibility = "Forward"
	SchemaCompatibilityNone     SchemaCompatibility = "None"
)

type SchemaGroup

type SchemaGroup struct {
	Id         *string                `json:"id,omitempty"`
	Location   *string                `json:"location,omitempty"`
	Name       *string                `json:"name,omitempty"`
	Properties *SchemaGroupProperties `json:"properties,omitempty"`
	SystemData *systemdata.SystemData `json:"systemData,omitempty"`
	Type       *string                `json:"type,omitempty"`
}

type SchemaGroupOperationPredicate

type SchemaGroupOperationPredicate struct {
	Id       *string
	Location *string
	Name     *string
	Type     *string
}

func (SchemaGroupOperationPredicate) Matches

type SchemaGroupProperties

type SchemaGroupProperties struct {
	CreatedAtUtc        *string              `json:"createdAtUtc,omitempty"`
	ETag                *string              `json:"eTag,omitempty"`
	GroupProperties     *map[string]string   `json:"groupProperties,omitempty"`
	SchemaCompatibility *SchemaCompatibility `json:"schemaCompatibility,omitempty"`
	SchemaType          *SchemaType          `json:"schemaType,omitempty"`
	UpdatedAtUtc        *string              `json:"updatedAtUtc,omitempty"`
}

func (*SchemaGroupProperties) GetCreatedAtUtcAsTime

func (o *SchemaGroupProperties) GetCreatedAtUtcAsTime() (*time.Time, error)

func (*SchemaGroupProperties) GetUpdatedAtUtcAsTime

func (o *SchemaGroupProperties) GetUpdatedAtUtcAsTime() (*time.Time, error)

func (*SchemaGroupProperties) SetCreatedAtUtcAsTime

func (o *SchemaGroupProperties) SetCreatedAtUtcAsTime(input time.Time)

func (*SchemaGroupProperties) SetUpdatedAtUtcAsTime

func (o *SchemaGroupProperties) SetUpdatedAtUtcAsTime(input time.Time)

type SchemaRegistryClient

type SchemaRegistryClient struct {
	Client autorest.Client
	// contains filtered or unexported fields
}

func NewSchemaRegistryClientWithBaseURI

func NewSchemaRegistryClientWithBaseURI(endpoint string) SchemaRegistryClient

func (SchemaRegistryClient) CreateOrUpdate

CreateOrUpdate ...

func (SchemaRegistryClient) Delete

Delete ...

func (SchemaRegistryClient) Get

Get ...

func (SchemaRegistryClient) ListByNamespace

ListByNamespace ...

func (SchemaRegistryClient) ListByNamespaceComplete

ListByNamespaceComplete retrieves all of the results into a single object

func (SchemaRegistryClient) ListByNamespaceCompleteMatchingPredicate

func (c SchemaRegistryClient) ListByNamespaceCompleteMatchingPredicate(ctx context.Context, id NamespaceId, options ListByNamespaceOperationOptions, predicate SchemaGroupOperationPredicate) (resp ListByNamespaceCompleteResult, err error)

ListByNamespaceCompleteMatchingPredicate retrieves all of the results and then applied the predicate

type SchemaType

type SchemaType string
const (
	SchemaTypeAvro    SchemaType = "Avro"
	SchemaTypeUnknown SchemaType = "Unknown"
)

type SchemagroupId

type SchemagroupId struct {
	SubscriptionId    string
	ResourceGroupName string
	NamespaceName     string
	SchemaGroupName   string
}

SchemagroupId is a struct representing the Resource ID for a Schemagroup

func NewSchemagroupID

func NewSchemagroupID(subscriptionId string, resourceGroupName string, namespaceName string, schemaGroupName string) SchemagroupId

NewSchemagroupID returns a new SchemagroupId struct

func ParseSchemagroupID

func ParseSchemagroupID(input string) (*SchemagroupId, error)

ParseSchemagroupID parses 'input' into a SchemagroupId

func ParseSchemagroupIDInsensitively

func ParseSchemagroupIDInsensitively(input string) (*SchemagroupId, error)

ParseSchemagroupIDInsensitively parses 'input' case-insensitively into a SchemagroupId note: this method should only be used for API response data and not user input

func (SchemagroupId) ID

func (id SchemagroupId) ID() string

ID returns the formatted Schemagroup ID

func (SchemagroupId) Segments

func (id SchemagroupId) Segments() []resourceids.Segment

Segments returns a slice of Resource ID Segments which comprise this Schemagroup ID

func (SchemagroupId) String

func (id SchemagroupId) String() string

String returns a human-readable description of this Schemagroup ID

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL