Versions in this module Expand all Collapse all v0 v0.14.0 Mar 6, 2025 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto 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 + MetadataApi MetadataApi + PermissionApi PermissionApi + RelationshipApi RelationshipApi + 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 BasicAuth struct + Password string + UserName string + type BatchCheckPermissionBody struct + Tuples []Relationship + func NewBatchCheckPermissionBody() *BatchCheckPermissionBody + func NewBatchCheckPermissionBodyWithDefaults() *BatchCheckPermissionBody + func (o *BatchCheckPermissionBody) GetTuples() []Relationship + func (o *BatchCheckPermissionBody) GetTuplesOk() ([]Relationship, bool) + func (o *BatchCheckPermissionBody) HasTuples() bool + func (o *BatchCheckPermissionBody) SetTuples(v []Relationship) + func (o BatchCheckPermissionBody) MarshalJSON() ([]byte, error) + type BatchCheckPermissionResult struct + Results []CheckPermissionResultWithError + func NewBatchCheckPermissionResult(results []CheckPermissionResultWithError) *BatchCheckPermissionResult + func NewBatchCheckPermissionResultWithDefaults() *BatchCheckPermissionResult + func (o *BatchCheckPermissionResult) GetResults() []CheckPermissionResultWithError + func (o *BatchCheckPermissionResult) GetResultsOk() ([]CheckPermissionResultWithError, bool) + func (o *BatchCheckPermissionResult) SetResults(v []CheckPermissionResultWithError) + func (o BatchCheckPermissionResult) MarshalJSON() ([]byte, error) + type CheckOplSyntaxResult struct + Errors []ParseError + func NewCheckOplSyntaxResult() *CheckOplSyntaxResult + func NewCheckOplSyntaxResultWithDefaults() *CheckOplSyntaxResult + func (o *CheckOplSyntaxResult) GetErrors() []ParseError + func (o *CheckOplSyntaxResult) GetErrorsOk() ([]ParseError, bool) + func (o *CheckOplSyntaxResult) HasErrors() bool + func (o *CheckOplSyntaxResult) SetErrors(v []ParseError) + func (o CheckOplSyntaxResult) MarshalJSON() ([]byte, error) + type CheckPermissionResult struct + Allowed bool + func NewCheckPermissionResult(allowed bool) *CheckPermissionResult + func NewCheckPermissionResultWithDefaults() *CheckPermissionResult + func (o *CheckPermissionResult) GetAllowed() bool + func (o *CheckPermissionResult) GetAllowedOk() (*bool, bool) + func (o *CheckPermissionResult) SetAllowed(v bool) + func (o CheckPermissionResult) MarshalJSON() ([]byte, error) + type CheckPermissionResultWithError struct + Allowed bool + Error *string + func NewCheckPermissionResultWithError(allowed bool) *CheckPermissionResultWithError + func NewCheckPermissionResultWithErrorWithDefaults() *CheckPermissionResultWithError + func (o *CheckPermissionResultWithError) GetAllowed() bool + func (o *CheckPermissionResultWithError) GetAllowedOk() (*bool, bool) + func (o *CheckPermissionResultWithError) GetError() string + func (o *CheckPermissionResultWithError) GetErrorOk() (*string, bool) + func (o *CheckPermissionResultWithError) HasError() bool + func (o *CheckPermissionResultWithError) SetAllowed(v bool) + func (o *CheckPermissionResultWithError) SetError(v string) + func (o CheckPermissionResultWithError) MarshalJSON() ([]byte, error) + 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 CreateRelationshipBody struct + Namespace *string + Object *string + Relation *string + SubjectId *string + SubjectSet *SubjectSet + func NewCreateRelationshipBody() *CreateRelationshipBody + func NewCreateRelationshipBodyWithDefaults() *CreateRelationshipBody + func (o *CreateRelationshipBody) GetNamespace() string + func (o *CreateRelationshipBody) GetNamespaceOk() (*string, bool) + func (o *CreateRelationshipBody) GetObject() string + func (o *CreateRelationshipBody) GetObjectOk() (*string, bool) + func (o *CreateRelationshipBody) GetRelation() string + func (o *CreateRelationshipBody) GetRelationOk() (*string, bool) + func (o *CreateRelationshipBody) GetSubjectId() string + func (o *CreateRelationshipBody) GetSubjectIdOk() (*string, bool) + func (o *CreateRelationshipBody) GetSubjectSet() SubjectSet + func (o *CreateRelationshipBody) GetSubjectSetOk() (*SubjectSet, bool) + func (o *CreateRelationshipBody) HasNamespace() bool + func (o *CreateRelationshipBody) HasObject() bool + func (o *CreateRelationshipBody) HasRelation() bool + func (o *CreateRelationshipBody) HasSubjectId() bool + func (o *CreateRelationshipBody) HasSubjectSet() bool + func (o *CreateRelationshipBody) SetNamespace(v string) + func (o *CreateRelationshipBody) SetObject(v string) + func (o *CreateRelationshipBody) SetRelation(v string) + func (o *CreateRelationshipBody) SetSubjectId(v string) + func (o *CreateRelationshipBody) SetSubjectSet(v SubjectSet) + func (o CreateRelationshipBody) MarshalJSON() ([]byte, error) + type ErrorGeneric struct + Error GenericError + func NewErrorGeneric(error_ GenericError) *ErrorGeneric + func NewErrorGenericWithDefaults() *ErrorGeneric + func (o *ErrorGeneric) GetError() GenericError + func (o *ErrorGeneric) GetErrorOk() (*GenericError, bool) + func (o *ErrorGeneric) SetError(v GenericError) + func (o ErrorGeneric) MarshalJSON() ([]byte, error) + type ExpandedPermissionTree struct + Children []ExpandedPermissionTree + Tuple *Relationship + Type string + func NewExpandedPermissionTree(type_ string) *ExpandedPermissionTree + func NewExpandedPermissionTreeWithDefaults() *ExpandedPermissionTree + func (o *ExpandedPermissionTree) GetChildren() []ExpandedPermissionTree + func (o *ExpandedPermissionTree) GetChildrenOk() ([]ExpandedPermissionTree, bool) + func (o *ExpandedPermissionTree) GetTuple() Relationship + func (o *ExpandedPermissionTree) GetTupleOk() (*Relationship, bool) + func (o *ExpandedPermissionTree) GetType() string + func (o *ExpandedPermissionTree) GetTypeOk() (*string, bool) + func (o *ExpandedPermissionTree) HasChildren() bool + func (o *ExpandedPermissionTree) HasTuple() bool + func (o *ExpandedPermissionTree) SetChildren(v []ExpandedPermissionTree) + func (o *ExpandedPermissionTree) SetTuple(v Relationship) + func (o *ExpandedPermissionTree) SetType(v string) + func (o ExpandedPermissionTree) MarshalJSON() ([]byte, error) + type GenericError struct + Code *int64 + Debug *string + Details map[string]interface{} + Id *string + Message string + Reason *string + Request *string + Status *string + func NewGenericError(message string) *GenericError + func NewGenericErrorWithDefaults() *GenericError + func (o *GenericError) GetCode() int64 + func (o *GenericError) GetCodeOk() (*int64, bool) + func (o *GenericError) GetDebug() string + func (o *GenericError) GetDebugOk() (*string, bool) + func (o *GenericError) GetDetails() map[string]interface{} + func (o *GenericError) GetDetailsOk() (map[string]interface{}, bool) + func (o *GenericError) GetId() string + func (o *GenericError) GetIdOk() (*string, bool) + func (o *GenericError) GetMessage() string + func (o *GenericError) GetMessageOk() (*string, bool) + func (o *GenericError) GetReason() string + func (o *GenericError) GetReasonOk() (*string, bool) + func (o *GenericError) GetRequest() string + func (o *GenericError) GetRequestOk() (*string, bool) + func (o *GenericError) GetStatus() string + func (o *GenericError) GetStatusOk() (*string, bool) + func (o *GenericError) HasCode() bool + func (o *GenericError) HasDebug() bool + func (o *GenericError) HasDetails() bool + func (o *GenericError) HasId() bool + func (o *GenericError) HasReason() bool + func (o *GenericError) HasRequest() bool + func (o *GenericError) HasStatus() bool + func (o *GenericError) SetCode(v int64) + func (o *GenericError) SetDebug(v string) + func (o *GenericError) SetDetails(v map[string]interface{}) + func (o *GenericError) SetId(v string) + func (o *GenericError) SetMessage(v string) + func (o *GenericError) SetReason(v string) + func (o *GenericError) SetRequest(v string) + func (o *GenericError) SetStatus(v string) + func (o GenericError) MarshalJSON() ([]byte, error) + type GenericOpenAPIError struct + func (e GenericOpenAPIError) Body() []byte + func (e GenericOpenAPIError) Error() string + func (e GenericOpenAPIError) Model() interface{} + type GetVersion200Response struct + Version string + func NewGetVersion200Response(version string) *GetVersion200Response + func NewGetVersion200ResponseWithDefaults() *GetVersion200Response + func (o *GetVersion200Response) GetVersion() string + func (o *GetVersion200Response) GetVersionOk() (*string, bool) + func (o *GetVersion200Response) SetVersion(v string) + func (o GetVersion200Response) MarshalJSON() ([]byte, error) + type HealthNotReadyStatus struct + Errors *map[string]string + func NewHealthNotReadyStatus() *HealthNotReadyStatus + func NewHealthNotReadyStatusWithDefaults() *HealthNotReadyStatus + func (o *HealthNotReadyStatus) GetErrors() map[string]string + func (o *HealthNotReadyStatus) GetErrorsOk() (*map[string]string, bool) + func (o *HealthNotReadyStatus) HasErrors() bool + func (o *HealthNotReadyStatus) SetErrors(v map[string]string) + func (o HealthNotReadyStatus) MarshalJSON() ([]byte, error) + type HealthStatus struct + Status *string + func NewHealthStatus() *HealthStatus + func NewHealthStatusWithDefaults() *HealthStatus + func (o *HealthStatus) GetStatus() string + func (o *HealthStatus) GetStatusOk() (*string, bool) + func (o *HealthStatus) HasStatus() bool + func (o *HealthStatus) SetStatus(v string) + func (o HealthStatus) MarshalJSON() ([]byte, error) + type IsAlive200Response struct + Status string + func NewIsAlive200Response(status string) *IsAlive200Response + func NewIsAlive200ResponseWithDefaults() *IsAlive200Response + func (o *IsAlive200Response) GetStatus() string + func (o *IsAlive200Response) GetStatusOk() (*string, bool) + func (o *IsAlive200Response) SetStatus(v string) + func (o IsAlive200Response) MarshalJSON() ([]byte, error) + type IsReady503Response struct + Errors map[string]string + func NewIsReady503Response(errors map[string]string) *IsReady503Response + func NewIsReady503ResponseWithDefaults() *IsReady503Response + func (o *IsReady503Response) GetErrors() map[string]string + func (o *IsReady503Response) GetErrorsOk() (*map[string]string, bool) + func (o *IsReady503Response) SetErrors(v map[string]string) + func (o IsReady503Response) MarshalJSON() ([]byte, error) + type MetadataApi interface + GetVersion func(ctx context.Context) MetadataApiApiGetVersionRequest + GetVersionExecute func(r MetadataApiApiGetVersionRequest) (*GetVersion200Response, *http.Response, error) + IsAlive func(ctx context.Context) MetadataApiApiIsAliveRequest + IsAliveExecute func(r MetadataApiApiIsAliveRequest) (*IsAlive200Response, *http.Response, error) + IsReady func(ctx context.Context) MetadataApiApiIsReadyRequest + IsReadyExecute func(r MetadataApiApiIsReadyRequest) (*IsAlive200Response, *http.Response, error) + type MetadataApiApiGetVersionRequest struct + ApiService MetadataApi + func (r MetadataApiApiGetVersionRequest) Execute() (*GetVersion200Response, *http.Response, error) + type MetadataApiApiIsAliveRequest struct + ApiService MetadataApi + func (r MetadataApiApiIsAliveRequest) Execute() (*IsAlive200Response, *http.Response, error) + type MetadataApiApiIsReadyRequest struct + ApiService MetadataApi + func (r MetadataApiApiIsReadyRequest) Execute() (*IsAlive200Response, *http.Response, error) + type MetadataApiService service + func (a *MetadataApiService) GetVersion(ctx context.Context) MetadataApiApiGetVersionRequest + func (a *MetadataApiService) GetVersionExecute(r MetadataApiApiGetVersionRequest) (*GetVersion200Response, *http.Response, error) + func (a *MetadataApiService) IsAlive(ctx context.Context) MetadataApiApiIsAliveRequest + func (a *MetadataApiService) IsAliveExecute(r MetadataApiApiIsAliveRequest) (*IsAlive200Response, *http.Response, error) + func (a *MetadataApiService) IsReady(ctx context.Context) MetadataApiApiIsReadyRequest + func (a *MetadataApiService) IsReadyExecute(r MetadataApiApiIsReadyRequest) (*IsAlive200Response, *http.Response, error) + type Namespace struct + Name *string + func NewNamespace() *Namespace + func NewNamespaceWithDefaults() *Namespace + func (o *Namespace) GetName() string + func (o *Namespace) GetNameOk() (*string, bool) + func (o *Namespace) HasName() bool + func (o *Namespace) SetName(v string) + func (o Namespace) MarshalJSON() ([]byte, error) + type NullableBatchCheckPermissionBody struct + func NewNullableBatchCheckPermissionBody(val *BatchCheckPermissionBody) *NullableBatchCheckPermissionBody + func (v *NullableBatchCheckPermissionBody) Set(val *BatchCheckPermissionBody) + func (v *NullableBatchCheckPermissionBody) UnmarshalJSON(src []byte) error + func (v *NullableBatchCheckPermissionBody) Unset() + func (v NullableBatchCheckPermissionBody) Get() *BatchCheckPermissionBody + func (v NullableBatchCheckPermissionBody) IsSet() bool + func (v NullableBatchCheckPermissionBody) MarshalJSON() ([]byte, error) + type NullableBatchCheckPermissionResult struct + func NewNullableBatchCheckPermissionResult(val *BatchCheckPermissionResult) *NullableBatchCheckPermissionResult + func (v *NullableBatchCheckPermissionResult) Set(val *BatchCheckPermissionResult) + func (v *NullableBatchCheckPermissionResult) UnmarshalJSON(src []byte) error + func (v *NullableBatchCheckPermissionResult) Unset() + func (v NullableBatchCheckPermissionResult) Get() *BatchCheckPermissionResult + func (v NullableBatchCheckPermissionResult) IsSet() bool + func (v NullableBatchCheckPermissionResult) 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 NullableCheckOplSyntaxResult struct + func NewNullableCheckOplSyntaxResult(val *CheckOplSyntaxResult) *NullableCheckOplSyntaxResult + func (v *NullableCheckOplSyntaxResult) Set(val *CheckOplSyntaxResult) + func (v *NullableCheckOplSyntaxResult) UnmarshalJSON(src []byte) error + func (v *NullableCheckOplSyntaxResult) Unset() + func (v NullableCheckOplSyntaxResult) Get() *CheckOplSyntaxResult + func (v NullableCheckOplSyntaxResult) IsSet() bool + func (v NullableCheckOplSyntaxResult) MarshalJSON() ([]byte, error) + type NullableCheckPermissionResult struct + func NewNullableCheckPermissionResult(val *CheckPermissionResult) *NullableCheckPermissionResult + func (v *NullableCheckPermissionResult) Set(val *CheckPermissionResult) + func (v *NullableCheckPermissionResult) UnmarshalJSON(src []byte) error + func (v *NullableCheckPermissionResult) Unset() + func (v NullableCheckPermissionResult) Get() *CheckPermissionResult + func (v NullableCheckPermissionResult) IsSet() bool + func (v NullableCheckPermissionResult) MarshalJSON() ([]byte, error) + type NullableCheckPermissionResultWithError struct + func NewNullableCheckPermissionResultWithError(val *CheckPermissionResultWithError) *NullableCheckPermissionResultWithError + func (v *NullableCheckPermissionResultWithError) Set(val *CheckPermissionResultWithError) + func (v *NullableCheckPermissionResultWithError) UnmarshalJSON(src []byte) error + func (v *NullableCheckPermissionResultWithError) Unset() + func (v NullableCheckPermissionResultWithError) Get() *CheckPermissionResultWithError + func (v NullableCheckPermissionResultWithError) IsSet() bool + func (v NullableCheckPermissionResultWithError) MarshalJSON() ([]byte, error) + type NullableCreateRelationshipBody struct + func NewNullableCreateRelationshipBody(val *CreateRelationshipBody) *NullableCreateRelationshipBody + func (v *NullableCreateRelationshipBody) Set(val *CreateRelationshipBody) + func (v *NullableCreateRelationshipBody) UnmarshalJSON(src []byte) error + func (v *NullableCreateRelationshipBody) Unset() + func (v NullableCreateRelationshipBody) Get() *CreateRelationshipBody + func (v NullableCreateRelationshipBody) IsSet() bool + func (v NullableCreateRelationshipBody) MarshalJSON() ([]byte, error) + type NullableErrorGeneric struct + func NewNullableErrorGeneric(val *ErrorGeneric) *NullableErrorGeneric + func (v *NullableErrorGeneric) Set(val *ErrorGeneric) + func (v *NullableErrorGeneric) UnmarshalJSON(src []byte) error + func (v *NullableErrorGeneric) Unset() + func (v NullableErrorGeneric) Get() *ErrorGeneric + func (v NullableErrorGeneric) IsSet() bool + func (v NullableErrorGeneric) MarshalJSON() ([]byte, error) + type NullableExpandedPermissionTree struct + func NewNullableExpandedPermissionTree(val *ExpandedPermissionTree) *NullableExpandedPermissionTree + func (v *NullableExpandedPermissionTree) Set(val *ExpandedPermissionTree) + func (v *NullableExpandedPermissionTree) UnmarshalJSON(src []byte) error + func (v *NullableExpandedPermissionTree) Unset() + func (v NullableExpandedPermissionTree) Get() *ExpandedPermissionTree + func (v NullableExpandedPermissionTree) IsSet() bool + func (v NullableExpandedPermissionTree) 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 NullableGenericError struct + func NewNullableGenericError(val *GenericError) *NullableGenericError + func (v *NullableGenericError) Set(val *GenericError) + func (v *NullableGenericError) UnmarshalJSON(src []byte) error + func (v *NullableGenericError) Unset() + func (v NullableGenericError) Get() *GenericError + func (v NullableGenericError) IsSet() bool + func (v NullableGenericError) MarshalJSON() ([]byte, error) + type NullableGetVersion200Response struct + func NewNullableGetVersion200Response(val *GetVersion200Response) *NullableGetVersion200Response + func (v *NullableGetVersion200Response) Set(val *GetVersion200Response) + func (v *NullableGetVersion200Response) UnmarshalJSON(src []byte) error + func (v *NullableGetVersion200Response) Unset() + func (v NullableGetVersion200Response) Get() *GetVersion200Response + func (v NullableGetVersion200Response) IsSet() bool + func (v NullableGetVersion200Response) MarshalJSON() ([]byte, error) + type NullableHealthNotReadyStatus struct + func NewNullableHealthNotReadyStatus(val *HealthNotReadyStatus) *NullableHealthNotReadyStatus + func (v *NullableHealthNotReadyStatus) Set(val *HealthNotReadyStatus) + func (v *NullableHealthNotReadyStatus) UnmarshalJSON(src []byte) error + func (v *NullableHealthNotReadyStatus) Unset() + func (v NullableHealthNotReadyStatus) Get() *HealthNotReadyStatus + func (v NullableHealthNotReadyStatus) IsSet() bool + func (v NullableHealthNotReadyStatus) MarshalJSON() ([]byte, error) + type NullableHealthStatus struct + func NewNullableHealthStatus(val *HealthStatus) *NullableHealthStatus + func (v *NullableHealthStatus) Set(val *HealthStatus) + func (v *NullableHealthStatus) UnmarshalJSON(src []byte) error + func (v *NullableHealthStatus) Unset() + func (v NullableHealthStatus) Get() *HealthStatus + func (v NullableHealthStatus) IsSet() bool + func (v NullableHealthStatus) 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 NullableIsAlive200Response struct + func NewNullableIsAlive200Response(val *IsAlive200Response) *NullableIsAlive200Response + func (v *NullableIsAlive200Response) Set(val *IsAlive200Response) + func (v *NullableIsAlive200Response) UnmarshalJSON(src []byte) error + func (v *NullableIsAlive200Response) Unset() + func (v NullableIsAlive200Response) Get() *IsAlive200Response + func (v NullableIsAlive200Response) IsSet() bool + func (v NullableIsAlive200Response) MarshalJSON() ([]byte, error) + type NullableIsReady503Response struct + func NewNullableIsReady503Response(val *IsReady503Response) *NullableIsReady503Response + func (v *NullableIsReady503Response) Set(val *IsReady503Response) + func (v *NullableIsReady503Response) UnmarshalJSON(src []byte) error + func (v *NullableIsReady503Response) Unset() + func (v NullableIsReady503Response) Get() *IsReady503Response + func (v NullableIsReady503Response) IsSet() bool + func (v NullableIsReady503Response) MarshalJSON() ([]byte, error) + type NullableNamespace struct + func NewNullableNamespace(val *Namespace) *NullableNamespace + func (v *NullableNamespace) Set(val *Namespace) + func (v *NullableNamespace) UnmarshalJSON(src []byte) error + func (v *NullableNamespace) Unset() + func (v NullableNamespace) Get() *Namespace + func (v NullableNamespace) IsSet() bool + func (v NullableNamespace) MarshalJSON() ([]byte, error) + type NullableParseError struct + func NewNullableParseError(val *ParseError) *NullableParseError + func (v *NullableParseError) Set(val *ParseError) + func (v *NullableParseError) UnmarshalJSON(src []byte) error + func (v *NullableParseError) Unset() + func (v NullableParseError) Get() *ParseError + func (v NullableParseError) IsSet() bool + func (v NullableParseError) MarshalJSON() ([]byte, error) + type NullablePostCheckPermissionBody struct + func NewNullablePostCheckPermissionBody(val *PostCheckPermissionBody) *NullablePostCheckPermissionBody + func (v *NullablePostCheckPermissionBody) Set(val *PostCheckPermissionBody) + func (v *NullablePostCheckPermissionBody) UnmarshalJSON(src []byte) error + func (v *NullablePostCheckPermissionBody) Unset() + func (v NullablePostCheckPermissionBody) Get() *PostCheckPermissionBody + func (v NullablePostCheckPermissionBody) IsSet() bool + func (v NullablePostCheckPermissionBody) MarshalJSON() ([]byte, error) + type NullablePostCheckPermissionOrErrorBody struct + func NewNullablePostCheckPermissionOrErrorBody(val *PostCheckPermissionOrErrorBody) *NullablePostCheckPermissionOrErrorBody + func (v *NullablePostCheckPermissionOrErrorBody) Set(val *PostCheckPermissionOrErrorBody) + func (v *NullablePostCheckPermissionOrErrorBody) UnmarshalJSON(src []byte) error + func (v *NullablePostCheckPermissionOrErrorBody) Unset() + func (v NullablePostCheckPermissionOrErrorBody) Get() *PostCheckPermissionOrErrorBody + func (v NullablePostCheckPermissionOrErrorBody) IsSet() bool + func (v NullablePostCheckPermissionOrErrorBody) MarshalJSON() ([]byte, error) + type NullableRelationQuery struct + func NewNullableRelationQuery(val *RelationQuery) *NullableRelationQuery + func (v *NullableRelationQuery) Set(val *RelationQuery) + func (v *NullableRelationQuery) UnmarshalJSON(src []byte) error + func (v *NullableRelationQuery) Unset() + func (v NullableRelationQuery) Get() *RelationQuery + func (v NullableRelationQuery) IsSet() bool + func (v NullableRelationQuery) MarshalJSON() ([]byte, error) + type NullableRelationship struct + func NewNullableRelationship(val *Relationship) *NullableRelationship + func (v *NullableRelationship) Set(val *Relationship) + func (v *NullableRelationship) UnmarshalJSON(src []byte) error + func (v *NullableRelationship) Unset() + func (v NullableRelationship) Get() *Relationship + func (v NullableRelationship) IsSet() bool + func (v NullableRelationship) MarshalJSON() ([]byte, error) + type NullableRelationshipNamespaces struct + func NewNullableRelationshipNamespaces(val *RelationshipNamespaces) *NullableRelationshipNamespaces + func (v *NullableRelationshipNamespaces) Set(val *RelationshipNamespaces) + func (v *NullableRelationshipNamespaces) UnmarshalJSON(src []byte) error + func (v *NullableRelationshipNamespaces) Unset() + func (v NullableRelationshipNamespaces) Get() *RelationshipNamespaces + func (v NullableRelationshipNamespaces) IsSet() bool + func (v NullableRelationshipNamespaces) MarshalJSON() ([]byte, error) + type NullableRelationshipPatch struct + func NewNullableRelationshipPatch(val *RelationshipPatch) *NullableRelationshipPatch + func (v *NullableRelationshipPatch) Set(val *RelationshipPatch) + func (v *NullableRelationshipPatch) UnmarshalJSON(src []byte) error + func (v *NullableRelationshipPatch) Unset() + func (v NullableRelationshipPatch) Get() *RelationshipPatch + func (v NullableRelationshipPatch) IsSet() bool + func (v NullableRelationshipPatch) MarshalJSON() ([]byte, error) + type NullableRelationships struct + func NewNullableRelationships(val *Relationships) *NullableRelationships + func (v *NullableRelationships) Set(val *Relationships) + func (v *NullableRelationships) UnmarshalJSON(src []byte) error + func (v *NullableRelationships) Unset() + func (v NullableRelationships) Get() *Relationships + func (v NullableRelationships) IsSet() bool + func (v NullableRelationships) MarshalJSON() ([]byte, error) + type NullableSourcePosition struct + func NewNullableSourcePosition(val *SourcePosition) *NullableSourcePosition + func (v *NullableSourcePosition) Set(val *SourcePosition) + func (v *NullableSourcePosition) UnmarshalJSON(src []byte) error + func (v *NullableSourcePosition) Unset() + func (v NullableSourcePosition) Get() *SourcePosition + func (v NullableSourcePosition) IsSet() bool + func (v NullableSourcePosition) 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 NullableSubjectSet struct + func NewNullableSubjectSet(val *SubjectSet) *NullableSubjectSet + func (v *NullableSubjectSet) Set(val *SubjectSet) + func (v *NullableSubjectSet) UnmarshalJSON(src []byte) error + func (v *NullableSubjectSet) Unset() + func (v NullableSubjectSet) Get() *SubjectSet + func (v NullableSubjectSet) IsSet() bool + func (v NullableSubjectSet) 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 NullableVersion struct + func NewNullableVersion(val *Version) *NullableVersion + func (v *NullableVersion) Set(val *Version) + func (v *NullableVersion) UnmarshalJSON(src []byte) error + func (v *NullableVersion) Unset() + func (v NullableVersion) Get() *Version + func (v NullableVersion) IsSet() bool + func (v NullableVersion) MarshalJSON() ([]byte, error) + type ParseError struct + End *SourcePosition + Message *string + Start *SourcePosition + func NewParseError() *ParseError + func NewParseErrorWithDefaults() *ParseError + func (o *ParseError) GetEnd() SourcePosition + func (o *ParseError) GetEndOk() (*SourcePosition, bool) + func (o *ParseError) GetMessage() string + func (o *ParseError) GetMessageOk() (*string, bool) + func (o *ParseError) GetStart() SourcePosition + func (o *ParseError) GetStartOk() (*SourcePosition, bool) + func (o *ParseError) HasEnd() bool + func (o *ParseError) HasMessage() bool + func (o *ParseError) HasStart() bool + func (o *ParseError) SetEnd(v SourcePosition) + func (o *ParseError) SetMessage(v string) + func (o *ParseError) SetStart(v SourcePosition) + func (o ParseError) MarshalJSON() ([]byte, error) + type PermissionApi interface + BatchCheckPermission func(ctx context.Context) PermissionApiApiBatchCheckPermissionRequest + BatchCheckPermissionExecute func(r PermissionApiApiBatchCheckPermissionRequest) (*BatchCheckPermissionResult, *http.Response, error) + CheckPermission func(ctx context.Context) PermissionApiApiCheckPermissionRequest + CheckPermissionExecute func(r PermissionApiApiCheckPermissionRequest) (*CheckPermissionResult, *http.Response, error) + CheckPermissionOrError func(ctx context.Context) PermissionApiApiCheckPermissionOrErrorRequest + CheckPermissionOrErrorExecute func(r PermissionApiApiCheckPermissionOrErrorRequest) (*CheckPermissionResult, *http.Response, error) + ExpandPermissions func(ctx context.Context) PermissionApiApiExpandPermissionsRequest + ExpandPermissionsExecute func(r PermissionApiApiExpandPermissionsRequest) (*ExpandedPermissionTree, *http.Response, error) + PostCheckPermission func(ctx context.Context) PermissionApiApiPostCheckPermissionRequest + PostCheckPermissionExecute func(r PermissionApiApiPostCheckPermissionRequest) (*CheckPermissionResult, *http.Response, error) + PostCheckPermissionOrError func(ctx context.Context) PermissionApiApiPostCheckPermissionOrErrorRequest + PostCheckPermissionOrErrorExecute func(r PermissionApiApiPostCheckPermissionOrErrorRequest) (*CheckPermissionResult, *http.Response, error) + type PermissionApiApiBatchCheckPermissionRequest struct + ApiService PermissionApi + func (r PermissionApiApiBatchCheckPermissionRequest) BatchCheckPermissionBody(batchCheckPermissionBody BatchCheckPermissionBody) PermissionApiApiBatchCheckPermissionRequest + func (r PermissionApiApiBatchCheckPermissionRequest) Execute() (*BatchCheckPermissionResult, *http.Response, error) + func (r PermissionApiApiBatchCheckPermissionRequest) MaxDepth(maxDepth int64) PermissionApiApiBatchCheckPermissionRequest + type PermissionApiApiCheckPermissionOrErrorRequest struct + ApiService PermissionApi + func (r PermissionApiApiCheckPermissionOrErrorRequest) Execute() (*CheckPermissionResult, *http.Response, error) + func (r PermissionApiApiCheckPermissionOrErrorRequest) MaxDepth(maxDepth int64) PermissionApiApiCheckPermissionOrErrorRequest + func (r PermissionApiApiCheckPermissionOrErrorRequest) Namespace(namespace string) PermissionApiApiCheckPermissionOrErrorRequest + func (r PermissionApiApiCheckPermissionOrErrorRequest) Object(object string) PermissionApiApiCheckPermissionOrErrorRequest + func (r PermissionApiApiCheckPermissionOrErrorRequest) Relation(relation string) PermissionApiApiCheckPermissionOrErrorRequest + func (r PermissionApiApiCheckPermissionOrErrorRequest) SubjectId(subjectId string) PermissionApiApiCheckPermissionOrErrorRequest + func (r PermissionApiApiCheckPermissionOrErrorRequest) SubjectSetNamespace(subjectSetNamespace string) PermissionApiApiCheckPermissionOrErrorRequest + func (r PermissionApiApiCheckPermissionOrErrorRequest) SubjectSetObject(subjectSetObject string) PermissionApiApiCheckPermissionOrErrorRequest + func (r PermissionApiApiCheckPermissionOrErrorRequest) SubjectSetRelation(subjectSetRelation string) PermissionApiApiCheckPermissionOrErrorRequest + type PermissionApiApiCheckPermissionRequest struct + ApiService PermissionApi + func (r PermissionApiApiCheckPermissionRequest) Execute() (*CheckPermissionResult, *http.Response, error) + func (r PermissionApiApiCheckPermissionRequest) MaxDepth(maxDepth int64) PermissionApiApiCheckPermissionRequest + func (r PermissionApiApiCheckPermissionRequest) Namespace(namespace string) PermissionApiApiCheckPermissionRequest + func (r PermissionApiApiCheckPermissionRequest) Object(object string) PermissionApiApiCheckPermissionRequest + func (r PermissionApiApiCheckPermissionRequest) Relation(relation string) PermissionApiApiCheckPermissionRequest + func (r PermissionApiApiCheckPermissionRequest) SubjectId(subjectId string) PermissionApiApiCheckPermissionRequest + func (r PermissionApiApiCheckPermissionRequest) SubjectSetNamespace(subjectSetNamespace string) PermissionApiApiCheckPermissionRequest + func (r PermissionApiApiCheckPermissionRequest) SubjectSetObject(subjectSetObject string) PermissionApiApiCheckPermissionRequest + func (r PermissionApiApiCheckPermissionRequest) SubjectSetRelation(subjectSetRelation string) PermissionApiApiCheckPermissionRequest + type PermissionApiApiExpandPermissionsRequest struct + ApiService PermissionApi + func (r PermissionApiApiExpandPermissionsRequest) Execute() (*ExpandedPermissionTree, *http.Response, error) + func (r PermissionApiApiExpandPermissionsRequest) MaxDepth(maxDepth int64) PermissionApiApiExpandPermissionsRequest + func (r PermissionApiApiExpandPermissionsRequest) Namespace(namespace string) PermissionApiApiExpandPermissionsRequest + func (r PermissionApiApiExpandPermissionsRequest) Object(object string) PermissionApiApiExpandPermissionsRequest + func (r PermissionApiApiExpandPermissionsRequest) Relation(relation string) PermissionApiApiExpandPermissionsRequest + type PermissionApiApiPostCheckPermissionOrErrorRequest struct + ApiService PermissionApi + func (r PermissionApiApiPostCheckPermissionOrErrorRequest) Execute() (*CheckPermissionResult, *http.Response, error) + func (r PermissionApiApiPostCheckPermissionOrErrorRequest) MaxDepth(maxDepth int64) PermissionApiApiPostCheckPermissionOrErrorRequest + func (r PermissionApiApiPostCheckPermissionOrErrorRequest) PostCheckPermissionOrErrorBody(postCheckPermissionOrErrorBody PostCheckPermissionOrErrorBody) PermissionApiApiPostCheckPermissionOrErrorRequest + type PermissionApiApiPostCheckPermissionRequest struct + ApiService PermissionApi + func (r PermissionApiApiPostCheckPermissionRequest) Execute() (*CheckPermissionResult, *http.Response, error) + func (r PermissionApiApiPostCheckPermissionRequest) MaxDepth(maxDepth int64) PermissionApiApiPostCheckPermissionRequest + func (r PermissionApiApiPostCheckPermissionRequest) PostCheckPermissionBody(postCheckPermissionBody PostCheckPermissionBody) PermissionApiApiPostCheckPermissionRequest + type PermissionApiService service + func (a *PermissionApiService) BatchCheckPermission(ctx context.Context) PermissionApiApiBatchCheckPermissionRequest + func (a *PermissionApiService) BatchCheckPermissionExecute(r PermissionApiApiBatchCheckPermissionRequest) (*BatchCheckPermissionResult, *http.Response, error) + func (a *PermissionApiService) CheckPermission(ctx context.Context) PermissionApiApiCheckPermissionRequest + func (a *PermissionApiService) CheckPermissionExecute(r PermissionApiApiCheckPermissionRequest) (*CheckPermissionResult, *http.Response, error) + func (a *PermissionApiService) CheckPermissionOrError(ctx context.Context) PermissionApiApiCheckPermissionOrErrorRequest + func (a *PermissionApiService) CheckPermissionOrErrorExecute(r PermissionApiApiCheckPermissionOrErrorRequest) (*CheckPermissionResult, *http.Response, error) + func (a *PermissionApiService) ExpandPermissions(ctx context.Context) PermissionApiApiExpandPermissionsRequest + func (a *PermissionApiService) ExpandPermissionsExecute(r PermissionApiApiExpandPermissionsRequest) (*ExpandedPermissionTree, *http.Response, error) + func (a *PermissionApiService) PostCheckPermission(ctx context.Context) PermissionApiApiPostCheckPermissionRequest + func (a *PermissionApiService) PostCheckPermissionExecute(r PermissionApiApiPostCheckPermissionRequest) (*CheckPermissionResult, *http.Response, error) + func (a *PermissionApiService) PostCheckPermissionOrError(ctx context.Context) PermissionApiApiPostCheckPermissionOrErrorRequest + func (a *PermissionApiService) PostCheckPermissionOrErrorExecute(r PermissionApiApiPostCheckPermissionOrErrorRequest) (*CheckPermissionResult, *http.Response, error) + type PostCheckPermissionBody struct + Namespace *string + Object *string + Relation *string + SubjectId *string + SubjectSet *SubjectSet + func NewPostCheckPermissionBody() *PostCheckPermissionBody + func NewPostCheckPermissionBodyWithDefaults() *PostCheckPermissionBody + func (o *PostCheckPermissionBody) GetNamespace() string + func (o *PostCheckPermissionBody) GetNamespaceOk() (*string, bool) + func (o *PostCheckPermissionBody) GetObject() string + func (o *PostCheckPermissionBody) GetObjectOk() (*string, bool) + func (o *PostCheckPermissionBody) GetRelation() string + func (o *PostCheckPermissionBody) GetRelationOk() (*string, bool) + func (o *PostCheckPermissionBody) GetSubjectId() string + func (o *PostCheckPermissionBody) GetSubjectIdOk() (*string, bool) + func (o *PostCheckPermissionBody) GetSubjectSet() SubjectSet + func (o *PostCheckPermissionBody) GetSubjectSetOk() (*SubjectSet, bool) + func (o *PostCheckPermissionBody) HasNamespace() bool + func (o *PostCheckPermissionBody) HasObject() bool + func (o *PostCheckPermissionBody) HasRelation() bool + func (o *PostCheckPermissionBody) HasSubjectId() bool + func (o *PostCheckPermissionBody) HasSubjectSet() bool + func (o *PostCheckPermissionBody) SetNamespace(v string) + func (o *PostCheckPermissionBody) SetObject(v string) + func (o *PostCheckPermissionBody) SetRelation(v string) + func (o *PostCheckPermissionBody) SetSubjectId(v string) + func (o *PostCheckPermissionBody) SetSubjectSet(v SubjectSet) + func (o PostCheckPermissionBody) MarshalJSON() ([]byte, error) + type PostCheckPermissionOrErrorBody struct + Namespace *string + Object *string + Relation *string + SubjectId *string + SubjectSet *SubjectSet + func NewPostCheckPermissionOrErrorBody() *PostCheckPermissionOrErrorBody + func NewPostCheckPermissionOrErrorBodyWithDefaults() *PostCheckPermissionOrErrorBody + func (o *PostCheckPermissionOrErrorBody) GetNamespace() string + func (o *PostCheckPermissionOrErrorBody) GetNamespaceOk() (*string, bool) + func (o *PostCheckPermissionOrErrorBody) GetObject() string + func (o *PostCheckPermissionOrErrorBody) GetObjectOk() (*string, bool) + func (o *PostCheckPermissionOrErrorBody) GetRelation() string + func (o *PostCheckPermissionOrErrorBody) GetRelationOk() (*string, bool) + func (o *PostCheckPermissionOrErrorBody) GetSubjectId() string + func (o *PostCheckPermissionOrErrorBody) GetSubjectIdOk() (*string, bool) + func (o *PostCheckPermissionOrErrorBody) GetSubjectSet() SubjectSet + func (o *PostCheckPermissionOrErrorBody) GetSubjectSetOk() (*SubjectSet, bool) + func (o *PostCheckPermissionOrErrorBody) HasNamespace() bool + func (o *PostCheckPermissionOrErrorBody) HasObject() bool + func (o *PostCheckPermissionOrErrorBody) HasRelation() bool + func (o *PostCheckPermissionOrErrorBody) HasSubjectId() bool + func (o *PostCheckPermissionOrErrorBody) HasSubjectSet() bool + func (o *PostCheckPermissionOrErrorBody) SetNamespace(v string) + func (o *PostCheckPermissionOrErrorBody) SetObject(v string) + func (o *PostCheckPermissionOrErrorBody) SetRelation(v string) + func (o *PostCheckPermissionOrErrorBody) SetSubjectId(v string) + func (o *PostCheckPermissionOrErrorBody) SetSubjectSet(v SubjectSet) + func (o PostCheckPermissionOrErrorBody) MarshalJSON() ([]byte, error) + type RelationQuery struct + Namespace *string + Object *string + Relation *string + SubjectId *string + SubjectSet *SubjectSet + func NewRelationQuery() *RelationQuery + func NewRelationQueryWithDefaults() *RelationQuery + func (o *RelationQuery) GetNamespace() string + func (o *RelationQuery) GetNamespaceOk() (*string, bool) + func (o *RelationQuery) GetObject() string + func (o *RelationQuery) GetObjectOk() (*string, bool) + func (o *RelationQuery) GetRelation() string + func (o *RelationQuery) GetRelationOk() (*string, bool) + func (o *RelationQuery) GetSubjectId() string + func (o *RelationQuery) GetSubjectIdOk() (*string, bool) + func (o *RelationQuery) GetSubjectSet() SubjectSet + func (o *RelationQuery) GetSubjectSetOk() (*SubjectSet, bool) + func (o *RelationQuery) HasNamespace() bool + func (o *RelationQuery) HasObject() bool + func (o *RelationQuery) HasRelation() bool + func (o *RelationQuery) HasSubjectId() bool + func (o *RelationQuery) HasSubjectSet() bool + func (o *RelationQuery) SetNamespace(v string) + func (o *RelationQuery) SetObject(v string) + func (o *RelationQuery) SetRelation(v string) + func (o *RelationQuery) SetSubjectId(v string) + func (o *RelationQuery) SetSubjectSet(v SubjectSet) + func (o RelationQuery) MarshalJSON() ([]byte, error) + type Relationship struct + Namespace string + Object string + Relation string + SubjectId *string + SubjectSet *SubjectSet + func NewRelationship(namespace string, object string, relation string) *Relationship + func NewRelationshipWithDefaults() *Relationship + func (o *Relationship) GetNamespace() string + func (o *Relationship) GetNamespaceOk() (*string, bool) + func (o *Relationship) GetObject() string + func (o *Relationship) GetObjectOk() (*string, bool) + func (o *Relationship) GetRelation() string + func (o *Relationship) GetRelationOk() (*string, bool) + func (o *Relationship) GetSubjectId() string + func (o *Relationship) GetSubjectIdOk() (*string, bool) + func (o *Relationship) GetSubjectSet() SubjectSet + func (o *Relationship) GetSubjectSetOk() (*SubjectSet, bool) + func (o *Relationship) HasSubjectId() bool + func (o *Relationship) HasSubjectSet() bool + func (o *Relationship) SetNamespace(v string) + func (o *Relationship) SetObject(v string) + func (o *Relationship) SetRelation(v string) + func (o *Relationship) SetSubjectId(v string) + func (o *Relationship) SetSubjectSet(v SubjectSet) + func (o Relationship) MarshalJSON() ([]byte, error) + type RelationshipApi interface + CheckOplSyntax func(ctx context.Context) RelationshipApiApiCheckOplSyntaxRequest + CheckOplSyntaxExecute func(r RelationshipApiApiCheckOplSyntaxRequest) (*CheckOplSyntaxResult, *http.Response, error) + CreateRelationship func(ctx context.Context) RelationshipApiApiCreateRelationshipRequest + CreateRelationshipExecute func(r RelationshipApiApiCreateRelationshipRequest) (*Relationship, *http.Response, error) + DeleteRelationships func(ctx context.Context) RelationshipApiApiDeleteRelationshipsRequest + DeleteRelationshipsExecute func(r RelationshipApiApiDeleteRelationshipsRequest) (*http.Response, error) + GetRelationships func(ctx context.Context) RelationshipApiApiGetRelationshipsRequest + GetRelationshipsExecute func(r RelationshipApiApiGetRelationshipsRequest) (*Relationships, *http.Response, error) + ListRelationshipNamespaces func(ctx context.Context) RelationshipApiApiListRelationshipNamespacesRequest + ListRelationshipNamespacesExecute func(r RelationshipApiApiListRelationshipNamespacesRequest) (*RelationshipNamespaces, *http.Response, error) + PatchRelationships func(ctx context.Context) RelationshipApiApiPatchRelationshipsRequest + PatchRelationshipsExecute func(r RelationshipApiApiPatchRelationshipsRequest) (*http.Response, error) + type RelationshipApiApiCheckOplSyntaxRequest struct + ApiService RelationshipApi + func (r RelationshipApiApiCheckOplSyntaxRequest) Body(body string) RelationshipApiApiCheckOplSyntaxRequest + func (r RelationshipApiApiCheckOplSyntaxRequest) Execute() (*CheckOplSyntaxResult, *http.Response, error) + type RelationshipApiApiCreateRelationshipRequest struct + ApiService RelationshipApi + func (r RelationshipApiApiCreateRelationshipRequest) CreateRelationshipBody(createRelationshipBody CreateRelationshipBody) RelationshipApiApiCreateRelationshipRequest + func (r RelationshipApiApiCreateRelationshipRequest) Execute() (*Relationship, *http.Response, error) + type RelationshipApiApiDeleteRelationshipsRequest struct + ApiService RelationshipApi + func (r RelationshipApiApiDeleteRelationshipsRequest) Execute() (*http.Response, error) + func (r RelationshipApiApiDeleteRelationshipsRequest) Namespace(namespace string) RelationshipApiApiDeleteRelationshipsRequest + func (r RelationshipApiApiDeleteRelationshipsRequest) Object(object string) RelationshipApiApiDeleteRelationshipsRequest + func (r RelationshipApiApiDeleteRelationshipsRequest) Relation(relation string) RelationshipApiApiDeleteRelationshipsRequest + func (r RelationshipApiApiDeleteRelationshipsRequest) SubjectId(subjectId string) RelationshipApiApiDeleteRelationshipsRequest + func (r RelationshipApiApiDeleteRelationshipsRequest) SubjectSetNamespace(subjectSetNamespace string) RelationshipApiApiDeleteRelationshipsRequest + func (r RelationshipApiApiDeleteRelationshipsRequest) SubjectSetObject(subjectSetObject string) RelationshipApiApiDeleteRelationshipsRequest + func (r RelationshipApiApiDeleteRelationshipsRequest) SubjectSetRelation(subjectSetRelation string) RelationshipApiApiDeleteRelationshipsRequest + type RelationshipApiApiGetRelationshipsRequest struct + ApiService RelationshipApi + func (r RelationshipApiApiGetRelationshipsRequest) Execute() (*Relationships, *http.Response, error) + func (r RelationshipApiApiGetRelationshipsRequest) Namespace(namespace string) RelationshipApiApiGetRelationshipsRequest + func (r RelationshipApiApiGetRelationshipsRequest) Object(object string) RelationshipApiApiGetRelationshipsRequest + func (r RelationshipApiApiGetRelationshipsRequest) PageSize(pageSize int64) RelationshipApiApiGetRelationshipsRequest + func (r RelationshipApiApiGetRelationshipsRequest) PageToken(pageToken string) RelationshipApiApiGetRelationshipsRequest + func (r RelationshipApiApiGetRelationshipsRequest) Relation(relation string) RelationshipApiApiGetRelationshipsRequest + func (r RelationshipApiApiGetRelationshipsRequest) SubjectId(subjectId string) RelationshipApiApiGetRelationshipsRequest + func (r RelationshipApiApiGetRelationshipsRequest) SubjectSetNamespace(subjectSetNamespace string) RelationshipApiApiGetRelationshipsRequest + func (r RelationshipApiApiGetRelationshipsRequest) SubjectSetObject(subjectSetObject string) RelationshipApiApiGetRelationshipsRequest + func (r RelationshipApiApiGetRelationshipsRequest) SubjectSetRelation(subjectSetRelation string) RelationshipApiApiGetRelationshipsRequest + type RelationshipApiApiListRelationshipNamespacesRequest struct + ApiService RelationshipApi + func (r RelationshipApiApiListRelationshipNamespacesRequest) Execute() (*RelationshipNamespaces, *http.Response, error) + type RelationshipApiApiPatchRelationshipsRequest struct + ApiService RelationshipApi + func (r RelationshipApiApiPatchRelationshipsRequest) Execute() (*http.Response, error) + func (r RelationshipApiApiPatchRelationshipsRequest) RelationshipPatch(relationshipPatch []RelationshipPatch) RelationshipApiApiPatchRelationshipsRequest + type RelationshipApiService service + func (a *RelationshipApiService) CheckOplSyntax(ctx context.Context) RelationshipApiApiCheckOplSyntaxRequest + func (a *RelationshipApiService) CheckOplSyntaxExecute(r RelationshipApiApiCheckOplSyntaxRequest) (*CheckOplSyntaxResult, *http.Response, error) + func (a *RelationshipApiService) CreateRelationship(ctx context.Context) RelationshipApiApiCreateRelationshipRequest + func (a *RelationshipApiService) CreateRelationshipExecute(r RelationshipApiApiCreateRelationshipRequest) (*Relationship, *http.Response, error) + func (a *RelationshipApiService) DeleteRelationships(ctx context.Context) RelationshipApiApiDeleteRelationshipsRequest + func (a *RelationshipApiService) DeleteRelationshipsExecute(r RelationshipApiApiDeleteRelationshipsRequest) (*http.Response, error) + func (a *RelationshipApiService) GetRelationships(ctx context.Context) RelationshipApiApiGetRelationshipsRequest + func (a *RelationshipApiService) GetRelationshipsExecute(r RelationshipApiApiGetRelationshipsRequest) (*Relationships, *http.Response, error) + func (a *RelationshipApiService) ListRelationshipNamespaces(ctx context.Context) RelationshipApiApiListRelationshipNamespacesRequest + func (a *RelationshipApiService) ListRelationshipNamespacesExecute(r RelationshipApiApiListRelationshipNamespacesRequest) (*RelationshipNamespaces, *http.Response, error) + func (a *RelationshipApiService) PatchRelationships(ctx context.Context) RelationshipApiApiPatchRelationshipsRequest + func (a *RelationshipApiService) PatchRelationshipsExecute(r RelationshipApiApiPatchRelationshipsRequest) (*http.Response, error) + type RelationshipNamespaces struct + Namespaces []Namespace + func NewRelationshipNamespaces() *RelationshipNamespaces + func NewRelationshipNamespacesWithDefaults() *RelationshipNamespaces + func (o *RelationshipNamespaces) GetNamespaces() []Namespace + func (o *RelationshipNamespaces) GetNamespacesOk() ([]Namespace, bool) + func (o *RelationshipNamespaces) HasNamespaces() bool + func (o *RelationshipNamespaces) SetNamespaces(v []Namespace) + func (o RelationshipNamespaces) MarshalJSON() ([]byte, error) + type RelationshipPatch struct + Action *string + RelationTuple *Relationship + func NewRelationshipPatch() *RelationshipPatch + func NewRelationshipPatchWithDefaults() *RelationshipPatch + func (o *RelationshipPatch) GetAction() string + func (o *RelationshipPatch) GetActionOk() (*string, bool) + func (o *RelationshipPatch) GetRelationTuple() Relationship + func (o *RelationshipPatch) GetRelationTupleOk() (*Relationship, bool) + func (o *RelationshipPatch) HasAction() bool + func (o *RelationshipPatch) HasRelationTuple() bool + func (o *RelationshipPatch) SetAction(v string) + func (o *RelationshipPatch) SetRelationTuple(v Relationship) + func (o RelationshipPatch) MarshalJSON() ([]byte, error) + type Relationships struct + NextPageToken *string + RelationTuples []Relationship + func NewRelationships() *Relationships + func NewRelationshipsWithDefaults() *Relationships + func (o *Relationships) GetNextPageToken() string + func (o *Relationships) GetNextPageTokenOk() (*string, bool) + func (o *Relationships) GetRelationTuples() []Relationship + func (o *Relationships) GetRelationTuplesOk() ([]Relationship, bool) + func (o *Relationships) HasNextPageToken() bool + func (o *Relationships) HasRelationTuples() bool + func (o *Relationships) SetNextPageToken(v string) + func (o *Relationships) SetRelationTuples(v []Relationship) + func (o Relationships) MarshalJSON() ([]byte, 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 + type SourcePosition struct + Column *int64 + Line *int64 + func NewSourcePosition() *SourcePosition + func NewSourcePositionWithDefaults() *SourcePosition + func (o *SourcePosition) GetColumn() int64 + func (o *SourcePosition) GetColumnOk() (*int64, bool) + func (o *SourcePosition) GetLine() int64 + func (o *SourcePosition) GetLineOk() (*int64, bool) + func (o *SourcePosition) HasColumn() bool + func (o *SourcePosition) HasLine() bool + func (o *SourcePosition) SetColumn(v int64) + func (o *SourcePosition) SetLine(v int64) + func (o SourcePosition) MarshalJSON() ([]byte, error) + type SubjectSet struct + Namespace string + Object string + Relation string + func NewSubjectSet(namespace string, object string, relation string) *SubjectSet + func NewSubjectSetWithDefaults() *SubjectSet + func (o *SubjectSet) GetNamespace() string + func (o *SubjectSet) GetNamespaceOk() (*string, bool) + func (o *SubjectSet) GetObject() string + func (o *SubjectSet) GetObjectOk() (*string, bool) + func (o *SubjectSet) GetRelation() string + func (o *SubjectSet) GetRelationOk() (*string, bool) + func (o *SubjectSet) SetNamespace(v string) + func (o *SubjectSet) SetObject(v string) + func (o *SubjectSet) SetRelation(v string) + func (o SubjectSet) MarshalJSON() ([]byte, error) + type Version struct + Version *string + func NewVersion() *Version + func NewVersionWithDefaults() *Version + func (o *Version) GetVersion() string + func (o *Version) GetVersionOk() (*string, bool) + func (o *Version) HasVersion() bool + func (o *Version) SetVersion(v string) + func (o Version) MarshalJSON() ([]byte, error) v0.13.0-alpha.0 Feb 27, 2024 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.12.0-alpha.0 Feb 1, 2024 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.11.1-alpha.0 Mar 9, 2023 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.11.0-alpha.0.pre.1 Feb 23, 2023 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.11.0-alpha.0 Feb 23, 2023 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.10.0-alpha.0 Sep 27, 2022 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.9.0-alpha.0 Aug 1, 2022 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.8.0-alpha.2 Mar 4, 2022 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.8.0-alpha.1 Feb 22, 2022 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.8.0-alpha.0 Feb 10, 2022 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.7.0-alpha.1 Oct 19, 2021 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.7.0-alpha.0.pre.4 Oct 4, 2021 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.7.0-alpha.0.pre.3 Oct 4, 2021 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.7.0-alpha.0.pre.2 Oct 4, 2021 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.7.0-alpha.0.pre.1 Oct 4, 2021 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.7.0-alpha.0.pre.0 Oct 1, 2021 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.7.0-alpha.0 Oct 6, 2021 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.6.0-alpha.3 Apr 29, 2021 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.6.0-alpha.2 Apr 29, 2021 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.6.0-alpha.1.pre.6 Apr 6, 2021 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.6.0-alpha.1.pre.5 Apr 6, 2021 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.6.0-alpha.1.pre.4 Apr 6, 2021 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.6.0-alpha.1.pre.3 Apr 6, 2021 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.6.0-alpha.1.pre.2 Apr 6, 2021 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.6.0-alpha.1.pre.1 Apr 6, 2021 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.6.0-alpha.1.pre.0 Apr 1, 2021 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.6.0-alpha.1 Apr 7, 2021 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.5.7-alpha.1.pre.0 Oct 12, 2020 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.5.7-alpha.1 Oct 12, 2020 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.5.6-alpha.1 May 28, 2020 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.5.5-alpha.1 May 28, 2020 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.5.4-alpha.1 Apr 7, 2020 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.5.3-alpha.3 Apr 6, 2020 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.5.3-alpha.2 Apr 6, 2020 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.5.3-alpha.1 Apr 3, 2020 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.5.2 Apr 2, 2020 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.5.1-alpha.1 Apr 2, 2020 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.5.0 Apr 2, 2020 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.4.5-alpha.1 Feb 29, 2020 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.4.4-alpha.1 Feb 14, 2020 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.4.3-alpha.2 Jan 31, 2020 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.4.3-alpha.1 Jan 23, 2020 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.4.2-alpha.1 Jan 14, 2020 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.4.1-beta.1 Jan 13, 2020 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.4.0-sandbox Jan 13, 2020 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto v0.4.0-alpha.1 Jan 13, 2020 GO-2026-4800 GO-2026-4800: Ory Keto has a SQL injection via forged pagination tokens in github.com/ory/keto