Skip to content

Commit bf3fb7b

Browse files
authored
fix: amt naming convention (#208)
1 parent 9a35411 commit bf3fb7b

8 files changed

Lines changed: 389 additions & 389 deletions

File tree

apiv2/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.0
1+
0.4.1

apiv2/api/openapi/openapi.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4407,9 +4407,9 @@ components:
44074407
title: AmtState
44084408
enum:
44094409
- AMT_STATE_UNSPECIFIED
4410-
- AMT_STATE_PROVISION
4411-
- AMT_STATE_UNPROVISION
4412-
- AMT_STATE_DISCONNECT
4410+
- AMT_STATE_PROVISIONED
4411+
- AMT_STATE_UNPROVISIONED
4412+
- AMT_STATE_DISCONNECTED
44134413
description: The state of the AMT (Active Management Technology) component.
44144414
BaremetalControllerKind:
44154415
type: string

apiv2/api/proto/resources/compute/v1/compute.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ enum PowerCommandPolicy {
5757
// The state of the AMT (Active Management Technology) component.
5858
enum AmtState {
5959
AMT_STATE_UNSPECIFIED = 0;
60-
AMT_STATE_PROVISION = 1;
61-
AMT_STATE_UNPROVISION = 2;
62-
AMT_STATE_DISCONNECT = 3;
60+
AMT_STATE_PROVISIONED = 1;
61+
AMT_STATE_UNPROVISIONED = 2;
62+
AMT_STATE_DISCONNECTED = 3;
6363
}
6464

6565
// A Host resource.

apiv2/docs/proto.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1032,9 +1032,9 @@ The state of the AMT (Active Management Technology) component.
10321032
| Name | Number | Description |
10331033
| ---- | ------ | ----------- |
10341034
| AMT_STATE_UNSPECIFIED | 0 | |
1035-
| AMT_STATE_PROVISION | 1 | |
1036-
| AMT_STATE_UNPROVISION | 2 | |
1037-
| AMT_STATE_DISCONNECT | 3 | |
1035+
| AMT_STATE_PROVISIONED | 1 | |
1036+
| AMT_STATE_UNPROVISIONED | 2 | |
1037+
| AMT_STATE_DISCONNECTED | 3 | |
10381038

10391039

10401040

apiv2/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ require (
1818
github.com/labstack/echo-contrib v0.17.4
1919
github.com/labstack/echo/v4 v4.13.3
2020
github.com/oapi-codegen/runtime v1.1.1
21-
github.com/open-edge-platform/infra-core/inventory/v2 v2.26.0
21+
github.com/open-edge-platform/infra-core/inventory/v2 v2.26.1
2222
github.com/open-edge-platform/orch-library/go v0.6.1
2323
github.com/prometheus/client_golang v1.22.0
2424
github.com/stretchr/testify v1.10.0

apiv2/internal/pbapi/resources/compute/v1/compute.pb.go

Lines changed: 83 additions & 83 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)