Skip to content

Commit

Permalink
tag version v0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BeryJu committed Nov 23, 2024
1 parent 6dfd3dc commit cd20350
Show file tree
Hide file tree
Showing 112 changed files with 316 additions and 178 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
PWD = $(shell pwd)
UID = $(shell id -u)
GID = $(shell id -g)
VERSION = "0.14.1"
VERSION = "0.15.0"
LD_FLAGS = -X beryju.io/gravity/pkg/extconfig.Version=${VERSION}
GO_FLAGS = -ldflags "${LD_FLAGS}" -v
SCHEMA_FILE = schema.yml
Expand Down
2 changes: 1 addition & 1 deletion api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
## Overview
This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client.

- API version: 0.14.0
- API version: 0.15.0
- Package version: 1.0.0
- Build package: org.openapitools.codegen.languages.GoClientCodegen

Expand Down
21 changes: 17 additions & 4 deletions api/api/openapi.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.0.3
info:
title: gravity
version: 0.14.0
version: 0.15.0
servers:
- url: /
paths:
Expand Down Expand Up @@ -1706,24 +1706,37 @@ components:
ApiAPILogMessage:
example:
node: node
level: level
logger: logger
time: 2000-01-23T04:56:07.000+00:00
message: message
properties:
level:
type: string
logger:
type: string
message:
type: string
node:
type: string
time:
format: date-time
type: string
type: object
ApiAPILogMessages:
example:
isJSON: true
messages:
- node: node
level: level
logger: logger
time: 2000-01-23T04:56:07.000+00:00
message: message
- node: node
level: level
logger: logger
time: 2000-01-23T04:56:07.000+00:00
message: message
properties:
isJSON:
type: boolean
messages:
items:
$ref: '#/components/schemas/ApiAPILogMessage'
Expand Down
2 changes: 1 addition & 1 deletion api/api_cluster_instances.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/api_roles_api.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/api_roles_backup.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/api_roles_dhcp.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/api_roles_discovery.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/api_roles_dns.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/api_roles_etcd.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/api_roles_monitoring.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/api_roles_tftp.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/api_roles_tsdb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions api/client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/configuration.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

78 changes: 78 additions & 0 deletions api/docs/ApiAPILogMessage.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Level** | Pointer to **string** | | [optional]
**Logger** | Pointer to **string** | | [optional]
**Message** | Pointer to **string** | | [optional]
**Node** | Pointer to **string** | | [optional]
**Time** | Pointer to **time.Time** | | [optional]

## Methods

Expand All @@ -26,6 +29,56 @@ NewApiAPILogMessageWithDefaults instantiates a new ApiAPILogMessage object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set

### GetLevel

`func (o *ApiAPILogMessage) GetLevel() string`

GetLevel returns the Level field if non-nil, zero value otherwise.

### GetLevelOk

`func (o *ApiAPILogMessage) GetLevelOk() (*string, bool)`

GetLevelOk returns a tuple with the Level field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetLevel

`func (o *ApiAPILogMessage) SetLevel(v string)`

SetLevel sets Level field to given value.

### HasLevel

`func (o *ApiAPILogMessage) HasLevel() bool`

HasLevel returns a boolean if a field has been set.

### GetLogger

`func (o *ApiAPILogMessage) GetLogger() string`

GetLogger returns the Logger field if non-nil, zero value otherwise.

### GetLoggerOk

`func (o *ApiAPILogMessage) GetLoggerOk() (*string, bool)`

GetLoggerOk returns a tuple with the Logger field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetLogger

`func (o *ApiAPILogMessage) SetLogger(v string)`

SetLogger sets Logger field to given value.

### HasLogger

`func (o *ApiAPILogMessage) HasLogger() bool`

HasLogger returns a boolean if a field has been set.

### GetMessage

`func (o *ApiAPILogMessage) GetMessage() string`
Expand Down Expand Up @@ -76,6 +129,31 @@ SetNode sets Node field to given value.

HasNode returns a boolean if a field has been set.

### GetTime

`func (o *ApiAPILogMessage) GetTime() time.Time`

GetTime returns the Time field if non-nil, zero value otherwise.

### GetTimeOk

`func (o *ApiAPILogMessage) GetTimeOk() (*time.Time, bool)`

GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetTime

`func (o *ApiAPILogMessage) SetTime(v time.Time)`

SetTime sets Time field to given value.

### HasTime

`func (o *ApiAPILogMessage) HasTime() bool`

HasTime returns a boolean if a field has been set.


[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
26 changes: 0 additions & 26 deletions api/docs/ApiAPILogMessages.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**IsJSON** | Pointer to **bool** | | [optional]
**Messages** | Pointer to [**[]ApiAPILogMessage**](ApiAPILogMessage.md) | | [optional]

## Methods
Expand All @@ -26,31 +25,6 @@ NewApiAPILogMessagesWithDefaults instantiates a new ApiAPILogMessages object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set

### GetIsJSON

`func (o *ApiAPILogMessages) GetIsJSON() bool`

GetIsJSON returns the IsJSON field if non-nil, zero value otherwise.

### GetIsJSONOk

`func (o *ApiAPILogMessages) GetIsJSONOk() (*bool, bool)`

GetIsJSONOk returns a tuple with the IsJSON field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetIsJSON

`func (o *ApiAPILogMessages) SetIsJSON(v bool)`

SetIsJSON sets IsJSON field to given value.

### HasIsJSON

`func (o *ApiAPILogMessages) HasIsJSON() bool`

HasIsJSON returns a boolean if a field has been set.

### GetMessages

`func (o *ApiAPILogMessages) GetMessages() []ApiAPILogMessage`
Expand Down
2 changes: 1 addition & 1 deletion api/model_api_api_export_input.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/model_api_api_export_output.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/model_api_api_import_input.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit cd20350

Please sign in to comment.