Skip to content

Commit

Permalink
tag version v0.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
BeryJu committed Jan 5, 2025
1 parent aef77f1 commit 42ca878
Show file tree
Hide file tree
Showing 115 changed files with 241 additions and 122 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.20.0"
VERSION = "0.20.1"
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.20.0
- API version: 0.20.1
- Package version: 1.0.0
- Build package: org.openapitools.codegen.languages.GoClientCodegen

Expand Down
11 changes: 10 additions & 1 deletion 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.20.0
version: 0.20.1
servers:
- url: /
paths:
Expand Down Expand Up @@ -2319,6 +2319,7 @@ components:
address: address
dnsZone: dnsZone
scopeKey: scopeKey
description: description
expiry: 0
addressLeaseTime: addressLeaseTime
info:
Expand All @@ -2328,6 +2329,8 @@ components:
type: string
addressLeaseTime:
type: string
description:
type: string
dnsZone:
type: string
expiry:
Expand All @@ -2343,6 +2346,7 @@ components:
required:
- address
- addressLeaseTime
- description
- hostname
- identifier
- scopeKey
Expand All @@ -2362,6 +2366,7 @@ components:
address: address
dnsZone: dnsZone
scopeKey: scopeKey
description: description
expiry: 0
addressLeaseTime: addressLeaseTime
info:
Expand All @@ -2371,6 +2376,7 @@ components:
address: address
dnsZone: dnsZone
scopeKey: scopeKey
description: description
expiry: 0
addressLeaseTime: addressLeaseTime
info:
Expand All @@ -2389,6 +2395,7 @@ components:
hostname: hostname
address: address
dnsZone: dnsZone
description: description
expiry: 0
addressLeaseTime: addressLeaseTime
properties:
Expand All @@ -2398,6 +2405,8 @@ components:
addressLeaseTime:
maxLength: 40
type: string
description:
type: string
dnsZone:
maxLength: 255
type: string
Expand Down
2 changes: 1 addition & 1 deletion api/api_cluster.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_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.

23 changes: 22 additions & 1 deletion api/docs/DhcpAPILease.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Address** | **string** | |
**AddressLeaseTime** | **string** | |
**Description** | **string** | |
**DnsZone** | Pointer to **string** | | [optional]
**Expiry** | Pointer to **int32** | | [optional]
**Hostname** | **string** | |
Expand All @@ -17,7 +18,7 @@ Name | Type | Description | Notes

### NewDhcpAPILease

`func NewDhcpAPILease(address string, addressLeaseTime string, hostname string, identifier string, scopeKey string, ) *DhcpAPILease`
`func NewDhcpAPILease(address string, addressLeaseTime string, description string, hostname string, identifier string, scopeKey string, ) *DhcpAPILease`

NewDhcpAPILease instantiates a new DhcpAPILease object
This constructor will assign default values to properties that have it defined,
Expand Down Expand Up @@ -72,6 +73,26 @@ and a boolean to check if the value has been set.
SetAddressLeaseTime sets AddressLeaseTime field to given value.


### GetDescription

`func (o *DhcpAPILease) GetDescription() string`

GetDescription returns the Description field if non-nil, zero value otherwise.

### GetDescriptionOk

`func (o *DhcpAPILease) GetDescriptionOk() (*string, bool)`

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

### SetDescription

`func (o *DhcpAPILease) SetDescription(v string)`

SetDescription sets Description field to given value.


### GetDnsZone

`func (o *DhcpAPILease) GetDnsZone() string`
Expand Down
26 changes: 26 additions & 0 deletions api/docs/DhcpAPILeasesPutInput.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Address** | **string** | |
**AddressLeaseTime** | **string** | |
**Description** | Pointer to **string** | | [optional]
**DnsZone** | Pointer to **string** | | [optional]
**Expiry** | Pointer to **int32** | | [optional]
**Hostname** | **string** | |
Expand Down Expand Up @@ -69,6 +70,31 @@ and a boolean to check if the value has been set.
SetAddressLeaseTime sets AddressLeaseTime field to given value.


### GetDescription

`func (o *DhcpAPILeasesPutInput) GetDescription() string`

GetDescription returns the Description field if non-nil, zero value otherwise.

### GetDescriptionOk

`func (o *DhcpAPILeasesPutInput) GetDescriptionOk() (*string, bool)`

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

### SetDescription

`func (o *DhcpAPILeasesPutInput) SetDescription(v string)`

SetDescription sets Description field to given value.

### HasDescription

`func (o *DhcpAPILeasesPutInput) HasDescription() bool`

HasDescription returns a boolean if a field has been set.

### GetDnsZone

`func (o *DhcpAPILeasesPutInput) GetDnsZone() string`
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.

2 changes: 1 addition & 1 deletion api/model_api_api_members_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_role_config_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_role_config_output.go

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

Loading

0 comments on commit 42ca878

Please sign in to comment.