Skip to content

Commit

Permalink
tag version v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BeryJu committed Dec 19, 2023
1 parent 7e3b66d commit d0adac3
Show file tree
Hide file tree
Showing 104 changed files with 191 additions and 409 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.7.0"
VERSION = "0.8.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.6.18
- API version: 0.8.0
- Package version: 1.0.0
- Build package: org.openapitools.codegen.languages.GoClientCodegen

Expand Down
30 changes: 16 additions & 14 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.6.18
version: 0.8.0
servers:
- url: /
paths:
Expand Down Expand Up @@ -1684,17 +1684,19 @@ components:
type: object
ApiAPIToolPingOutput:
example:
maxRtt: ""
avgRtt: ""
packetLoss: 6.027456183070403
packetsRecvDuplicates: 5
stdDevRtt: ""
packetsRecv: 1
packetsSent: 5
minRtt: 0
properties:
avgRtt: {}
maxRtt: {}
maxRtt: 6
avgRtt: 0
packetLoss: 5.962133916683182
packetsRecvDuplicates: 2
stdDevRtt: 9
packetsRecv: 5
packetsSent: 7
minRtt: 1
properties:
avgRtt:
type: integer
maxRtt:
type: integer
minRtt:
type: integer
packetLoss:
Expand All @@ -1705,7 +1707,8 @@ components:
type: integer
packetsSent:
type: integer
stdDevRtt: {}
stdDevRtt:
type: integer
type: object
ApiAPIToolPortmapInput:
example:
Expand Down Expand Up @@ -2893,7 +2896,6 @@ components:
description: Status text.
type: string
type: object
TimeDuration: {}
TsdbAPIRoleConfigInput:
example:
config:
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_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.

54 changes: 12 additions & 42 deletions api/docs/ApiAPIToolPingOutput.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**AvgRtt** | Pointer to **interface{}** | | [optional]
**MaxRtt** | Pointer to **interface{}** | | [optional]
**AvgRtt** | Pointer to **int32** | | [optional]
**MaxRtt** | Pointer to **int32** | | [optional]
**MinRtt** | Pointer to **int32** | | [optional]
**PacketLoss** | Pointer to **float32** | | [optional]
**PacketsRecv** | Pointer to **int32** | | [optional]
**PacketsRecvDuplicates** | Pointer to **int32** | | [optional]
**PacketsSent** | Pointer to **int32** | | [optional]
**StdDevRtt** | Pointer to **interface{}** | | [optional]
**StdDevRtt** | Pointer to **int32** | | [optional]

## Methods

Expand All @@ -34,20 +34,20 @@ but it doesn't guarantee that properties required by API are set

### GetAvgRtt

`func (o *ApiAPIToolPingOutput) GetAvgRtt() interface{}`
`func (o *ApiAPIToolPingOutput) GetAvgRtt() int32`

GetAvgRtt returns the AvgRtt field if non-nil, zero value otherwise.

### GetAvgRttOk

`func (o *ApiAPIToolPingOutput) GetAvgRttOk() (*interface{}, bool)`
`func (o *ApiAPIToolPingOutput) GetAvgRttOk() (*int32, bool)`

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

### SetAvgRtt

`func (o *ApiAPIToolPingOutput) SetAvgRtt(v interface{})`
`func (o *ApiAPIToolPingOutput) SetAvgRtt(v int32)`

SetAvgRtt sets AvgRtt field to given value.

Expand All @@ -57,32 +57,22 @@ SetAvgRtt sets AvgRtt field to given value.

HasAvgRtt returns a boolean if a field has been set.

### SetAvgRttNil

`func (o *ApiAPIToolPingOutput) SetAvgRttNil(b bool)`

SetAvgRttNil sets the value for AvgRtt to be an explicit nil

### UnsetAvgRtt
`func (o *ApiAPIToolPingOutput) UnsetAvgRtt()`

UnsetAvgRtt ensures that no value is present for AvgRtt, not even an explicit nil
### GetMaxRtt

`func (o *ApiAPIToolPingOutput) GetMaxRtt() interface{}`
`func (o *ApiAPIToolPingOutput) GetMaxRtt() int32`

GetMaxRtt returns the MaxRtt field if non-nil, zero value otherwise.

### GetMaxRttOk

`func (o *ApiAPIToolPingOutput) GetMaxRttOk() (*interface{}, bool)`
`func (o *ApiAPIToolPingOutput) GetMaxRttOk() (*int32, bool)`

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

### SetMaxRtt

`func (o *ApiAPIToolPingOutput) SetMaxRtt(v interface{})`
`func (o *ApiAPIToolPingOutput) SetMaxRtt(v int32)`

SetMaxRtt sets MaxRtt field to given value.

Expand All @@ -92,16 +82,6 @@ SetMaxRtt sets MaxRtt field to given value.

HasMaxRtt returns a boolean if a field has been set.

### SetMaxRttNil

`func (o *ApiAPIToolPingOutput) SetMaxRttNil(b bool)`

SetMaxRttNil sets the value for MaxRtt to be an explicit nil

### UnsetMaxRtt
`func (o *ApiAPIToolPingOutput) UnsetMaxRtt()`

UnsetMaxRtt ensures that no value is present for MaxRtt, not even an explicit nil
### GetMinRtt

`func (o *ApiAPIToolPingOutput) GetMinRtt() int32`
Expand Down Expand Up @@ -229,20 +209,20 @@ HasPacketsSent returns a boolean if a field has been set.

### GetStdDevRtt

`func (o *ApiAPIToolPingOutput) GetStdDevRtt() interface{}`
`func (o *ApiAPIToolPingOutput) GetStdDevRtt() int32`

GetStdDevRtt returns the StdDevRtt field if non-nil, zero value otherwise.

### GetStdDevRttOk

`func (o *ApiAPIToolPingOutput) GetStdDevRttOk() (*interface{}, bool)`
`func (o *ApiAPIToolPingOutput) GetStdDevRttOk() (*int32, bool)`

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

### SetStdDevRtt

`func (o *ApiAPIToolPingOutput) SetStdDevRtt(v interface{})`
`func (o *ApiAPIToolPingOutput) SetStdDevRtt(v int32)`

SetStdDevRtt sets StdDevRtt field to given value.

Expand All @@ -252,16 +232,6 @@ SetStdDevRtt sets StdDevRtt field to given value.

HasStdDevRtt returns a boolean if a field has been set.

### SetStdDevRttNil

`func (o *ApiAPIToolPingOutput) SetStdDevRttNil(b bool)`

SetStdDevRttNil sets the value for StdDevRtt to be an explicit nil

### UnsetStdDevRtt
`func (o *ApiAPIToolPingOutput) UnsetStdDevRtt()`

UnsetStdDevRtt ensures that no value is present for StdDevRtt, not even an explicit nil

[[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
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.

2 changes: 1 addition & 1 deletion api/model_api_api_log_message.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_log_messages.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_member.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_member_join_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_member_join_output.go

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

Loading

0 comments on commit d0adac3

Please sign in to comment.