Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

feat: Add delete_failed enum to InterconnectionPort #111

Merged
merged 1 commit into from
Aug 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions equinix-openapi-metal/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18159,6 +18159,7 @@ components:
- active
- deleting
- expired
- delete_failed
type: string
switch_id:
description: A switch 'short ID'
Expand Down
1 change: 1 addition & 0 deletions equinix-openapi-metal/docs/InterconnectionPort.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
| ACTIVE | "active" |
| DELETING | "deleting" |
| EXPIRED | "expired" |
| DELETE_FAILED | "delete_failed" |



Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@ public enum StatusEnum {

DELETING("deleting"),

EXPIRED("expired");
EXPIRED("expired"),

DELETE_FAILED("delete_failed");

private String value;

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
diff --git a/spec/oas3.patched/openapi/public/components/schemas/InterconnectionPort.yaml b/spec/oas3.patched/openapi/public/components/schemas/InterconnectionPort.yaml
index 090f95a..be1d7f5 100644
--- a/spec/oas3.patched/openapi/public/components/schemas/InterconnectionPort.yaml
+++ b/spec/oas3.patched/openapi/public/components/schemas/InterconnectionPort.yaml
@@ -20,6 +20,7 @@ properties:
- active
- deleting
- expired
+ - delete_failed
switch_id:
description: A switch 'short ID'
type: string
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ properties:
- active
- deleting
- expired
- delete_failed
switch_id:
description: A switch 'short ID'
type: string
Expand Down