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

06 vlan description patch #35

Merged
merged 2 commits into from
Aug 9, 2022
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
7 changes: 3 additions & 4 deletions equinix-openapi-metal/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19085,7 +19085,7 @@ components:
- href: href
metro:
href: href
description: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
description: description
href: href
id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
facility:
Expand All @@ -19101,7 +19101,6 @@ components:
False if not.
type: boolean
description:
format: uuid
type: string
facility:
$ref: '#/components/schemas/Href'
Expand Down Expand Up @@ -19176,7 +19175,7 @@ components:
- href: href
metro:
href: href
description: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
description: description
href: href
id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
facility:
Expand All @@ -19199,7 +19198,7 @@ components:
- href: href
metro:
href: href
description: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
description: description
href: href
id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
facility:
Expand Down
2 changes: 1 addition & 1 deletion equinix-openapi-metal/docs/VirtualNetwork.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
|------------ | ------------- | ------------- | -------------|
|**assignedTo** | [**Href**](Href.md) | | [optional] |
|**assignedToVirtualCircuit** | **Boolean** | True if the virtual network is attached to a virtual circuit. False if not. | [optional] |
|**description** | **UUID** | | [optional] |
|**description** | **String** | | [optional] |
|**facility** | [**Href**](Href.md) | | [optional] |
|**href** | **String** | | [optional] |
|**id** | **UUID** | | [optional] |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public class VirtualNetwork {

public static final String SERIALIZED_NAME_DESCRIPTION = "description";
@SerializedName(SERIALIZED_NAME_DESCRIPTION)
private UUID description;
private String description;

public static final String SERIALIZED_NAME_FACILITY = "facility";
@SerializedName(SERIALIZED_NAME_FACILITY)
Expand Down Expand Up @@ -147,7 +147,7 @@ public void setAssignedToVirtualCircuit(Boolean assignedToVirtualCircuit) {
}


public VirtualNetwork description(UUID description) {
public VirtualNetwork description(String description) {

this.description = description;
return this;
Expand All @@ -160,12 +160,12 @@ public VirtualNetwork description(UUID description) {
@javax.annotation.Nullable
@ApiModelProperty(value = "")

public UUID getDescription() {
public String getDescription() {
return description;
}


public void setDescription(UUID description) {
public void setDescription(String description) {
this.description = description;
}

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
diff --git a/spec/oas3.patched.json b/spec/oas3.patched.json
index c74f6f9..0816bf5 100644
--- a/spec/oas3.patched.json
+++ b/spec/oas3.patched.json
@@ -4530,7 +4530,6 @@
"type": "boolean"
},
"description": {
- "format": "uuid",
"type": "string"
},
"facility": {
1 change: 0 additions & 1 deletion spec/oas3.patched.json
Original file line number Diff line number Diff line change
Expand Up @@ -4530,7 +4530,6 @@
"type": "boolean"
},
"description": {
"format": "uuid",
"type": "string"
},
"facility": {
Expand Down