Versions in this module Expand all Collapse all v0 v0.6.0 Mar 4, 2026 Changes in this version + var JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`) + var XmlCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`) + func CacheExpires(r *http.Response) time.Time + func IsNil(i interface{}) bool + func NewConfiguration() *config.Configuration + 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 + DefaultAPI DefaultAPI + func NewAPIClient(opts ...config.ConfigurationOption) (*APIClient, error) + func (c *APIClient) GetConfig() *config.Configuration + 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 AccessToken struct + AccessToken *string + Creator string + Description *string + DisplayName string + Expires bool + Id string + Permissions []string + Status string + ValidUntil *time.Time + func NewAccessToken(creator string, displayName string, expires bool, id string, ...) *AccessToken + func NewAccessTokenWithDefaults() *AccessToken + func (o *AccessToken) GetAccessToken() string + func (o *AccessToken) GetAccessTokenOk() (*string, bool) + func (o *AccessToken) GetCreator() string + func (o *AccessToken) GetCreatorOk() (*string, bool) + func (o *AccessToken) GetDescription() string + func (o *AccessToken) GetDescriptionOk() (*string, bool) + func (o *AccessToken) GetDisplayName() string + func (o *AccessToken) GetDisplayNameOk() (*string, bool) + func (o *AccessToken) GetExpires() bool + func (o *AccessToken) GetExpiresOk() (*bool, bool) + func (o *AccessToken) GetId() string + func (o *AccessToken) GetIdOk() (*string, bool) + func (o *AccessToken) GetPermissions() []string + func (o *AccessToken) GetPermissionsOk() ([]string, bool) + func (o *AccessToken) GetStatus() string + func (o *AccessToken) GetStatusOk() (*string, bool) + func (o *AccessToken) GetValidUntil() time.Time + func (o *AccessToken) GetValidUntilOk() (*time.Time, bool) + func (o *AccessToken) HasAccessToken() bool + func (o *AccessToken) HasDescription() bool + func (o *AccessToken) HasValidUntil() bool + func (o *AccessToken) SetAccessToken(v string) + func (o *AccessToken) SetCreator(v string) + func (o *AccessToken) SetDescription(v string) + func (o *AccessToken) SetDisplayName(v string) + func (o *AccessToken) SetExpires(v bool) + func (o *AccessToken) SetId(v string) + func (o *AccessToken) SetPermissions(v []string) + func (o *AccessToken) SetStatus(v string) + func (o *AccessToken) SetValidUntil(v time.Time) + func (o *AccessToken) UnmarshalJSON(data []byte) (err error) + func (o AccessToken) MarshalJSON() ([]byte, error) + func (o AccessToken) ToMap() (map[string]interface{}, error) + type AccessTokenList struct + Tokens []AccessToken + func NewAccessTokenList(tokens []AccessToken) *AccessTokenList + func NewAccessTokenListWithDefaults() *AccessTokenList + func (o *AccessTokenList) GetTokens() []AccessToken + func (o *AccessTokenList) GetTokensOk() ([]AccessToken, bool) + func (o *AccessTokenList) SetTokens(v []AccessToken) + func (o *AccessTokenList) UnmarshalJSON(data []byte) (err error) + func (o AccessTokenList) MarshalJSON() ([]byte, error) + func (o AccessTokenList) ToMap() (map[string]interface{}, error) + type ApiCreateAccessTokenRequest struct + ApiService DefaultAPI + func (r ApiCreateAccessTokenRequest) CreateAccessTokenPayload(createAccessTokenPayload CreateAccessTokenPayload) ApiCreateAccessTokenRequest + func (r ApiCreateAccessTokenRequest) Execute() (*AccessToken, error) + type ApiCreateLogsInstanceRequest struct + ApiService DefaultAPI + func (r ApiCreateLogsInstanceRequest) CreateLogsInstancePayload(createLogsInstancePayload CreateLogsInstancePayload) ApiCreateLogsInstanceRequest + func (r ApiCreateLogsInstanceRequest) Execute() (*LogsInstance, error) + type ApiDeleteAccessTokenRequest struct + ApiService DefaultAPI + func (r ApiDeleteAccessTokenRequest) Execute() error + type ApiDeleteAllAccessTokensRequest struct + ApiService DefaultAPI + func (r ApiDeleteAllAccessTokensRequest) Execute() (*AccessTokenList, error) + type ApiDeleteAllExpiredAccessTokensRequest struct + ApiService DefaultAPI + func (r ApiDeleteAllExpiredAccessTokensRequest) Execute() (*AccessTokenList, error) + type ApiDeleteLogsInstanceRequest struct + ApiService DefaultAPI + func (r ApiDeleteLogsInstanceRequest) Execute() error + type ApiGetAccessTokenRequest struct + ApiService DefaultAPI + func (r ApiGetAccessTokenRequest) Execute() (*AccessToken, error) + type ApiGetLogsInstanceRequest struct + ApiService DefaultAPI + func (r ApiGetLogsInstanceRequest) Execute() (*LogsInstance, error) + type ApiListAccessTokensRequest struct + ApiService DefaultAPI + func (r ApiListAccessTokensRequest) Execute() (*AccessTokenList, error) + type ApiListLogsInstancesRequest struct + ApiService DefaultAPI + func (r ApiListLogsInstancesRequest) Execute() (*LogsInstancesList, error) + type ApiUpdateAccessTokenRequest struct + ApiService DefaultAPI + func (r ApiUpdateAccessTokenRequest) Execute() error + func (r ApiUpdateAccessTokenRequest) UpdateAccessTokenPayload(updateAccessTokenPayload UpdateAccessTokenPayload) ApiUpdateAccessTokenRequest + type ApiUpdateLogsInstanceRequest struct + ApiService DefaultAPI + func (r ApiUpdateLogsInstanceRequest) Execute() (*LogsInstance, error) + func (r ApiUpdateLogsInstanceRequest) UpdateLogsInstancePayload(updateLogsInstancePayload UpdateLogsInstancePayload) ApiUpdateLogsInstanceRequest + type CreateAccessTokenPayload struct + Description *string + DisplayName string + Lifetime *int32 + Permissions []string + func NewCreateAccessTokenPayload(displayName string, permissions []string) *CreateAccessTokenPayload + func NewCreateAccessTokenPayloadWithDefaults() *CreateAccessTokenPayload + func (o *CreateAccessTokenPayload) GetDescription() string + func (o *CreateAccessTokenPayload) GetDescriptionOk() (*string, bool) + func (o *CreateAccessTokenPayload) GetDisplayName() string + func (o *CreateAccessTokenPayload) GetDisplayNameOk() (*string, bool) + func (o *CreateAccessTokenPayload) GetLifetime() int32 + func (o *CreateAccessTokenPayload) GetLifetimeOk() (*int32, bool) + func (o *CreateAccessTokenPayload) GetPermissions() []string + func (o *CreateAccessTokenPayload) GetPermissionsOk() ([]string, bool) + func (o *CreateAccessTokenPayload) HasDescription() bool + func (o *CreateAccessTokenPayload) HasLifetime() bool + func (o *CreateAccessTokenPayload) SetDescription(v string) + func (o *CreateAccessTokenPayload) SetDisplayName(v string) + func (o *CreateAccessTokenPayload) SetLifetime(v int32) + func (o *CreateAccessTokenPayload) SetPermissions(v []string) + func (o *CreateAccessTokenPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateAccessTokenPayload) MarshalJSON() ([]byte, error) + func (o CreateAccessTokenPayload) ToMap() (map[string]interface{}, error) + type CreateLogsInstancePayload struct + Acl []string + Description *string + DisplayName string + RetentionDays int32 + func NewCreateLogsInstancePayload(displayName string, retentionDays int32) *CreateLogsInstancePayload + func NewCreateLogsInstancePayloadWithDefaults() *CreateLogsInstancePayload + func (o *CreateLogsInstancePayload) GetAcl() []string + func (o *CreateLogsInstancePayload) GetAclOk() ([]string, bool) + func (o *CreateLogsInstancePayload) GetDescription() string + func (o *CreateLogsInstancePayload) GetDescriptionOk() (*string, bool) + func (o *CreateLogsInstancePayload) GetDisplayName() string + func (o *CreateLogsInstancePayload) GetDisplayNameOk() (*string, bool) + func (o *CreateLogsInstancePayload) GetRetentionDays() int32 + func (o *CreateLogsInstancePayload) GetRetentionDaysOk() (*int32, bool) + func (o *CreateLogsInstancePayload) HasAcl() bool + func (o *CreateLogsInstancePayload) HasDescription() bool + func (o *CreateLogsInstancePayload) SetAcl(v []string) + func (o *CreateLogsInstancePayload) SetDescription(v string) + func (o *CreateLogsInstancePayload) SetDisplayName(v string) + func (o *CreateLogsInstancePayload) SetRetentionDays(v int32) + func (o *CreateLogsInstancePayload) UnmarshalJSON(data []byte) (err error) + func (o CreateLogsInstancePayload) MarshalJSON() ([]byte, error) + func (o CreateLogsInstancePayload) ToMap() (map[string]interface{}, error) + type DefaultAPI interface + CreateAccessToken func(ctx context.Context, projectId string, regionId string, instanceId string) ApiCreateAccessTokenRequest + CreateAccessTokenExecute func(r ApiCreateAccessTokenRequest) (*AccessToken, error) + CreateLogsInstance func(ctx context.Context, projectId string, regionId string) ApiCreateLogsInstanceRequest + CreateLogsInstanceExecute func(r ApiCreateLogsInstanceRequest) (*LogsInstance, error) + DeleteAccessToken func(ctx context.Context, projectId string, regionId string, instanceId string, ...) ApiDeleteAccessTokenRequest + DeleteAccessTokenExecute func(r ApiDeleteAccessTokenRequest) error + DeleteAllAccessTokens func(ctx context.Context, projectId string, regionId string, instanceId string) ApiDeleteAllAccessTokensRequest + DeleteAllAccessTokensExecute func(r ApiDeleteAllAccessTokensRequest) (*AccessTokenList, error) + DeleteAllExpiredAccessTokens func(ctx context.Context, projectId string, regionId string, instanceId string) ApiDeleteAllExpiredAccessTokensRequest + DeleteAllExpiredAccessTokensExecute func(r ApiDeleteAllExpiredAccessTokensRequest) (*AccessTokenList, error) + DeleteLogsInstance func(ctx context.Context, projectId string, regionId string, instanceId string) ApiDeleteLogsInstanceRequest + DeleteLogsInstanceExecute func(r ApiDeleteLogsInstanceRequest) error + GetAccessToken func(ctx context.Context, projectId string, regionId string, instanceId string, ...) ApiGetAccessTokenRequest + GetAccessTokenExecute func(r ApiGetAccessTokenRequest) (*AccessToken, error) + GetLogsInstance func(ctx context.Context, projectId string, regionId string, instanceId string) ApiGetLogsInstanceRequest + GetLogsInstanceExecute func(r ApiGetLogsInstanceRequest) (*LogsInstance, error) + ListAccessTokens func(ctx context.Context, projectId string, regionId string, instanceId string) ApiListAccessTokensRequest + ListAccessTokensExecute func(r ApiListAccessTokensRequest) (*AccessTokenList, error) + ListLogsInstances func(ctx context.Context, projectId string, regionId string) ApiListLogsInstancesRequest + ListLogsInstancesExecute func(r ApiListLogsInstancesRequest) (*LogsInstancesList, error) + UpdateAccessToken func(ctx context.Context, projectId string, regionId string, instanceId string, ...) ApiUpdateAccessTokenRequest + UpdateAccessTokenExecute func(r ApiUpdateAccessTokenRequest) error + UpdateLogsInstance func(ctx context.Context, projectId string, regionId string, instanceId string) ApiUpdateLogsInstanceRequest + UpdateLogsInstanceExecute func(r ApiUpdateLogsInstanceRequest) (*LogsInstance, error) + type DefaultAPIService service + func (a *DefaultAPIService) CreateAccessToken(ctx context.Context, projectId string, regionId string, instanceId string) ApiCreateAccessTokenRequest + func (a *DefaultAPIService) CreateAccessTokenExecute(r ApiCreateAccessTokenRequest) (*AccessToken, error) + func (a *DefaultAPIService) CreateLogsInstance(ctx context.Context, projectId string, regionId string) ApiCreateLogsInstanceRequest + func (a *DefaultAPIService) CreateLogsInstanceExecute(r ApiCreateLogsInstanceRequest) (*LogsInstance, error) + func (a *DefaultAPIService) DeleteAccessToken(ctx context.Context, projectId string, regionId string, instanceId string, ...) ApiDeleteAccessTokenRequest + func (a *DefaultAPIService) DeleteAccessTokenExecute(r ApiDeleteAccessTokenRequest) error + func (a *DefaultAPIService) DeleteAllAccessTokens(ctx context.Context, projectId string, regionId string, instanceId string) ApiDeleteAllAccessTokensRequest + func (a *DefaultAPIService) DeleteAllAccessTokensExecute(r ApiDeleteAllAccessTokensRequest) (*AccessTokenList, error) + func (a *DefaultAPIService) DeleteAllExpiredAccessTokens(ctx context.Context, projectId string, regionId string, instanceId string) ApiDeleteAllExpiredAccessTokensRequest + func (a *DefaultAPIService) DeleteAllExpiredAccessTokensExecute(r ApiDeleteAllExpiredAccessTokensRequest) (*AccessTokenList, error) + func (a *DefaultAPIService) DeleteLogsInstance(ctx context.Context, projectId string, regionId string, instanceId string) ApiDeleteLogsInstanceRequest + func (a *DefaultAPIService) DeleteLogsInstanceExecute(r ApiDeleteLogsInstanceRequest) error + func (a *DefaultAPIService) GetAccessToken(ctx context.Context, projectId string, regionId string, instanceId string, ...) ApiGetAccessTokenRequest + func (a *DefaultAPIService) GetAccessTokenExecute(r ApiGetAccessTokenRequest) (*AccessToken, error) + func (a *DefaultAPIService) GetLogsInstance(ctx context.Context, projectId string, regionId string, instanceId string) ApiGetLogsInstanceRequest + func (a *DefaultAPIService) GetLogsInstanceExecute(r ApiGetLogsInstanceRequest) (*LogsInstance, error) + func (a *DefaultAPIService) ListAccessTokens(ctx context.Context, projectId string, regionId string, instanceId string) ApiListAccessTokensRequest + func (a *DefaultAPIService) ListAccessTokensExecute(r ApiListAccessTokensRequest) (*AccessTokenList, error) + func (a *DefaultAPIService) ListLogsInstances(ctx context.Context, projectId string, regionId string) ApiListLogsInstancesRequest + func (a *DefaultAPIService) ListLogsInstancesExecute(r ApiListLogsInstancesRequest) (*LogsInstancesList, error) + func (a *DefaultAPIService) UpdateAccessToken(ctx context.Context, projectId string, regionId string, instanceId string, ...) ApiUpdateAccessTokenRequest + func (a *DefaultAPIService) UpdateAccessTokenExecute(r ApiUpdateAccessTokenRequest) error + func (a *DefaultAPIService) UpdateLogsInstance(ctx context.Context, projectId string, regionId string, instanceId string) ApiUpdateLogsInstanceRequest + func (a *DefaultAPIService) UpdateLogsInstanceExecute(r ApiUpdateLogsInstanceRequest) (*LogsInstance, error) + type DefaultAPIServiceMock struct + CreateAccessTokenExecuteMock *func(r ApiCreateAccessTokenRequest) (*AccessToken, error) + CreateLogsInstanceExecuteMock *func(r ApiCreateLogsInstanceRequest) (*LogsInstance, error) + DeleteAccessTokenExecuteMock *func(r ApiDeleteAccessTokenRequest) error + DeleteAllAccessTokensExecuteMock *func(r ApiDeleteAllAccessTokensRequest) (*AccessTokenList, error) + DeleteAllExpiredAccessTokensExecuteMock *func(r ApiDeleteAllExpiredAccessTokensRequest) (*AccessTokenList, error) + DeleteLogsInstanceExecuteMock *func(r ApiDeleteLogsInstanceRequest) error + GetAccessTokenExecuteMock *func(r ApiGetAccessTokenRequest) (*AccessToken, error) + GetLogsInstanceExecuteMock *func(r ApiGetLogsInstanceRequest) (*LogsInstance, error) + ListAccessTokensExecuteMock *func(r ApiListAccessTokensRequest) (*AccessTokenList, error) + ListLogsInstancesExecuteMock *func(r ApiListLogsInstancesRequest) (*LogsInstancesList, error) + UpdateAccessTokenExecuteMock *func(r ApiUpdateAccessTokenRequest) error + UpdateLogsInstanceExecuteMock *func(r ApiUpdateLogsInstanceRequest) (*LogsInstance, error) + func (a DefaultAPIServiceMock) CreateAccessToken(ctx context.Context, projectId string, regionId string, instanceId string) ApiCreateAccessTokenRequest + func (a DefaultAPIServiceMock) CreateAccessTokenExecute(r ApiCreateAccessTokenRequest) (*AccessToken, error) + func (a DefaultAPIServiceMock) CreateLogsInstance(ctx context.Context, projectId string, regionId string) ApiCreateLogsInstanceRequest + func (a DefaultAPIServiceMock) CreateLogsInstanceExecute(r ApiCreateLogsInstanceRequest) (*LogsInstance, error) + func (a DefaultAPIServiceMock) DeleteAccessToken(ctx context.Context, projectId string, regionId string, instanceId string, ...) ApiDeleteAccessTokenRequest + func (a DefaultAPIServiceMock) DeleteAccessTokenExecute(r ApiDeleteAccessTokenRequest) error + func (a DefaultAPIServiceMock) DeleteAllAccessTokens(ctx context.Context, projectId string, regionId string, instanceId string) ApiDeleteAllAccessTokensRequest + func (a DefaultAPIServiceMock) DeleteAllAccessTokensExecute(r ApiDeleteAllAccessTokensRequest) (*AccessTokenList, error) + func (a DefaultAPIServiceMock) DeleteAllExpiredAccessTokens(ctx context.Context, projectId string, regionId string, instanceId string) ApiDeleteAllExpiredAccessTokensRequest + func (a DefaultAPIServiceMock) DeleteAllExpiredAccessTokensExecute(r ApiDeleteAllExpiredAccessTokensRequest) (*AccessTokenList, error) + func (a DefaultAPIServiceMock) DeleteLogsInstance(ctx context.Context, projectId string, regionId string, instanceId string) ApiDeleteLogsInstanceRequest + func (a DefaultAPIServiceMock) DeleteLogsInstanceExecute(r ApiDeleteLogsInstanceRequest) error + func (a DefaultAPIServiceMock) GetAccessToken(ctx context.Context, projectId string, regionId string, instanceId string, ...) ApiGetAccessTokenRequest + func (a DefaultAPIServiceMock) GetAccessTokenExecute(r ApiGetAccessTokenRequest) (*AccessToken, error) + func (a DefaultAPIServiceMock) GetLogsInstance(ctx context.Context, projectId string, regionId string, instanceId string) ApiGetLogsInstanceRequest + func (a DefaultAPIServiceMock) GetLogsInstanceExecute(r ApiGetLogsInstanceRequest) (*LogsInstance, error) + func (a DefaultAPIServiceMock) ListAccessTokens(ctx context.Context, projectId string, regionId string, instanceId string) ApiListAccessTokensRequest + func (a DefaultAPIServiceMock) ListAccessTokensExecute(r ApiListAccessTokensRequest) (*AccessTokenList, error) + func (a DefaultAPIServiceMock) ListLogsInstances(ctx context.Context, projectId string, regionId string) ApiListLogsInstancesRequest + func (a DefaultAPIServiceMock) ListLogsInstancesExecute(r ApiListLogsInstancesRequest) (*LogsInstancesList, error) + func (a DefaultAPIServiceMock) UpdateAccessToken(ctx context.Context, projectId string, regionId string, instanceId string, ...) ApiUpdateAccessTokenRequest + func (a DefaultAPIServiceMock) UpdateAccessTokenExecute(r ApiUpdateAccessTokenRequest) error + func (a DefaultAPIServiceMock) UpdateLogsInstance(ctx context.Context, projectId string, regionId string, instanceId string) ApiUpdateLogsInstanceRequest + func (a DefaultAPIServiceMock) UpdateLogsInstanceExecute(r ApiUpdateLogsInstanceRequest) (*LogsInstance, error) + type LogsInstance struct + Acl []string + Created time.Time + DatasourceUrl *string + Description *string + DisplayName string + Id string + IngestOtlpUrl *string + IngestUrl *string + QueryRangeUrl *string + QueryUrl *string + RetentionDays int32 + Status string + func NewLogsInstance(created time.Time, displayName string, id string, retentionDays int32, ...) *LogsInstance + func NewLogsInstanceWithDefaults() *LogsInstance + func (o *LogsInstance) GetAcl() []string + func (o *LogsInstance) GetAclOk() ([]string, bool) + func (o *LogsInstance) GetCreated() time.Time + func (o *LogsInstance) GetCreatedOk() (*time.Time, bool) + func (o *LogsInstance) GetDatasourceUrl() string + func (o *LogsInstance) GetDatasourceUrlOk() (*string, bool) + func (o *LogsInstance) GetDescription() string + func (o *LogsInstance) GetDescriptionOk() (*string, bool) + func (o *LogsInstance) GetDisplayName() string + func (o *LogsInstance) GetDisplayNameOk() (*string, bool) + func (o *LogsInstance) GetId() string + func (o *LogsInstance) GetIdOk() (*string, bool) + func (o *LogsInstance) GetIngestOtlpUrl() string + func (o *LogsInstance) GetIngestOtlpUrlOk() (*string, bool) + func (o *LogsInstance) GetIngestUrl() string + func (o *LogsInstance) GetIngestUrlOk() (*string, bool) + func (o *LogsInstance) GetQueryRangeUrl() string + func (o *LogsInstance) GetQueryRangeUrlOk() (*string, bool) + func (o *LogsInstance) GetQueryUrl() string + func (o *LogsInstance) GetQueryUrlOk() (*string, bool) + func (o *LogsInstance) GetRetentionDays() int32 + func (o *LogsInstance) GetRetentionDaysOk() (*int32, bool) + func (o *LogsInstance) GetStatus() string + func (o *LogsInstance) GetStatusOk() (*string, bool) + func (o *LogsInstance) HasAcl() bool + func (o *LogsInstance) HasDatasourceUrl() bool + func (o *LogsInstance) HasDescription() bool + func (o *LogsInstance) HasIngestOtlpUrl() bool + func (o *LogsInstance) HasIngestUrl() bool + func (o *LogsInstance) HasQueryRangeUrl() bool + func (o *LogsInstance) HasQueryUrl() bool + func (o *LogsInstance) SetAcl(v []string) + func (o *LogsInstance) SetCreated(v time.Time) + func (o *LogsInstance) SetDatasourceUrl(v string) + func (o *LogsInstance) SetDescription(v string) + func (o *LogsInstance) SetDisplayName(v string) + func (o *LogsInstance) SetId(v string) + func (o *LogsInstance) SetIngestOtlpUrl(v string) + func (o *LogsInstance) SetIngestUrl(v string) + func (o *LogsInstance) SetQueryRangeUrl(v string) + func (o *LogsInstance) SetQueryUrl(v string) + func (o *LogsInstance) SetRetentionDays(v int32) + func (o *LogsInstance) SetStatus(v string) + func (o *LogsInstance) UnmarshalJSON(data []byte) (err error) + func (o LogsInstance) MarshalJSON() ([]byte, error) + func (o LogsInstance) ToMap() (map[string]interface{}, error) + type LogsInstancesList struct + Instances []LogsInstance + func NewLogsInstancesList(instances []LogsInstance) *LogsInstancesList + func NewLogsInstancesListWithDefaults() *LogsInstancesList + func (o *LogsInstancesList) GetInstances() []LogsInstance + func (o *LogsInstancesList) GetInstancesOk() ([]LogsInstance, bool) + func (o *LogsInstancesList) SetInstances(v []LogsInstance) + func (o *LogsInstancesList) UnmarshalJSON(data []byte) (err error) + func (o LogsInstancesList) MarshalJSON() ([]byte, error) + func (o LogsInstancesList) ToMap() (map[string]interface{}, error) + type MappedNullable interface + ToMap func() (map[string]interface{}, error) + type NullableAccessToken struct + func NewNullableAccessToken(val *AccessToken) *NullableAccessToken + func (v *NullableAccessToken) Set(val *AccessToken) + func (v *NullableAccessToken) UnmarshalJSON(src []byte) error + func (v *NullableAccessToken) Unset() + func (v NullableAccessToken) Get() *AccessToken + func (v NullableAccessToken) IsSet() bool + func (v NullableAccessToken) MarshalJSON() ([]byte, error) + type NullableAccessTokenList struct + func NewNullableAccessTokenList(val *AccessTokenList) *NullableAccessTokenList + func (v *NullableAccessTokenList) Set(val *AccessTokenList) + func (v *NullableAccessTokenList) UnmarshalJSON(src []byte) error + func (v *NullableAccessTokenList) Unset() + func (v NullableAccessTokenList) Get() *AccessTokenList + func (v NullableAccessTokenList) IsSet() bool + func (v NullableAccessTokenList) 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 NullableCreateAccessTokenPayload struct + func NewNullableCreateAccessTokenPayload(val *CreateAccessTokenPayload) *NullableCreateAccessTokenPayload + func (v *NullableCreateAccessTokenPayload) Set(val *CreateAccessTokenPayload) + func (v *NullableCreateAccessTokenPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateAccessTokenPayload) Unset() + func (v NullableCreateAccessTokenPayload) Get() *CreateAccessTokenPayload + func (v NullableCreateAccessTokenPayload) IsSet() bool + func (v NullableCreateAccessTokenPayload) MarshalJSON() ([]byte, error) + type NullableCreateLogsInstancePayload struct + func NewNullableCreateLogsInstancePayload(val *CreateLogsInstancePayload) *NullableCreateLogsInstancePayload + func (v *NullableCreateLogsInstancePayload) Set(val *CreateLogsInstancePayload) + func (v *NullableCreateLogsInstancePayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateLogsInstancePayload) Unset() + func (v NullableCreateLogsInstancePayload) Get() *CreateLogsInstancePayload + func (v NullableCreateLogsInstancePayload) IsSet() bool + func (v NullableCreateLogsInstancePayload) 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 NullableLogsInstance struct + func NewNullableLogsInstance(val *LogsInstance) *NullableLogsInstance + func (v *NullableLogsInstance) Set(val *LogsInstance) + func (v *NullableLogsInstance) UnmarshalJSON(src []byte) error + func (v *NullableLogsInstance) Unset() + func (v NullableLogsInstance) Get() *LogsInstance + func (v NullableLogsInstance) IsSet() bool + func (v NullableLogsInstance) MarshalJSON() ([]byte, error) + type NullableLogsInstancesList struct + func NewNullableLogsInstancesList(val *LogsInstancesList) *NullableLogsInstancesList + func (v *NullableLogsInstancesList) Set(val *LogsInstancesList) + func (v *NullableLogsInstancesList) UnmarshalJSON(src []byte) error + func (v *NullableLogsInstancesList) Unset() + func (v NullableLogsInstancesList) Get() *LogsInstancesList + func (v NullableLogsInstancesList) IsSet() bool + func (v NullableLogsInstancesList) 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 NullableUpdateAccessTokenPayload struct + func NewNullableUpdateAccessTokenPayload(val *UpdateAccessTokenPayload) *NullableUpdateAccessTokenPayload + func (v *NullableUpdateAccessTokenPayload) Set(val *UpdateAccessTokenPayload) + func (v *NullableUpdateAccessTokenPayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAccessTokenPayload) Unset() + func (v NullableUpdateAccessTokenPayload) Get() *UpdateAccessTokenPayload + func (v NullableUpdateAccessTokenPayload) IsSet() bool + func (v NullableUpdateAccessTokenPayload) MarshalJSON() ([]byte, error) + type NullableUpdateLogsInstancePayload struct + func NewNullableUpdateLogsInstancePayload(val *UpdateLogsInstancePayload) *NullableUpdateLogsInstancePayload + func (v *NullableUpdateLogsInstancePayload) Set(val *UpdateLogsInstancePayload) + func (v *NullableUpdateLogsInstancePayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateLogsInstancePayload) Unset() + func (v NullableUpdateLogsInstancePayload) Get() *UpdateLogsInstancePayload + func (v NullableUpdateLogsInstancePayload) IsSet() bool + func (v NullableUpdateLogsInstancePayload) MarshalJSON() ([]byte, error) + type UpdateAccessTokenPayload struct + Description *string + DisplayName *string + func NewUpdateAccessTokenPayload() *UpdateAccessTokenPayload + func NewUpdateAccessTokenPayloadWithDefaults() *UpdateAccessTokenPayload + func (o *UpdateAccessTokenPayload) GetDescription() string + func (o *UpdateAccessTokenPayload) GetDescriptionOk() (*string, bool) + func (o *UpdateAccessTokenPayload) GetDisplayName() string + func (o *UpdateAccessTokenPayload) GetDisplayNameOk() (*string, bool) + func (o *UpdateAccessTokenPayload) HasDescription() bool + func (o *UpdateAccessTokenPayload) HasDisplayName() bool + func (o *UpdateAccessTokenPayload) SetDescription(v string) + func (o *UpdateAccessTokenPayload) SetDisplayName(v string) + func (o UpdateAccessTokenPayload) MarshalJSON() ([]byte, error) + func (o UpdateAccessTokenPayload) ToMap() (map[string]interface{}, error) + type UpdateLogsInstancePayload struct + Acl []string + Description *string + DisplayName *string + RetentionDays *int32 + func NewUpdateLogsInstancePayload() *UpdateLogsInstancePayload + func NewUpdateLogsInstancePayloadWithDefaults() *UpdateLogsInstancePayload + func (o *UpdateLogsInstancePayload) GetAcl() []string + func (o *UpdateLogsInstancePayload) GetAclOk() ([]string, bool) + func (o *UpdateLogsInstancePayload) GetDescription() string + func (o *UpdateLogsInstancePayload) GetDescriptionOk() (*string, bool) + func (o *UpdateLogsInstancePayload) GetDisplayName() string + func (o *UpdateLogsInstancePayload) GetDisplayNameOk() (*string, bool) + func (o *UpdateLogsInstancePayload) GetRetentionDays() int32 + func (o *UpdateLogsInstancePayload) GetRetentionDaysOk() (*int32, bool) + func (o *UpdateLogsInstancePayload) HasAcl() bool + func (o *UpdateLogsInstancePayload) HasDescription() bool + func (o *UpdateLogsInstancePayload) HasDisplayName() bool + func (o *UpdateLogsInstancePayload) HasRetentionDays() bool + func (o *UpdateLogsInstancePayload) SetAcl(v []string) + func (o *UpdateLogsInstancePayload) SetDescription(v string) + func (o *UpdateLogsInstancePayload) SetDisplayName(v string) + func (o *UpdateLogsInstancePayload) SetRetentionDays(v int32) + func (o UpdateLogsInstancePayload) MarshalJSON() ([]byte, error) + func (o UpdateLogsInstancePayload) ToMap() (map[string]interface{}, error)