Skip to content

Commit

Permalink
Automatic api update 539281
Browse files Browse the repository at this point in the history
  • Loading branch information
begetSupport committed Nov 29, 2023
1 parent 139ee00 commit 9f1edd5
Show file tree
Hide file tree
Showing 68 changed files with 334 additions and 68 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ 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: v1.1.1
- Package version: v1.1.1
- API version: v1.2.0
- Package version: v1.2.0
- Build package: org.openapitools.codegen.languages.GoClientCodegen

## Installation
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.1.1
v1.2.0
20 changes: 19 additions & 1 deletion api/openapi.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.0.3
info:
title: API Управляемых сервисов
version: v1.1.1
version: v1.2.0
servers:
- url: https://api.beget.com
security:
Expand Down Expand Up @@ -704,6 +704,7 @@ components:
price_day: 0.8008281904610115
id: id
manage_enabled: true
region: region
configuration_id: configuration_id
slug: slug
migrating: true
Expand Down Expand Up @@ -744,6 +745,10 @@ components:
type: string
mysql_params:
$ref: '#/components/schemas/Mysql_CreateParams'
extra:
type: string
region:
type: string
type: object
Cloud_CreateResponse:
example:
Expand Down Expand Up @@ -808,6 +813,7 @@ components:
price_day: 0.8008281904610115
id: id
manage_enabled: true
region: region
configuration_id: configuration_id
slug: slug
migrating: true
Expand All @@ -830,6 +836,7 @@ components:
version: version
cpu_count: 7
id: id
region: region
mysql5:
memory: 5
display_version: display_version
Expand All @@ -845,6 +852,7 @@ components:
version: version
cpu_count: 7
id: id
region: region
mysql5:
memory: 5
display_version: display_version
Expand Down Expand Up @@ -917,6 +925,7 @@ components:
price_day: 0.8008281904610115
id: id
manage_enabled: true
region: region
configuration_id: configuration_id
slug: slug
migrating: true
Expand Down Expand Up @@ -978,6 +987,7 @@ components:
price_day: 0.8008281904610115
id: id
manage_enabled: true
region: region
configuration_id: configuration_id
slug: slug
migrating: true
Expand Down Expand Up @@ -1048,6 +1058,7 @@ components:
price_day: 0.8008281904610115
id: id
manage_enabled: true
region: region
configuration_id: configuration_id
slug: slug
migrating: true
Expand Down Expand Up @@ -1126,6 +1137,7 @@ components:
price_day: 0.8008281904610115
id: id
manage_enabled: true
region: region
configuration_id: configuration_id
slug: slug
migrating: true
Expand Down Expand Up @@ -1172,6 +1184,8 @@ components:
type: boolean
migrating:
type: boolean
region:
type: string
type: object
Cloud_ServiceConfiguration:
example:
Expand All @@ -1184,6 +1198,7 @@ components:
version: version
cpu_count: 7
id: id
region: region
mysql5:
memory: 5
display_version: display_version
Expand All @@ -1199,6 +1214,8 @@ components:
price_month:
format: double
type: number
region:
type: string
mysql5:
$ref: '#/components/schemas/Mysql_Mysql5Configuration'
mysql8:
Expand Down Expand Up @@ -1273,6 +1290,7 @@ components:
price_day: 0.8008281904610115
id: id
manage_enabled: true
region: region
configuration_id: configuration_id
slug: slug
migrating: true
Expand Down
2 changes: 1 addition & 1 deletion api_cloud_service.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_mysql_service.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_mysql_statistic_service.go

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

4 changes: 2 additions & 2 deletions client.go

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

4 changes: 2 additions & 2 deletions configuration.go

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

52 changes: 52 additions & 0 deletions docs/CloudCreateRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ Name | Type | Description | Notes
**DisplayName** | Pointer to **string** | | [optional]
**Description** | Pointer to **string** | | [optional]
**MysqlParams** | Pointer to [**MysqlCreateParams**](MysqlCreateParams.md) | | [optional]
**Extra** | Pointer to **string** | | [optional]
**Region** | Pointer to **string** | | [optional]

