-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto commit generated client changes - Wed May 29 11:03:36 UTC 2024
- Loading branch information
equinix-labs@auto-commit-workflow
committed
May 29, 2024
1 parent
5aa0aaf
commit 1f2e3cc
Showing
13 changed files
with
348 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
92 changes: 0 additions & 92 deletions
92
equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/PortDto.java
This file was deleted.
Oops, something went wrong.
20 changes: 20 additions & 0 deletions
20
equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/Device.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package com.equinix.openapi.fabric.v4.api.dto.port; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
public class Device{ | ||
|
||
@SerializedName("name") | ||
private String name; | ||
|
||
@SerializedName("redundancy") | ||
private Redundancy redundancy; | ||
|
||
public String getName(){ | ||
return name; | ||
} | ||
|
||
public Redundancy getRedundancy(){ | ||
return redundancy; | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
...penapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/Encapsulation.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package com.equinix.openapi.fabric.v4.api.dto.port; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
public class Encapsulation{ | ||
|
||
@SerializedName("tagProtocolId") | ||
private String tagProtocolId; | ||
|
||
@SerializedName("type") | ||
private String type; | ||
|
||
public String getTagProtocolId(){ | ||
return tagProtocolId; | ||
} | ||
|
||
public String getType(){ | ||
return type; | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/Lag.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package com.equinix.openapi.fabric.v4.api.dto.port; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
public class Lag{ | ||
|
||
@SerializedName("name") | ||
private String name; | ||
|
||
@SerializedName("id") | ||
private String id; | ||
|
||
@SerializedName("enabled") | ||
private boolean enabled; | ||
|
||
public String getName(){ | ||
return name; | ||
} | ||
|
||
public String getId(){ | ||
return id; | ||
} | ||
|
||
public boolean isEnabled(){ | ||
return enabled; | ||
} | ||
} |
41 changes: 41 additions & 0 deletions
41
...nix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/Location.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
package com.equinix.openapi.fabric.v4.api.dto.port; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
public class Location{ | ||
|
||
@SerializedName("metroName") | ||
private String metroName; | ||
|
||
@SerializedName("metroCode") | ||
private String metroCode; | ||
|
||
@SerializedName("href") | ||
private String href; | ||
|
||
@SerializedName("region") | ||
private String region; | ||
|
||
@SerializedName("ibx") | ||
private String ibx; | ||
|
||
public String getMetroName(){ | ||
return metroName; | ||
} | ||
|
||
public String getMetroCode(){ | ||
return metroCode; | ||
} | ||
|
||
public String getHref(){ | ||
return href; | ||
} | ||
|
||
public String getRegion(){ | ||
return region; | ||
} | ||
|
||
public String getIbx(){ | ||
return ibx; | ||
} | ||
} |
Oops, something went wrong.