Skip to content

Commit 2175c9a

Browse files
authored
Merge pull request #139 from metal-stack/auto-generate/v0.39.5
Bump metal-api to version v0.39.5
2 parents 1ba0f8b + 0b86890 commit 2175c9a

359 files changed

Lines changed: 1095 additions & 365 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/auto_generate.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
13-
- name: Set up Python 3.8
14-
uses: actions/setup-python@v1
12+
- uses: actions/checkout@v4
13+
- name: Set up Python 3.10
14+
uses: actions/setup-python@v5
1515
with:
16-
python-version: 3.8
16+
python-version: "3.10"
1717
- name: Generate
1818
run: |
1919
if ! which yq; then

.github/workflows/master.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
13-
- name: Set up Python 3.8
14-
uses: actions/setup-python@v1
12+
- uses: actions/checkout@v4
13+
- name: Set up Python 3.10
14+
uses: actions/setup-python@v5
1515
with:
16-
python-version: 3.8
16+
python-version: "3.10"
1717
- name: Test
1818
run: |
1919
pip install .[dev]

.github/workflows/pull_request.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
13-
- name: Set up Python 3.8
14-
uses: actions/setup-python@v1
12+
- uses: actions/checkout@v4
13+
- name: Set up Python 3.10
14+
uses: actions/setup-python@v5
1515
with:
16-
python-version: 3.8
16+
python-version: "3.10"
1717
- name: Test
1818
run: |
1919
pip install .[dev]

docs/MetalSwitchBGPPortState.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# MetalSwitchBGPPortState
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**accepted_prefix_counter** | **int** | |
7+
**bgp_state** | **str** | |
8+
**bgp_timer_up_established** | **int** | |
9+
**neighbor** | **str** | |
10+
**peer_group** | **str** | |
11+
**sent_prefix_counter** | **int** | |
12+
**vrf_name** | **str** | |
13+
14+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
15+
16+

docs/V1SwitchBGPPortState.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# V1SwitchBGPPortState
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**accepted_prefix_counter** | **int** | |
7+
**bgp_state** | **str** | |
8+
**bgp_timer_up_established** | **int** | |
9+
**neighbor** | **str** | |
10+
**peer_group** | **str** | |
11+
**sent_prefix_counter** | **int** | |
12+
**vrf_name** | **str** | |
13+
14+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
15+
16+

docs/V1SwitchNic.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**actual** | **str** | the current state of the nic |
7+
**bgp_port_state** | [**MetalSwitchBGPPortState**](MetalSwitchBGPPortState.md) | the current bgp port state | [optional]
78
**filter** | [**V1BGPFilter**](V1BGPFilter.md) | configures the bgp filter applied at the switch port | [optional]
89
**identifier** | **str** | the identifier of this network interface |
910
**mac** | **str** | the mac address of this network interface |

docs/V1SwitchNotifyRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6+
**bgp_port_states** | [**dict(str, V1SwitchBGPPortState)**](V1SwitchBGPPortState.md) | the current bgp port states | [optional]
67
**error** | **str** | |
78
**port_states** | **dict(str, str)** | the current switch port states |
89
**sync_duration** | **int** | the duration of the switch synchronization |

metal_python/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
API to manage and control plane resources like machines, switches, operating system images, machine sizes, networks, IP addresses and more # noqa: E501
99
10-
OpenAPI spec version: v0.39.4
10+
OpenAPI spec version: v0.39.5
1111
1212
Generated by: https://github.com/swagger-api/swagger-codegen.git
1313
"""
@@ -45,6 +45,7 @@
4545
from metal_python.models.datastore_network_search_query import DatastoreNetworkSearchQuery
4646
from metal_python.models.datastore_switch_search_query import DatastoreSwitchSearchQuery
4747
from metal_python.models.httperrors_http_error_response import HttperrorsHTTPErrorResponse
48+
from metal_python.models.metal_switch_bgp_port_state import MetalSwitchBGPPortState
4849
from metal_python.models.rest_health_response import RestHealthResponse
4950
from metal_python.models.rest_version import RestVersion
5051
from metal_python.models.v1_audit_find_request import V1AuditFindRequest
@@ -168,6 +169,7 @@
168169
from metal_python.models.v1_size_response import V1SizeResponse
169170
from metal_python.models.v1_size_suggest_request import V1SizeSuggestRequest
170171
from metal_python.models.v1_size_update_request import V1SizeUpdateRequest
172+
from metal_python.models.v1_switch_bgp_port_state import V1SwitchBGPPortState
171173
from metal_python.models.v1_switch_base import V1SwitchBase
172174
from metal_python.models.v1_switch_connection import V1SwitchConnection
173175
from metal_python.models.v1_switch_find_request import V1SwitchFindRequest

metal_python/api/audit_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
API to manage and control plane resources like machines, switches, operating system images, machine sizes, networks, IP addresses and more # noqa: E501
77
8-
OpenAPI spec version: v0.39.4
8+
OpenAPI spec version: v0.39.5
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

metal_python/api/filesystemlayout_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
API to manage and control plane resources like machines, switches, operating system images, machine sizes, networks, IP addresses and more # noqa: E501
77
8-
OpenAPI spec version: v0.39.4
8+
OpenAPI spec version: v0.39.5
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

0 commit comments

Comments
 (0)