## Methods

Expand Down Expand Up @@ -128,6 +130,56 @@ SetMysqlParams sets MysqlParams field to given value.

HasMysqlParams returns a boolean if a field has been set.

### GetExtra

`func (o *CloudCreateRequest) GetExtra() string`

GetExtra returns the Extra field if non-nil, zero value otherwise.

### GetExtraOk

`func (o *CloudCreateRequest) GetExtraOk() (*string, bool)`

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

### SetExtra

`func (o *CloudCreateRequest) SetExtra(v string)`

SetExtra sets Extra field to given value.

### HasExtra

`func (o *CloudCreateRequest) HasExtra() bool`

HasExtra returns a boolean if a field has been set.

### GetRegion

`func (o *CloudCreateRequest) GetRegion() string`

GetRegion returns the Region field if non-nil, zero value otherwise.

### GetRegionOk

`func (o *CloudCreateRequest) GetRegionOk() (*string, bool)`

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

### SetRegion

`func (o *CloudCreateRequest) SetRegion(v string)`

SetRegion sets Region field to given value.

### HasRegion

`func (o *CloudCreateRequest) HasRegion() bool`

HasRegion 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: 26 additions & 0 deletions docs/CloudService.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Name | Type | Description | Notes
**MonitorableResources** | Pointer to **[]string** | | [optional]
**Unblocking** | Pointer to **bool** | | [optional]
**Migrating** | Pointer to **bool** | | [optional]
**Region** | Pointer to **string** | | [optional]

## Methods

Expand Down Expand Up @@ -414,6 +415,31 @@ SetMigrating sets Migrating field to given value.

HasMigrating returns a boolean if a field has been set.

### GetRegion

`func (o *CloudService) GetRegion() string`

GetRegion returns the Region field if non-nil, zero value otherwise.

### GetRegionOk

`func (o *CloudService) GetRegionOk() (*string, bool)`

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

### SetRegion

`func (o *CloudService) SetRegion(v string)`

SetRegion sets Region field to given value.

### HasRegion

`func (o *CloudService) HasRegion() bool`

HasRegion 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: 26 additions & 0 deletions docs/CloudServiceConfiguration.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Name | Type | Description | Notes
**Id** | Pointer to **string** | | [optional]
**PriceDay** | Pointer to **float64** | | [optional]
**PriceMonth** | Pointer to **float64** | | [optional]
**Region** | Pointer to **string** | | [optional]
**Mysql5** | Pointer to [**MysqlMysql5Configuration**](MysqlMysql5Configuration.md) | | [optional]
**Mysql8** | Pointer to [**MysqlMysql8Configuration**](MysqlMysql8Configuration.md) | | [optional]

Expand Down Expand Up @@ -104,6 +105,31 @@ SetPriceMonth sets PriceMonth field to given value.

HasPriceMonth returns a boolean if a field has been set.

### GetRegion

`func (o *CloudServiceConfiguration) GetRegion() string`

GetRegion returns the Region field if non-nil, zero value otherwise.

### GetRegionOk

`func (o *CloudServiceConfiguration) GetRegionOk() (*string, bool)`

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

### SetRegion

`func (o *CloudServiceConfiguration) SetRegion(v string)`

SetRegion sets Region field to given value.

### HasRegion

`func (o *CloudServiceConfiguration) HasRegion() bool`

HasRegion returns a boolean if a field has been set.

### GetMysql5

`func (o *CloudServiceConfiguration) GetMysql5() MysqlMysql5Configuration`
Expand Down
2 changes: 1 addition & 1 deletion model_cloud_change_configuration_request.go

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

2 changes: 1 addition & 1 deletion model_cloud_change_configuration_response.go

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

2 changes: 1 addition & 1 deletion model_cloud_change_configuration_response_error.go

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

Loading

0 comments on commit 9f1edd5

Please sign in to comment.