Versions in this module Expand all Collapse all v0 v0.1.0 Feb 28, 2022 Changes in this version + var ContextAPIKeys = contextKey("apiKeys") + var ContextAccessToken = contextKey("accesstoken") + var ContextBasicAuth = contextKey("basic") + var ContextHttpSignatureAuth = contextKey("httpsignature") + var ContextOAuth2 = contextKey("token") + var ContextOperationServerIndices = contextKey("serverOperationIndices") + var ContextOperationServerVariables = contextKey("serverOperationVariables") + var ContextServerIndex = contextKey("serverIndex") + var ContextServerVariables = contextKey("serverVariables") + func CacheExpires(r *http.Response) time.Time + func PtrBool(v bool) *bool + func PtrFloat32(v float32) *float32 + func PtrFloat64(v float64) *float64 + func PtrInt(v int) *int + func PtrInt32(v int32) *int32 + func PtrInt64(v int64) *int64 + func PtrString(v string) *string + func PtrTime(v time.Time) *time.Time + type APIClient struct + AppliedQuotasQuotasV2Api AppliedQuotasQuotasV2Api + ScopesQuotasV2Api ScopesQuotasV2Api + func NewAPIClient(cfg *Configuration) *APIClient + func (c *APIClient) GetConfig() *Configuration + type APIKey struct + Key string + Prefix string + type APIResponse struct + Message string + Method string + Operation string + Payload []byte + RequestURL string + func NewAPIResponse(r *http.Response) *APIResponse + func NewAPIResponseWithError(errorMessage string) *APIResponse + type ApiGetQuotasV2AppliedQuotaRequest struct + ApiService AppliedQuotasQuotasV2Api + func (r ApiGetQuotasV2AppliedQuotaRequest) Environment(environment string) ApiGetQuotasV2AppliedQuotaRequest + func (r ApiGetQuotasV2AppliedQuotaRequest) Execute() (QuotasV2AppliedQuota, *_nethttp.Response, error) + func (r ApiGetQuotasV2AppliedQuotaRequest) KafkaCluster(kafkaCluster string) ApiGetQuotasV2AppliedQuotaRequest + func (r ApiGetQuotasV2AppliedQuotaRequest) Network(network string) ApiGetQuotasV2AppliedQuotaRequest + type ApiGetQuotasV2ScopeRequest struct + ApiService ScopesQuotasV2Api + func (r ApiGetQuotasV2ScopeRequest) Execute() (QuotasV2Scope, *_nethttp.Response, error) + type ApiListQuotasV2AppliedQuotasRequest struct + ApiService AppliedQuotasQuotasV2Api + func (r ApiListQuotasV2AppliedQuotasRequest) Environment(environment string) ApiListQuotasV2AppliedQuotasRequest + func (r ApiListQuotasV2AppliedQuotasRequest) Execute() (QuotasV2AppliedQuotaList, *_nethttp.Response, error) + func (r ApiListQuotasV2AppliedQuotasRequest) KafkaCluster(kafkaCluster string) ApiListQuotasV2AppliedQuotasRequest + func (r ApiListQuotasV2AppliedQuotasRequest) Network(network string) ApiListQuotasV2AppliedQuotasRequest + func (r ApiListQuotasV2AppliedQuotasRequest) PageSize(pageSize int32) ApiListQuotasV2AppliedQuotasRequest + func (r ApiListQuotasV2AppliedQuotasRequest) PageToken(pageToken string) ApiListQuotasV2AppliedQuotasRequest + func (r ApiListQuotasV2AppliedQuotasRequest) QuotaCode(quotaCode string) ApiListQuotasV2AppliedQuotasRequest + func (r ApiListQuotasV2AppliedQuotasRequest) Scope(scope string) ApiListQuotasV2AppliedQuotasRequest + type ApiListQuotasV2ScopesRequest struct + ApiService ScopesQuotasV2Api + func (r ApiListQuotasV2ScopesRequest) Execute() (QuotasV2ScopeList, *_nethttp.Response, error) + func (r ApiListQuotasV2ScopesRequest) PageSize(pageSize int32) ApiListQuotasV2ScopesRequest + func (r ApiListQuotasV2ScopesRequest) PageToken(pageToken string) ApiListQuotasV2ScopesRequest + type AppliedQuotasQuotasV2Api interface + GetQuotasV2AppliedQuota func(ctx _context.Context, id string) ApiGetQuotasV2AppliedQuotaRequest + GetQuotasV2AppliedQuotaExecute func(r ApiGetQuotasV2AppliedQuotaRequest) (QuotasV2AppliedQuota, *_nethttp.Response, error) + ListQuotasV2AppliedQuotas func(ctx _context.Context) ApiListQuotasV2AppliedQuotasRequest + ListQuotasV2AppliedQuotasExecute func(r ApiListQuotasV2AppliedQuotasRequest) (QuotasV2AppliedQuotaList, *_nethttp.Response, error) + type AppliedQuotasQuotasV2ApiService service + func (a *AppliedQuotasQuotasV2ApiService) GetQuotasV2AppliedQuota(ctx _context.Context, id string) ApiGetQuotasV2AppliedQuotaRequest + func (a *AppliedQuotasQuotasV2ApiService) GetQuotasV2AppliedQuotaExecute(r ApiGetQuotasV2AppliedQuotaRequest) (QuotasV2AppliedQuota, *_nethttp.Response, error) + func (a *AppliedQuotasQuotasV2ApiService) ListQuotasV2AppliedQuotas(ctx _context.Context) ApiListQuotasV2AppliedQuotasRequest + func (a *AppliedQuotasQuotasV2ApiService) ListQuotasV2AppliedQuotasExecute(r ApiListQuotasV2AppliedQuotasRequest) (QuotasV2AppliedQuotaList, *_nethttp.Response, error) + type BasicAuth struct + Password string + UserName string + type Configuration struct + Debug bool + DefaultHeader map[string]string + HTTPClient *http.Client + Host string + OperationServers map[string]ServerConfigurations + Scheme string + Servers ServerConfigurations + UserAgent string + func NewConfiguration() *Configuration + func (c *Configuration) AddDefaultHeader(key string, value string) + func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error) + func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error) + type Error struct + Code *string + Detail *string + Id *string + Source *ErrorSource + Status *string + Title *string + func NewError() *Error + func NewErrorWithDefaults() *Error + func (o *Error) GetCode() string + func (o *Error) GetCodeOk() (*string, bool) + func (o *Error) GetDetail() string + func (o *Error) GetDetailOk() (*string, bool) + func (o *Error) GetId() string + func (o *Error) GetIdOk() (*string, bool) + func (o *Error) GetSource() ErrorSource + func (o *Error) GetSourceOk() (*ErrorSource, bool) + func (o *Error) GetStatus() string + func (o *Error) GetStatusOk() (*string, bool) + func (o *Error) GetTitle() string + func (o *Error) GetTitleOk() (*string, bool) + func (o *Error) HasCode() bool + func (o *Error) HasDetail() bool + func (o *Error) HasId() bool + func (o *Error) HasSource() bool + func (o *Error) HasStatus() bool + func (o *Error) HasTitle() bool + func (o *Error) Redact() + func (o *Error) SetCode(v string) + func (o *Error) SetDetail(v string) + func (o *Error) SetId(v string) + func (o *Error) SetSource(v ErrorSource) + func (o *Error) SetStatus(v string) + func (o *Error) SetTitle(v string) + func (o Error) MarshalJSON() ([]byte, error) + type ErrorSource struct + Parameter *string + Pointer *string + func NewErrorSource() *ErrorSource + func NewErrorSourceWithDefaults() *ErrorSource + func (o *ErrorSource) GetParameter() string + func (o *ErrorSource) GetParameterOk() (*string, bool) + func (o *ErrorSource) GetPointer() string + func (o *ErrorSource) GetPointerOk() (*string, bool) + func (o *ErrorSource) HasParameter() bool + func (o *ErrorSource) HasPointer() bool + func (o *ErrorSource) Redact() + func (o *ErrorSource) SetParameter(v string) + func (o *ErrorSource) SetPointer(v string) + func (o ErrorSource) MarshalJSON() ([]byte, error) + type Failure struct + Errors []Error + func NewFailure(errors []Error) *Failure + func NewFailureWithDefaults() *Failure + func (o *Failure) GetErrors() []Error + func (o *Failure) GetErrorsOk() (*[]Error, bool) + func (o *Failure) Redact() + func (o *Failure) SetErrors(v []Error) + func (o Failure) MarshalJSON() ([]byte, error) + type GenericOpenAPIError struct + func (e GenericOpenAPIError) Body() []byte + func (e GenericOpenAPIError) Error() string + func (e GenericOpenAPIError) Model() interface{} + type ListMeta struct + First NullableString + Last NullableString + Next NullableString + Prev NullableString + TotalSize *int32 + func NewListMeta() *ListMeta + func NewListMetaWithDefaults() *ListMeta + func (o *ListMeta) GetFirst() string + func (o *ListMeta) GetFirstOk() (*string, bool) + func (o *ListMeta) GetLast() string + func (o *ListMeta) GetLastOk() (*string, bool) + func (o *ListMeta) GetNext() string + func (o *ListMeta) GetNextOk() (*string, bool) + func (o *ListMeta) GetPrev() string + func (o *ListMeta) GetPrevOk() (*string, bool) + func (o *ListMeta) GetTotalSize() int32 + func (o *ListMeta) GetTotalSizeOk() (*int32, bool) + func (o *ListMeta) HasFirst() bool + func (o *ListMeta) HasLast() bool + func (o *ListMeta) HasNext() bool + func (o *ListMeta) HasPrev() bool + func (o *ListMeta) HasTotalSize() bool + func (o *ListMeta) Redact() + func (o *ListMeta) SetFirst(v string) + func (o *ListMeta) SetFirstNil() + func (o *ListMeta) SetLast(v string) + func (o *ListMeta) SetLastNil() + func (o *ListMeta) SetNext(v string) + func (o *ListMeta) SetNextNil() + func (o *ListMeta) SetPrev(v string) + func (o *ListMeta) SetPrevNil() + func (o *ListMeta) SetTotalSize(v int32) + func (o *ListMeta) UnsetFirst() + func (o *ListMeta) UnsetLast() + func (o *ListMeta) UnsetNext() + func (o *ListMeta) UnsetPrev() + func (o ListMeta) MarshalJSON() ([]byte, error) + type NullableBool struct + func NewNullableBool(val *bool) *NullableBool + func (v *NullableBool) Set(val *bool) + func (v *NullableBool) UnmarshalJSON(src []byte) error + func (v *NullableBool) Unset() + func (v NullableBool) Get() *bool + func (v NullableBool) IsSet() bool + func (v NullableBool) MarshalJSON() ([]byte, error) + type NullableError struct + func NewNullableError(val *Error) *NullableError + func (v *NullableError) Set(val *Error) + func (v *NullableError) UnmarshalJSON(src []byte) error + func (v *NullableError) Unset() + func (v NullableError) Get() *Error + func (v NullableError) IsSet() bool + func (v NullableError) MarshalJSON() ([]byte, error) + type NullableErrorSource struct + func NewNullableErrorSource(val *ErrorSource) *NullableErrorSource + func (v *NullableErrorSource) Set(val *ErrorSource) + func (v *NullableErrorSource) UnmarshalJSON(src []byte) error + func (v *NullableErrorSource) Unset() + func (v NullableErrorSource) Get() *ErrorSource + func (v NullableErrorSource) IsSet() bool + func (v NullableErrorSource) MarshalJSON() ([]byte, error) + type NullableFailure struct + func NewNullableFailure(val *Failure) *NullableFailure + func (v *NullableFailure) Set(val *Failure) + func (v *NullableFailure) UnmarshalJSON(src []byte) error + func (v *NullableFailure) Unset() + func (v NullableFailure) Get() *Failure + func (v NullableFailure) IsSet() bool + func (v NullableFailure) MarshalJSON() ([]byte, error) + type NullableFloat32 struct + func NewNullableFloat32(val *float32) *NullableFloat32 + func (v *NullableFloat32) Set(val *float32) + func (v *NullableFloat32) UnmarshalJSON(src []byte) error + func (v *NullableFloat32) Unset() + func (v NullableFloat32) Get() *float32 + func (v NullableFloat32) IsSet() bool + func (v NullableFloat32) MarshalJSON() ([]byte, error) + type NullableFloat64 struct + func NewNullableFloat64(val *float64) *NullableFloat64 + func (v *NullableFloat64) Set(val *float64) + func (v *NullableFloat64) UnmarshalJSON(src []byte) error + func (v *NullableFloat64) Unset() + func (v NullableFloat64) Get() *float64 + func (v NullableFloat64) IsSet() bool + func (v NullableFloat64) MarshalJSON() ([]byte, error) + type NullableInt struct + func NewNullableInt(val *int) *NullableInt + func (v *NullableInt) Set(val *int) + func (v *NullableInt) UnmarshalJSON(src []byte) error + func (v *NullableInt) Unset() + func (v NullableInt) Get() *int + func (v NullableInt) IsSet() bool + func (v NullableInt) MarshalJSON() ([]byte, error) + type NullableInt32 struct + func NewNullableInt32(val *int32) *NullableInt32 + func (v *NullableInt32) Set(val *int32) + func (v *NullableInt32) UnmarshalJSON(src []byte) error + func (v *NullableInt32) Unset() + func (v NullableInt32) Get() *int32 + func (v NullableInt32) IsSet() bool + func (v NullableInt32) MarshalJSON() ([]byte, error) + type NullableInt64 struct + func NewNullableInt64(val *int64) *NullableInt64 + func (v *NullableInt64) Set(val *int64) + func (v *NullableInt64) UnmarshalJSON(src []byte) error + func (v *NullableInt64) Unset() + func (v NullableInt64) Get() *int64 + func (v NullableInt64) IsSet() bool + func (v NullableInt64) MarshalJSON() ([]byte, error) + type NullableListMeta struct + func NewNullableListMeta(val *ListMeta) *NullableListMeta + func (v *NullableListMeta) Set(val *ListMeta) + func (v *NullableListMeta) UnmarshalJSON(src []byte) error + func (v *NullableListMeta) Unset() + func (v NullableListMeta) Get() *ListMeta + func (v NullableListMeta) IsSet() bool + func (v NullableListMeta) MarshalJSON() ([]byte, error) + type NullableObjectMeta struct + func NewNullableObjectMeta(val *ObjectMeta) *NullableObjectMeta + func (v *NullableObjectMeta) Set(val *ObjectMeta) + func (v *NullableObjectMeta) UnmarshalJSON(src []byte) error + func (v *NullableObjectMeta) Unset() + func (v NullableObjectMeta) Get() *ObjectMeta + func (v NullableObjectMeta) IsSet() bool + func (v NullableObjectMeta) MarshalJSON() ([]byte, error) + type NullableObjectReference struct + func NewNullableObjectReference(val *ObjectReference) *NullableObjectReference + func (v *NullableObjectReference) Set(val *ObjectReference) + func (v *NullableObjectReference) UnmarshalJSON(src []byte) error + func (v *NullableObjectReference) Unset() + func (v NullableObjectReference) Get() *ObjectReference + func (v NullableObjectReference) IsSet() bool + func (v NullableObjectReference) MarshalJSON() ([]byte, error) + type NullableQuotasV2AppliedQuota struct + func NewNullableQuotasV2AppliedQuota(val *QuotasV2AppliedQuota) *NullableQuotasV2AppliedQuota + func (v *NullableQuotasV2AppliedQuota) Set(val *QuotasV2AppliedQuota) + func (v *NullableQuotasV2AppliedQuota) UnmarshalJSON(src []byte) error + func (v *NullableQuotasV2AppliedQuota) Unset() + func (v NullableQuotasV2AppliedQuota) Get() *QuotasV2AppliedQuota + func (v NullableQuotasV2AppliedQuota) IsSet() bool + func (v NullableQuotasV2AppliedQuota) MarshalJSON() ([]byte, error) + type NullableQuotasV2AppliedQuotaList struct + func NewNullableQuotasV2AppliedQuotaList(val *QuotasV2AppliedQuotaList) *NullableQuotasV2AppliedQuotaList + func (v *NullableQuotasV2AppliedQuotaList) Set(val *QuotasV2AppliedQuotaList) + func (v *NullableQuotasV2AppliedQuotaList) UnmarshalJSON(src []byte) error + func (v *NullableQuotasV2AppliedQuotaList) Unset() + func (v NullableQuotasV2AppliedQuotaList) Get() *QuotasV2AppliedQuotaList + func (v NullableQuotasV2AppliedQuotaList) IsSet() bool + func (v NullableQuotasV2AppliedQuotaList) MarshalJSON() ([]byte, error) + type NullableQuotasV2Scope struct + func NewNullableQuotasV2Scope(val *QuotasV2Scope) *NullableQuotasV2Scope + func (v *NullableQuotasV2Scope) Set(val *QuotasV2Scope) + func (v *NullableQuotasV2Scope) UnmarshalJSON(src []byte) error + func (v *NullableQuotasV2Scope) Unset() + func (v NullableQuotasV2Scope) Get() *QuotasV2Scope + func (v NullableQuotasV2Scope) IsSet() bool + func (v NullableQuotasV2Scope) MarshalJSON() ([]byte, error) + type NullableQuotasV2ScopeList struct + func NewNullableQuotasV2ScopeList(val *QuotasV2ScopeList) *NullableQuotasV2ScopeList + func (v *NullableQuotasV2ScopeList) Set(val *QuotasV2ScopeList) + func (v *NullableQuotasV2ScopeList) UnmarshalJSON(src []byte) error + func (v *NullableQuotasV2ScopeList) Unset() + func (v NullableQuotasV2ScopeList) Get() *QuotasV2ScopeList + func (v NullableQuotasV2ScopeList) IsSet() bool + func (v NullableQuotasV2ScopeList) MarshalJSON() ([]byte, error) + type NullableString struct + func NewNullableString(val *string) *NullableString + func (v *NullableString) Set(val *string) + func (v *NullableString) UnmarshalJSON(src []byte) error + func (v *NullableString) Unset() + func (v NullableString) Get() *string + func (v NullableString) IsSet() bool + func (v NullableString) MarshalJSON() ([]byte, error) + type NullableTime struct + func NewNullableTime(val *time.Time) *NullableTime + func (v *NullableTime) Set(val *time.Time) + func (v *NullableTime) UnmarshalJSON(src []byte) error + func (v *NullableTime) Unset() + func (v NullableTime) Get() *time.Time + func (v NullableTime) IsSet() bool + func (v NullableTime) MarshalJSON() ([]byte, error) + type ObjectMeta struct + CreatedAt *time.Time + DeletedAt *time.Time + ResourceName *string + Self string + UpdatedAt *time.Time + func NewObjectMeta(self string) *ObjectMeta + func NewObjectMetaWithDefaults() *ObjectMeta + func (o *ObjectMeta) GetCreatedAt() time.Time + func (o *ObjectMeta) GetCreatedAtOk() (*time.Time, bool) + func (o *ObjectMeta) GetDeletedAt() time.Time + func (o *ObjectMeta) GetDeletedAtOk() (*time.Time, bool) + func (o *ObjectMeta) GetResourceName() string + func (o *ObjectMeta) GetResourceNameOk() (*string, bool) + func (o *ObjectMeta) GetSelf() string + func (o *ObjectMeta) GetSelfOk() (*string, bool) + func (o *ObjectMeta) GetUpdatedAt() time.Time + func (o *ObjectMeta) GetUpdatedAtOk() (*time.Time, bool) + func (o *ObjectMeta) HasCreatedAt() bool + func (o *ObjectMeta) HasDeletedAt() bool + func (o *ObjectMeta) HasResourceName() bool + func (o *ObjectMeta) HasUpdatedAt() bool + func (o *ObjectMeta) Redact() + func (o *ObjectMeta) SetCreatedAt(v time.Time) + func (o *ObjectMeta) SetDeletedAt(v time.Time) + func (o *ObjectMeta) SetResourceName(v string) + func (o *ObjectMeta) SetSelf(v string) + func (o *ObjectMeta) SetUpdatedAt(v time.Time) + func (o ObjectMeta) MarshalJSON() ([]byte, error) + type ObjectReference struct + ApiVersion *string + Environment *string + Id string + Kind *string + Related string + ResourceName string + func NewObjectReference(id string, related string, resourceName string) *ObjectReference + func NewObjectReferenceWithDefaults() *ObjectReference + func (o *ObjectReference) GetApiVersion() string + func (o *ObjectReference) GetApiVersionOk() (*string, bool) + func (o *ObjectReference) GetEnvironment() string + func (o *ObjectReference) GetEnvironmentOk() (*string, bool) + func (o *ObjectReference) GetId() string + func (o *ObjectReference) GetIdOk() (*string, bool) + func (o *ObjectReference) GetKind() string + func (o *ObjectReference) GetKindOk() (*string, bool) + func (o *ObjectReference) GetRelated() string + func (o *ObjectReference) GetRelatedOk() (*string, bool) + func (o *ObjectReference) GetResourceName() string + func (o *ObjectReference) GetResourceNameOk() (*string, bool) + func (o *ObjectReference) HasApiVersion() bool + func (o *ObjectReference) HasEnvironment() bool + func (o *ObjectReference) HasKind() bool + func (o *ObjectReference) Redact() + func (o *ObjectReference) SetApiVersion(v string) + func (o *ObjectReference) SetEnvironment(v string) + func (o *ObjectReference) SetId(v string) + func (o *ObjectReference) SetKind(v string) + func (o *ObjectReference) SetRelated(v string) + func (o *ObjectReference) SetResourceName(v string) + func (o ObjectReference) MarshalJSON() ([]byte, error) + type QuotasV2AppliedQuota struct + ApiVersion *string + AppliedLimit *int32 + DefaultLimit *int32 + DisplayName *string + Environment *ObjectReference + Id *string + KafkaCluster *ObjectReference + Kind *string + Metadata *ObjectMeta + Network *ObjectReference + Organization *ObjectReference + Scope *string + Usage *int32 + User *ObjectReference + func NewQuotasV2AppliedQuota() *QuotasV2AppliedQuota + func NewQuotasV2AppliedQuotaWithDefaults() *QuotasV2AppliedQuota + func (o *QuotasV2AppliedQuota) GetApiVersion() string + func (o *QuotasV2AppliedQuota) GetApiVersionOk() (*string, bool) + func (o *QuotasV2AppliedQuota) GetAppliedLimit() int32 + func (o *QuotasV2AppliedQuota) GetAppliedLimitOk() (*int32, bool) + func (o *QuotasV2AppliedQuota) GetDefaultLimit() int32 + func (o *QuotasV2AppliedQuota) GetDefaultLimitOk() (*int32, bool) + func (o *QuotasV2AppliedQuota) GetDisplayName() string + func (o *QuotasV2AppliedQuota) GetDisplayNameOk() (*string, bool) + func (o *QuotasV2AppliedQuota) GetEnvironment() ObjectReference + func (o *QuotasV2AppliedQuota) GetEnvironmentOk() (*ObjectReference, bool) + func (o *QuotasV2AppliedQuota) GetId() string + func (o *QuotasV2AppliedQuota) GetIdOk() (*string, bool) + func (o *QuotasV2AppliedQuota) GetKafkaCluster() ObjectReference + func (o *QuotasV2AppliedQuota) GetKafkaClusterOk() (*ObjectReference, bool) + func (o *QuotasV2AppliedQuota) GetKind() string + func (o *QuotasV2AppliedQuota) GetKindOk() (*string, bool) + func (o *QuotasV2AppliedQuota) GetMetadata() ObjectMeta + func (o *QuotasV2AppliedQuota) GetMetadataOk() (*ObjectMeta, bool) + func (o *QuotasV2AppliedQuota) GetNetwork() ObjectReference + func (o *QuotasV2AppliedQuota) GetNetworkOk() (*ObjectReference, bool) + func (o *QuotasV2AppliedQuota) GetOrganization() ObjectReference + func (o *QuotasV2AppliedQuota) GetOrganizationOk() (*ObjectReference, bool) + func (o *QuotasV2AppliedQuota) GetScope() string + func (o *QuotasV2AppliedQuota) GetScopeOk() (*string, bool) + func (o *QuotasV2AppliedQuota) GetUsage() int32 + func (o *QuotasV2AppliedQuota) GetUsageOk() (*int32, bool) + func (o *QuotasV2AppliedQuota) GetUser() ObjectReference + func (o *QuotasV2AppliedQuota) GetUserOk() (*ObjectReference, bool) + func (o *QuotasV2AppliedQuota) HasApiVersion() bool + func (o *QuotasV2AppliedQuota) HasAppliedLimit() bool + func (o *QuotasV2AppliedQuota) HasDefaultLimit() bool + func (o *QuotasV2AppliedQuota) HasDisplayName() bool + func (o *QuotasV2AppliedQuota) HasEnvironment() bool + func (o *QuotasV2AppliedQuota) HasId() bool + func (o *QuotasV2AppliedQuota) HasKafkaCluster() bool + func (o *QuotasV2AppliedQuota) HasKind() bool + func (o *QuotasV2AppliedQuota) HasMetadata() bool + func (o *QuotasV2AppliedQuota) HasNetwork() bool + func (o *QuotasV2AppliedQuota) HasOrganization() bool + func (o *QuotasV2AppliedQuota) HasScope() bool + func (o *QuotasV2AppliedQuota) HasUsage() bool + func (o *QuotasV2AppliedQuota) HasUser() bool + func (o *QuotasV2AppliedQuota) Redact() + func (o *QuotasV2AppliedQuota) SetApiVersion(v string) + func (o *QuotasV2AppliedQuota) SetAppliedLimit(v int32) + func (o *QuotasV2AppliedQuota) SetDefaultLimit(v int32) + func (o *QuotasV2AppliedQuota) SetDisplayName(v string) + func (o *QuotasV2AppliedQuota) SetEnvironment(v ObjectReference) + func (o *QuotasV2AppliedQuota) SetId(v string) + func (o *QuotasV2AppliedQuota) SetKafkaCluster(v ObjectReference) + func (o *QuotasV2AppliedQuota) SetKind(v string) + func (o *QuotasV2AppliedQuota) SetMetadata(v ObjectMeta) + func (o *QuotasV2AppliedQuota) SetNetwork(v ObjectReference) + func (o *QuotasV2AppliedQuota) SetOrganization(v ObjectReference) + func (o *QuotasV2AppliedQuota) SetScope(v string) + func (o *QuotasV2AppliedQuota) SetUsage(v int32) + func (o *QuotasV2AppliedQuota) SetUser(v ObjectReference) + func (o QuotasV2AppliedQuota) MarshalJSON() ([]byte, error) + type QuotasV2AppliedQuotaList struct + ApiVersion string + Data []QuotasV2AppliedQuota + Kind string + Metadata ListMeta + func NewQuotasV2AppliedQuotaList(apiVersion string, kind string, metadata ListMeta, data []QuotasV2AppliedQuota) *QuotasV2AppliedQuotaList + func NewQuotasV2AppliedQuotaListWithDefaults() *QuotasV2AppliedQuotaList + func (o *QuotasV2AppliedQuotaList) GetApiVersion() string + func (o *QuotasV2AppliedQuotaList) GetApiVersionOk() (*string, bool) + func (o *QuotasV2AppliedQuotaList) GetData() []QuotasV2AppliedQuota + func (o *QuotasV2AppliedQuotaList) GetDataOk() (*[]QuotasV2AppliedQuota, bool) + func (o *QuotasV2AppliedQuotaList) GetKind() string + func (o *QuotasV2AppliedQuotaList) GetKindOk() (*string, bool) + func (o *QuotasV2AppliedQuotaList) GetMetadata() ListMeta + func (o *QuotasV2AppliedQuotaList) GetMetadataOk() (*ListMeta, bool) + func (o *QuotasV2AppliedQuotaList) Redact() + func (o *QuotasV2AppliedQuotaList) SetApiVersion(v string) + func (o *QuotasV2AppliedQuotaList) SetData(v []QuotasV2AppliedQuota) + func (o *QuotasV2AppliedQuotaList) SetKind(v string) + func (o *QuotasV2AppliedQuotaList) SetMetadata(v ListMeta) + func (o QuotasV2AppliedQuotaList) MarshalJSON() ([]byte, error) + type QuotasV2Scope struct + ApiVersion *string + Description *string + Id *string + Kind *string + Metadata *ObjectMeta + func NewQuotasV2Scope() *QuotasV2Scope + func NewQuotasV2ScopeWithDefaults() *QuotasV2Scope + func (o *QuotasV2Scope) GetApiVersion() string + func (o *QuotasV2Scope) GetApiVersionOk() (*string, bool) + func (o *QuotasV2Scope) GetDescription() string + func (o *QuotasV2Scope) GetDescriptionOk() (*string, bool) + func (o *QuotasV2Scope) GetId() string + func (o *QuotasV2Scope) GetIdOk() (*string, bool) + func (o *QuotasV2Scope) GetKind() string + func (o *QuotasV2Scope) GetKindOk() (*string, bool) + func (o *QuotasV2Scope) GetMetadata() ObjectMeta + func (o *QuotasV2Scope) GetMetadataOk() (*ObjectMeta, bool) + func (o *QuotasV2Scope) HasApiVersion() bool + func (o *QuotasV2Scope) HasDescription() bool + func (o *QuotasV2Scope) HasId() bool + func (o *QuotasV2Scope) HasKind() bool + func (o *QuotasV2Scope) HasMetadata() bool + func (o *QuotasV2Scope) Redact() + func (o *QuotasV2Scope) SetApiVersion(v string) + func (o *QuotasV2Scope) SetDescription(v string) + func (o *QuotasV2Scope) SetId(v string) + func (o *QuotasV2Scope) SetKind(v string) + func (o *QuotasV2Scope) SetMetadata(v ObjectMeta) + func (o QuotasV2Scope) MarshalJSON() ([]byte, error) + type QuotasV2ScopeList struct + ApiVersion string + Data []QuotasV2Scope + Kind string + Metadata ListMeta + func NewQuotasV2ScopeList(apiVersion string, kind string, metadata ListMeta, data []QuotasV2Scope) *QuotasV2ScopeList + func NewQuotasV2ScopeListWithDefaults() *QuotasV2ScopeList + func (o *QuotasV2ScopeList) GetApiVersion() string + func (o *QuotasV2ScopeList) GetApiVersionOk() (*string, bool) + func (o *QuotasV2ScopeList) GetData() []QuotasV2Scope + func (o *QuotasV2ScopeList) GetDataOk() (*[]QuotasV2Scope, bool) + func (o *QuotasV2ScopeList) GetKind() string + func (o *QuotasV2ScopeList) GetKindOk() (*string, bool) + func (o *QuotasV2ScopeList) GetMetadata() ListMeta + func (o *QuotasV2ScopeList) GetMetadataOk() (*ListMeta, bool) + func (o *QuotasV2ScopeList) Redact() + func (o *QuotasV2ScopeList) SetApiVersion(v string) + func (o *QuotasV2ScopeList) SetData(v []QuotasV2Scope) + func (o *QuotasV2ScopeList) SetKind(v string) + func (o *QuotasV2ScopeList) SetMetadata(v ListMeta) + func (o QuotasV2ScopeList) MarshalJSON() ([]byte, error) + type ScopesQuotasV2Api interface + GetQuotasV2Scope func(ctx _context.Context, id string) ApiGetQuotasV2ScopeRequest + GetQuotasV2ScopeExecute func(r ApiGetQuotasV2ScopeRequest) (QuotasV2Scope, *_nethttp.Response, error) + ListQuotasV2Scopes func(ctx _context.Context) ApiListQuotasV2ScopesRequest + ListQuotasV2ScopesExecute func(r ApiListQuotasV2ScopesRequest) (QuotasV2ScopeList, *_nethttp.Response, error) + type ScopesQuotasV2ApiService service + func (a *ScopesQuotasV2ApiService) GetQuotasV2Scope(ctx _context.Context, id string) ApiGetQuotasV2ScopeRequest + func (a *ScopesQuotasV2ApiService) GetQuotasV2ScopeExecute(r ApiGetQuotasV2ScopeRequest) (QuotasV2Scope, *_nethttp.Response, error) + func (a *ScopesQuotasV2ApiService) ListQuotasV2Scopes(ctx _context.Context) ApiListQuotasV2ScopesRequest + func (a *ScopesQuotasV2ApiService) ListQuotasV2ScopesExecute(r ApiListQuotasV2ScopesRequest) (QuotasV2ScopeList, *_nethttp.Response, error) + type ServerConfiguration struct + Description string + URL string + Variables map[string]ServerVariable + type ServerConfigurations []ServerConfiguration + func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error) + type ServerVariable struct + DefaultValue string + Description string + EnumValues []string