Skip to content

Commit

Permalink
tag version v0.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BeryJu committed Jan 10, 2025
1 parent a8d4095 commit b541e80
Show file tree
Hide file tree
Showing 114 changed files with 166 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.21.1"
VERSION = "0.22.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.21.1
- API version: 0.22.0
- Package version: 1.0.0
- Build package: org.openapitools.codegen.languages.GoClientCodegen

Expand Down
16 changes: 15 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.21.1
version: 0.22.0
servers:
- url: /
paths:
Expand Down Expand Up @@ -1003,6 +1003,20 @@ paths:
description: Optionally get DNS Records for hostname
type: string
style: form
- explode: true
in: query
name: type
required: false
schema:
type: string
style: form
- explode: true
in: query
name: uid
required: false
schema:
type: string
style: form
responses:
"200":
content:
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.

20 changes: 19 additions & 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.

8 changes: 6 additions & 2 deletions api/docs/RolesDnsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ No authorization required

## DnsGetRecords

> DnsAPIRecordsGetOutput DnsGetRecords(ctx).Zone(zone).Hostname(hostname).Execute()
> DnsAPIRecordsGetOutput DnsGetRecords(ctx).Zone(zone).Hostname(hostname).Type_(type_).Uid(uid).Execute()
DNS Records

Expand All @@ -166,10 +166,12 @@ import (
func main() {
zone := "zone_example" // string | (optional)
hostname := "hostname_example" // string | Optionally get DNS Records for hostname (optional)
type_ := "type__example" // string | (optional)
uid := "uid_example" // string | (optional)

configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.RolesDnsApi.DnsGetRecords(context.Background()).Zone(zone).Hostname(hostname).Execute()
resp, r, err := apiClient.RolesDnsApi.DnsGetRecords(context.Background()).Zone(zone).Hostname(hostname).Type_(type_).Uid(uid).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `RolesDnsApi.DnsGetRecords``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
Expand All @@ -192,6 +194,8 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**zone** | **string** | |
**hostname** | **string** | Optionally get DNS Records for hostname |
**type_** | **string** | |
**uid** | **string** | |

### Return type

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.

2 changes: 1 addition & 1 deletion api/model_api_api_tool_ping_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_tool_ping_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_tool_portmap_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_tool_portmap_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_tool_portmap_output_port.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_tool_traceroute_input.go

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

Loading

0 comments on commit b541e80

Please sign in to comment.