Skip to content

Commit

Permalink
tag version v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BeryJu committed Nov 3, 2024
1 parent d89be61 commit b56a93f
Show file tree
Hide file tree
Showing 115 changed files with 163 additions and 191 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.13.4"
VERSION = "0.14.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.13.4
- API version: 0.14.0
- Package version: 1.0.0
- Build package: org.openapitools.codegen.languages.GoClientCodegen

Expand Down
24 changes: 11 additions & 13 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.13.4
version: 0.14.0
servers:
- url: /
paths:
Expand Down Expand Up @@ -2866,8 +2866,8 @@ components:
DnsAPIZone:
example:
handlerConfigs:
- key: handlerConfigs
- key: handlerConfigs
- key: ""
- key: ""
authoritative: true
hook: hook
defaultTTL: 0
Expand All @@ -2880,8 +2880,7 @@ components:
type: integer
handlerConfigs:
items:
additionalProperties:
type: string
additionalProperties: {}
type: object
nullable: true
type: array
Expand All @@ -2900,15 +2899,15 @@ components:
example:
zones:
- handlerConfigs:
- key: handlerConfigs
- key: handlerConfigs
- key: ""
- key: ""
authoritative: true
hook: hook
defaultTTL: 0
name: name
- handlerConfigs:
- key: handlerConfigs
- key: handlerConfigs
- key: ""
- key: ""
authoritative: true
hook: hook
defaultTTL: 0
Expand All @@ -2925,8 +2924,8 @@ components:
DnsAPIZonesPutInput:
example:
handlerConfigs:
- key: handlerConfigs
- key: handlerConfigs
- key: ""
- key: ""
authoritative: true
hook: hook
defaultTTL: 0
Expand All @@ -2938,8 +2937,7 @@ components:
type: integer
handlerConfigs:
items:
additionalProperties:
type: string
additionalProperties: {}
type: object
nullable: true
type: array
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.

10 changes: 5 additions & 5 deletions api/docs/DnsAPIZone.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Authoritative** | **bool** | |
**DefaultTTL** | **int32** | |
**HandlerConfigs** | **[]map[string]string** | |
**HandlerConfigs** | **[]map[string]interface{}** | |
**Hook** | **string** | |
**Name** | **string** | |

## Methods

### NewDnsAPIZone

`func NewDnsAPIZone(authoritative bool, defaultTTL int32, handlerConfigs []map[string]string, hook string, name string, ) *DnsAPIZone`
`func NewDnsAPIZone(authoritative bool, defaultTTL int32, handlerConfigs []map[string]interface{}, hook string, name string, ) *DnsAPIZone`

NewDnsAPIZone instantiates a new DnsAPIZone object
This constructor will assign default values to properties that have it defined,
Expand Down Expand Up @@ -71,20 +71,20 @@ SetDefaultTTL sets DefaultTTL field to given value.

### GetHandlerConfigs

`func (o *DnsAPIZone) GetHandlerConfigs() []map[string]string`
`func (o *DnsAPIZone) GetHandlerConfigs() []map[string]interface{}`

GetHandlerConfigs returns the HandlerConfigs field if non-nil, zero value otherwise.

### GetHandlerConfigsOk

`func (o *DnsAPIZone) GetHandlerConfigsOk() (*[]map[string]string, bool)`
`func (o *DnsAPIZone) GetHandlerConfigsOk() (*[]map[string]interface{}, bool)`

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

### SetHandlerConfigs

`func (o *DnsAPIZone) SetHandlerConfigs(v []map[string]string)`
`func (o *DnsAPIZone) SetHandlerConfigs(v []map[string]interface{})`

SetHandlerConfigs sets HandlerConfigs field to given value.

Expand Down
10 changes: 5 additions & 5 deletions api/docs/DnsAPIZonesPutInput.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Authoritative** | **bool** | |
**DefaultTTL** | **int32** | |
**HandlerConfigs** | **[]map[string]string** | |
**HandlerConfigs** | **[]map[string]interface{}** | |
**Hook** | **string** | |

## Methods

### NewDnsAPIZonesPutInput

`func NewDnsAPIZonesPutInput(authoritative bool, defaultTTL int32, handlerConfigs []map[string]string, hook string, ) *DnsAPIZonesPutInput`
`func NewDnsAPIZonesPutInput(authoritative bool, defaultTTL int32, handlerConfigs []map[string]interface{}, hook string, ) *DnsAPIZonesPutInput`

NewDnsAPIZonesPutInput instantiates a new DnsAPIZonesPutInput object
This constructor will assign default values to properties that have it defined,
Expand Down Expand Up @@ -70,20 +70,20 @@ SetDefaultTTL sets DefaultTTL field to given value.

### GetHandlerConfigs

`func (o *DnsAPIZonesPutInput) GetHandlerConfigs() []map[string]string`
`func (o *DnsAPIZonesPutInput) GetHandlerConfigs() []map[string]interface{}`

GetHandlerConfigs returns the HandlerConfigs field if non-nil, zero value otherwise.

### GetHandlerConfigsOk

`func (o *DnsAPIZonesPutInput) GetHandlerConfigsOk() (*[]map[string]string, bool)`
`func (o *DnsAPIZonesPutInput) GetHandlerConfigsOk() (*[]map[string]interface{}, bool)`

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

### SetHandlerConfigs

`func (o *DnsAPIZonesPutInput) SetHandlerConfigs(v []map[string]string)`
`func (o *DnsAPIZonesPutInput) SetHandlerConfigs(v []map[string]interface{})`

SetHandlerConfigs sets HandlerConfigs field to given value.

Expand Down
2 changes: 1 addition & 1 deletion api/docs/RolesDnsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ import (

func main() {
zone := "zone_example" // string |
dnsAPIZonesPutInput := *openapiclient.NewDnsAPIZonesPutInput(false, int32(123), []map[string]string{map[string]string{"key": "Inner_example"}}, "Hook_example") // DnsAPIZonesPutInput | (optional)
dnsAPIZonesPutInput := *openapiclient.NewDnsAPIZonesPutInput(false, int32(123), []map[string]interface{}{map[string]interface{}{"key": interface{}(123)}}, "Hook_example") // DnsAPIZonesPutInput | (optional)

configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
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 b56a93f

Please sign in to comment.