diff --git a/.github/workflows/auto-commit-client-updates.yml b/.github/workflows/auto-commit-client-updates.yml index 1b3ceadc..c10ba87a 100644 --- a/.github/workflows/auto-commit-client-updates.yml +++ b/.github/workflows/auto-commit-client-updates.yml @@ -10,34 +10,52 @@ on: jobs: build: - runs-on: ubuntu-latest + env: + TEST_DATA_UAT_QINQ_PORT: ${{ secrets.TEST_DATA_UAT_QINQ_PORT }} + steps: - - uses: actions/checkout@v3 - - name: Set up JDK 11 - uses: actions/setup-java@v3 - with: - java-version: '11' - distribution: 'temurin' - cache: maven + - uses: actions/checkout@v3 + + - name: Set up JDK 11 + uses: actions/setup-java@v3 + with: + java-version: '11' + distribution: 'temurin' + cache: maven - - name: Commit to branch if client is updated after executing make. - run: | - git config --global user.name 'equinix-labs@auto-commit-workflow' - git config --global user.email 'bot@equinix.noreply.github.com' - git config advice.addIgnoredFile false - git fetch - echo -e "\nThis is executing for branch: ${GITHUB_REF##*/}." - git checkout ${GITHUB_REF##*/} - make generate - echo -e "Make execution completed." - git add equinix-openapi-fabric/. - echo -e "\nGit status:" - echo `git status` - cdate=`date` - cmsg="Auto commit generated client changes - $cdate" - echo -e "\nCommit message created : $cmsg" - echo -e "\nCommitting if there are files to update in client dir:" - echo `git commit -m "$cmsg"` - echo `git push` \ No newline at end of file + - name: Set git user and generate files + run: | + git config --global user.name 'equinix-labs@auto-commit-workflow' + git config --global user.email 'bot@equinix.noreply.github.com' + git config advice.addIgnoredFile false + git fetch + echo -e "\nThis is executing for branch: ${GITHUB_REF##*/}." + git checkout ${GITHUB_REF##*/} + make generate + + - name: Tests + env: + TEST_HOST_URL: https://uatapi.equinix.com + CLIENT_ID: ${{ secrets.TEST_USER_CLIENT_ID }} + CLIENT_SECRET: ${{ secrets.TEST_USER_CLIENT_SECRET }} + TEST_USER_NAME: ${{ secrets.TEST_USER_NAME }} + TEST_USER_PASSWORD: ${{ secrets.TEST_USER_PASSWORD }} + shell: bash + working-directory: ./equinix-openapi-fabric + run: |- + mvn clean package -DenvUrl=${{ env.TEST_HOST_URL }} -DuserName=${{ env.TEST_USER_NAME }} \ + -DuserPassword=${{ env.TEST_USER_PASSWORD }} -DclientId=${{ env.CLIENT_ID }} -DclientSecret=${{ env.CLIENT_SECRET }} + + - name: Commit to branch. + run: | + git add . + echo -e "\nGit status:" + echo `git status` + cdate=`date` + cmsg="Auto commit generated client changes - $cdate" + echo -e "\nCommit message created : $cmsg" + echo -e "\nCommitting if there are files to update in client dir:" + echo `git commit -m "$cmsg"` + echo `git push` diff --git a/.github/workflows/maven-publish.yml b/.github/workflows/maven-publish.yml index 15c7b3ec..93f1cfd8 100644 --- a/.github/workflows/maven-publish.yml +++ b/.github/workflows/maven-publish.yml @@ -17,6 +17,9 @@ jobs: contents: read packages: write + env: + TEST_DATA_UAT_QINQ_PORT: ${{ secrets.TEST_DATA_UAT_QINQ_PORT }} + steps: - uses: actions/checkout@v3 - name: Set up JDK 11 @@ -27,12 +30,17 @@ jobs: server-id: github # Value of the distributionManagement/repository/id field of the pom.xml settings-path: ${{ github.workspace }} # location for the settings.xml file - - name: Build with Maven - working-directory: ./equinix-openapi-fabric - run: mvn -B package --file pom.xml - - name: Publish to GitHub Packages Apache Maven working-directory: ./equinix-openapi-fabric - run: mvn deploy -s $GITHUB_WORKSPACE/settings.xml -DaltDeploymentRepository=github::default::https://maven.pkg.github.com/equinix-labs/fabric-java + + run: |- + mvn deploy -s $GITHUB_WORKSPACE/settings.xml -DaltDeploymentRepository=github::default::https://maven.pkg.github.com/equinix-labs/fabric-java \ + -DenvUrl=${{ env.TEST_HOST_URL }} -DuserName=${{ env.TEST_USER_NAME }} -DuserPassword=${{ env.TEST_USER_PASSWORD }} \ + -DclientId=${{ env.CLIENT_ID }} -DclientSecret=${{ env.CLIENT_SECRET }} env: GITHUB_TOKEN: ${{ github.token }} + TEST_HOST_URL: https://uatapi.equinix.com + CLIENT_ID: ${{ secrets.TEST_USER_CLIENT_ID }} + CLIENT_SECRET: ${{ secrets.TEST_USER_CLIENT_SECRET }} + TEST_USER_NAME: ${{ secrets.TEST_USER_NAME }} + TEST_USER_PASSWORD: ${{ secrets.TEST_USER_PASSWORD }} diff --git a/.github/workflows/sync_sdk_with_new_api_spec.yml b/.github/workflows/sync_sdk_with_new_api_spec.yml index 2736b4cf..38cc1159 100644 --- a/.github/workflows/sync_sdk_with_new_api_spec.yml +++ b/.github/workflows/sync_sdk_with_new_api_spec.yml @@ -12,6 +12,10 @@ jobs: java-distribution: [temurin] os: [ubuntu-latest] runs-on: ${{ matrix.os }} + + env: + TEST_DATA_UAT_QINQ_PORT: ${{ secrets.TEST_DATA_UAT_QINQ_PORT }} + steps: - name: Get current date id: date @@ -46,9 +50,25 @@ jobs: VERSION_UPDATE="OPENAPI_URL=\"https://app.swaggerhub.com/apiproxy/registry/equinix-api/fabric/${{ github.event.inputs.new_api_spec_version_number }}\"" sed -i 's,${{ steps.spec_versions.outputs.api_spec_line }},'"$VERSION_UPDATE"',' Makefile make generate + + - name: Tests + env: + TEST_HOST_URL: https://uatapi.equinix.com + CLIENT_ID: ${{ secrets.TEST_USER_CLIENT_ID }} + CLIENT_SECRET: ${{ secrets.TEST_USER_CLIENT_SECRET }} + TEST_USER_NAME: ${{ secrets.TEST_USER_NAME }} + TEST_USER_PASSWORD: ${{ secrets.TEST_USER_PASSWORD }} + shell: bash + working-directory: ./equinix-openapi-fabric + run: |- + mvn clean package -DenvUrl=${{ env.TEST_HOST_URL }} -DuserName=${{ env.TEST_USER_NAME }} \ + -DuserPassword=${{ env.TEST_USER_PASSWORD }} -DclientId=${{ env.CLIENT_ID }} -DclientSecret=${{ env.CLIENT_SECRET }} + + - name: Commit changes + run: | git commit -m 'sync: fetch ${{ steps.date.outputs.date }} spec and apply patches' spec/*.json git add equinix-openapi-fabric - git commit -m 'sync: generate client with ${{ steps.date.outputs.date }} spec' + git commit -m 'sync: generate client with ${{ steps.date.outputs.date }} spec' - name: Create Pull Request id: cpr diff --git a/Makefile b/Makefile index d5c656bf..e3dc883a 100644 --- a/Makefile +++ b/Makefile @@ -16,6 +16,7 @@ SPEC_FETCHED_FILE:=spec/oas3.fabric.fetched.json SPEC_PATCHED_FILE:=spec/oas3.fabric.patched.json OPENAPI_CONFIG:=spec/oas3.fabric.config.json OPENAPI_GENERATED_CLIENT=equinix-openapi-fabric/ +TESTS_PATH=src/test/java/com/equinix/openapi/fabric/ # Patches SPEC_FETCHED_PATCHES=patches/spec.fetched.json @@ -65,4 +66,4 @@ docker_generate: --git-user-id ${GIT_ORG} build_client: - cd ${OPENAPI_GENERATED_CLIENT}; mvn clean package + rm -rf ${OPENAPI_GENERATED_CLIENT}${TESTS_PATH}v4; cp -r v4 ${OPENAPI_GENERATED_CLIENT}${TESTS_PATH} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/AbstractTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/AbstractTest.java new file mode 100644 index 00000000..1e36503c --- /dev/null +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/AbstractTest.java @@ -0,0 +1,98 @@ +package com.equinix.openapi.fabric.v4.api; + +import com.equinix.openapi.fabric.ApiClient; +import com.equinix.openapi.fabric.ApiException; +import com.equinix.openapi.fabric.Configuration; +import com.equinix.openapi.fabric.Pair; +import com.equinix.openapi.fabric.v4.api.dto.TokenRequestDto; +import com.equinix.openapi.fabric.v4.api.dto.TokenResponseDto; +import com.equinix.openapi.fabric.v4.api.dto.port.PortDto; +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.ObjectWriter; +import com.google.gson.reflect.TypeToken; + +import java.io.IOException; +import java.lang.reflect.Type; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +public abstract class AbstractTest { + public ApiClient generateToken() { + ApiClient apiTokeClient = Configuration.getDefaultApiClient(); + + TokenRequestDto tokenRequestDto = new TokenRequestDto() + .setClientId(System.getProperty("clientId")) + .setClientSecret(System.getProperty("clientSecret")) + .setUserPassword(System.getProperty("userPassword")) + .setUserName(System.getProperty("userName")); + + String localVarPath = "/oauth2/v1/token"; + + List localVarQueryParams = new ArrayList(); + List localVarCollectionQueryParams = new ArrayList(); + Map localVarHeaderParams = new HashMap(); + Map localVarCookieParams = new HashMap(); + Map localVarFormParams = new HashMap(); + + localVarHeaderParams.put("Content-Type", "application/json"); + String[] localVarAuthNames = new String[]{"BearerAuth"}; + + okhttp3.Call call; + TokenResponseDto tokenResponseDto = null; + + try { + call = apiTokeClient.buildCall(apiTokeClient.getBasePath(), localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, + tokenRequestDto, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, null); + + Type localVarReturnType = new TypeToken() { + }.getType(); + tokenResponseDto = (TokenResponseDto) apiTokeClient.execute(call, localVarReturnType).getData(); + } catch (ApiException e) { + throw new RuntimeException(e); + } + + ApiClient apiClient = Configuration.getDefaultApiClient(); + apiClient.addDefaultHeader("Authorization", "Bearer " + tokenResponseDto.getAccessToken()); + + return apiClient; + } + + protected PortDto getPort(EnvVariable envVariable) { + ObjectMapper mapper = new ObjectMapper(); + String json = System.getenv(envVariable.value); + try { + return mapper.readValue(json, PortDto.class); + } catch (IOException e) { + throw new RuntimeException(e); + } + } + + protected void printJson(Object object) { + ObjectWriter ow = new ObjectMapper().writer().withDefaultPrettyPrinter(); + try { + String json = ow.writeValueAsString(object); + System.out.println(json); + } catch ( + JsonProcessingException e) { + throw new RuntimeException(e); + } + } + + public enum EnvVariable { + QINQ_PORT("TEST_DATA_UAT_QINQ_PORT"); + + private String value; + + EnvVariable(String value) { + this.value = value; + } + + @Override + public String toString() { + return String.valueOf(value); + } + } +} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/CloudRoutersApiTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/CloudRoutersApiTest.java index fa154b6d..2ceb1f1c 100644 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/CloudRoutersApiTest.java +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/CloudRoutersApiTest.java @@ -9,184 +9,197 @@ * Do not edit the class manually. */ - package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; -import com.equinix.openapi.fabric.v4.model.CloudRouter; -import com.equinix.openapi.fabric.v4.model.CloudRouterActionRequest; -import com.equinix.openapi.fabric.v4.model.CloudRouterActionResponse; -import com.equinix.openapi.fabric.v4.model.CloudRouterActionState; -import com.equinix.openapi.fabric.v4.model.CloudRouterChangeOperation; -import com.equinix.openapi.fabric.v4.model.CloudRouterPackage; -import com.equinix.openapi.fabric.v4.model.CloudRouterPostRequest; -import com.equinix.openapi.fabric.v4.model.CloudRouterSearchRequest; -import com.equinix.openapi.fabric.v4.model.Error; -import com.equinix.openapi.fabric.v4.model.PackageResponse; -import com.equinix.openapi.fabric.v4.model.RouteTableEntrySearchRequest; -import com.equinix.openapi.fabric.v4.model.RouteTableEntrySearchResponse; -import com.equinix.openapi.fabric.v4.model.RouterPackageCode; -import com.equinix.openapi.fabric.v4.model.SearchResponse; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import org.junit.jupiter.api.Disabled; /** * API tests for CloudRoutersApi */ @Disabled -public class CloudRoutersApiTest { +public class CloudRoutersApiTest extends AbstractTest { - private final CloudRoutersApi api = new CloudRoutersApi(); + private final CloudRoutersApi api = new CloudRoutersApi(generateToken()); /** * Create Routers - * + *

* This API provides capability to create user's Cloud Routers * * @throws ApiException if the Api call fails */ @Test public void createCloudRouterTest() throws ApiException { - CloudRouterPostRequest cloudRouterPostRequest = null; - CloudRouter response = api.createCloudRouter(cloudRouterPostRequest); + // + //CloudRouterPostRequest cloudRouterPostRequest = null; + // + //CloudRouter response = api.createCloudRouter(cloudRouterPostRequest); + // TODO: test validations } /** * Route table actions - * + *

* This API provides capability to refresh route table and bgp session summary information * * @throws ApiException if the Api call fails */ @Test public void createCloudRouterActionTest() throws ApiException { - UUID routerId = null; - CloudRouterActionRequest cloudRouterActionRequest = null; - CloudRouterActionResponse response = api.createCloudRouterAction(routerId, cloudRouterActionRequest); + // + //UUID routerId = null; + // + //CloudRouterActionRequest cloudRouterActionRequest = null; + // + //CloudRouterActionResponse response = api.createCloudRouterAction(routerId, cloudRouterActionRequest); + // TODO: test validations } /** * Delete Routers - * + *

* This API provides capability to delete user's Cloud Routers * * @throws ApiException if the Api call fails */ @Test public void deleteCloudRouterByUuidTest() throws ApiException { - UUID routerId = null; - api.deleteCloudRouterByUuid(routerId); + // + //UUID routerId = null; + // + //api.deleteCloudRouterByUuid(routerId); + // TODO: test validations } /** * Get actions - * + *

* This API provides capability to fetch action status * * @throws ApiException if the Api call fails */ @Test public void getCloudRouterActionsTest() throws ApiException { - UUID routerId = null; - CloudRouterActionState state = null; - CloudRouterActionResponse response = api.getCloudRouterActions(routerId, state); + // + //UUID routerId = null; + // + //CloudRouterActionState state = null; + // + //CloudRouterActionResponse response = api.getCloudRouterActions(routerId, state); + // TODO: test validations } /** * Get Routers - * + *

* This API provides capability to retrieve user's Cloud Routers * * @throws ApiException if the Api call fails */ @Test public void getCloudRouterByUuidTest() throws ApiException { - UUID routerId = null; - CloudRouter response = api.getCloudRouterByUuid(routerId); + // + //UUID routerId = null; + // + //CloudRouter response = api.getCloudRouterByUuid(routerId); + // TODO: test validations } /** * Get Package Details - * + *

* This API provides capability to retrieve user's Cloud Routers Package Details * * @throws ApiException if the Api call fails */ @Test public void getCloudRouterPackageByCodeTest() throws ApiException { - RouterPackageCode routerPackageCode = null; - CloudRouterPackage response = api.getCloudRouterPackageByCode(routerPackageCode); + // + //RouterPackageCode routerPackageCode = null; + // + //CloudRouterPackage response = api.getCloudRouterPackageByCode(routerPackageCode); + // TODO: test validations } /** * List Packages - * + *

* This API provides capability to retrieve user's Cloud Routers Packages * * @throws ApiException if the Api call fails */ @Test public void getCloudRouterPackagesTest() throws ApiException { - Integer offset = null; - Integer limit = null; - PackageResponse response = api.getCloudRouterPackages(offset, limit); + // + //Integer offset = null; + // + //Integer limit = null; + // + //PackageResponse response = api.getCloudRouterPackages(offset, limit); + // TODO: test validations } /** * Search Route Table - * + *

* The API provides capability to get list of user's Fabric Cloud Router route table entries using search criteria, including optional filtering, pagination and sorting * * @throws ApiException if the Api call fails */ @Test public void searchCloudRouterRoutesTest() throws ApiException { - UUID routerId = null; - RouteTableEntrySearchRequest routeTableEntrySearchRequest = null; - RouteTableEntrySearchResponse response = api.searchCloudRouterRoutes(routerId, routeTableEntrySearchRequest); + // + //UUID routerId = null; + // + //RouteTableEntrySearchRequest routeTableEntrySearchRequest = null; + // + //RouteTableEntrySearchResponse response = api.searchCloudRouterRoutes(routerId, routeTableEntrySearchRequest); + // TODO: test validations } /** * Search Routers - * + *

* The API provides capability to get list of user's Cloud Routers using search criteria, including optional filtering, pagination and sorting * * @throws ApiException if the Api call fails */ @Test public void searchCloudRoutersTest() throws ApiException { - CloudRouterSearchRequest cloudRouterSearchRequest = null; - SearchResponse response = api.searchCloudRouters(cloudRouterSearchRequest); + // + //CloudRouterSearchRequest cloudRouterSearchRequest = null; + // + //SearchResponse response = api.searchCloudRouters(cloudRouterSearchRequest); + // TODO: test validations } /** * Update Routers - * + *

* This API provides capability to update user's Cloud Routers * * @throws ApiException if the Api call fails */ @Test public void updateCloudRouterByUuidTest() throws ApiException { - UUID routerId = null; - List cloudRouterChangeOperation = null; - CloudRouter response = api.updateCloudRouterByUuid(routerId, cloudRouterChangeOperation); + // + //UUID routerId = null; + // + //List cloudRouterChangeOperation = null; + // + //CloudRouter response = api.updateCloudRouterByUuid(routerId, cloudRouterChangeOperation); + // TODO: test validations } - } diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/ConnectionsApiTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/ConnectionsApiTest.java index 6462a10d..776effbb 100644 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/ConnectionsApiTest.java +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/ConnectionsApiTest.java @@ -9,136 +9,142 @@ * Do not edit the class manually. */ - package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; -import com.equinix.openapi.fabric.v4.model.Connection; -import com.equinix.openapi.fabric.v4.model.ConnectionAction; -import com.equinix.openapi.fabric.v4.model.ConnectionActionRequest; -import com.equinix.openapi.fabric.v4.model.ConnectionChangeOperation; -import com.equinix.openapi.fabric.v4.model.ConnectionDirection; -import com.equinix.openapi.fabric.v4.model.ConnectionPostRequest; -import com.equinix.openapi.fabric.v4.model.ConnectionResponse; -import com.equinix.openapi.fabric.v4.model.ConnectionSearchResponse; -import com.equinix.openapi.fabric.v4.model.Error; -import com.equinix.openapi.fabric.v4.model.SearchRequest; -import com.equinix.openapi.fabric.v4.model.ValidateRequest; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import org.junit.jupiter.api.Disabled; /** * API tests for ConnectionsApi */ @Disabled -public class ConnectionsApiTest { +public class ConnectionsApiTest extends AbstractTest { - private final ConnectionsApi api = new ConnectionsApi(); + private final ConnectionsApi api = new ConnectionsApi(generateToken()); /** * Create Connection - * + *

* This API provides capability to create user's virtual connection * * @throws ApiException if the Api call fails */ @Test public void createConnectionTest() throws ApiException { - ConnectionPostRequest connectionPostRequest = null; - Connection response = api.createConnection(connectionPostRequest); + // + //ConnectionPostRequest connectionPostRequest = null; + // + //Connection response = api.createConnection(connectionPostRequest); + // TODO: test validations } /** * Connection Actions - * + *

* This API provides capability to accept/reject user's virtual connection * * @throws ApiException if the Api call fails */ @Test public void createConnectionActionTest() throws ApiException { - String connectionId = null; - ConnectionActionRequest connectionActionRequest = null; - ConnectionAction response = api.createConnectionAction(connectionId, connectionActionRequest); + // + //String connectionId = null; + // + //ConnectionActionRequest connectionActionRequest = null; + // + //ConnectionAction response = api.createConnectionAction(connectionId, connectionActionRequest); + // TODO: test validations } /** * Delete by ID - * + *

* Delete Connection by ID * * @throws ApiException if the Api call fails */ @Test public void deleteConnectionByUuidTest() throws ApiException { - String connectionId = null; - Connection response = api.deleteConnectionByUuid(connectionId); + // + //String connectionId = null; + // + //Connection response = api.deleteConnectionByUuid(connectionId); + // TODO: test validations } /** * Get Connection by ID - * + *

* The API provides capability to get user's virtual connection details (Service Tokens, Access Points, Link Protocols, etc) by it's connection ID (UUID) * * @throws ApiException if the Api call fails */ @Test public void getConnectionByUuidTest() throws ApiException { - String connectionId = null; - ConnectionDirection direction = null; - Connection response = api.getConnectionByUuid(connectionId, direction); + // + //String connectionId = null; + // + //ConnectionDirection direction = null; + // + //Connection response = api.getConnectionByUuid(connectionId, direction); + // TODO: test validations } /** * Search connections - * + *

* The API provides capability to get list of user's virtual connections using search criteria, including optional filtering, pagination and sorting * * @throws ApiException if the Api call fails */ @Test public void searchConnectionsTest() throws ApiException { - SearchRequest searchRequest = null; - ConnectionSearchResponse response = api.searchConnections(searchRequest); + // + //SearchRequest searchRequest = null; + // + //ConnectionSearchResponse response = api.searchConnections(searchRequest); + // TODO: test validations } /** * Update by ID - * + *

* Update Connection by ID * * @throws ApiException if the Api call fails */ @Test public void updateConnectionByUuidTest() throws ApiException { - String connectionId = null; - List connectionChangeOperation = null; - Connection response = api.updateConnectionByUuid(connectionId, connectionChangeOperation); + // + //String connectionId = null; + // + //List connectionChangeOperation = null; + // + //Connection response = api.updateConnectionByUuid(connectionId, connectionChangeOperation); + // TODO: test validations } /** * Validate Connection - * + *

* This API provides capability to validate by auth key * * @throws ApiException if the Api call fails */ @Test public void validateConnectionsTest() throws ApiException { - ValidateRequest validateRequest = null; - ConnectionResponse response = api.validateConnections(validateRequest); + // + //ValidateRequest validateRequest = null; + // + //ConnectionResponse response = api.validateConnections(validateRequest); + // TODO: test validations } - } diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/HealthApiTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/HealthApiTest.java index 83308ab0..944a78b9 100644 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/HealthApiTest.java +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/HealthApiTest.java @@ -14,9 +14,11 @@ import com.equinix.openapi.fabric.ApiException; import com.equinix.openapi.fabric.v4.model.HealthResponse; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.Disabled; +import java.time.LocalDate; +import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.HashMap; import java.util.List; @@ -35,12 +37,14 @@ public class HealthApiTest { * * GET All service health statys with an option query parameter to return all Equinix Fabric customer in which the customer has a presence. * - * @throws ApiException if the Api call fails + * @throws ApiException + * if the Api call fails */ @Test public void getStatusTest() throws ApiException { - HealthResponse response = api.getStatus(); + // + //HealthResponse response = api.getStatus(); + // TODO: test validations } - } diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/MetrosApiTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/MetrosApiTest.java index c88b4aa4..7d0899a3 100644 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/MetrosApiTest.java +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/MetrosApiTest.java @@ -9,58 +9,54 @@ * Do not edit the class manually. */ - package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; import com.equinix.openapi.fabric.v4.model.Metro; -import com.equinix.openapi.fabric.v4.model.MetroError; import com.equinix.openapi.fabric.v4.model.MetroResponse; import com.equinix.openapi.fabric.v4.model.Presence; -import org.junit.jupiter.api.Disabled; + import org.junit.jupiter.api.Test; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; /** * API tests for MetrosApi */ -@Disabled -public class MetrosApiTest { - - private final MetrosApi api = new MetrosApi(); +public class MetrosApiTest extends AbstractTest { + private final MetrosApi api = new MetrosApi(generateToken()); + private final String metroCode = "DC"; /** * Get Metro by Code - * + *

* GET Metros retrieves all Equinix Fabric metros, as well as latency data between each metro location. . * * @throws ApiException if the Api call fails */ @Test public void getMetroByCodeTest() throws ApiException { - String metroCode = null; Metro response = api.getMetroByCode(metroCode); - // TODO: test validations + assertEquals(200, api.getApiClient().getStatusCode()); + assertEquals(metroCode, response.getCode()); } /** * Get all Metros - * + *

* GET All Subscriber Metros with an option query parameter to return all Equinix Fabric metros in which the customer has a presence, as well as latency data for each location. * * @throws ApiException if the Api call fails */ @Test public void getMetrosTest() throws ApiException { - Presence presence = null; - Integer offset = null; - Integer limit = null; - MetroResponse response = api.getMetros(presence, offset, limit); - // TODO: test validations - } + MetroResponse response = api.getMetros(Presence.MY_PORTS, 1, 10); + assertEquals(200, api.getApiClient().getStatusCode()); + boolean metroFound = response.getData() + .stream().anyMatch(metro -> metro.getCode().equals(metroCode)); + + assertTrue(metroFound); + } } diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/NetworksApiTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/NetworksApiTest.java index 188d15bf..3ac6cac9 100644 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/NetworksApiTest.java +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/NetworksApiTest.java @@ -9,148 +9,157 @@ * Do not edit the class manually. */ - package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; -import com.equinix.openapi.fabric.v4.model.Error; -import com.equinix.openapi.fabric.v4.model.Network; -import com.equinix.openapi.fabric.v4.model.NetworkChange; -import com.equinix.openapi.fabric.v4.model.NetworkChangeOperation; -import com.equinix.openapi.fabric.v4.model.NetworkChangeResponse; -import com.equinix.openapi.fabric.v4.model.NetworkConnections; -import com.equinix.openapi.fabric.v4.model.NetworkPostRequest; -import com.equinix.openapi.fabric.v4.model.NetworkSearchRequest; -import com.equinix.openapi.fabric.v4.model.NetworkSearchResponse; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import org.junit.jupiter.api.Disabled; /** * API tests for NetworksApi */ @Disabled -public class NetworksApiTest { +public class NetworksApiTest extends AbstractTest { - private final NetworksApi api = new NetworksApi(); + private final NetworksApi api = new NetworksApi(generateToken()); /** * Create Network - * + *

* This API provides capability to create user's Fabric Network * * @throws ApiException if the Api call fails */ @Test public void createNetworkTest() throws ApiException { - NetworkPostRequest networkPostRequest = null; - Network response = api.createNetwork(networkPostRequest); + // + //NetworkPostRequest networkPostRequest = null; + // + //Network response = api.createNetwork(networkPostRequest); + // TODO: test validations } /** * Delete Network By ID - * + *

* This API provides capability to delete user's Fabric Network * * @throws ApiException if the Api call fails */ @Test public void deleteNetworkByUuidTest() throws ApiException { - UUID networkId = null; - Network response = api.deleteNetworkByUuid(networkId); + // + //UUID networkId = null; + // + //Network response = api.deleteNetworkByUuid(networkId); + // TODO: test validations } /** * Get Connections - * + *

* The API provides capability to get list of user's Fabric Network connections * * @throws ApiException if the Api call fails */ @Test public void getConnectionsByNetworkUuidTest() throws ApiException { - UUID networkId = null; - NetworkConnections response = api.getConnectionsByNetworkUuid(networkId); + // + //UUID networkId = null; + // + //NetworkConnections response = api.getConnectionsByNetworkUuid(networkId); + // TODO: test validations } /** * Get Network By ID - * + *

* This API provides capability to retrieve user's Fabric Network * * @throws ApiException if the Api call fails */ @Test public void getNetworkByUuidTest() throws ApiException { - UUID networkId = null; - Network response = api.getNetworkByUuid(networkId); + // + //UUID networkId = null; + // + //Network response = api.getNetworkByUuid(networkId); + // TODO: test validations } /** * Get Change By ID - * + *

* This API provides capability to retrieve user's Fabric Network Change * * @throws ApiException if the Api call fails */ @Test public void getNetworkChangeByUuidTest() throws ApiException { - UUID networkId = null; - UUID changeId = null; - NetworkChange response = api.getNetworkChangeByUuid(networkId, changeId); + // + //UUID networkId = null; + // + //UUID changeId = null; + // + //NetworkChange response = api.getNetworkChangeByUuid(networkId, changeId); + // TODO: test validations } /** * Get Network Changes - * + *

* The API provides capability to get list of user's Fabric Network changes * * @throws ApiException if the Api call fails */ @Test public void getNetworkChangesTest() throws ApiException { - UUID networkId = null; - NetworkChangeResponse response = api.getNetworkChanges(networkId); + // + //UUID networkId = null; + // + //NetworkChangeResponse response = api.getNetworkChanges(networkId); + // TODO: test validations } /** * Search Network - * + *

* The API provides capability to get list of user's Fabric Network using search criteria, including optional filtering, pagination and sorting * * @throws ApiException if the Api call fails */ @Test public void searchNetworksTest() throws ApiException { - NetworkSearchRequest networkSearchRequest = null; - NetworkSearchResponse response = api.searchNetworks(networkSearchRequest); + // + //NetworkSearchRequest networkSearchRequest = null; + // + //NetworkSearchResponse response = api.searchNetworks(networkSearchRequest); + // TODO: test validations } /** * Update Network By ID - * + *

* This API provides capability to update user's Fabric Network * * @throws ApiException if the Api call fails */ @Test public void updateNetworkByUuidTest() throws ApiException { - UUID networkId = null; - List networkChangeOperation = null; - Network response = api.updateNetworkByUuid(networkId, networkChangeOperation); + // + //UUID networkId = null; + // + //List networkChangeOperation = null; + // + //Network response = api.updateNetworkByUuid(networkId, networkChangeOperation); + // TODO: test validations } - } diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/PortsApiTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/PortsApiTest.java index 9fa9fbcf..2d73f8d7 100644 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/PortsApiTest.java +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/PortsApiTest.java @@ -9,132 +9,164 @@ * Do not edit the class manually. */ - package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; -import com.equinix.openapi.fabric.v4.model.AllPhysicalPortsResponse; -import com.equinix.openapi.fabric.v4.model.AllPortsResponse; -import com.equinix.openapi.fabric.v4.model.BulkPhysicalPort; -import com.equinix.openapi.fabric.v4.model.BulkPort; -import com.equinix.openapi.fabric.v4.model.Error; -import com.equinix.openapi.fabric.v4.model.LinkProtocolGetResponse; -import com.equinix.openapi.fabric.v4.model.Port; -import com.equinix.openapi.fabric.v4.model.PortV4SearchRequest; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; +import com.equinix.openapi.fabric.v4.api.dto.port.PortDto; +import com.equinix.openapi.fabric.v4.model.*; import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.Disabled; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import java.util.Arrays; +import java.util.Collections; +import java.util.UUID; + +import static org.junit.Assert.assertEquals; /** * API tests for PortsApi */ @Disabled -public class PortsApiTest { - - private final PortsApi api = new PortsApi(); +public class PortsApiTest extends AbstractTest { + private final PortsApi api = new PortsApi(generateToken()); /** * Add to Lag - * + *

* Add Physical Ports to Virtual Port.<font color=\"red\"> <sup color='red'>Preview</sup></font> * * @throws ApiException if the Api call fails */ @Test public void addToLagTest() throws ApiException { - UUID portId = null; - BulkPhysicalPort bulkPhysicalPort = null; - AllPhysicalPortsResponse response = api.addToLag(portId, bulkPhysicalPort); + // + //UUID portId = null; + // + //BulkPhysicalPort bulkPhysicalPort = null; + // + //AllPhysicalPortsResponse response = api.addToLag(portId, bulkPhysicalPort); + // TODO: test validations } /** * Create Port - * + *

* Create Port creates Equinix Fabric? Port.<font color=\"red\"> <sup color='red'>Preview</sup></font> * * @throws ApiException if the Api call fails */ @Test public void createBulkPortTest() throws ApiException { - BulkPort bulkPort = null; - AllPortsResponse response = api.createBulkPort(bulkPort); + // + //BulkPort bulkPort = null; + // + //AllPortsResponse response = api.createBulkPort(bulkPort); + // TODO: test validations } /** * Create Port - * + *

* Creates Equinix Fabric? Port. * * @throws ApiException if the Api call fails */ @Test public void createPortTest() throws ApiException { - Port port = null; - Port response = api.createPort(port); + // + //Port port = null; + // + //Port response = api.createPort(port); + // TODO: test validations } /** * Get Port by uuid - * + *

* Get Port By uuid returns details of assigned and available Equinix Fabric port for the specified user credentials. The metro code attribute in the response shows the origin of the proposed connection. * * @throws ApiException if the Api call fails */ @Test public void getPortByUuidTest() throws ApiException { - UUID portId = null; - Port response = api.getPortByUuid(portId); - // TODO: test validations + UUID portUUID = UUID.fromString("c4d9350e-7787-787d-1ce0-306a5c00a600"); + Port response = api.getPortByUuid(UUID.fromString(portUUID.toString())); + assertEquals(200, api.getApiClient().getStatusCode()); + System.out.println(response); } /** * Get All Ports - * + *

* Get All Ports returns details of all assigned and available ports for the specified user credentials. The metro attribute in the response shows the origin of the proposed connection. * * @throws ApiException if the Api call fails */ @Test public void getPortsTest() throws ApiException { - String name = null; - AllPortsResponse response = api.getPorts(name); - // TODO: test validations + PortDto portDto = getPort(EnvVariable.QINQ_PORT); + AllPortsResponse response = api.getPorts(portDto.getName()); + assertEquals(200, api.getApiClient().getStatusCode()); + assertEquals(portDto.getName(), response.getData().get(0).getName()); } /** * Get Vlans - * + *

* The API provides capability to retrieve Vlans for a Port. * * @throws ApiException if the Api call fails */ @Test - public void getVlansTest() throws ApiException { - UUID portUuid = null; - LinkProtocolGetResponse response = api.getVlans(portUuid); - // TODO: test validations + public void getLinkProtocolsTest() throws ApiException { + UUID portUUID = UUID.fromString("c4d9350e-7787-787d-1ce0-306a5c00a600"); + LinkProtocolGetResponse response = api.getVlans(portUUID); + assertEquals(200, api.getApiClient().getStatusCode()); + System.out.println(response); } /** * Search ports - * + *

* The API provides capability to get list of user's virtual ports using search criteria, including optional filtering, pagination and sorting * * @throws ApiException if the Api call fails */ @Test public void searchPortsTest() throws ApiException { - PortV4SearchRequest portV4SearchRequest = null; + PortV4SearchRequest portV4SearchRequest = new PortV4SearchRequest(); + + PortExpression portExpressionProperty1 = new PortExpression() + .property(PortSearchFieldName.STATE) + .operator(PortExpression.OperatorEnum.EQUAL) + .values(Collections.singletonList("ACTIVE")); + + PortExpression portExpressionProperty2 = new PortExpression() + .property(PortSearchFieldName.SETTINGS_PRODUCTCODE) + .operator(PortExpression.OperatorEnum.EQUAL) + .values(Collections.singletonList("CX")); + + PortExpression portExpressionProperty3 = new PortExpression() + .property(PortSearchFieldName.PROJECT_PROJECTID) + .operator(PortExpression.OperatorEnum.EQUAL) + .values(Collections.singletonList("291639000636552")); + + PortExpression item = new PortExpression().and(Arrays.asList(portExpressionProperty1, portExpressionProperty2, portExpressionProperty3)); + + portV4SearchRequest.setFilter(new PortExpression().or(Collections.singletonList(item))); + portV4SearchRequest.setPagination(new PaginationRequest().limit(1000).offset(0)); + portV4SearchRequest.sort(Collections.singletonList(new PortSortCriteria().direction(PortSortDirection.DESC).property(PortSortBy._DEVICE_NAME))); + + printJson(portV4SearchRequest); + AllPortsResponse response = api.searchPorts(portV4SearchRequest); - // TODO: test validations - } + assertEquals(200, api.getApiClient().getStatusCode()); + System.out.println(response); +// issue all encapsulation are return no like enum value e.g Qinq +// assertNotEquals(null,response.getData().get(0).getType()); + } } diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/PrecisionTimeApiTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/PrecisionTimeApiTest.java index 22e2d687..2de013db 100644 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/PrecisionTimeApiTest.java +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/PrecisionTimeApiTest.java @@ -9,130 +9,136 @@ * Do not edit the class manually. */ - package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; -import com.equinix.openapi.fabric.v4.model.Error; -import com.equinix.openapi.fabric.v4.model.PrecisionTimeChangeOperation; -import com.equinix.openapi.fabric.v4.model.PrecisionTimePackageResponse; -import com.equinix.openapi.fabric.v4.model.PrecisionTimeServiceConnectionsResponse; -import com.equinix.openapi.fabric.v4.model.PrecisionTimeServiceCreateResponse; -import com.equinix.openapi.fabric.v4.model.PrecisionTimeServicePackagesResponse; -import com.equinix.openapi.fabric.v4.model.PrecisionTimeServiceRequest; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import org.junit.jupiter.api.Disabled; /** * API tests for PrecisionTimeApi */ @Disabled -public class PrecisionTimeApiTest { +public class PrecisionTimeApiTest extends AbstractTest { - private final PrecisionTimeApi api = new PrecisionTimeApi(); + private final PrecisionTimeApi api = new PrecisionTimeApi(generateToken()); /** * Create Time Service - * + *

* The API provides capability to create timing service * * @throws ApiException if the Api call fails */ @Test public void createTimeServicesTest() throws ApiException { - PrecisionTimeServiceRequest precisionTimeServiceRequest = null; - PrecisionTimeServiceCreateResponse response = api.createTimeServices(precisionTimeServiceRequest); + // + //PrecisionTimeServiceRequest precisionTimeServiceRequest = null; + // + //PrecisionTimeServiceCreateResponse response = api.createTimeServices(precisionTimeServiceRequest); + // TODO: test validations } /** * Delete time service - * + *

* Delete EPT service by it's uuid * * @throws ApiException if the Api call fails */ @Test public void deleteTimeServiceByIdTest() throws ApiException { - UUID serviceId = null; - PrecisionTimeServiceCreateResponse response = api.deleteTimeServiceById(serviceId); + // + //UUID serviceId = null; + // + //PrecisionTimeServiceCreateResponse response = api.deleteTimeServiceById(serviceId); + // TODO: test validations } /** * Get Time Service - * + *

* The API provides capability to get precision timing service's details * * @throws ApiException if the Api call fails */ @Test public void getTimeServicesByIdTest() throws ApiException { - UUID serviceId = null; - PrecisionTimeServiceCreateResponse response = api.getTimeServicesById(serviceId); + // + //UUID serviceId = null; + // + //PrecisionTimeServiceCreateResponse response = api.getTimeServicesById(serviceId); + // TODO: test validations } /** * Get Connection Links - * + *

* The API provides capability to get prevision timing service's details * * @throws ApiException if the Api call fails */ @Test public void getTimeServicesConnectionsByServiceIdTest() throws ApiException { - UUID serviceId = null; - PrecisionTimeServiceConnectionsResponse response = api.getTimeServicesConnectionsByServiceId(serviceId); + // + //UUID serviceId = null; + // + //PrecisionTimeServiceConnectionsResponse response = api.getTimeServicesConnectionsByServiceId(serviceId); + // TODO: test validations } /** * Get Package By Code - * + *

* The API provides capability to get timing service's package by code * * @throws ApiException if the Api call fails */ @Test public void getTimeServicesPackageByCodeTest() throws ApiException { - String packageCode = null; - PrecisionTimePackageResponse response = api.getTimeServicesPackageByCode(packageCode); + // + //String packageCode = null; + // + //PrecisionTimePackageResponse response = api.getTimeServicesPackageByCode(packageCode); + // TODO: test validations } /** * Get Packages - * + *

* The API provides capability to get timing service's packages * * @throws ApiException if the Api call fails */ @Test public void getTimeServicesPackagesTest() throws ApiException { - PrecisionTimeServicePackagesResponse response = api.getTimeServicesPackages(); + // + //PrecisionTimeServicePackagesResponse response = api.getTimeServicesPackages(); + // TODO: test validations } /** * Patch time service - * + *

* The API provides capability to update timing service * * @throws ApiException if the Api call fails */ @Test public void updateTimeServicesByIdTest() throws ApiException { - UUID serviceId = null; - List precisionTimeChangeOperation = null; - PrecisionTimeServiceCreateResponse response = api.updateTimeServicesById(serviceId, precisionTimeChangeOperation); + // + //UUID serviceId = null; + // + //List precisionTimeChangeOperation = null; + // + //PrecisionTimeServiceCreateResponse response = api.updateTimeServicesById(serviceId, precisionTimeChangeOperation); + // TODO: test validations } - } diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/PricesApiTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/PricesApiTest.java index 20ffb821..bcfd75fc 100644 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/PricesApiTest.java +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/PricesApiTest.java @@ -9,41 +9,60 @@ * Do not edit the class manually. */ - package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; import com.equinix.openapi.fabric.v4.model.FilterBody; -import com.equinix.openapi.fabric.v4.model.PriceError; import com.equinix.openapi.fabric.v4.model.PriceSearchResponse; -import org.junit.jupiter.api.Disabled; +import com.equinix.openapi.fabric.v4.model.SearchExpression; import org.junit.jupiter.api.Test; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import java.util.Arrays; +import java.util.Collections; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotEquals; /** * API tests for PricesApi */ -@Disabled -public class PricesApiTest { - private final PricesApi api = new PricesApi(); +public class PricesApiTest extends AbstractTest { + private final PricesApi api = new PricesApi(generateToken()); /** * Get Prices - * + *

* Search prices by search criteria * * @throws ApiException if the Api call fails */ @Test public void searchPricesTest() throws ApiException { - FilterBody filterBody = null; + SearchExpression itemProperty1 = new SearchExpression() + .property("/type") + .operator(SearchExpression.OperatorEnum.EQUAL) + .values(Collections.singletonList("IP_BLOCK_PRODUCT")); + SearchExpression itemProperty2 = new SearchExpression() + .property("/ipBlock/type") + .operator(SearchExpression.OperatorEnum.EQUAL) + .values(Collections.singletonList("IPv4")); + SearchExpression itemProperty3 = new SearchExpression() + .property("/ipBlock/prefixLength") + .operator(SearchExpression.OperatorEnum.EQUAL) + .values(Collections.singletonList("29")); + SearchExpression itemProperty4 = new SearchExpression(). + property("/ipBlock/location/metroCode") + .operator(SearchExpression.OperatorEnum.IN) + .values(Arrays.asList("SV", "WA")); + + SearchExpression item = new SearchExpression().and(Arrays.asList(itemProperty1, itemProperty2, itemProperty3, itemProperty4)); + + FilterBody filterBody = new FilterBody(); + filterBody.setFilter(item); + PriceSearchResponse response = api.searchPrices(filterBody); - // TODO: test validations + assertEquals(200, api.getApiClient().getStatusCode()); + assertNotEquals(null, response.getData().get(0).getType()); } - } diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/RouteFilterRulesApiTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/RouteFilterRulesApiTest.java index e5adedff..056b41f0 100644 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/RouteFilterRulesApiTest.java +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/RouteFilterRulesApiTest.java @@ -9,174 +9,200 @@ * Do not edit the class manually. */ - package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; -import com.equinix.openapi.fabric.v4.model.Error; -import com.equinix.openapi.fabric.v4.model.GetRouteFilterRulesResponse; -import com.equinix.openapi.fabric.v4.model.RouteFilterRulesBase; -import com.equinix.openapi.fabric.v4.model.RouteFilterRulesChangeData; -import com.equinix.openapi.fabric.v4.model.RouteFilterRulesChangeDataResponse; -import com.equinix.openapi.fabric.v4.model.RouteFilterRulesData; -import com.equinix.openapi.fabric.v4.model.RouteFilterRulesPatchRequestItem; -import com.equinix.openapi.fabric.v4.model.RouteFilterRulesPostRequest; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import org.junit.jupiter.api.Disabled; /** * API tests for RouteFilterRulesApi */ @Disabled -public class RouteFilterRulesApiTest { +public class RouteFilterRulesApiTest extends AbstractTest { - private final RouteFilterRulesApi api = new RouteFilterRulesApi(); + private final RouteFilterRulesApi api = new RouteFilterRulesApi(generateToken()); /** * Create RFRule - * + *

* This API provides capability to create a Route Filter Rule * * @throws ApiException if the Api call fails */ @Test public void createRouteFilterRuleTest() throws ApiException { - String routeFilterId = null; - RouteFilterRulesBase routeFilterRulesBase = null; - RouteFilterRulesData response = api.createRouteFilterRule(routeFilterId, routeFilterRulesBase); + // + //String routeFilterId = null; + // + //RouteFilterRulesBase routeFilterRulesBase = null; + // + //RouteFilterRulesData response = api.createRouteFilterRule(routeFilterId, routeFilterRulesBase); + // TODO: test validations } /** * Bulk RFRules - * + *

* This API provides capability to create bulk route filter rules * * @throws ApiException if the Api call fails */ @Test public void createRouteFilterRulesInBulkTest() throws ApiException { - String routeFilterId = null; - RouteFilterRulesPostRequest routeFilterRulesPostRequest = null; - GetRouteFilterRulesResponse response = api.createRouteFilterRulesInBulk(routeFilterId, routeFilterRulesPostRequest); + // + //String routeFilterId = null; + // + //RouteFilterRulesPostRequest routeFilterRulesPostRequest = null; + // + //GetRouteFilterRulesResponse response = api.createRouteFilterRulesInBulk(routeFilterId, routeFilterRulesPostRequest); + // TODO: test validations } /** * DeleteRFRule - * + *

* This API provides capability to delete a Route Filter Rule * * @throws ApiException if the Api call fails */ @Test public void deleteRouteFilterRuleByUuidTest() throws ApiException { - String routeFilterId = null; - String routeFilterRuleId = null; - RouteFilterRulesData response = api.deleteRouteFilterRuleByUuid(routeFilterId, routeFilterRuleId); + // + //String routeFilterId = null; + // + //String routeFilterRuleId = null; + // + //RouteFilterRulesData response = api.deleteRouteFilterRuleByUuid(routeFilterId, routeFilterRuleId); + // TODO: test validations } /** * GetRFRule By UUID - * + *

* This API provides capability to view a Route Filter Rule by UUID * * @throws ApiException if the Api call fails */ @Test public void getRouteFilterRuleByUuidTest() throws ApiException { - String routeFilterId = null; - String routeFilterRuleId = null; - RouteFilterRulesData response = api.getRouteFilterRuleByUuid(routeFilterId, routeFilterRuleId); + // + //String routeFilterId = null; + // + //String routeFilterRuleId = null; + // + //RouteFilterRulesData response = api.getRouteFilterRuleByUuid(routeFilterId, routeFilterRuleId); + // TODO: test validations } /** * Get Change By ID - * + *

* This API provides capability to retrieve a specific Route Filter Rule's Changes * * @throws ApiException if the Api call fails */ @Test public void getRouteFilterRuleChangeByUuidTest() throws ApiException { - String routeFilterId = null; - String routeFilterRuleId = null; - UUID changeId = null; - RouteFilterRulesChangeData response = api.getRouteFilterRuleChangeByUuid(routeFilterId, routeFilterRuleId, changeId); + // + //String routeFilterId = null; + // + //String routeFilterRuleId = null; + // + //UUID changeId = null; + // + //RouteFilterRulesChangeData response = api.getRouteFilterRuleChangeByUuid(routeFilterId, routeFilterRuleId, changeId); + // TODO: test validations } /** * Get All Changes - * + *

* This API provides capability to retrieve all of a Route Filter Rule's Changes * * @throws ApiException if the Api call fails */ @Test public void getRouteFilterRuleChangesTest() throws ApiException { - String routeFilterId = null; - String routeFilterRuleId = null; - Integer offset = null; - Integer limit = null; - RouteFilterRulesChangeDataResponse response = api.getRouteFilterRuleChanges(routeFilterId, routeFilterRuleId, offset, limit); + // + //String routeFilterId = null; + // + //String routeFilterRuleId = null; + // + //Integer offset = null; + // + //Integer limit = null; + // + //RouteFilterRulesChangeDataResponse response = api.getRouteFilterRuleChanges(routeFilterId, routeFilterRuleId, offset, limit); + // TODO: test validations } /** * GetRFRules - * + *

* This API provides capability to get all Route Filters Rules for Fabric * * @throws ApiException if the Api call fails */ @Test public void getRouteFilterRulesTest() throws ApiException { - String routeFilterId = null; - Integer offset = null; - Integer limit = null; - GetRouteFilterRulesResponse response = api.getRouteFilterRules(routeFilterId, offset, limit); + // + //String routeFilterId = null; + // + //Integer offset = null; + // + //Integer limit = null; + // + //GetRouteFilterRulesResponse response = api.getRouteFilterRules(routeFilterId, offset, limit); + // TODO: test validations } /** * PatchRFilterRule - * + *

* This API provides capability to partially update a Route Filter Rule * * @throws ApiException if the Api call fails */ @Test public void patchRouteFilterRuleByUuidTest() throws ApiException { - String routeFilterId = null; - String routeFilterRuleId = null; - List routeFilterRulesPatchRequestItem = null; - RouteFilterRulesData response = api.patchRouteFilterRuleByUuid(routeFilterId, routeFilterRuleId, routeFilterRulesPatchRequestItem); + // + //String routeFilterId = null; + // + //String routeFilterRuleId = null; + // + //List routeFilterRulesPatchRequestItem = null; + // + //RouteFilterRulesData response = api.patchRouteFilterRuleByUuid(routeFilterId, routeFilterRuleId, routeFilterRulesPatchRequestItem); + // TODO: test validations } /** * ReplaceRFRule - * + *

* This API provides capability to replace a Route Filter Rule completely * * @throws ApiException if the Api call fails */ @Test public void replaceRouteFilterRuleByUuidTest() throws ApiException { - String routeFilterId = null; - String routeFilterRuleId = null; - RouteFilterRulesBase routeFilterRulesBase = null; - RouteFilterRulesData response = api.replaceRouteFilterRuleByUuid(routeFilterId, routeFilterRuleId, routeFilterRulesBase); + // + //String routeFilterId = null; + // + //String routeFilterRuleId = null; + // + //RouteFilterRulesBase routeFilterRulesBase = null; + // + //RouteFilterRulesData response = api.replaceRouteFilterRuleByUuid(routeFilterId, routeFilterRuleId, routeFilterRulesBase); + // TODO: test validations } - } diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/RouteFiltersApiTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/RouteFiltersApiTest.java index 4060786f..49eae1ed 100644 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/RouteFiltersApiTest.java +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/RouteFiltersApiTest.java @@ -9,213 +9,237 @@ * Do not edit the class manually. */ - package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; -import com.equinix.openapi.fabric.v4.model.ConnectionRouteFilterData; -import com.equinix.openapi.fabric.v4.model.ConnectionRouteFiltersBase; -import com.equinix.openapi.fabric.v4.model.Error; -import com.equinix.openapi.fabric.v4.model.GetAllConnectionRouteFiltersResponse; -import com.equinix.openapi.fabric.v4.model.GetRouteFilterGetConnectionsResponse; -import com.equinix.openapi.fabric.v4.model.RouteFilterChangeData; -import com.equinix.openapi.fabric.v4.model.RouteFilterChangeDataResponse; -import com.equinix.openapi.fabric.v4.model.RouteFiltersBase; -import com.equinix.openapi.fabric.v4.model.RouteFiltersData; -import com.equinix.openapi.fabric.v4.model.RouteFiltersPatchRequestItem; -import com.equinix.openapi.fabric.v4.model.RouteFiltersSearchBase; -import com.equinix.openapi.fabric.v4.model.RouteFiltersSearchResponse; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import org.junit.jupiter.api.Disabled; /** * API tests for RouteFiltersApi */ @Disabled -public class RouteFiltersApiTest { +public class RouteFiltersApiTest extends AbstractTest { - private final RouteFiltersApi api = new RouteFiltersApi(); + private final RouteFiltersApi api = new RouteFiltersApi(generateToken()); /** * Attach Route Filter - * + *

* This API provides capability to attach a Route Filter to a Connection * * @throws ApiException if the Api call fails */ @Test public void attachConnectionRouteFilterTest() throws ApiException { - String routeFilterId = null; - String connectionId = null; - ConnectionRouteFiltersBase connectionRouteFiltersBase = null; - ConnectionRouteFilterData response = api.attachConnectionRouteFilter(routeFilterId, connectionId, connectionRouteFiltersBase); + // + //String routeFilterId = null; + // + //String connectionId = null; + // + //ConnectionRouteFiltersBase connectionRouteFiltersBase = null; + // + //ConnectionRouteFilterData response = api.attachConnectionRouteFilter(routeFilterId, connectionId, connectionRouteFiltersBase); + // TODO: test validations } /** * Create Route Filters - * + *

* This API provides capability to create a Route Filter * * @throws ApiException if the Api call fails */ @Test public void createRouteFilterTest() throws ApiException { - RouteFiltersBase routeFiltersBase = null; - RouteFiltersData response = api.createRouteFilter(routeFiltersBase); + // + //RouteFiltersBase routeFiltersBase = null; + // + //RouteFiltersData response = api.createRouteFilter(routeFiltersBase); + // TODO: test validations } /** * Delete Route Filter - * + *

* This API provides capability to delete a Route Filter * * @throws ApiException if the Api call fails */ @Test public void deleteRouteFilterByUuidTest() throws ApiException { - String routeFilterId = null; - RouteFiltersData response = api.deleteRouteFilterByUuid(routeFilterId); + // + //String routeFilterId = null; + // + //RouteFiltersData response = api.deleteRouteFilterByUuid(routeFilterId); + // TODO: test validations } /** * Detach Route Filter - * + *

* This API provides capability to detach a Route Filter from a Connection * * @throws ApiException if the Api call fails */ @Test public void detachConnectionRouteFilterTest() throws ApiException { - String routeFilterId = null; - String connectionId = null; - ConnectionRouteFilterData response = api.detachConnectionRouteFilter(routeFilterId, connectionId); + // + //String routeFilterId = null; + // + //String connectionId = null; + // + //ConnectionRouteFilterData response = api.detachConnectionRouteFilter(routeFilterId, connectionId); + // TODO: test validations } /** * Get Route Filter - * + *

* This API provides capability to view a specific Route Filter attached to a Connection * * @throws ApiException if the Api call fails */ @Test public void getConnectionRouteFilterByUuidTest() throws ApiException { - String routeFilterId = null; - String connectionId = null; - ConnectionRouteFilterData response = api.getConnectionRouteFilterByUuid(routeFilterId, connectionId); + // + //String routeFilterId = null; + // + //String connectionId = null; + // + //ConnectionRouteFilterData response = api.getConnectionRouteFilterByUuid(routeFilterId, connectionId); + // TODO: test validations } /** * Get All RouteFilters - * + *

* This API provides capability to view all Route Filters attached to a Connection * * @throws ApiException if the Api call fails */ @Test public void getConnectionRouteFiltersTest() throws ApiException { - String connectionId = null; - GetAllConnectionRouteFiltersResponse response = api.getConnectionRouteFilters(connectionId); + // + //String connectionId = null; + // + //GetAllConnectionRouteFiltersResponse response = api.getConnectionRouteFilters(connectionId); + // TODO: test validations } /** * Get Filter By UUID - * + *

* This API provides capability to view a Route Filter by UUID * * @throws ApiException if the Api call fails */ @Test public void getRouteFilterByUuidTest() throws ApiException { - String routeFilterId = null; - RouteFiltersData response = api.getRouteFilterByUuid(routeFilterId); + // + //String routeFilterId = null; + // + //RouteFiltersData response = api.getRouteFilterByUuid(routeFilterId); + // TODO: test validations } /** * Get Change By ID - * + *

* This API provides capability to retrieve a specific Route Filter's Changes * * @throws ApiException if the Api call fails */ @Test public void getRouteFilterChangeByUuidTest() throws ApiException { - String routeFilterId = null; - UUID changeId = null; - RouteFilterChangeData response = api.getRouteFilterChangeByUuid(routeFilterId, changeId); + // + //String routeFilterId = null; + // + //UUID changeId = null; + // + //RouteFilterChangeData response = api.getRouteFilterChangeByUuid(routeFilterId, changeId); + // TODO: test validations } /** * Get All Changes - * + *

* This API provides capability to retrieve all of a Route Filter's Changes * * @throws ApiException if the Api call fails */ @Test public void getRouteFilterChangesTest() throws ApiException { - String routeFilterId = null; - Integer offset = null; - Integer limit = null; - RouteFilterChangeDataResponse response = api.getRouteFilterChanges(routeFilterId, offset, limit); + // + //String routeFilterId = null; + // + //Integer offset = null; + // + //Integer limit = null; + // + //RouteFilterChangeDataResponse response = api.getRouteFilterChanges(routeFilterId, offset, limit); + // TODO: test validations } /** * Get Connections - * + *

* This API provides capability to view all Connections using the Route Filter * * @throws ApiException if the Api call fails */ @Test public void getRouteFilterConnectionsTest() throws ApiException { - String routeFilterId = null; - GetRouteFilterGetConnectionsResponse response = api.getRouteFilterConnections(routeFilterId); + // + //String routeFilterId = null; + // + //GetRouteFilterGetConnectionsResponse response = api.getRouteFilterConnections(routeFilterId); + // TODO: test validations } /** * Patch Route Filter - * + *

* This API provides capability to partially update a Route Filter * * @throws ApiException if the Api call fails */ @Test public void patchRouteFilterByUuidTest() throws ApiException { - String routeFilterId = null; - List routeFiltersPatchRequestItem = null; - RouteFiltersData response = api.patchRouteFilterByUuid(routeFilterId, routeFiltersPatchRequestItem); + // + //String routeFilterId = null; + // + //List routeFiltersPatchRequestItem = null; + // + //RouteFiltersData response = api.patchRouteFilterByUuid(routeFilterId, routeFiltersPatchRequestItem); + // TODO: test validations } /** * Search Route Filters - * + *

* This API provides capability to search Route Filters * * @throws ApiException if the Api call fails */ @Test public void searchRouteFiltersTest() throws ApiException { - RouteFiltersSearchBase routeFiltersSearchBase = null; - RouteFiltersSearchResponse response = api.searchRouteFilters(routeFiltersSearchBase); + // + //RouteFiltersSearchBase routeFiltersSearchBase = null; + // + //RouteFiltersSearchResponse response = api.searchRouteFilters(routeFiltersSearchBase); + // TODO: test validations } - } diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/RoutingProtocolsApiTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/RoutingProtocolsApiTest.java index 812c040c..e5fee1f7 100644 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/RoutingProtocolsApiTest.java +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/RoutingProtocolsApiTest.java @@ -9,243 +9,284 @@ * Do not edit the class manually. */ - package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; -import com.equinix.openapi.fabric.v4.model.BGPActionData; -import com.equinix.openapi.fabric.v4.model.BGPActionRequest; -import com.equinix.openapi.fabric.v4.model.BGPActionsBulkData; -import com.equinix.openapi.fabric.v4.model.ConnectionChangeOperation; -import com.equinix.openapi.fabric.v4.model.ConnectionRoutingProtocolPostRequest; -import com.equinix.openapi.fabric.v4.model.Error; -import com.equinix.openapi.fabric.v4.model.GetResponse; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolBase; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolChangeData; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolChangeDataResponse; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolData; -import java.util.UUID; -import com.equinix.openapi.fabric.v4.model.ValidateRequest; -import com.equinix.openapi.fabric.v4.model.ValidateSubnetResponse; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import org.junit.jupiter.api.Disabled; /** * API tests for RoutingProtocolsApi */ @Disabled -public class RoutingProtocolsApiTest { +public class RoutingProtocolsApiTest extends AbstractTest { - private final RoutingProtocolsApi api = new RoutingProtocolsApi(); + private final RoutingProtocolsApi api = new RoutingProtocolsApi(generateToken()); /** * Create Protocol - * + *

* This API provides capability to create Routing Protocol for connections * * @throws ApiException if the Api call fails */ @Test public void createConnectionRoutingProtocolTest() throws ApiException { - String connectionId = null; - RoutingProtocolBase routingProtocolBase = null; - RoutingProtocolData response = api.createConnectionRoutingProtocol(connectionId, routingProtocolBase); + // + //String connectionId = null; + // + //RoutingProtocolBase routingProtocolBase = null; + // + //RoutingProtocolData response = api.createConnectionRoutingProtocol(connectionId, routingProtocolBase); + // TODO: test validations } /** * Bulk Create Protocol - * + *

* This API provides capability to create Routing Protocol for connections * * @throws ApiException if the Api call fails */ @Test public void createConnectionRoutingProtocolsInBulkTest() throws ApiException { - String connectionId = null; - ConnectionRoutingProtocolPostRequest connectionRoutingProtocolPostRequest = null; - GetResponse response = api.createConnectionRoutingProtocolsInBulk(connectionId, connectionRoutingProtocolPostRequest); + // + //String connectionId = null; + // + //ConnectionRoutingProtocolPostRequest connectionRoutingProtocolPostRequest = null; + // + //GetResponse response = api.createConnectionRoutingProtocolsInBulk(connectionId, connectionRoutingProtocolPostRequest); + // TODO: test validations } /** * Delete Protocol - * + *

* This API provides capability to delete Routing Protocols on virtual connection * * @throws ApiException if the Api call fails */ @Test public void deleteConnectionRoutingProtocolByUuidTest() throws ApiException { - UUID routingProtocolId = null; - String connectionId = null; - RoutingProtocolData response = api.deleteConnectionRoutingProtocolByUuid(routingProtocolId, connectionId); + // + //UUID routingProtocolId = null; + // + //String connectionId = null; + // + //RoutingProtocolData response = api.deleteConnectionRoutingProtocolByUuid(routingProtocolId, connectionId); + // TODO: test validations } /** * Get BGP Actions - * + *

* This API provides capability to get all BGP actions status * * @throws ApiException if the Api call fails */ @Test public void getConnectionRoutingProtocolAllBgpActionsTest() throws ApiException { - UUID routingProtocolId = null; - String connectionId = null; - Integer offset = null; - Integer limit = null; - BGPActionsBulkData response = api.getConnectionRoutingProtocolAllBgpActions(routingProtocolId, connectionId, offset, limit); + // + //UUID routingProtocolId = null; + // + //String connectionId = null; + // + //Integer offset = null; + // + //Integer limit = null; + // + //BGPActionsBulkData response = api.getConnectionRoutingProtocolAllBgpActions(routingProtocolId, connectionId, offset, limit); + // TODO: test validations } /** * Get Protocol - * + *

* This API provides capability to accept/reject user's virtual connection * * @throws ApiException if the Api call fails */ @Test public void getConnectionRoutingProtocolByUuidTest() throws ApiException { - UUID routingProtocolId = null; - String connectionId = null; - RoutingProtocolData response = api.getConnectionRoutingProtocolByUuid(routingProtocolId, connectionId); + // + //UUID routingProtocolId = null; + // + //String connectionId = null; + // + //RoutingProtocolData response = api.getConnectionRoutingProtocolByUuid(routingProtocolId, connectionId); + // TODO: test validations } /** * GetRoutingProtocols - * + *

* This API provides capability to get Routing Protocols for connections * * @throws ApiException if the Api call fails */ @Test public void getConnectionRoutingProtocolsTest() throws ApiException { - String connectionId = null; - Integer offset = null; - Integer limit = null; - GetResponse response = api.getConnectionRoutingProtocols(connectionId, offset, limit); + // + //String connectionId = null; + // + //Integer offset = null; + // + //Integer limit = null; + // + //GetResponse response = api.getConnectionRoutingProtocols(connectionId, offset, limit); + // TODO: test validations } /** * Get BGP Action - * + *

* This API provides capability to retrieve specific BGP action * * @throws ApiException if the Api call fails */ @Test public void getConnectionRoutingProtocolsBgpActionByUuidTest() throws ApiException { - String connectionId = null; - UUID routingProtocolId = null; - UUID actionId = null; - BGPActionData response = api.getConnectionRoutingProtocolsBgpActionByUuid(connectionId, routingProtocolId, actionId); + // + //String connectionId = null; + // + //UUID routingProtocolId = null; + // + //UUID actionId = null; + // + //BGPActionData response = api.getConnectionRoutingProtocolsBgpActionByUuid(connectionId, routingProtocolId, actionId); + // TODO: test validations } /** * Get Change By ID - * + *

* This API provides capability to retrieve specific Routing Protocol Change * * @throws ApiException if the Api call fails */ @Test public void getConnectionRoutingProtocolsChangeByUuidTest() throws ApiException { - String connectionId = null; - UUID routingProtocolId = null; - UUID changeId = null; - RoutingProtocolChangeData response = api.getConnectionRoutingProtocolsChangeByUuid(connectionId, routingProtocolId, changeId); + // + //String connectionId = null; + // + //UUID routingProtocolId = null; + // + //UUID changeId = null; + // + //RoutingProtocolChangeData response = api.getConnectionRoutingProtocolsChangeByUuid(connectionId, routingProtocolId, changeId); + // TODO: test validations } /** * Get Changes - * + *

* This API provides capability to retrieve user's Routing Protocol Changes * * @throws ApiException if the Api call fails */ @Test public void getConnectionRoutingProtocolsChangesTest() throws ApiException { - String connectionId = null; - UUID routingProtocolId = null; - Integer offset = null; - Integer limit = null; - RoutingProtocolChangeDataResponse response = api.getConnectionRoutingProtocolsChanges(connectionId, routingProtocolId, offset, limit); + // + //String connectionId = null; + // + //UUID routingProtocolId = null; + // + //Integer offset = null; + // + //Integer limit = null; + // + //RoutingProtocolChangeDataResponse response = api.getConnectionRoutingProtocolsChanges(connectionId, routingProtocolId, offset, limit); + // TODO: test validations } /** * Patch Protocol - * + *

* This API provides capability to partially update Routing Protocols on a virtual connection * * @throws ApiException if the Api call fails */ @Test public void patchConnectionRoutingProtocolByUuidTest() throws ApiException { - UUID routingProtocolId = null; - String connectionId = null; - List connectionChangeOperation = null; - RoutingProtocolData response = api.patchConnectionRoutingProtocolByUuid(routingProtocolId, connectionId, connectionChangeOperation); + // + //UUID routingProtocolId = null; + // + //String connectionId = null; + // + //List connectionChangeOperation = null; + // + //RoutingProtocolData response = api.patchConnectionRoutingProtocolByUuid(routingProtocolId, connectionId, connectionChangeOperation); + // TODO: test validations } /** * Clear/Reset BGP - * + *

* This API provides capability to clear/reset Routing Protocols BGP session * * @throws ApiException if the Api call fails */ @Test public void postConnectionRoutingProtocolBgpActionByUuidTest() throws ApiException { - UUID routingProtocolId = null; - String connectionId = null; - BGPActionRequest bgPActionRequest = null; - BGPActionData response = api.postConnectionRoutingProtocolBgpActionByUuid(routingProtocolId, connectionId, bgPActionRequest); + // + //UUID routingProtocolId = null; + // + //String connectionId = null; + // + //BGPActionRequest bgPActionRequest = null; + // + //BGPActionData response = api.postConnectionRoutingProtocolBgpActionByUuid(routingProtocolId, connectionId, bgPActionRequest); + // TODO: test validations } /** * Replace Protocol - * + *

* This API provides capability to replace complete Routing Protocols on a virtual connection * * @throws ApiException if the Api call fails */ @Test public void replaceConnectionRoutingProtocolByUuidTest() throws ApiException { - UUID routingProtocolId = null; - String connectionId = null; - RoutingProtocolBase routingProtocolBase = null; - RoutingProtocolData response = api.replaceConnectionRoutingProtocolByUuid(routingProtocolId, connectionId, routingProtocolBase); + // + //UUID routingProtocolId = null; + // + //String connectionId = null; + // + //RoutingProtocolBase routingProtocolBase = null; + // + //RoutingProtocolData response = api.replaceConnectionRoutingProtocolByUuid(routingProtocolId, connectionId, routingProtocolBase); + // TODO: test validations } /** * Validate Subnet - * + *

* This API provides capability to validate all subnets associated with any connection in the given FCR * * @throws ApiException if the Api call fails */ @Test public void validateRoutingProtocolTest() throws ApiException { - UUID routerId = null; - ValidateRequest validateRequest = null; - ValidateSubnetResponse response = api.validateRoutingProtocol(routerId, validateRequest); + // + //UUID routerId = null; + // + //ValidateRequest validateRequest = null; + // + //ValidateSubnetResponse response = api.validateRoutingProtocol(routerId, validateRequest); + // TODO: test validations } - } diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/ServiceProfilesApiTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/ServiceProfilesApiTest.java index f054fb4d..28026d48 100644 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/ServiceProfilesApiTest.java +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/ServiceProfilesApiTest.java @@ -9,154 +9,173 @@ * Do not edit the class manually. */ - package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; -import com.equinix.openapi.fabric.v4.model.Error; -import com.equinix.openapi.fabric.v4.model.JsonPatchOperation; -import com.equinix.openapi.fabric.v4.model.ServiceMetros; -import com.equinix.openapi.fabric.v4.model.ServiceProfile; -import com.equinix.openapi.fabric.v4.model.ServiceProfileRequest; -import com.equinix.openapi.fabric.v4.model.ServiceProfileSearchRequest; -import com.equinix.openapi.fabric.v4.model.ServiceProfiles; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import org.junit.jupiter.api.Disabled; /** * API tests for ServiceProfilesApi */ @Disabled -public class ServiceProfilesApiTest { +public class ServiceProfilesApiTest extends AbstractTest { - private final ServiceProfilesApi api = new ServiceProfilesApi(); + private final ServiceProfilesApi api = new ServiceProfilesApi(generateToken()); /** * Create Profile - * + *

* Create Service Profile creates Equinix Fabric? Service Profile. * * @throws ApiException if the Api call fails */ @Test public void createServiceProfileTest() throws ApiException { - ServiceProfileRequest serviceProfileRequest = null; - ServiceProfile response = api.createServiceProfile(serviceProfileRequest); + // + //ServiceProfileRequest serviceProfileRequest = null; + // + //ServiceProfile response = api.createServiceProfile(serviceProfileRequest); + // TODO: test validations } /** * Delete Profile - * + *

* delete Service Profile by UUID * * @throws ApiException if the Api call fails */ @Test public void deleteServiceProfileByUuidTest() throws ApiException { - UUID serviceProfileId = null; - ServiceProfile response = api.deleteServiceProfileByUuid(serviceProfileId); + // + //UUID serviceProfileId = null; + // + //ServiceProfile response = api.deleteServiceProfileByUuid(serviceProfileId); + // TODO: test validations } /** * Get Profile - * + *

* Get service profile by UUID. View Point parameter if set to zSide will give seller's view of the profile otherwise buyer's view. * * @throws ApiException if the Api call fails */ @Test public void getServiceProfileByUuidTest() throws ApiException { - UUID serviceProfileId = null; - String viewPoint = null; - ServiceProfile response = api.getServiceProfileByUuid(serviceProfileId, viewPoint); + // + //UUID serviceProfileId = null; + // + //String viewPoint = null; + // + //ServiceProfile response = api.getServiceProfileByUuid(serviceProfileId, viewPoint); + // TODO: test validations } /** * Get Profile Metros - * + *

* Get service profile metros by UUID. * * @throws ApiException if the Api call fails */ @Test public void getServiceProfileMetrosByUuidTest() throws ApiException { - UUID serviceProfileId = null; - Integer offset = null; - Integer limit = null; - ServiceMetros response = api.getServiceProfileMetrosByUuid(serviceProfileId, offset, limit); + // + //UUID serviceProfileId = null; + // + //Integer offset = null; + // + //Integer limit = null; + // + //ServiceMetros response = api.getServiceProfileMetrosByUuid(serviceProfileId, offset, limit); + // TODO: test validations } /** * Get all Profiles - * + *

* The API request returns all Equinix Fabric Service Profiles in accordance with the view point requested. * * @throws ApiException if the Api call fails */ @Test public void getServiceProfilesTest() throws ApiException { - Integer offset = null; - Integer limit = null; - String viewPoint = null; - ServiceProfiles response = api.getServiceProfiles(offset, limit, viewPoint); + // + //Integer offset = null; + // + //Integer limit = null; + // + //String viewPoint = null; + // + //ServiceProfiles response = api.getServiceProfiles(offset, limit, viewPoint); + // TODO: test validations } /** * Replace Profile - * + *

* This API request replaces a service profile definition * * @throws ApiException if the Api call fails */ @Test public void putServiceProfileByUuidTest() throws ApiException { - UUID serviceProfileId = null; - String ifMatch = null; - ServiceProfileRequest serviceProfileRequest = null; - ServiceProfile response = api.putServiceProfileByUuid(serviceProfileId, ifMatch, serviceProfileRequest); + // + //UUID serviceProfileId = null; + // + //String ifMatch = null; + // + //ServiceProfileRequest serviceProfileRequest = null; + // + //ServiceProfile response = api.putServiceProfileByUuid(serviceProfileId, ifMatch, serviceProfileRequest); + // TODO: test validations } /** * Profile Search - * + *

* Search service profiles by search criteria * * @throws ApiException if the Api call fails */ @Test public void searchServiceProfilesTest() throws ApiException { - ServiceProfileSearchRequest serviceProfileSearchRequest = null; - String viewPoint = null; - ServiceProfiles response = api.searchServiceProfiles(serviceProfileSearchRequest, viewPoint); + // + //ServiceProfileSearchRequest serviceProfileSearchRequest = null; + // + //String viewPoint = null; + // + //ServiceProfiles response = api.searchServiceProfiles(serviceProfileSearchRequest, viewPoint); + // TODO: test validations } /** * Update Profile - * + *

* Update Service Profile by UUID * * @throws ApiException if the Api call fails */ @Test public void updateServiceProfileByUuidTest() throws ApiException { - UUID serviceProfileId = null; - String ifMatch = null; - List jsonPatchOperation = null; - ServiceProfile response = api.updateServiceProfileByUuid(serviceProfileId, ifMatch, jsonPatchOperation); + // + //UUID serviceProfileId = null; + // + //String ifMatch = null; + // + //List jsonPatchOperation = null; + // + //ServiceProfile response = api.updateServiceProfileByUuid(serviceProfileId, ifMatch, jsonPatchOperation); + // TODO: test validations } - } diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/ServiceTokensApiTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/ServiceTokensApiTest.java index 64492f51..f7939bbf 100644 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/ServiceTokensApiTest.java +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/ServiceTokensApiTest.java @@ -9,133 +9,142 @@ * Do not edit the class manually. */ - package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; -import java.math.BigDecimal; -import com.equinix.openapi.fabric.v4.model.Error; -import com.equinix.openapi.fabric.v4.model.ServiceToken; -import com.equinix.openapi.fabric.v4.model.ServiceTokenActionRequest; -import com.equinix.openapi.fabric.v4.model.ServiceTokenChangeOperation; -import com.equinix.openapi.fabric.v4.model.ServiceTokenSearchRequest; -import com.equinix.openapi.fabric.v4.model.ServiceTokens; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import org.junit.jupiter.api.Disabled; /** * API tests for ServiceTokensApi */ @Disabled -public class ServiceTokensApiTest { +public class ServiceTokensApiTest extends AbstractTest { - private final ServiceTokensApi api = new ServiceTokensApi(); + private final ServiceTokensApi api = new ServiceTokensApi(generateToken()); /** * Create Service Token - * + *

* Create Service Tokens generates Equinix Fabric? service tokens. These tokens authorize users to access protected resources and services. * * @throws ApiException if the Api call fails */ @Test public void createServiceTokenTest() throws ApiException { - ServiceToken serviceToken = null; - ServiceToken response = api.createServiceToken(serviceToken); + // + //ServiceToken serviceToken = null; + // + //ServiceToken response = api.createServiceToken(serviceToken); + // TODO: test validations } /** * ServiceToken Actions - * + *

* This API provides capability to accept/reject user's servicetokens * * @throws ApiException if the Api call fails */ @Test public void createServiceTokenActionTest() throws ApiException { - UUID serviceTokenId = null; - ServiceTokenActionRequest serviceTokenActionRequest = null; - ServiceToken response = api.createServiceTokenAction(serviceTokenId, serviceTokenActionRequest); + // + //UUID serviceTokenId = null; + // + //ServiceTokenActionRequest serviceTokenActionRequest = null; + // + //ServiceToken response = api.createServiceTokenAction(serviceTokenId, serviceTokenActionRequest); + // TODO: test validations } /** * Delete Token by uuid - * + *

* Delete Service Tokens removes an Equinix Fabric service token corresponding to the specified uuid which are in INACTIVE state. * * @throws ApiException if the Api call fails */ @Test public void deleteServiceTokenByUuidTest() throws ApiException { - UUID serviceTokenId = null; - api.deleteServiceTokenByUuid(serviceTokenId); + // + //UUID serviceTokenId = null; + // + //api.deleteServiceTokenByUuid(serviceTokenId); + // TODO: test validations } /** * Get Token by uuid - * + *

* Get Specified Service Tokens uses the uuid of an Equinix Fabric service token to return details about the token's type, state, location, bandwidth, and other key properties. * * @throws ApiException if the Api call fails */ @Test public void getServiceTokenByUuidTest() throws ApiException { - UUID serviceTokenId = null; - ServiceToken response = api.getServiceTokenByUuid(serviceTokenId); + // + //UUID serviceTokenId = null; + // + //ServiceToken response = api.getServiceTokenByUuid(serviceTokenId); + // TODO: test validations } /** * Get All Tokens - * + *

* Get All ServiceTokens creates a list of all Equinix Fabric service tokens associated with the subscriber's account. * * @throws ApiException if the Api call fails */ @Test public void getServiceTokensTest() throws ApiException { - BigDecimal offset = null; - BigDecimal limit = null; - ServiceTokens response = api.getServiceTokens(offset, limit); + // + //BigDecimal offset = null; + // + //BigDecimal limit = null; + // + //ServiceTokens response = api.getServiceTokens(offset, limit); + // TODO: test validations } /** * Search servicetokens - * + *

* The API provides capability to get list of user's servicetokens using search criteria, including optional filtering, pagination and sorting * * @throws ApiException if the Api call fails */ @Test public void searchServiceTokensTest() throws ApiException { - ServiceTokenSearchRequest serviceTokenSearchRequest = null; - ServiceTokens response = api.searchServiceTokens(serviceTokenSearchRequest); + // + //ServiceTokenSearchRequest serviceTokenSearchRequest = null; + // + //ServiceTokens response = api.searchServiceTokens(serviceTokenSearchRequest); + // TODO: test validations } /** * Update Token By ID - * + *

* This API provides capability to update user's Service Token * * @throws ApiException if the Api call fails */ @Test public void updateServiceTokenByUuidTest() throws ApiException { - UUID serviceTokenId = null; - List serviceTokenChangeOperation = null; - ServiceToken response = api.updateServiceTokenByUuid(serviceTokenId, serviceTokenChangeOperation); + // + //UUID serviceTokenId = null; + // + //List serviceTokenChangeOperation = null; + // + //ServiceToken response = api.updateServiceTokenByUuid(serviceTokenId, serviceTokenChangeOperation); + // TODO: test validations } - } diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/StatisticsApiTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/StatisticsApiTest.java index b258e79b..2fcc85f9 100644 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/StatisticsApiTest.java +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/StatisticsApiTest.java @@ -9,87 +9,89 @@ * Do not edit the class manually. */ - package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; -import com.equinix.openapi.fabric.v4.model.Duration; -import com.equinix.openapi.fabric.v4.model.Error; -import com.equinix.openapi.fabric.v4.model.MetricInterval; -import java.time.OffsetDateTime; -import com.equinix.openapi.fabric.v4.model.QueryDirection; -import com.equinix.openapi.fabric.v4.model.Sort; -import com.equinix.openapi.fabric.v4.model.Statistics; -import com.equinix.openapi.fabric.v4.model.TopUtilizedStatistics; -import java.util.UUID; -import com.equinix.openapi.fabric.v4.model.ViewPoint; +import com.equinix.openapi.fabric.v4.api.dto.port.PortDto; +import com.equinix.openapi.fabric.v4.model.*; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import java.time.OffsetDateTime; +import java.time.ZoneOffset; +import java.time.temporal.ChronoUnit; +import java.util.Collections; +import java.util.UUID; + +import static org.junit.jupiter.api.Assertions.assertEquals; /** * API tests for StatisticsApi */ -@Disabled -public class StatisticsApiTest { +public class StatisticsApiTest extends AbstractTest { - private final StatisticsApi api = new StatisticsApi(); + private final StatisticsApi api = new StatisticsApi(generateToken()); /** * Get Stats by uuid - * + *

* This API provides service-level metrics so that you can view access and gather key information required to manage service subscription sizing and capacity * * @throws ApiException if the Api call fails */ + @Disabled @Test public void getConnectionStatsByPortUuidTest() throws ApiException { - String connectionId = null; - OffsetDateTime startDateTime = null; - OffsetDateTime endDateTime = null; - ViewPoint viewPoint = null; - Statistics response = api.getConnectionStatsByPortUuid(connectionId, startDateTime, endDateTime, viewPoint); + // + //String connectionId = null; + // + //OffsetDateTime startDateTime = null; + // + //OffsetDateTime endDateTime = null; + // + //ViewPoint viewPoint = null; + // + //Statistics response = api.getConnectionStatsByPortUuid(connectionId, startDateTime, endDateTime, viewPoint); + // TODO: test validations } /** * Top Port Statistics - * + *

* This API provides top utilized service-level traffic metrics so that you can view access and gather key information required to manage service subscription sizing and capacity. * * @throws ApiException if the Api call fails */ @Test public void getPortStatsTest() throws ApiException { - List metros = null; - Sort sort = null; - Integer top = null; - Duration duration = null; - QueryDirection direction = null; - MetricInterval metricInterval = null; - String projectId = null; - TopUtilizedStatistics response = api.getPortStats(metros, sort, top, duration, direction, metricInterval, projectId); - // TODO: test validations + String projectId = "291639000636552"; + TopUtilizedStatistics response = api.getPortStats( + Collections.singletonList(""), + Sort._BANDWIDTHUTILIZATION, + 5, + Duration.P7D, + QueryDirection.OUTBOUND, + MetricInterval.P7D, + projectId); + assertEquals(200, api.getApiClient().getStatusCode()); } /** * Get Stats by uuid - * + *

* This API provides service-level traffic metrics so that you can view access and gather key information required to manage service subscription sizing and capacity. * * @throws ApiException if the Api call fails */ @Test public void getPortStatsByPortUuidTest() throws ApiException { - UUID portId = null; - OffsetDateTime startDateTime = null; - OffsetDateTime endDateTime = null; - Statistics response = api.getPortStatsByPortUuid(portId, startDateTime, endDateTime); - // TODO: test validations - } + PortDto portDto = getPort(EnvVariable.QINQ_PORT); + OffsetDateTime startDate = OffsetDateTime.now().minusMonths(3).withOffsetSameLocal(ZoneOffset.UTC).truncatedTo(ChronoUnit.SECONDS); + OffsetDateTime endDate = OffsetDateTime.now().withOffsetSameLocal(ZoneOffset.UTC).truncatedTo(ChronoUnit.SECONDS); + Statistics response = api.getPortStatsByPortUuid(UUID.fromString(portDto.getUuid()), startDate, endDate); + assertEquals(200, api.getApiClient().getStatusCode()); + assertEquals(portDto.getName(), response.getAdditionalProperties().get("name")); + } } diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/TokenRequestDto.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/TokenRequestDto.java new file mode 100644 index 00000000..a2f9eca2 --- /dev/null +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/TokenRequestDto.java @@ -0,0 +1,60 @@ +package com.equinix.openapi.fabric.v4.api.dto; + +import com.google.gson.annotations.SerializedName; + +public class TokenRequestDto { + @SerializedName("user_password") + private String userPassword; + + @SerializedName("grant_type") + private String grantType; + + @SerializedName("user_name") + private String userName; + + @SerializedName("client_secret") + private String clientSecret; + + @SerializedName("client_id") + private String clientId; + + public String getUserPassword() { + return userPassword; + } + + public TokenRequestDto setUserPassword(String userPassword) { + this.userPassword = userPassword; + return this; + } + + public String getGrantType() { + return grantType; + } + + public String getUserName() { + return userName; + } + + public TokenRequestDto setUserName(String userName) { + this.userName = userName; + return this; + } + + public String getClientSecret() { + return clientSecret; + } + + public TokenRequestDto setClientSecret(String clientSecret) { + this.clientSecret = clientSecret; + return this; + } + + public String getClientId() { + return clientId; + } + + public TokenRequestDto setClientId(String clientId) { + this.clientId = clientId; + return this; + } +} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/TokenResponseDto.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/TokenResponseDto.java new file mode 100644 index 00000000..79089288 --- /dev/null +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/TokenResponseDto.java @@ -0,0 +1,48 @@ +package com.equinix.openapi.fabric.v4.api.dto; + +import com.google.gson.annotations.SerializedName; + +public class TokenResponseDto { + + @SerializedName("access_token") + private String accessToken; + + @SerializedName("refresh_token") + private String refreshToken; + + @SerializedName("user_name") + private String userName; + + @SerializedName("token_timeout") + private String tokenTimeout; + + @SerializedName("token_type") + private String tokenType; + + @SerializedName("refresh_token_timeout") + private String refreshTokenTimeout; + + public String getAccessToken() { + return accessToken; + } + + public String getRefreshToken() { + return refreshToken; + } + + public String getUserName() { + return userName; + } + + public String getTokenTimeout() { + return tokenTimeout; + } + + public String getTokenType() { + return tokenType; + } + + public String getRefreshTokenTimeout() { + return refreshTokenTimeout; + } +} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/Device.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/Device.java new file mode 100644 index 00000000..7741d913 --- /dev/null +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/Device.java @@ -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; + } +} \ No newline at end of file diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/Encapsulation.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/Encapsulation.java new file mode 100644 index 00000000..6c00315d --- /dev/null +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/Encapsulation.java @@ -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; + } +} \ No newline at end of file diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/Lag.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/Lag.java new file mode 100644 index 00000000..5eb9fecf --- /dev/null +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/Lag.java @@ -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; + } +} \ No newline at end of file diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/Location.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/Location.java new file mode 100644 index 00000000..0138c6f7 --- /dev/null +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/Location.java @@ -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; + } +} \ No newline at end of file diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/PortDto.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/PortDto.java new file mode 100644 index 00000000..adb75723 --- /dev/null +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/PortDto.java @@ -0,0 +1,118 @@ +package com.equinix.openapi.fabric.v4.api.dto.port; + +import com.google.gson.annotations.SerializedName; + +public class PortDto{ + + @SerializedName("encapsulation") + private Encapsulation encapsulation; + + @SerializedName("settings") + private Settings settings; + + @SerializedName("availableBandwidth") + private int availableBandwidth; + + @SerializedName("bandwidth") + private int bandwidth; + + @SerializedName("lagEnabled") + private boolean lagEnabled; + + @SerializedName("type") + private String type; + + @SerializedName("uuid") + private String uuid; + + @SerializedName("cvpId") + private String cvpId; + + @SerializedName("lag") + private Lag lag; + + @SerializedName("usedBandwidth") + private int usedBandwidth; + + @SerializedName("name") + private String name; + + @SerializedName("location") + private Location location; + + @SerializedName("href") + private String href; + + @SerializedName("state") + private String state; + + @SerializedName("redundancy") + private Redundancy redundancy; + + @SerializedName("device") + private Device device; + + public Encapsulation getEncapsulation(){ + return encapsulation; + } + + public Settings getSettings(){ + return settings; + } + + public int getAvailableBandwidth(){ + return availableBandwidth; + } + + public int getBandwidth(){ + return bandwidth; + } + + public boolean isLagEnabled(){ + return lagEnabled; + } + + public String getType(){ + return type; + } + + public String getUuid(){ + return uuid; + } + + public String getCvpId(){ + return cvpId; + } + + public Lag getLag(){ + return lag; + } + + public int getUsedBandwidth(){ + return usedBandwidth; + } + + public String getName(){ + return name; + } + + public Location getLocation(){ + return location; + } + + public String getHref(){ + return href; + } + + public String getState(){ + return state; + } + + public Redundancy getRedundancy(){ + return redundancy; + } + + public Device getDevice(){ + return device; + } +} \ No newline at end of file diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/Redundancy.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/Redundancy.java new file mode 100644 index 00000000..c5d42f78 --- /dev/null +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/Redundancy.java @@ -0,0 +1,13 @@ +package com.equinix.openapi.fabric.v4.api.dto.port; + +import com.google.gson.annotations.SerializedName; + +public class Redundancy{ + + @SerializedName("priority") + private String priority; + + public String getPriority(){ + return priority; + } +} \ No newline at end of file diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/Settings.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/Settings.java new file mode 100644 index 00000000..fa3450a6 --- /dev/null +++ b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/api/dto/port/Settings.java @@ -0,0 +1,27 @@ +package com.equinix.openapi.fabric.v4.api.dto.port; + +import com.google.gson.annotations.SerializedName; + +public class Settings{ + + @SerializedName("buyout") + private boolean buyout; + + @SerializedName("placeVcOrderPermission") + private boolean placeVcOrderPermission; + + @SerializedName("viewPortPermission") + private boolean viewPortPermission; + + public boolean isBuyout(){ + return buyout; + } + + public boolean isPlaceVcOrderPermission(){ + return placeVcOrderPermission; + } + + public boolean isViewPortPermission(){ + return viewPortPermission; + } +} \ No newline at end of file diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AccessPointSelectorTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AccessPointSelectorTest.java deleted file mode 100644 index d0f47e09..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AccessPointSelectorTest.java +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.LinkProtocol; -import com.equinix.openapi.fabric.v4.model.SimplifiedMetadataEntity; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for AccessPointSelector - */ -public class AccessPointSelectorTest { - private final AccessPointSelector model = new AccessPointSelector(); - - /** - * Model tests for AccessPointSelector - */ - @Test - public void testAccessPointSelector() { - // TODO: test AccessPointSelector - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'port' - */ - @Test - public void portTest() { - // TODO: test port - } - - /** - * Test the property 'linkProtocol' - */ - @Test - public void linkProtocolTest() { - // TODO: test linkProtocol - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AccessPointTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AccessPointTest.java deleted file mode 100644 index 079d5701..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AccessPointTest.java +++ /dev/null @@ -1,180 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.AccessPointType; -import com.equinix.openapi.fabric.v4.model.CloudRouter; -import com.equinix.openapi.fabric.v4.model.MetalInterconnection; -import com.equinix.openapi.fabric.v4.model.ModelInterface; -import com.equinix.openapi.fabric.v4.model.PeeringType; -import com.equinix.openapi.fabric.v4.model.SimplifiedAccount; -import com.equinix.openapi.fabric.v4.model.SimplifiedLinkProtocol; -import com.equinix.openapi.fabric.v4.model.SimplifiedLocation; -import com.equinix.openapi.fabric.v4.model.SimplifiedNetwork; -import com.equinix.openapi.fabric.v4.model.SimplifiedPort; -import com.equinix.openapi.fabric.v4.model.SimplifiedServiceProfile; -import com.equinix.openapi.fabric.v4.model.VirtualDevice; -import com.equinix.openapi.fabric.v4.model.VirtualNetwork; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for AccessPoint - */ -public class AccessPointTest { - private final AccessPoint model = new AccessPoint(); - - /** - * Model tests for AccessPoint - */ - @Test - public void testAccessPoint() { - // TODO: test AccessPoint - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'account' - */ - @Test - public void accountTest() { - // TODO: test account - } - - /** - * Test the property 'location' - */ - @Test - public void locationTest() { - // TODO: test location - } - - /** - * Test the property 'port' - */ - @Test - public void portTest() { - // TODO: test port - } - - /** - * Test the property 'profile' - */ - @Test - public void profileTest() { - // TODO: test profile - } - - /** - * Test the property 'router' - */ - @Test - public void routerTest() { - // TODO: test router - } - - /** - * Test the property 'linkProtocol' - */ - @Test - public void linkProtocolTest() { - // TODO: test linkProtocol - } - - /** - * Test the property 'virtualDevice' - */ - @Test - public void virtualDeviceTest() { - // TODO: test virtualDevice - } - - /** - * Test the property '_interface' - */ - @Test - public void _interfaceTest() { - // TODO: test _interface - } - - /** - * Test the property 'network' - */ - @Test - public void networkTest() { - // TODO: test network - } - - /** - * Test the property 'sellerRegion' - */ - @Test - public void sellerRegionTest() { - // TODO: test sellerRegion - } - - /** - * Test the property 'peeringType' - */ - @Test - public void peeringTypeTest() { - // TODO: test peeringType - } - - /** - * Test the property 'authenticationKey' - */ - @Test - public void authenticationKeyTest() { - // TODO: test authenticationKey - } - - /** - * Test the property 'providerConnectionId' - */ - @Test - public void providerConnectionIdTest() { - // TODO: test providerConnectionId - } - - /** - * Test the property 'virtualNetwork' - */ - @Test - public void virtualNetworkTest() { - // TODO: test virtualNetwork - } - - /** - * Test the property 'interconnection' - */ - @Test - public void interconnectionTest() { - // TODO: test interconnection - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AccessPointTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AccessPointTypeTest.java deleted file mode 100644 index 21446afb..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AccessPointTypeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for AccessPointType - */ -public class AccessPointTypeTest { - /** - * Model tests for AccessPointType - */ - @Test - public void testAccessPointType() { - // TODO: test AccessPointType - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AccountTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AccountTest.java deleted file mode 100644 index 8c90fcc0..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AccountTest.java +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Account - */ -public class AccountTest { - private final Account model = new Account(); - - /** - * Model tests for Account - */ - @Test - public void testAccount() { - // TODO: test Account - } - - /** - * Test the property 'accountNumber' - */ - @Test - public void accountNumberTest() { - // TODO: test accountNumber - } - - /** - * Test the property 'isResellerAccount' - */ - @Test - public void isResellerAccountTest() { - // TODO: test isResellerAccount - } - - /** - * Test the property 'orgId' - */ - @Test - public void orgIdTest() { - // TODO: test orgId - } - - /** - * Test the property 'globalOrgId' - */ - @Test - public void globalOrgIdTest() { - // TODO: test globalOrgId - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ActionsTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ActionsTest.java deleted file mode 100644 index e6475f77..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ActionsTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Actions - */ -public class ActionsTest { - /** - * Model tests for Actions - */ - @Test - public void testActions() { - // TODO: test Actions - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AddOperationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AddOperationTest.java deleted file mode 100644 index 3647c144..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AddOperationTest.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.OpEnum; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for AddOperation - */ -public class AddOperationTest { - private final AddOperation model = new AddOperation(); - - /** - * Model tests for AddOperation - */ - @Test - public void testAddOperation() { - // TODO: test AddOperation - } - - /** - * Test the property 'op' - */ - @Test - public void opTest() { - // TODO: test op - } - - /** - * Test the property 'path' - */ - @Test - public void pathTest() { - // TODO: test path - } - - /** - * Test the property 'value' - */ - @Test - public void valueTest() { - // TODO: test value - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AdvanceConfigurationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AdvanceConfigurationTest.java deleted file mode 100644 index 80893c40..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AdvanceConfigurationTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Md5; -import com.equinix.openapi.fabric.v4.model.PtpAdvanceConfiguration; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for AdvanceConfiguration - */ -public class AdvanceConfigurationTest { - private final AdvanceConfiguration model = new AdvanceConfiguration(); - - /** - * Model tests for AdvanceConfiguration - */ - @Test - public void testAdvanceConfiguration() { - // TODO: test AdvanceConfiguration - } - - /** - * Test the property 'ntp' - */ - @Test - public void ntpTest() { - // TODO: test ntp - } - - /** - * Test the property 'ptp' - */ - @Test - public void ptpTest() { - // TODO: test ptp - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AllPhysicalPortsResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AllPhysicalPortsResponseTest.java deleted file mode 100644 index e362a934..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AllPhysicalPortsResponseTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.equinix.openapi.fabric.v4.model.PhysicalPort; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for AllPhysicalPortsResponse - */ -public class AllPhysicalPortsResponseTest { - private final AllPhysicalPortsResponse model = new AllPhysicalPortsResponse(); - - /** - * Model tests for AllPhysicalPortsResponse - */ - @Test - public void testAllPhysicalPortsResponse() { - // TODO: test AllPhysicalPortsResponse - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AllPortsResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AllPortsResponseTest.java deleted file mode 100644 index eb109097..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AllPortsResponseTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.equinix.openapi.fabric.v4.model.Port; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for AllPortsResponse - */ -public class AllPortsResponseTest { - private final AllPortsResponse model = new AllPortsResponse(); - - /** - * Model tests for AllPortsResponse - */ - @Test - public void testAllPortsResponse() { - // TODO: test AllPortsResponse - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ApiConfigTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ApiConfigTest.java deleted file mode 100644 index 266db09a..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ApiConfigTest.java +++ /dev/null @@ -1,95 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ApiConfig - */ -public class ApiConfigTest { - private final ApiConfig model = new ApiConfig(); - - /** - * Model tests for ApiConfig - */ - @Test - public void testApiConfig() { - // TODO: test ApiConfig - } - - /** - * Test the property 'apiAvailable' - */ - @Test - public void apiAvailableTest() { - // TODO: test apiAvailable - } - - /** - * Test the property 'integrationId' - */ - @Test - public void integrationIdTest() { - // TODO: test integrationId - } - - /** - * Test the property 'equinixManagedPort' - */ - @Test - public void equinixManagedPortTest() { - // TODO: test equinixManagedPort - } - - /** - * Test the property 'equinixManagedVlan' - */ - @Test - public void equinixManagedVlanTest() { - // TODO: test equinixManagedVlan - } - - /** - * Test the property 'allowOverSubscription' - */ - @Test - public void allowOverSubscriptionTest() { - // TODO: test allowOverSubscription - } - - /** - * Test the property 'overSubscriptionLimit' - */ - @Test - public void overSubscriptionLimitTest() { - // TODO: test overSubscriptionLimit - } - - /** - * Test the property 'bandwidthFromApi' - */ - @Test - public void bandwidthFromApiTest() { - // TODO: test bandwidthFromApi - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ApiServicesTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ApiServicesTest.java deleted file mode 100644 index 1f2f1500..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ApiServicesTest.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ApiServices - */ -public class ApiServicesTest { - private final ApiServices model = new ApiServices(); - - /** - * Model tests for ApiServices - */ - @Test - public void testApiServices() { - // TODO: test ApiServices - } - - /** - * Test the property 'route' - */ - @Test - public void routeTest() { - // TODO: test route - } - - /** - * Test the property 'status' - */ - @Test - public void statusTest() { - // TODO: test status - } - - /** - * Test the property 'changedDateTime' - */ - @Test - public void changedDateTimeTest() { - // TODO: test changedDateTime - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AuthenticationKeyTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AuthenticationKeyTest.java deleted file mode 100644 index 11c22ace..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/AuthenticationKeyTest.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for AuthenticationKey - */ -public class AuthenticationKeyTest { - private final AuthenticationKey model = new AuthenticationKey(); - - /** - * Model tests for AuthenticationKey - */ - @Test - public void testAuthenticationKey() { - // TODO: test AuthenticationKey - } - - /** - * Test the property 'required' - */ - @Test - public void requiredTest() { - // TODO: test required - } - - /** - * Test the property 'label' - */ - @Test - public void labelTest() { - // TODO: test label - } - - /** - * Test the property 'description' - */ - @Test - public void descriptionTest() { - // TODO: test description - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPActionDataTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPActionDataTest.java deleted file mode 100644 index fcbe411c..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPActionDataTest.java +++ /dev/null @@ -1,92 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.BGPActionStates; -import com.equinix.openapi.fabric.v4.model.BGPActions; -import com.equinix.openapi.fabric.v4.model.Changelog; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for BGPActionData - */ -public class BGPActionDataTest { - private final BGPActionData model = new BGPActionData(); - - /** - * Model tests for BGPActionData - */ - @Test - public void testBGPActionData() { - // TODO: test BGPActionData - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'description' - */ - @Test - public void descriptionTest() { - // TODO: test description - } - - /** - * Test the property 'state' - */ - @Test - public void stateTest() { - // TODO: test state - } - - /** - * Test the property 'changelog' - */ - @Test - public void changelogTest() { - // TODO: test changelog - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPActionRequestTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPActionRequestTest.java deleted file mode 100644 index 4e4b8c2b..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPActionRequestTest.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.BGPActions; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for BGPActionRequest - */ -public class BGPActionRequestTest { - private final BGPActionRequest model = new BGPActionRequest(); - - /** - * Model tests for BGPActionRequest - */ - @Test - public void testBGPActionRequest() { - // TODO: test BGPActionRequest - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPActionStatesTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPActionStatesTest.java deleted file mode 100644 index e5da1335..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPActionStatesTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for BGPActionStates - */ -public class BGPActionStatesTest { - /** - * Model tests for BGPActionStates - */ - @Test - public void testBGPActionStates() { - // TODO: test BGPActionStates - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPActionsBulkDataTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPActionsBulkDataTest.java deleted file mode 100644 index 3d92fda4..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPActionsBulkDataTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.BGPActionData; -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for BGPActionsBulkData - */ -public class BGPActionsBulkDataTest { - private final BGPActionsBulkData model = new BGPActionsBulkData(); - - /** - * Model tests for BGPActionsBulkData - */ - @Test - public void testBGPActionsBulkData() { - // TODO: test BGPActionsBulkData - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPActionsTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPActionsTest.java deleted file mode 100644 index 3ca053b5..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPActionsTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for BGPActions - */ -public class BGPActionsTest { - /** - * Model tests for BGPActions - */ - @Test - public void testBGPActions() { - // TODO: test BGPActions - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPConnectionIpv4Test.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPConnectionIpv4Test.java deleted file mode 100644 index 82934476..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPConnectionIpv4Test.java +++ /dev/null @@ -1,80 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.BGPConnectionOperation; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for BGPConnectionIpv4 - */ -public class BGPConnectionIpv4Test { - private final BGPConnectionIpv4 model = new BGPConnectionIpv4(); - - /** - * Model tests for BGPConnectionIpv4 - */ - @Test - public void testBGPConnectionIpv4() { - // TODO: test BGPConnectionIpv4 - } - - /** - * Test the property 'customerPeerIp' - */ - @Test - public void customerPeerIpTest() { - // TODO: test customerPeerIp - } - - /** - * Test the property 'equinixPeerIp' - */ - @Test - public void equinixPeerIpTest() { - // TODO: test equinixPeerIp - } - - /** - * Test the property 'enabled' - */ - @Test - public void enabledTest() { - // TODO: test enabled - } - - /** - * Test the property 'outboundASPrependCount' - */ - @Test - public void outboundASPrependCountTest() { - // TODO: test outboundASPrependCount - } - - /** - * Test the property 'operation' - */ - @Test - public void operationTest() { - // TODO: test operation - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPConnectionIpv6Test.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPConnectionIpv6Test.java deleted file mode 100644 index 7e60b1fa..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPConnectionIpv6Test.java +++ /dev/null @@ -1,80 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.BGPConnectionOperation; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for BGPConnectionIpv6 - */ -public class BGPConnectionIpv6Test { - private final BGPConnectionIpv6 model = new BGPConnectionIpv6(); - - /** - * Model tests for BGPConnectionIpv6 - */ - @Test - public void testBGPConnectionIpv6() { - // TODO: test BGPConnectionIpv6 - } - - /** - * Test the property 'customerPeerIp' - */ - @Test - public void customerPeerIpTest() { - // TODO: test customerPeerIp - } - - /** - * Test the property 'equinixPeerIp' - */ - @Test - public void equinixPeerIpTest() { - // TODO: test equinixPeerIp - } - - /** - * Test the property 'enabled' - */ - @Test - public void enabledTest() { - // TODO: test enabled - } - - /** - * Test the property 'outboundASPrependCount' - */ - @Test - public void outboundASPrependCountTest() { - // TODO: test outboundASPrependCount - } - - /** - * Test the property 'operation' - */ - @Test - public void operationTest() { - // TODO: test operation - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPConnectionOperationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPConnectionOperationTest.java deleted file mode 100644 index c58f9f62..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BGPConnectionOperationTest.java +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.time.OffsetDateTime; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for BGPConnectionOperation - */ -public class BGPConnectionOperationTest { - private final BGPConnectionOperation model = new BGPConnectionOperation(); - - /** - * Model tests for BGPConnectionOperation - */ - @Test - public void testBGPConnectionOperation() { - // TODO: test BGPConnectionOperation - } - - /** - * Test the property 'operationalStatus' - */ - @Test - public void operationalStatusTest() { - // TODO: test operationalStatus - } - - /** - * Test the property 'opStatusChangedAt' - */ - @Test - public void opStatusChangedAtTest() { - // TODO: test opStatusChangedAt - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BandwidthUtilizationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BandwidthUtilizationTest.java deleted file mode 100644 index b5e38bc2..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BandwidthUtilizationTest.java +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Direction; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for BandwidthUtilization - */ -public class BandwidthUtilizationTest { - private final BandwidthUtilization model = new BandwidthUtilization(); - - /** - * Model tests for BandwidthUtilization - */ - @Test - public void testBandwidthUtilization() { - // TODO: test BandwidthUtilization - } - - /** - * Test the property 'unit' - */ - @Test - public void unitTest() { - // TODO: test unit - } - - /** - * Test the property 'metricInterval' - */ - @Test - public void metricIntervalTest() { - // TODO: test metricInterval - } - - /** - * Test the property 'inbound' - */ - @Test - public void inboundTest() { - // TODO: test inbound - } - - /** - * Test the property 'outbound' - */ - @Test - public void outboundTest() { - // TODO: test outbound - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BulkPhysicalPortTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BulkPhysicalPortTest.java deleted file mode 100644 index 4feee179..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BulkPhysicalPortTest.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.PhysicalPort; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for BulkPhysicalPort - */ -public class BulkPhysicalPortTest { - private final BulkPhysicalPort model = new BulkPhysicalPort(); - - /** - * Model tests for BulkPhysicalPort - */ - @Test - public void testBulkPhysicalPort() { - // TODO: test BulkPhysicalPort - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BulkPortTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BulkPortTest.java deleted file mode 100644 index 65aa4063..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/BulkPortTest.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Port; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for BulkPort - */ -public class BulkPortTest { - private final BulkPort model = new BulkPort(); - - /** - * Model tests for BulkPort - */ - @Test - public void testBulkPort() { - // TODO: test BulkPort - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ChangeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ChangeTest.java deleted file mode 100644 index c2b0dc8a..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ChangeTest.java +++ /dev/null @@ -1,97 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ConnectionChangeOperation; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.time.OffsetDateTime; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Change - */ -public class ChangeTest { - private final Change model = new Change(); - - /** - * Model tests for Change - */ - @Test - public void testChange() { - // TODO: test Change - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'status' - */ - @Test - public void statusTest() { - // TODO: test status - } - - /** - * Test the property 'createdDateTime' - */ - @Test - public void createdDateTimeTest() { - // TODO: test createdDateTime - } - - /** - * Test the property 'updatedDateTime' - */ - @Test - public void updatedDateTimeTest() { - // TODO: test updatedDateTime - } - - /** - * Test the property 'information' - */ - @Test - public void informationTest() { - // TODO: test information - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ChangelogTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ChangelogTest.java deleted file mode 100644 index 699239e5..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ChangelogTest.java +++ /dev/null @@ -1,136 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.time.OffsetDateTime; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Changelog - */ -public class ChangelogTest { - private final Changelog model = new Changelog(); - - /** - * Model tests for Changelog - */ - @Test - public void testChangelog() { - // TODO: test Changelog - } - - /** - * Test the property 'createdBy' - */ - @Test - public void createdByTest() { - // TODO: test createdBy - } - - /** - * Test the property 'createdByFullName' - */ - @Test - public void createdByFullNameTest() { - // TODO: test createdByFullName - } - - /** - * Test the property 'createdByEmail' - */ - @Test - public void createdByEmailTest() { - // TODO: test createdByEmail - } - - /** - * Test the property 'createdDateTime' - */ - @Test - public void createdDateTimeTest() { - // TODO: test createdDateTime - } - - /** - * Test the property 'updatedBy' - */ - @Test - public void updatedByTest() { - // TODO: test updatedBy - } - - /** - * Test the property 'updatedByFullName' - */ - @Test - public void updatedByFullNameTest() { - // TODO: test updatedByFullName - } - - /** - * Test the property 'updatedByEmail' - */ - @Test - public void updatedByEmailTest() { - // TODO: test updatedByEmail - } - - /** - * Test the property 'updatedDateTime' - */ - @Test - public void updatedDateTimeTest() { - // TODO: test updatedDateTime - } - - /** - * Test the property 'deletedBy' - */ - @Test - public void deletedByTest() { - // TODO: test deletedBy - } - - /** - * Test the property 'deletedByFullName' - */ - @Test - public void deletedByFullNameTest() { - // TODO: test deletedByFullName - } - - /** - * Test the property 'deletedByEmail' - */ - @Test - public void deletedByEmailTest() { - // TODO: test deletedByEmail - } - - /** - * Test the property 'deletedDateTime' - */ - @Test - public void deletedDateTimeTest() { - // TODO: test deletedDateTime - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterAccessPointStateTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterAccessPointStateTest.java deleted file mode 100644 index 26470235..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterAccessPointStateTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for CloudRouterAccessPointState - */ -public class CloudRouterAccessPointStateTest { - /** - * Model tests for CloudRouterAccessPointState - */ - @Test - public void testCloudRouterAccessPointState() { - // TODO: test CloudRouterAccessPointState - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterActionRequestTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterActionRequestTest.java deleted file mode 100644 index e4f351c9..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterActionRequestTest.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.CloudRouterActionType; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for CloudRouterActionRequest - */ -public class CloudRouterActionRequestTest { - private final CloudRouterActionRequest model = new CloudRouterActionRequest(); - - /** - * Model tests for CloudRouterActionRequest - */ - @Test - public void testCloudRouterActionRequest() { - // TODO: test CloudRouterActionRequest - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterActionResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterActionResponseTest.java deleted file mode 100644 index 964708a2..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterActionResponseTest.java +++ /dev/null @@ -1,83 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Changelog; -import com.equinix.openapi.fabric.v4.model.CloudRouterActionState; -import com.equinix.openapi.fabric.v4.model.CloudRouterActionType; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for CloudRouterActionResponse - */ -public class CloudRouterActionResponseTest { - private final CloudRouterActionResponse model = new CloudRouterActionResponse(); - - /** - * Model tests for CloudRouterActionResponse - */ - @Test - public void testCloudRouterActionResponse() { - // TODO: test CloudRouterActionResponse - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'description' - */ - @Test - public void descriptionTest() { - // TODO: test description - } - - /** - * Test the property 'state' - */ - @Test - public void stateTest() { - // TODO: test state - } - - /** - * Test the property 'changeLog' - */ - @Test - public void changeLogTest() { - // TODO: test changeLog - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterActionStateTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterActionStateTest.java deleted file mode 100644 index 403d6841..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterActionStateTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for CloudRouterActionState - */ -public class CloudRouterActionStateTest { - /** - * Model tests for CloudRouterActionState - */ - @Test - public void testCloudRouterActionState() { - // TODO: test CloudRouterActionState - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterActionTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterActionTypeTest.java deleted file mode 100644 index c90f10a2..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterActionTypeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for CloudRouterActionType - */ -public class CloudRouterActionTypeTest { - /** - * Model tests for CloudRouterActionType - */ - @Test - public void testCloudRouterActionType() { - // TODO: test CloudRouterActionType - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterChangeOperationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterChangeOperationTest.java deleted file mode 100644 index 773ff3f8..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterChangeOperationTest.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for CloudRouterChangeOperation - */ -public class CloudRouterChangeOperationTest { - private final CloudRouterChangeOperation model = new CloudRouterChangeOperation(); - - /** - * Model tests for CloudRouterChangeOperation - */ - @Test - public void testCloudRouterChangeOperation() { - // TODO: test CloudRouterChangeOperation - } - - /** - * Test the property 'op' - */ - @Test - public void opTest() { - // TODO: test op - } - - /** - * Test the property 'path' - */ - @Test - public void pathTest() { - // TODO: test path - } - - /** - * Test the property 'value' - */ - @Test - public void valueTest() { - // TODO: test value - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterChangeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterChangeTest.java deleted file mode 100644 index 4f4c03f6..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterChangeTest.java +++ /dev/null @@ -1,97 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.CloudRouterChangeOperation; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.time.OffsetDateTime; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for CloudRouterChange - */ -public class CloudRouterChangeTest { - private final CloudRouterChange model = new CloudRouterChange(); - - /** - * Model tests for CloudRouterChange - */ - @Test - public void testCloudRouterChange() { - // TODO: test CloudRouterChange - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'status' - */ - @Test - public void statusTest() { - // TODO: test status - } - - /** - * Test the property 'createdDateTime' - */ - @Test - public void createdDateTimeTest() { - // TODO: test createdDateTime - } - - /** - * Test the property 'updatedDateTime' - */ - @Test - public void updatedDateTimeTest() { - // TODO: test updatedDateTime - } - - /** - * Test the property 'information' - */ - @Test - public void informationTest() { - // TODO: test information - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterFilterTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterFilterTest.java deleted file mode 100644 index ff144733..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterFilterTest.java +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.CloudRouterOrFilter; -import com.equinix.openapi.fabric.v4.model.CloudRouterSimpleExpression; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for CloudRouterFilter - */ -public class CloudRouterFilterTest { - private final CloudRouterFilter model = new CloudRouterFilter(); - - /** - * Model tests for CloudRouterFilter - */ - @Test - public void testCloudRouterFilter() { - // TODO: test CloudRouterFilter - } - - /** - * Test the property 'property' - */ - @Test - public void propertyTest() { - // TODO: test property - } - - /** - * Test the property 'operator' - */ - @Test - public void operatorTest() { - // TODO: test operator - } - - /** - * Test the property 'values' - */ - @Test - public void valuesTest() { - // TODO: test values - } - - /** - * Test the property 'or' - */ - @Test - public void orTest() { - // TODO: test or - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterFiltersTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterFiltersTest.java deleted file mode 100644 index 23d00a73..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterFiltersTest.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.CloudRouterFilter; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for CloudRouterFilters - */ -public class CloudRouterFiltersTest { - private final CloudRouterFilters model = new CloudRouterFilters(); - - /** - * Model tests for CloudRouterFilters - */ - @Test - public void testCloudRouterFilters() { - // TODO: test CloudRouterFilters - } - - /** - * Test the property 'and' - */ - @Test - public void andTest() { - // TODO: test and - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterOrFilterTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterOrFilterTest.java deleted file mode 100644 index 986d20d1..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterOrFilterTest.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.CloudRouterSimpleExpression; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for CloudRouterOrFilter - */ -public class CloudRouterOrFilterTest { - private final CloudRouterOrFilter model = new CloudRouterOrFilter(); - - /** - * Model tests for CloudRouterOrFilter - */ - @Test - public void testCloudRouterOrFilter() { - // TODO: test CloudRouterOrFilter - } - - /** - * Test the property 'or' - */ - @Test - public void orTest() { - // TODO: test or - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterPackageTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterPackageTest.java deleted file mode 100644 index af347c18..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterPackageTest.java +++ /dev/null @@ -1,178 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Code; -import com.equinix.openapi.fabric.v4.model.PackageChangeLog; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for CloudRouterPackage - */ -public class CloudRouterPackageTest { - private final CloudRouterPackage model = new CloudRouterPackage(); - - /** - * Model tests for CloudRouterPackage - */ - @Test - public void testCloudRouterPackage() { - // TODO: test CloudRouterPackage - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'code' - */ - @Test - public void codeTest() { - // TODO: test code - } - - /** - * Test the property 'description' - */ - @Test - public void descriptionTest() { - // TODO: test description - } - - /** - * Test the property 'totalIPv4RoutesMax' - */ - @Test - public void totalIPv4RoutesMaxTest() { - // TODO: test totalIPv4RoutesMax - } - - /** - * Test the property 'totalIPv6RoutesMax' - */ - @Test - public void totalIPv6RoutesMaxTest() { - // TODO: test totalIPv6RoutesMax - } - - /** - * Test the property 'staticIPv4RoutesMax' - */ - @Test - public void staticIPv4RoutesMaxTest() { - // TODO: test staticIPv4RoutesMax - } - - /** - * Test the property 'staticIPv6RoutesMax' - */ - @Test - public void staticIPv6RoutesMaxTest() { - // TODO: test staticIPv6RoutesMax - } - - /** - * Test the property 'naclsMax' - */ - @Test - public void naclsMaxTest() { - // TODO: test naclsMax - } - - /** - * Test the property 'naclRulesMax' - */ - @Test - public void naclRulesMaxTest() { - // TODO: test naclRulesMax - } - - /** - * Test the property 'haSupported' - */ - @Test - public void haSupportedTest() { - // TODO: test haSupported - } - - /** - * Test the property 'routeFilterSupported' - */ - @Test - public void routeFilterSupportedTest() { - // TODO: test routeFilterSupported - } - - /** - * Test the property 'natType' - */ - @Test - public void natTypeTest() { - // TODO: test natType - } - - /** - * Test the property 'vcCountMax' - */ - @Test - public void vcCountMaxTest() { - // TODO: test vcCountMax - } - - /** - * Test the property 'crCountMax' - */ - @Test - public void crCountMaxTest() { - // TODO: test crCountMax - } - - /** - * Test the property 'vcBandwidthMax' - */ - @Test - public void vcBandwidthMaxTest() { - // TODO: test vcBandwidthMax - } - - /** - * Test the property 'changeLog' - */ - @Test - public void changeLogTest() { - // TODO: test changeLog - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterPostRequestPackageTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterPostRequestPackageTest.java deleted file mode 100644 index 49954fc3..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterPostRequestPackageTest.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for CloudRouterPostRequestPackage - */ -public class CloudRouterPostRequestPackageTest { - private final CloudRouterPostRequestPackage model = new CloudRouterPostRequestPackage(); - - /** - * Model tests for CloudRouterPostRequestPackage - */ - @Test - public void testCloudRouterPostRequestPackage() { - // TODO: test CloudRouterPostRequestPackage - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'code' - */ - @Test - public void codeTest() { - // TODO: test code - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterPostRequestTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterPostRequestTest.java deleted file mode 100644 index 198ef715..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterPostRequestTest.java +++ /dev/null @@ -1,111 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.CloudRouterPostRequestPackage; -import com.equinix.openapi.fabric.v4.model.Order; -import com.equinix.openapi.fabric.v4.model.Project; -import com.equinix.openapi.fabric.v4.model.SimplifiedAccount; -import com.equinix.openapi.fabric.v4.model.SimplifiedLocationWithoutIBX; -import com.equinix.openapi.fabric.v4.model.SimplifiedNotification; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for CloudRouterPostRequest - */ -public class CloudRouterPostRequestTest { - private final CloudRouterPostRequest model = new CloudRouterPostRequest(); - - /** - * Model tests for CloudRouterPostRequest - */ - @Test - public void testCloudRouterPostRequest() { - // TODO: test CloudRouterPostRequest - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'location' - */ - @Test - public void locationTest() { - // TODO: test location - } - - /** - * Test the property '_package' - */ - @Test - public void _packageTest() { - // TODO: test _package - } - - /** - * Test the property 'order' - */ - @Test - public void orderTest() { - // TODO: test order - } - - /** - * Test the property 'project' - */ - @Test - public void projectTest() { - // TODO: test project - } - - /** - * Test the property 'account' - */ - @Test - public void accountTest() { - // TODO: test account - } - - /** - * Test the property 'notifications' - */ - @Test - public void notificationsTest() { - // TODO: test notifications - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterSearchRequestTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterSearchRequestTest.java deleted file mode 100644 index 27d249e8..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterSearchRequestTest.java +++ /dev/null @@ -1,68 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.CloudRouterFilters; -import com.equinix.openapi.fabric.v4.model.CloudRouterSortCriteria; -import com.equinix.openapi.fabric.v4.model.PaginationRequest; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for CloudRouterSearchRequest - */ -public class CloudRouterSearchRequestTest { - private final CloudRouterSearchRequest model = new CloudRouterSearchRequest(); - - /** - * Model tests for CloudRouterSearchRequest - */ - @Test - public void testCloudRouterSearchRequest() { - // TODO: test CloudRouterSearchRequest - } - - /** - * Test the property 'filter' - */ - @Test - public void filterTest() { - // TODO: test filter - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'sort' - */ - @Test - public void sortTest() { - // TODO: test sort - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterSimpleExpressionTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterSimpleExpressionTest.java deleted file mode 100644 index bc256dde..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterSimpleExpressionTest.java +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for CloudRouterSimpleExpression - */ -public class CloudRouterSimpleExpressionTest { - private final CloudRouterSimpleExpression model = new CloudRouterSimpleExpression(); - - /** - * Model tests for CloudRouterSimpleExpression - */ - @Test - public void testCloudRouterSimpleExpression() { - // TODO: test CloudRouterSimpleExpression - } - - /** - * Test the property 'property' - */ - @Test - public void propertyTest() { - // TODO: test property - } - - /** - * Test the property 'operator' - */ - @Test - public void operatorTest() { - // TODO: test operator - } - - /** - * Test the property 'values' - */ - @Test - public void valuesTest() { - // TODO: test values - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterSortByTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterSortByTest.java deleted file mode 100644 index 856a2d1a..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterSortByTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for CloudRouterSortBy - */ -public class CloudRouterSortByTest { - /** - * Model tests for CloudRouterSortBy - */ - @Test - public void testCloudRouterSortBy() { - // TODO: test CloudRouterSortBy - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterSortCriteriaTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterSortCriteriaTest.java deleted file mode 100644 index 965e765a..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterSortCriteriaTest.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.CloudRouterSortBy; -import com.equinix.openapi.fabric.v4.model.CloudRouterSortDirection; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for CloudRouterSortCriteria - */ -public class CloudRouterSortCriteriaTest { - private final CloudRouterSortCriteria model = new CloudRouterSortCriteria(); - - /** - * Model tests for CloudRouterSortCriteria - */ - @Test - public void testCloudRouterSortCriteria() { - // TODO: test CloudRouterSortCriteria - } - - /** - * Test the property 'direction' - */ - @Test - public void directionTest() { - // TODO: test direction - } - - /** - * Test the property 'property' - */ - @Test - public void propertyTest() { - // TODO: test property - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterSortDirectionTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterSortDirectionTest.java deleted file mode 100644 index 36950dbe..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterSortDirectionTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for CloudRouterSortDirection - */ -public class CloudRouterSortDirectionTest { - /** - * Model tests for CloudRouterSortDirection - */ - @Test - public void testCloudRouterSortDirection() { - // TODO: test CloudRouterSortDirection - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterTest.java deleted file mode 100644 index 574c9fd6..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CloudRouterTest.java +++ /dev/null @@ -1,116 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Changelog; -import com.equinix.openapi.fabric.v4.model.CloudRouterAccessPointState; -import com.equinix.openapi.fabric.v4.model.CloudRouterChange; -import com.equinix.openapi.fabric.v4.model.CloudRouterPostRequestPackage; -import com.equinix.openapi.fabric.v4.model.Order; -import com.equinix.openapi.fabric.v4.model.Project; -import com.equinix.openapi.fabric.v4.model.SimplifiedAccount; -import com.equinix.openapi.fabric.v4.model.SimplifiedLocationWithoutIBX; -import com.equinix.openapi.fabric.v4.model.SimplifiedNotification; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.ArrayList; -import java.util.List; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for CloudRouter - */ -public class CloudRouterTest { - private final CloudRouter model = new CloudRouter(); - - /** - * Model tests for CloudRouter - */ - @Test - public void testCloudRouter() { - // TODO: test CloudRouter - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'location' - */ - @Test - public void locationTest() { - // TODO: test location - } - - /** - * Test the property '_package' - */ - @Test - public void _packageTest() { - // TODO: test _package - } - - /** - * Test the property 'order' - */ - @Test - public void orderTest() { - // TODO: test order - } - - /** - * Test the property 'project' - */ - @Test - public void projectTest() { - // TODO: test project - } - - /** - * Test the property 'account' - */ - @Test - public void accountTest() { - // TODO: test account - } - - /** - * Test the property 'notifications' - */ - @Test - public void notificationsTest() { - // TODO: test notifications - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CodeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CodeTest.java deleted file mode 100644 index 7ae22772..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CodeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Code - */ -public class CodeTest { - /** - * Model tests for Code - */ - @Test - public void testCode() { - // TODO: test Code - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectedMetroTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectedMetroTest.java deleted file mode 100644 index 317a7c2b..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectedMetroTest.java +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.math.BigDecimal; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectedMetro - */ -public class ConnectedMetroTest { - private final ConnectedMetro model = new ConnectedMetro(); - - /** - * Model tests for ConnectedMetro - */ - @Test - public void testConnectedMetro() { - // TODO: test ConnectedMetro - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'code' - */ - @Test - public void codeTest() { - // TODO: test code - } - - /** - * Test the property 'avgLatency' - */ - @Test - public void avgLatencyTest() { - // TODO: test avgLatency - } - - /** - * Test the property 'remoteVCBandwidthMax' - */ - @Test - public void remoteVCBandwidthMaxTest() { - // TODO: test remoteVCBandwidthMax - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionAcceptanceDataTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionAcceptanceDataTest.java deleted file mode 100644 index 25230bcd..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionAcceptanceDataTest.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ConnectionSide; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectionAcceptanceData - */ -public class ConnectionAcceptanceDataTest { - private final ConnectionAcceptanceData model = new ConnectionAcceptanceData(); - - /** - * Model tests for ConnectionAcceptanceData - */ - @Test - public void testConnectionAcceptanceData() { - // TODO: test ConnectionAcceptanceData - } - - /** - * Test the property 'zSide' - */ - @Test - public void zSideTest() { - // TODO: test zSide - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionActionRequestTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionActionRequestTest.java deleted file mode 100644 index fddfcc1f..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionActionRequestTest.java +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Actions; -import com.equinix.openapi.fabric.v4.model.ConnectionAcceptanceData; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectionActionRequest - */ -public class ConnectionActionRequestTest { - private final ConnectionActionRequest model = new ConnectionActionRequest(); - - /** - * Model tests for ConnectionActionRequest - */ - @Test - public void testConnectionActionRequest() { - // TODO: test ConnectionActionRequest - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'description' - */ - @Test - public void descriptionTest() { - // TODO: test description - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionActionTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionActionTest.java deleted file mode 100644 index 4823afec..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionActionTest.java +++ /dev/null @@ -1,91 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Actions; -import com.equinix.openapi.fabric.v4.model.Changelog; -import com.equinix.openapi.fabric.v4.model.ConnectionAcceptanceData; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectionAction - */ -public class ConnectionActionTest { - private final ConnectionAction model = new ConnectionAction(); - - /** - * Model tests for ConnectionAction - */ - @Test - public void testConnectionAction() { - // TODO: test ConnectionAction - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'description' - */ - @Test - public void descriptionTest() { - // TODO: test description - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - - /** - * Test the property 'changeLog' - */ - @Test - public void changeLogTest() { - // TODO: test changeLog - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionChangeOperationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionChangeOperationTest.java deleted file mode 100644 index 4bd51604..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionChangeOperationTest.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectionChangeOperation - */ -public class ConnectionChangeOperationTest { - private final ConnectionChangeOperation model = new ConnectionChangeOperation(); - - /** - * Model tests for ConnectionChangeOperation - */ - @Test - public void testConnectionChangeOperation() { - // TODO: test ConnectionChangeOperation - } - - /** - * Test the property 'op' - */ - @Test - public void opTest() { - // TODO: test op - } - - /** - * Test the property 'path' - */ - @Test - public void pathTest() { - // TODO: test path - } - - /** - * Test the property 'value' - */ - @Test - public void valueTest() { - // TODO: test value - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionCompanyProfileTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionCompanyProfileTest.java deleted file mode 100644 index 6d285519..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionCompanyProfileTest.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.math.BigDecimal; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectionCompanyProfile - */ -public class ConnectionCompanyProfileTest { - private final ConnectionCompanyProfile model = new ConnectionCompanyProfile(); - - /** - * Model tests for ConnectionCompanyProfile - */ - @Test - public void testConnectionCompanyProfile() { - // TODO: test ConnectionCompanyProfile - } - - /** - * Test the property 'id' - */ - @Test - public void idTest() { - // TODO: test id - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'globalOrgId' - */ - @Test - public void globalOrgIdTest() { - // TODO: test globalOrgId - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionDirectionTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionDirectionTest.java deleted file mode 100644 index acef81ff..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionDirectionTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectionDirection - */ -public class ConnectionDirectionTest { - /** - * Model tests for ConnectionDirection - */ - @Test - public void testConnectionDirection() { - // TODO: test ConnectionDirection - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionInvitationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionInvitationTest.java deleted file mode 100644 index 0e4de2ee..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionInvitationTest.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectionInvitation - */ -public class ConnectionInvitationTest { - private final ConnectionInvitation model = new ConnectionInvitation(); - - /** - * Model tests for ConnectionInvitation - */ - @Test - public void testConnectionInvitation() { - // TODO: test ConnectionInvitation - } - - /** - * Test the property 'email' - */ - @Test - public void emailTest() { - // TODO: test email - } - - /** - * Test the property 'message' - */ - @Test - public void messageTest() { - // TODO: test message - } - - /** - * Test the property 'ctrDraftOrderId' - */ - @Test - public void ctrDraftOrderIdTest() { - // TODO: test ctrDraftOrderId - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionLinkTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionLinkTest.java deleted file mode 100644 index 5bf0affa..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionLinkTest.java +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectionLink - */ -public class ConnectionLinkTest { - private final ConnectionLink model = new ConnectionLink(); - - /** - * Model tests for ConnectionLink - */ - @Test - public void testConnectionLink() { - // TODO: test ConnectionLink - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionOperationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionOperationTest.java deleted file mode 100644 index 6e51767d..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionOperationTest.java +++ /dev/null @@ -1,85 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.EquinixStatus; -import com.equinix.openapi.fabric.v4.model.Error; -import com.equinix.openapi.fabric.v4.model.ProviderStatus; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.time.OffsetDateTime; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectionOperation - */ -public class ConnectionOperationTest { - private final ConnectionOperation model = new ConnectionOperation(); - - /** - * Model tests for ConnectionOperation - */ - @Test - public void testConnectionOperation() { - // TODO: test ConnectionOperation - } - - /** - * Test the property 'providerStatus' - */ - @Test - public void providerStatusTest() { - // TODO: test providerStatus - } - - /** - * Test the property 'equinixStatus' - */ - @Test - public void equinixStatusTest() { - // TODO: test equinixStatus - } - - /** - * Test the property 'operationalStatus' - */ - @Test - public void operationalStatusTest() { - // TODO: test operationalStatus - } - - /** - * Test the property 'errors' - */ - @Test - public void errorsTest() { - // TODO: test errors - } - - /** - * Test the property 'opStatusChangedAt' - */ - @Test - public void opStatusChangedAtTest() { - // TODO: test opStatusChangedAt - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionPostRequestTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionPostRequestTest.java deleted file mode 100644 index 7994a38f..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionPostRequestTest.java +++ /dev/null @@ -1,137 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ConnectionRedundancy; -import com.equinix.openapi.fabric.v4.model.ConnectionSide; -import com.equinix.openapi.fabric.v4.model.ConnectionSideAdditionalInfo; -import com.equinix.openapi.fabric.v4.model.ConnectionType; -import com.equinix.openapi.fabric.v4.model.GeoScopeType; -import com.equinix.openapi.fabric.v4.model.Order; -import com.equinix.openapi.fabric.v4.model.Project; -import com.equinix.openapi.fabric.v4.model.SimplifiedNotification; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectionPostRequest - */ -public class ConnectionPostRequestTest { - private final ConnectionPostRequest model = new ConnectionPostRequest(); - - /** - * Model tests for ConnectionPostRequest - */ - @Test - public void testConnectionPostRequest() { - // TODO: test ConnectionPostRequest - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'order' - */ - @Test - public void orderTest() { - // TODO: test order - } - - /** - * Test the property 'notifications' - */ - @Test - public void notificationsTest() { - // TODO: test notifications - } - - /** - * Test the property 'bandwidth' - */ - @Test - public void bandwidthTest() { - // TODO: test bandwidth - } - - /** - * Test the property 'geoScope' - */ - @Test - public void geoScopeTest() { - // TODO: test geoScope - } - - /** - * Test the property 'redundancy' - */ - @Test - public void redundancyTest() { - // TODO: test redundancy - } - - /** - * Test the property 'aSide' - */ - @Test - public void aSideTest() { - // TODO: test aSide - } - - /** - * Test the property 'zSide' - */ - @Test - public void zSideTest() { - // TODO: test zSide - } - - /** - * Test the property 'project' - */ - @Test - public void projectTest() { - // TODO: test project - } - - /** - * Test the property 'additionalInfo' - */ - @Test - public void additionalInfoTest() { - // TODO: test additionalInfo - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionPriorityTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionPriorityTest.java deleted file mode 100644 index ceeba61a..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionPriorityTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectionPriority - */ -public class ConnectionPriorityTest { - /** - * Model tests for ConnectionPriority - */ - @Test - public void testConnectionPriority() { - // TODO: test ConnectionPriority - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionRedundancyTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionRedundancyTest.java deleted file mode 100644 index 1d0212f4..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionRedundancyTest.java +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ConnectionPriority; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectionRedundancy - */ -public class ConnectionRedundancyTest { - private final ConnectionRedundancy model = new ConnectionRedundancy(); - - /** - * Model tests for ConnectionRedundancy - */ - @Test - public void testConnectionRedundancy() { - // TODO: test ConnectionRedundancy - } - - /** - * Test the property 'group' - */ - @Test - public void groupTest() { - // TODO: test group - } - - /** - * Test the property 'priority' - */ - @Test - public void priorityTest() { - // TODO: test priority - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionResponseTest.java deleted file mode 100644 index 413bd769..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionResponseTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Connection; -import com.equinix.openapi.fabric.v4.model.ConnectionSideAdditionalInfo; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectionResponse - */ -public class ConnectionResponseTest { - private final ConnectionResponse model = new ConnectionResponse(); - - /** - * Model tests for ConnectionResponse - */ - @Test - public void testConnectionResponse() { - // TODO: test ConnectionResponse - } - - /** - * Test the property 'additionalInfo' - */ - @Test - public void additionalInfoTest() { - // TODO: test additionalInfo - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionRouteFilterDataTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionRouteFilterDataTest.java deleted file mode 100644 index 29dc3cc7..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionRouteFilterDataTest.java +++ /dev/null @@ -1,81 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectionRouteFilterData - */ -public class ConnectionRouteFilterDataTest { - private final ConnectionRouteFilterData model = new ConnectionRouteFilterData(); - - /** - * Model tests for ConnectionRouteFilterData - */ - @Test - public void testConnectionRouteFilterData() { - // TODO: test ConnectionRouteFilterData - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'attachmentStatus' - */ - @Test - public void attachmentStatusTest() { - // TODO: test attachmentStatus - } - - /** - * Test the property 'direction' - */ - @Test - public void directionTest() { - // TODO: test direction - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionRouteFiltersBaseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionRouteFiltersBaseTest.java deleted file mode 100644 index 4aac5a7e..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionRouteFiltersBaseTest.java +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectionRouteFiltersBase - */ -public class ConnectionRouteFiltersBaseTest { - private final ConnectionRouteFiltersBase model = new ConnectionRouteFiltersBase(); - - /** - * Model tests for ConnectionRouteFiltersBase - */ - @Test - public void testConnectionRouteFiltersBase() { - // TODO: test ConnectionRouteFiltersBase - } - - /** - * Test the property 'direction' - */ - @Test - public void directionTest() { - // TODO: test direction - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionRoutingProtocolPostRequestTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionRoutingProtocolPostRequestTest.java deleted file mode 100644 index 9f1be5fa..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionRoutingProtocolPostRequestTest.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.RoutingProtocolBase; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectionRoutingProtocolPostRequest - */ -public class ConnectionRoutingProtocolPostRequestTest { - private final ConnectionRoutingProtocolPostRequest model = new ConnectionRoutingProtocolPostRequest(); - - /** - * Model tests for ConnectionRoutingProtocolPostRequest - */ - @Test - public void testConnectionRoutingProtocolPostRequest() { - // TODO: test ConnectionRoutingProtocolPostRequest - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionSearchResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionSearchResponseTest.java deleted file mode 100644 index b8a9cc2d..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionSearchResponseTest.java +++ /dev/null @@ -1,68 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Connection; -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.equinix.openapi.fabric.v4.model.SortCriteriaResponse; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectionSearchResponse - */ -public class ConnectionSearchResponseTest { - private final ConnectionSearchResponse model = new ConnectionSearchResponse(); - - /** - * Model tests for ConnectionSearchResponse - */ - @Test - public void testConnectionSearchResponse() { - // TODO: test ConnectionSearchResponse - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'sort' - */ - @Test - public void sortTest() { - // TODO: test sort - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionSideAdditionalInfoTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionSideAdditionalInfoTest.java deleted file mode 100644 index 99c746c6..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionSideAdditionalInfoTest.java +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectionSideAdditionalInfo - */ -public class ConnectionSideAdditionalInfoTest { - private final ConnectionSideAdditionalInfo model = new ConnectionSideAdditionalInfo(); - - /** - * Model tests for ConnectionSideAdditionalInfo - */ - @Test - public void testConnectionSideAdditionalInfo() { - // TODO: test ConnectionSideAdditionalInfo - } - - /** - * Test the property 'key' - */ - @Test - public void keyTest() { - // TODO: test key - } - - /** - * Test the property 'value' - */ - @Test - public void valueTest() { - // TODO: test value - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionSideTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionSideTest.java deleted file mode 100644 index 444604a5..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionSideTest.java +++ /dev/null @@ -1,86 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.AccessPoint; -import com.equinix.openapi.fabric.v4.model.ConnectionCompanyProfile; -import com.equinix.openapi.fabric.v4.model.ConnectionInvitation; -import com.equinix.openapi.fabric.v4.model.ConnectionSideAdditionalInfo; -import com.equinix.openapi.fabric.v4.model.ServiceToken; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectionSide - */ -public class ConnectionSideTest { - private final ConnectionSide model = new ConnectionSide(); - - /** - * Model tests for ConnectionSide - */ - @Test - public void testConnectionSide() { - // TODO: test ConnectionSide - } - - /** - * Test the property 'serviceToken' - */ - @Test - public void serviceTokenTest() { - // TODO: test serviceToken - } - - /** - * Test the property 'accessPoint' - */ - @Test - public void accessPointTest() { - // TODO: test accessPoint - } - - /** - * Test the property 'companyProfile' - */ - @Test - public void companyProfileTest() { - // TODO: test companyProfile - } - - /** - * Test the property 'invitation' - */ - @Test - public void invitationTest() { - // TODO: test invitation - } - - /** - * Test the property 'additionalInfo' - */ - @Test - public void additionalInfoTest() { - // TODO: test additionalInfo - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionStateTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionStateTest.java deleted file mode 100644 index c738ac3f..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionStateTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectionState - */ -public class ConnectionStateTest { - /** - * Model tests for ConnectionState - */ - @Test - public void testConnectionState() { - // TODO: test ConnectionState - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionTest.java deleted file mode 100644 index 19c219ae..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionTest.java +++ /dev/null @@ -1,224 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Change; -import com.equinix.openapi.fabric.v4.model.Changelog; -import com.equinix.openapi.fabric.v4.model.ConnectionDirection; -import com.equinix.openapi.fabric.v4.model.ConnectionOperation; -import com.equinix.openapi.fabric.v4.model.ConnectionRedundancy; -import com.equinix.openapi.fabric.v4.model.ConnectionSide; -import com.equinix.openapi.fabric.v4.model.ConnectionSideAdditionalInfo; -import com.equinix.openapi.fabric.v4.model.ConnectionState; -import com.equinix.openapi.fabric.v4.model.ConnectionType; -import com.equinix.openapi.fabric.v4.model.GeoScopeType; -import com.equinix.openapi.fabric.v4.model.Order; -import com.equinix.openapi.fabric.v4.model.Project; -import com.equinix.openapi.fabric.v4.model.SimplifiedAccount; -import com.equinix.openapi.fabric.v4.model.SimplifiedNotification; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Connection - */ -public class ConnectionTest { - private final Connection model = new Connection(); - - /** - * Model tests for Connection - */ - @Test - public void testConnection() { - // TODO: test Connection - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'description' - */ - @Test - public void descriptionTest() { - // TODO: test description - } - - /** - * Test the property 'state' - */ - @Test - public void stateTest() { - // TODO: test state - } - - /** - * Test the property 'change' - */ - @Test - public void changeTest() { - // TODO: test change - } - - /** - * Test the property 'operation' - */ - @Test - public void operationTest() { - // TODO: test operation - } - - /** - * Test the property 'order' - */ - @Test - public void orderTest() { - // TODO: test order - } - - /** - * Test the property 'notifications' - */ - @Test - public void notificationsTest() { - // TODO: test notifications - } - - /** - * Test the property 'account' - */ - @Test - public void accountTest() { - // TODO: test account - } - - /** - * Test the property 'changeLog' - */ - @Test - public void changeLogTest() { - // TODO: test changeLog - } - - /** - * Test the property 'bandwidth' - */ - @Test - public void bandwidthTest() { - // TODO: test bandwidth - } - - /** - * Test the property 'geoScope' - */ - @Test - public void geoScopeTest() { - // TODO: test geoScope - } - - /** - * Test the property 'redundancy' - */ - @Test - public void redundancyTest() { - // TODO: test redundancy - } - - /** - * Test the property 'isRemote' - */ - @Test - public void isRemoteTest() { - // TODO: test isRemote - } - - /** - * Test the property 'direction' - */ - @Test - public void directionTest() { - // TODO: test direction - } - - /** - * Test the property 'aSide' - */ - @Test - public void aSideTest() { - // TODO: test aSide - } - - /** - * Test the property 'zSide' - */ - @Test - public void zSideTest() { - // TODO: test zSide - } - - /** - * Test the property 'additionalInfo' - */ - @Test - public void additionalInfoTest() { - // TODO: test additionalInfo - } - - /** - * Test the property 'project' - */ - @Test - public void projectTest() { - // TODO: test project - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionTypeTest.java deleted file mode 100644 index 544238a3..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectionTypeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectionType - */ -public class ConnectionTypeTest { - /** - * Model tests for ConnectionType - */ - @Test - public void testConnectionType() { - // TODO: test ConnectionType - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectivitySourceTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectivitySourceTest.java deleted file mode 100644 index 16e0f048..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectivitySourceTest.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ConnectivitySourceType; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectivitySource - */ -public class ConnectivitySourceTest { - private final ConnectivitySource model = new ConnectivitySource(); - - /** - * Model tests for ConnectivitySource - */ - @Test - public void testConnectivitySource() { - // TODO: test ConnectivitySource - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectivitySourceTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectivitySourceTypeTest.java deleted file mode 100644 index e928aaa9..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ConnectivitySourceTypeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ConnectivitySourceType - */ -public class ConnectivitySourceTypeTest { - /** - * Model tests for ConnectivitySourceType - */ - @Test - public void testConnectivitySourceType() { - // TODO: test ConnectivitySourceType - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CustomFieldTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CustomFieldTest.java deleted file mode 100644 index df105a0c..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/CustomFieldTest.java +++ /dev/null @@ -1,89 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for CustomField - */ -public class CustomFieldTest { - private final CustomField model = new CustomField(); - - /** - * Model tests for CustomField - */ - @Test - public void testCustomField() { - // TODO: test CustomField - } - - /** - * Test the property 'label' - */ - @Test - public void labelTest() { - // TODO: test label - } - - /** - * Test the property 'description' - */ - @Test - public void descriptionTest() { - // TODO: test description - } - - /** - * Test the property 'required' - */ - @Test - public void requiredTest() { - // TODO: test required - } - - /** - * Test the property 'dataType' - */ - @Test - public void dataTypeTest() { - // TODO: test dataType - } - - /** - * Test the property 'options' - */ - @Test - public void optionsTest() { - // TODO: test options - } - - /** - * Test the property 'captureInEmail' - */ - @Test - public void captureInEmailTest() { - // TODO: test captureInEmail - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/DirectConnectionIpv4Test.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/DirectConnectionIpv4Test.java deleted file mode 100644 index 980caaeb..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/DirectConnectionIpv4Test.java +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for DirectConnectionIpv4 - */ -public class DirectConnectionIpv4Test { - private final DirectConnectionIpv4 model = new DirectConnectionIpv4(); - - /** - * Model tests for DirectConnectionIpv4 - */ - @Test - public void testDirectConnectionIpv4() { - // TODO: test DirectConnectionIpv4 - } - - /** - * Test the property 'equinixIfaceIp' - */ - @Test - public void equinixIfaceIpTest() { - // TODO: test equinixIfaceIp - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/DirectConnectionIpv6Test.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/DirectConnectionIpv6Test.java deleted file mode 100644 index 48cbf8b8..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/DirectConnectionIpv6Test.java +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for DirectConnectionIpv6 - */ -public class DirectConnectionIpv6Test { - private final DirectConnectionIpv6 model = new DirectConnectionIpv6(); - - /** - * Model tests for DirectConnectionIpv6 - */ - @Test - public void testDirectConnectionIpv6() { - // TODO: test DirectConnectionIpv6 - } - - /** - * Test the property 'equinixIfaceIp' - */ - @Test - public void equinixIfaceIpTest() { - // TODO: test equinixIfaceIp - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/DirectionTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/DirectionTest.java deleted file mode 100644 index 7ce3b9a5..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/DirectionTest.java +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Metrics; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Direction - */ -public class DirectionTest { - private final Direction model = new Direction(); - - /** - * Model tests for Direction - */ - @Test - public void testDirection() { - // TODO: test Direction - } - - /** - * Test the property 'max' - */ - @Test - public void maxTest() { - // TODO: test max - } - - /** - * Test the property 'mean' - */ - @Test - public void meanTest() { - // TODO: test mean - } - - /** - * Test the property 'metrics' - */ - @Test - public void metricsTest() { - // TODO: test metrics - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/DurationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/DurationTest.java deleted file mode 100644 index 8654a858..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/DurationTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Duration - */ -public class DurationTest { - /** - * Model tests for Duration - */ - @Test - public void testDuration() { - // TODO: test Duration - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/EquinixStatusTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/EquinixStatusTest.java deleted file mode 100644 index 08d7b356..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/EquinixStatusTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for EquinixStatus - */ -public class EquinixStatusTest { - /** - * Model tests for EquinixStatus - */ - @Test - public void testEquinixStatus() { - // TODO: test EquinixStatus - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ErrorTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ErrorTest.java deleted file mode 100644 index 90d5812b..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ErrorTest.java +++ /dev/null @@ -1,90 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.PriceErrorAdditionalInfo; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Error - */ -public class ErrorTest { - private final Error model = new Error(); - - /** - * Model tests for Error - */ - @Test - public void testError() { - // TODO: test Error - } - - /** - * Test the property 'errorCode' - */ - @Test - public void errorCodeTest() { - // TODO: test errorCode - } - - /** - * Test the property 'errorMessage' - */ - @Test - public void errorMessageTest() { - // TODO: test errorMessage - } - - /** - * Test the property 'correlationId' - */ - @Test - public void correlationIdTest() { - // TODO: test correlationId - } - - /** - * Test the property 'details' - */ - @Test - public void detailsTest() { - // TODO: test details - } - - /** - * Test the property 'help' - */ - @Test - public void helpTest() { - // TODO: test help - } - - /** - * Test the property 'additionalInfo' - */ - @Test - public void additionalInfoTest() { - // TODO: test additionalInfo - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ExpressionTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ExpressionTest.java deleted file mode 100644 index f6fc6fdb..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ExpressionTest.java +++ /dev/null @@ -1,82 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.SearchFieldName; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Expression - */ -public class ExpressionTest { - private final Expression model = new Expression(); - - /** - * Model tests for Expression - */ - @Test - public void testExpression() { - // TODO: test Expression - } - - /** - * Test the property 'and' - */ - @Test - public void andTest() { - // TODO: test and - } - - /** - * Test the property 'or' - */ - @Test - public void orTest() { - // TODO: test or - } - - /** - * Test the property 'property' - */ - @Test - public void propertyTest() { - // TODO: test property - } - - /** - * Test the property 'operator' - */ - @Test - public void operatorTest() { - // TODO: test operator - } - - /** - * Test the property 'values' - */ - @Test - public void valuesTest() { - // TODO: test values - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/FabricCloudRouterCodeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/FabricCloudRouterCodeTest.java deleted file mode 100644 index 4466166c..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/FabricCloudRouterCodeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for FabricCloudRouterCode - */ -public class FabricCloudRouterCodeTest { - /** - * Model tests for FabricCloudRouterCode - */ - @Test - public void testFabricCloudRouterCode() { - // TODO: test FabricCloudRouterCode - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/FabricCloudRouterPackagesTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/FabricCloudRouterPackagesTest.java deleted file mode 100644 index 22a07d07..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/FabricCloudRouterPackagesTest.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.FabricCloudRouterCode; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for FabricCloudRouterPackages - */ -public class FabricCloudRouterPackagesTest { - private final FabricCloudRouterPackages model = new FabricCloudRouterPackages(); - - /** - * Model tests for FabricCloudRouterPackages - */ - @Test - public void testFabricCloudRouterPackages() { - // TODO: test FabricCloudRouterPackages - } - - /** - * Test the property 'code' - */ - @Test - public void codeTest() { - // TODO: test code - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/FabricCloudRouterPriceTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/FabricCloudRouterPriceTest.java deleted file mode 100644 index adfb4cc0..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/FabricCloudRouterPriceTest.java +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.FabricCloudRouterPackages; -import com.equinix.openapi.fabric.v4.model.PriceLocation; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for FabricCloudRouterPrice - */ -public class FabricCloudRouterPriceTest { - private final FabricCloudRouterPrice model = new FabricCloudRouterPrice(); - - /** - * Model tests for FabricCloudRouterPrice - */ - @Test - public void testFabricCloudRouterPrice() { - // TODO: test FabricCloudRouterPrice - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'location' - */ - @Test - public void locationTest() { - // TODO: test location - } - - /** - * Test the property '_package' - */ - @Test - public void _packageTest() { - // TODO: test _package - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/FabricConnectionUuidTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/FabricConnectionUuidTest.java deleted file mode 100644 index b628496d..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/FabricConnectionUuidTest.java +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for FabricConnectionUuid - */ -public class FabricConnectionUuidTest { - private final FabricConnectionUuid model = new FabricConnectionUuid(); - - /** - * Model tests for FabricConnectionUuid - */ - @Test - public void testFabricConnectionUuid() { - // TODO: test FabricConnectionUuid - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/FilterBodyTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/FilterBodyTest.java deleted file mode 100644 index d1533f40..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/FilterBodyTest.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.SearchExpression; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for FilterBody - */ -public class FilterBodyTest { - private final FilterBody model = new FilterBody(); - - /** - * Model tests for FilterBody - */ - @Test - public void testFilterBody() { - // TODO: test FilterBody - } - - /** - * Test the property 'filter' - */ - @Test - public void filterTest() { - // TODO: test filter - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/GeoCoordinatesTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/GeoCoordinatesTest.java deleted file mode 100644 index a0c43c89..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/GeoCoordinatesTest.java +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for GeoCoordinates - */ -public class GeoCoordinatesTest { - private final GeoCoordinates model = new GeoCoordinates(); - - /** - * Model tests for GeoCoordinates - */ - @Test - public void testGeoCoordinates() { - // TODO: test GeoCoordinates - } - - /** - * Test the property 'latitude' - */ - @Test - public void latitudeTest() { - // TODO: test latitude - } - - /** - * Test the property 'longitude' - */ - @Test - public void longitudeTest() { - // TODO: test longitude - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/GeoScopeTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/GeoScopeTypeTest.java deleted file mode 100644 index d5591f81..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/GeoScopeTypeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for GeoScopeType - */ -public class GeoScopeTypeTest { - /** - * Model tests for GeoScopeType - */ - @Test - public void testGeoScopeType() { - // TODO: test GeoScopeType - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/GetAllConnectionRouteFiltersResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/GetAllConnectionRouteFiltersResponseTest.java deleted file mode 100644 index fdae2686..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/GetAllConnectionRouteFiltersResponseTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ConnectionRouteFilterData; -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for GetAllConnectionRouteFiltersResponse - */ -public class GetAllConnectionRouteFiltersResponseTest { - private final GetAllConnectionRouteFiltersResponse model = new GetAllConnectionRouteFiltersResponse(); - - /** - * Model tests for GetAllConnectionRouteFiltersResponse - */ - @Test - public void testGetAllConnectionRouteFiltersResponse() { - // TODO: test GetAllConnectionRouteFiltersResponse - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/GetResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/GetResponseTest.java deleted file mode 100644 index 55fd2c3c..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/GetResponseTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolData; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for GetResponse - */ -public class GetResponseTest { - private final GetResponse model = new GetResponse(); - - /** - * Model tests for GetResponse - */ - @Test - public void testGetResponse() { - // TODO: test GetResponse - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/GetRouteFilterGetConnectionsResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/GetRouteFilterGetConnectionsResponseTest.java deleted file mode 100644 index 51b0cf74..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/GetRouteFilterGetConnectionsResponseTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.equinix.openapi.fabric.v4.model.RouteFilterConnectionsData; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for GetRouteFilterGetConnectionsResponse - */ -public class GetRouteFilterGetConnectionsResponseTest { - private final GetRouteFilterGetConnectionsResponse model = new GetRouteFilterGetConnectionsResponse(); - - /** - * Model tests for GetRouteFilterGetConnectionsResponse - */ - @Test - public void testGetRouteFilterGetConnectionsResponse() { - // TODO: test GetRouteFilterGetConnectionsResponse - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/GetRouteFilterRulesResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/GetRouteFilterRulesResponseTest.java deleted file mode 100644 index 72fd7868..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/GetRouteFilterRulesResponseTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.equinix.openapi.fabric.v4.model.RouteFilterRulesData; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for GetRouteFilterRulesResponse - */ -public class GetRouteFilterRulesResponseTest { - private final GetRouteFilterRulesResponse model = new GetRouteFilterRulesResponse(); - - /** - * Model tests for GetRouteFilterRulesResponse - */ - @Test - public void testGetRouteFilterRulesResponse() { - // TODO: test GetRouteFilterRulesResponse - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/HealthResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/HealthResponseTest.java deleted file mode 100644 index 8b78ebac..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/HealthResponseTest.java +++ /dev/null @@ -1,80 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ApiServices; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for HealthResponse - */ -public class HealthResponseTest { - private final HealthResponse model = new HealthResponse(); - - /** - * Model tests for HealthResponse - */ - @Test - public void testHealthResponse() { - // TODO: test HealthResponse - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'version' - */ - @Test - public void versionTest() { - // TODO: test version - } - - /** - * Test the property 'release' - */ - @Test - public void releaseTest() { - // TODO: test release - } - - /** - * Test the property 'state' - */ - @Test - public void stateTest() { - // TODO: test state - } - - /** - * Test the property 'apiServices' - */ - @Test - public void apiServicesTest() { - // TODO: test apiServices - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/IpBlockPriceTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/IpBlockPriceTest.java deleted file mode 100644 index 304a4a0a..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/IpBlockPriceTest.java +++ /dev/null @@ -1,74 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.IpBlockType; -import com.equinix.openapi.fabric.v4.model.PriceLocation; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for IpBlockPrice - */ -public class IpBlockPriceTest { - private final IpBlockPrice model = new IpBlockPrice(); - - /** - * Model tests for IpBlockPrice - */ - @Test - public void testIpBlockPrice() { - // TODO: test IpBlockPrice - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'prefixLength' - */ - @Test - public void prefixLengthTest() { - // TODO: test prefixLength - } - - /** - * Test the property 'location' - */ - @Test - public void locationTest() { - // TODO: test location - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/IpBlockTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/IpBlockTypeTest.java deleted file mode 100644 index 23870cd0..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/IpBlockTypeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for IpBlockType - */ -public class IpBlockTypeTest { - /** - * Model tests for IpBlockType - */ - @Test - public void testIpBlockType() { - // TODO: test IpBlockType - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/Ipv4Test.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/Ipv4Test.java deleted file mode 100644 index 6df568c1..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/Ipv4Test.java +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Ipv4 - */ -public class Ipv4Test { - private final Ipv4 model = new Ipv4(); - - /** - * Model tests for Ipv4 - */ - @Test - public void testIpv4() { - // TODO: test Ipv4 - } - - /** - * Test the property 'primary' - */ - @Test - public void primaryTest() { - // TODO: test primary - } - - /** - * Test the property 'secondary' - */ - @Test - public void secondaryTest() { - // TODO: test secondary - } - - /** - * Test the property 'networkMask' - */ - @Test - public void networkMaskTest() { - // TODO: test networkMask - } - - /** - * Test the property 'defaultGateway' - */ - @Test - public void defaultGatewayTest() { - // TODO: test defaultGateway - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/JsonPatchOperationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/JsonPatchOperationTest.java deleted file mode 100644 index bce15d58..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/JsonPatchOperationTest.java +++ /dev/null @@ -1,67 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.AddOperation; -import com.equinix.openapi.fabric.v4.model.OpEnum; -import com.equinix.openapi.fabric.v4.model.RemoveOperation; -import com.equinix.openapi.fabric.v4.model.ReplaceOperation; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for JsonPatchOperation - */ -public class JsonPatchOperationTest { - private final JsonPatchOperation model = new JsonPatchOperation(); - - /** - * Model tests for JsonPatchOperation - */ - @Test - public void testJsonPatchOperation() { - // TODO: test JsonPatchOperation - } - - /** - * Test the property 'op' - */ - @Test - public void opTest() { - // TODO: test op - } - - /** - * Test the property 'path' - */ - @Test - public void pathTest() { - // TODO: test path - } - - /** - * Test the property 'value' - */ - @Test - public void valueTest() { - // TODO: test value - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkAggregationGroupTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkAggregationGroupTest.java deleted file mode 100644 index c8b45045..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkAggregationGroupTest.java +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for LinkAggregationGroup - */ -public class LinkAggregationGroupTest { - private final LinkAggregationGroup model = new LinkAggregationGroup(); - - /** - * Model tests for LinkAggregationGroup - */ - @Test - public void testLinkAggregationGroup() { - // TODO: test LinkAggregationGroup - } - - /** - * Test the property 'enabled' - */ - @Test - public void enabledTest() { - // TODO: test enabled - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolConnectionTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolConnectionTest.java deleted file mode 100644 index 5a00f250..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolConnectionTest.java +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for LinkProtocolConnection - */ -public class LinkProtocolConnectionTest { - private final LinkProtocolConnection model = new LinkProtocolConnection(); - - /** - * Model tests for LinkProtocolConnection - */ - @Test - public void testLinkProtocolConnection() { - // TODO: test LinkProtocolConnection - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'bandwidth' - */ - @Test - public void bandwidthTest() { - // TODO: test bandwidth - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolDot1qTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolDot1qTest.java deleted file mode 100644 index 752558e6..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolDot1qTest.java +++ /dev/null @@ -1,80 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.LinkProtocolType; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for LinkProtocolDot1q - */ -public class LinkProtocolDot1qTest { - private final LinkProtocolDot1q model = new LinkProtocolDot1q(); - - /** - * Model tests for LinkProtocolDot1q - */ - @Test - public void testLinkProtocolDot1q() { - // TODO: test LinkProtocolDot1q - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'tagProtocolId' - */ - @Test - public void tagProtocolIdTest() { - // TODO: test tagProtocolId - } - - /** - * Test the property 'vlanTag' - */ - @Test - public void vlanTagTest() { - // TODO: test vlanTag - } - - /** - * Test the property 'vlanTagMin' - */ - @Test - public void vlanTagMinTest() { - // TODO: test vlanTagMin - } - - /** - * Test the property 'vlanTagMax' - */ - @Test - public void vlanTagMaxTest() { - // TODO: test vlanTagMax - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolEvpnVxlanTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolEvpnVxlanTest.java deleted file mode 100644 index 941187d7..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolEvpnVxlanTest.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.LinkProtocolType; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for LinkProtocolEvpnVxlan - */ -public class LinkProtocolEvpnVxlanTest { - private final LinkProtocolEvpnVxlan model = new LinkProtocolEvpnVxlan(); - - /** - * Model tests for LinkProtocolEvpnVxlan - */ - @Test - public void testLinkProtocolEvpnVxlan() { - // TODO: test LinkProtocolEvpnVxlan - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'vnid' - */ - @Test - public void vnidTest() { - // TODO: test vnid - } - - /** - * Test the property 'type5vni' - */ - @Test - public void type5vniTest() { - // TODO: test type5vni - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolGetResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolGetResponseTest.java deleted file mode 100644 index 322b88d8..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolGetResponseTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.LinkProtocolResponse; -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for LinkProtocolGetResponse - */ -public class LinkProtocolGetResponseTest { - private final LinkProtocolGetResponse model = new LinkProtocolGetResponse(); - - /** - * Model tests for LinkProtocolGetResponse - */ - @Test - public void testLinkProtocolGetResponse() { - // TODO: test LinkProtocolGetResponse - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolIpv4Ipv6ConfigTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolIpv4Ipv6ConfigTest.java deleted file mode 100644 index 9dc7b21d..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolIpv4Ipv6ConfigTest.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for LinkProtocolIpv4Ipv6Config - */ -public class LinkProtocolIpv4Ipv6ConfigTest { - private final LinkProtocolIpv4Ipv6Config model = new LinkProtocolIpv4Ipv6Config(); - - /** - * Model tests for LinkProtocolIpv4Ipv6Config - */ - @Test - public void testLinkProtocolIpv4Ipv6Config() { - // TODO: test LinkProtocolIpv4Ipv6Config - } - - /** - * Test the property 'linkPrefix' - */ - @Test - public void linkPrefixTest() { - // TODO: test linkPrefix - } - - /** - * Test the property 'localIfaceIp' - */ - @Test - public void localIfaceIpTest() { - // TODO: test localIfaceIp - } - - /** - * Test the property 'remoteIfaceIp' - */ - @Test - public void remoteIfaceIpTest() { - // TODO: test remoteIfaceIp - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolQinqTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolQinqTest.java deleted file mode 100644 index ea96ab05..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolQinqTest.java +++ /dev/null @@ -1,104 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.LinkProtocolType; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for LinkProtocolQinq - */ -public class LinkProtocolQinqTest { - private final LinkProtocolQinq model = new LinkProtocolQinq(); - - /** - * Model tests for LinkProtocolQinq - */ - @Test - public void testLinkProtocolQinq() { - // TODO: test LinkProtocolQinq - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'innerTagProtocolId' - */ - @Test - public void innerTagProtocolIdTest() { - // TODO: test innerTagProtocolId - } - - /** - * Test the property 'outerTagProtocolId' - */ - @Test - public void outerTagProtocolIdTest() { - // TODO: test outerTagProtocolId - } - - /** - * Test the property 'vlanCTag' - */ - @Test - public void vlanCTagTest() { - // TODO: test vlanCTag - } - - /** - * Test the property 'vlanSTag' - */ - @Test - public void vlanSTagTest() { - // TODO: test vlanSTag - } - - /** - * Test the property 'vlanCTagMin' - */ - @Test - public void vlanCTagMinTest() { - // TODO: test vlanCTagMin - } - - /** - * Test the property 'vlanCTagMax' - */ - @Test - public void vlanCTagMaxTest() { - // TODO: test vlanCTagMax - } - - /** - * Test the property 'subInterface' - */ - @Test - public void subInterfaceTest() { - // TODO: test subInterface - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolRequestTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolRequestTypeTest.java deleted file mode 100644 index 2d89346f..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolRequestTypeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for LinkProtocolRequestType - */ -public class LinkProtocolRequestTypeTest { - /** - * Model tests for LinkProtocolRequestType - */ - @Test - public void testLinkProtocolRequestType() { - // TODO: test LinkProtocolRequestType - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolResponseTest.java deleted file mode 100644 index b8bfc673..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolResponseTest.java +++ /dev/null @@ -1,175 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Changelog; -import com.equinix.openapi.fabric.v4.model.LinkProtocolConnection; -import com.equinix.openapi.fabric.v4.model.LinkProtocolRequestType; -import com.equinix.openapi.fabric.v4.model.LinkProtocolServiceToken; -import com.equinix.openapi.fabric.v4.model.LinkProtocolState; -import com.equinix.openapi.fabric.v4.model.SubInterface; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for LinkProtocolResponse - */ -public class LinkProtocolResponseTest { - private final LinkProtocolResponse model = new LinkProtocolResponse(); - - /** - * Model tests for LinkProtocolResponse - */ - @Test - public void testLinkProtocolResponse() { - // TODO: test LinkProtocolResponse - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'state' - */ - @Test - public void stateTest() { - // TODO: test state - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'vlanTag' - */ - @Test - public void vlanTagTest() { - // TODO: test vlanTag - } - - /** - * Test the property 'vni' - */ - @Test - public void vniTest() { - // TODO: test vni - } - - /** - * Test the property 'vlanTagMin' - */ - @Test - public void vlanTagMinTest() { - // TODO: test vlanTagMin - } - - /** - * Test the property 'vlanTagMax' - */ - @Test - public void vlanTagMaxTest() { - // TODO: test vlanTagMax - } - - /** - * Test the property 'vlanSTag' - */ - @Test - public void vlanSTagTest() { - // TODO: test vlanSTag - } - - /** - * Test the property 'vlanCTag' - */ - @Test - public void vlanCTagTest() { - // TODO: test vlanCTag - } - - /** - * Test the property 'vlanCTagMin' - */ - @Test - public void vlanCTagMinTest() { - // TODO: test vlanCTagMin - } - - /** - * Test the property 'vlanCTagMax' - */ - @Test - public void vlanCTagMaxTest() { - // TODO: test vlanCTagMax - } - - /** - * Test the property 'subInterface' - */ - @Test - public void subInterfaceTest() { - // TODO: test subInterface - } - - /** - * Test the property 'asset' - */ - @Test - public void assetTest() { - // TODO: test asset - } - - /** - * Test the property 'serviceToken' - */ - @Test - public void serviceTokenTest() { - // TODO: test serviceToken - } - - /** - * Test the property 'changeLog' - */ - @Test - public void changeLogTest() { - // TODO: test changeLog - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolServiceTokenTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolServiceTokenTest.java deleted file mode 100644 index 69f8729b..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolServiceTokenTest.java +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for LinkProtocolServiceToken - */ -public class LinkProtocolServiceTokenTest { - private final LinkProtocolServiceToken model = new LinkProtocolServiceToken(); - - /** - * Model tests for LinkProtocolServiceToken - */ - @Test - public void testLinkProtocolServiceToken() { - // TODO: test LinkProtocolServiceToken - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'bandwidth' - */ - @Test - public void bandwidthTest() { - // TODO: test bandwidth - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolStateTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolStateTest.java deleted file mode 100644 index 6644a21d..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolStateTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for LinkProtocolState - */ -public class LinkProtocolStateTest { - /** - * Model tests for LinkProtocolState - */ - @Test - public void testLinkProtocolState() { - // TODO: test LinkProtocolState - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolTest.java deleted file mode 100644 index 582f4b5c..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolTest.java +++ /dev/null @@ -1,182 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.LinkProtocolDot1q; -import com.equinix.openapi.fabric.v4.model.LinkProtocolEvpnVxlan; -import com.equinix.openapi.fabric.v4.model.LinkProtocolIpv4Ipv6Config; -import com.equinix.openapi.fabric.v4.model.LinkProtocolQinq; -import com.equinix.openapi.fabric.v4.model.LinkProtocolType; -import com.equinix.openapi.fabric.v4.model.LinkProtocolUntagged; -import com.equinix.openapi.fabric.v4.model.LinkProtocolVxlan; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for LinkProtocol - */ -public class LinkProtocolTest { - private final LinkProtocol model = new LinkProtocol(); - - /** - * Model tests for LinkProtocol - */ - @Test - public void testLinkProtocol() { - // TODO: test LinkProtocol - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'ipv4' - */ - @Test - public void ipv4Test() { - // TODO: test ipv4 - } - - /** - * Test the property 'ipv6' - */ - @Test - public void ipv6Test() { - // TODO: test ipv6 - } - - /** - * Test the property 'tagProtocolId' - */ - @Test - public void tagProtocolIdTest() { - // TODO: test tagProtocolId - } - - /** - * Test the property 'vlanTag' - */ - @Test - public void vlanTagTest() { - // TODO: test vlanTag - } - - /** - * Test the property 'vlanTagMin' - */ - @Test - public void vlanTagMinTest() { - // TODO: test vlanTagMin - } - - /** - * Test the property 'vlanTagMax' - */ - @Test - public void vlanTagMaxTest() { - // TODO: test vlanTagMax - } - - /** - * Test the property 'innerTagProtocolId' - */ - @Test - public void innerTagProtocolIdTest() { - // TODO: test innerTagProtocolId - } - - /** - * Test the property 'outerTagProtocolId' - */ - @Test - public void outerTagProtocolIdTest() { - // TODO: test outerTagProtocolId - } - - /** - * Test the property 'vlanCTag' - */ - @Test - public void vlanCTagTest() { - // TODO: test vlanCTag - } - - /** - * Test the property 'vlanSTag' - */ - @Test - public void vlanSTagTest() { - // TODO: test vlanSTag - } - - /** - * Test the property 'vlanCTagMin' - */ - @Test - public void vlanCTagMinTest() { - // TODO: test vlanCTagMin - } - - /** - * Test the property 'vlanCTagMax' - */ - @Test - public void vlanCTagMaxTest() { - // TODO: test vlanCTagMax - } - - /** - * Test the property 'subInterface' - */ - @Test - public void subInterfaceTest() { - // TODO: test subInterface - } - - /** - * Test the property 'vni' - */ - @Test - public void vniTest() { - // TODO: test vni - } - - /** - * Test the property 'vnid' - */ - @Test - public void vnidTest() { - // TODO: test vnid - } - - /** - * Test the property 'type5vni' - */ - @Test - public void type5vniTest() { - // TODO: test type5vni - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolTypeTest.java deleted file mode 100644 index fe614c63..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolTypeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for LinkProtocolType - */ -public class LinkProtocolTypeTest { - /** - * Model tests for LinkProtocolType - */ - @Test - public void testLinkProtocolType() { - // TODO: test LinkProtocolType - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolUntaggedTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolUntaggedTest.java deleted file mode 100644 index ddb4994e..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolUntaggedTest.java +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.LinkProtocolIpv4Ipv6Config; -import com.equinix.openapi.fabric.v4.model.LinkProtocolType; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for LinkProtocolUntagged - */ -public class LinkProtocolUntaggedTest { - private final LinkProtocolUntagged model = new LinkProtocolUntagged(); - - /** - * Model tests for LinkProtocolUntagged - */ - @Test - public void testLinkProtocolUntagged() { - // TODO: test LinkProtocolUntagged - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'ipv4' - */ - @Test - public void ipv4Test() { - // TODO: test ipv4 - } - - /** - * Test the property 'ipv6' - */ - @Test - public void ipv6Test() { - // TODO: test ipv6 - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolVxlanTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolVxlanTest.java deleted file mode 100644 index eed913a6..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkProtocolVxlanTest.java +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.LinkProtocolType; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for LinkProtocolVxlan - */ -public class LinkProtocolVxlanTest { - private final LinkProtocolVxlan model = new LinkProtocolVxlan(); - - /** - * Model tests for LinkProtocolVxlan - */ - @Test - public void testLinkProtocolVxlan() { - // TODO: test LinkProtocolVxlan - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'vni' - */ - @Test - public void vniTest() { - // TODO: test vni - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkTest.java deleted file mode 100644 index eac3860a..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/LinkTest.java +++ /dev/null @@ -1,80 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Link - */ -public class LinkTest { - private final Link model = new Link(); - - /** - * Model tests for Link - */ - @Test - public void testLink() { - // TODO: test Link - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'rel' - */ - @Test - public void relTest() { - // TODO: test rel - } - - /** - * Test the property 'method' - */ - @Test - public void methodTest() { - // TODO: test method - } - - /** - * Test the property 'contentType' - */ - @Test - public void contentTypeTest() { - // TODO: test contentType - } - - /** - * Test the property 'authenticate' - */ - @Test - public void authenticateTest() { - // TODO: test authenticate - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/MarketingInfoTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/MarketingInfoTest.java deleted file mode 100644 index 3690970b..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/MarketingInfoTest.java +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ProcessStep; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for MarketingInfo - */ -public class MarketingInfoTest { - private final MarketingInfo model = new MarketingInfo(); - - /** - * Model tests for MarketingInfo - */ - @Test - public void testMarketingInfo() { - // TODO: test MarketingInfo - } - - /** - * Test the property 'logo' - */ - @Test - public void logoTest() { - // TODO: test logo - } - - /** - * Test the property 'promotion' - */ - @Test - public void promotionTest() { - // TODO: test promotion - } - - /** - * Test the property 'processSteps' - */ - @Test - public void processStepsTest() { - // TODO: test processSteps - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/Md5Test.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/Md5Test.java deleted file mode 100644 index 20d7fb40..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/Md5Test.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Md5 - */ -public class Md5Test { - private final Md5 model = new Md5(); - - /** - * Model tests for Md5 - */ - @Test - public void testMd5() { - // TODO: test Md5 - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'id' - */ - @Test - public void idTest() { - // TODO: test id - } - - /** - * Test the property 'password' - */ - @Test - public void passwordTest() { - // TODO: test password - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/MetalInterconnectionTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/MetalInterconnectionTest.java deleted file mode 100644 index 257b716c..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/MetalInterconnectionTest.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for MetalInterconnection - */ -public class MetalInterconnectionTest { - private final MetalInterconnection model = new MetalInterconnection(); - - /** - * Model tests for MetalInterconnection - */ - @Test - public void testMetalInterconnection() { - // TODO: test MetalInterconnection - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/MetricIntervalTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/MetricIntervalTest.java deleted file mode 100644 index f4155396..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/MetricIntervalTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for MetricInterval - */ -public class MetricIntervalTest { - /** - * Model tests for MetricInterval - */ - @Test - public void testMetricInterval() { - // TODO: test MetricInterval - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/MetricsTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/MetricsTest.java deleted file mode 100644 index 3ac7c6b5..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/MetricsTest.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.time.OffsetDateTime; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Metrics - */ -public class MetricsTest { - private final Metrics model = new Metrics(); - - /** - * Model tests for Metrics - */ - @Test - public void testMetrics() { - // TODO: test Metrics - } - - /** - * Test the property 'intervalEndTimestamp' - */ - @Test - public void intervalEndTimestampTest() { - // TODO: test intervalEndTimestamp - } - - /** - * Test the property 'max' - */ - @Test - public void maxTest() { - // TODO: test max - } - - /** - * Test the property 'mean' - */ - @Test - public void meanTest() { - // TODO: test mean - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/MetroErrorTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/MetroErrorTest.java deleted file mode 100644 index b0b02d71..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/MetroErrorTest.java +++ /dev/null @@ -1,90 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.PriceErrorAdditionalInfo; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for MetroError - */ -public class MetroErrorTest { - private final MetroError model = new MetroError(); - - /** - * Model tests for MetroError - */ - @Test - public void testMetroError() { - // TODO: test MetroError - } - - /** - * Test the property 'errorCode' - */ - @Test - public void errorCodeTest() { - // TODO: test errorCode - } - - /** - * Test the property 'errorMessage' - */ - @Test - public void errorMessageTest() { - // TODO: test errorMessage - } - - /** - * Test the property 'correlationId' - */ - @Test - public void correlationIdTest() { - // TODO: test correlationId - } - - /** - * Test the property 'details' - */ - @Test - public void detailsTest() { - // TODO: test details - } - - /** - * Test the property 'help' - */ - @Test - public void helpTest() { - // TODO: test help - } - - /** - * Test the property 'additionalInfo' - */ - @Test - public void additionalInfoTest() { - // TODO: test additionalInfo - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/MetroResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/MetroResponseTest.java deleted file mode 100644 index aa09fab2..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/MetroResponseTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Metro; -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for MetroResponse - */ -public class MetroResponseTest { - private final MetroResponse model = new MetroResponse(); - - /** - * Model tests for MetroResponse - */ - @Test - public void testMetroResponse() { - // TODO: test MetroResponse - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/MetroTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/MetroTest.java deleted file mode 100644 index f104f2f0..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/MetroTest.java +++ /dev/null @@ -1,124 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ConnectedMetro; -import com.equinix.openapi.fabric.v4.model.GeoCoordinates; -import com.equinix.openapi.fabric.v4.model.GeoScopeType; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Metro - */ -public class MetroTest { - private final Metro model = new Metro(); - - /** - * Model tests for Metro - */ - @Test - public void testMetro() { - // TODO: test Metro - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'code' - */ - @Test - public void codeTest() { - // TODO: test code - } - - /** - * Test the property 'region' - */ - @Test - public void regionTest() { - // TODO: test region - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'equinixAsn' - */ - @Test - public void equinixAsnTest() { - // TODO: test equinixAsn - } - - /** - * Test the property 'localVCBandwidthMax' - */ - @Test - public void localVCBandwidthMaxTest() { - // TODO: test localVCBandwidthMax - } - - /** - * Test the property 'geoCoordinates' - */ - @Test - public void geoCoordinatesTest() { - // TODO: test geoCoordinates - } - - /** - * Test the property 'connectedMetros' - */ - @Test - public void connectedMetrosTest() { - // TODO: test connectedMetros - } - - /** - * Test the property 'geoScopes' - */ - @Test - public void geoScopesTest() { - // TODO: test geoScopes - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ModelInterfaceTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ModelInterfaceTest.java deleted file mode 100644 index 337ffaca..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ModelInterfaceTest.java +++ /dev/null @@ -1,81 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ModelInterface - */ -public class ModelInterfaceTest { - private final ModelInterface model = new ModelInterface(); - - /** - * Model tests for ModelInterface - */ - @Test - public void testModelInterface() { - // TODO: test ModelInterface - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'id' - */ - @Test - public void idTest() { - // TODO: test id - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'projectId' - */ - @Test - public void projectIdTest() { - // TODO: test projectId - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkAllOfTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkAllOfTest.java deleted file mode 100644 index 7071a312..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkAllOfTest.java +++ /dev/null @@ -1,122 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Changelog; -import com.equinix.openapi.fabric.v4.model.Link; -import com.equinix.openapi.fabric.v4.model.NetworkOperation; -import com.equinix.openapi.fabric.v4.model.NetworkState; -import com.equinix.openapi.fabric.v4.model.SimplifiedAccount; -import com.equinix.openapi.fabric.v4.model.SimplifiedNetworkChange; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.math.BigDecimal; -import java.net.URI; -import java.util.ArrayList; -import java.util.List; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for NetworkAllOf - */ -public class NetworkAllOfTest { - private final NetworkAllOf model = new NetworkAllOf(); - - /** - * Model tests for NetworkAllOf - */ - @Test - public void testNetworkAllOf() { - // TODO: test NetworkAllOf - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'state' - */ - @Test - public void stateTest() { - // TODO: test state - } - - /** - * Test the property 'connectionsCount' - */ - @Test - public void connectionsCountTest() { - // TODO: test connectionsCount - } - - /** - * Test the property 'account' - */ - @Test - public void accountTest() { - // TODO: test account - } - - /** - * Test the property 'change' - */ - @Test - public void changeTest() { - // TODO: test change - } - - /** - * Test the property 'operation' - */ - @Test - public void operationTest() { - // TODO: test operation - } - - /** - * Test the property 'changeLog' - */ - @Test - public void changeLogTest() { - // TODO: test changeLog - } - - /** - * Test the property 'links' - */ - @Test - public void linksTest() { - // TODO: test links - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkChangeOperationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkChangeOperationTest.java deleted file mode 100644 index 5fff6c94..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkChangeOperationTest.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for NetworkChangeOperation - */ -public class NetworkChangeOperationTest { - private final NetworkChangeOperation model = new NetworkChangeOperation(); - - /** - * Model tests for NetworkChangeOperation - */ - @Test - public void testNetworkChangeOperation() { - // TODO: test NetworkChangeOperation - } - - /** - * Test the property 'op' - */ - @Test - public void opTest() { - // TODO: test op - } - - /** - * Test the property 'path' - */ - @Test - public void pathTest() { - // TODO: test path - } - - /** - * Test the property 'value' - */ - @Test - public void valueTest() { - // TODO: test value - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkChangeResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkChangeResponseTest.java deleted file mode 100644 index 80d2d2cb..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkChangeResponseTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.NetworkChange; -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for NetworkChangeResponse - */ -public class NetworkChangeResponseTest { - private final NetworkChangeResponse model = new NetworkChangeResponse(); - - /** - * Model tests for NetworkChangeResponse - */ - @Test - public void testNetworkChangeResponse() { - // TODO: test NetworkChangeResponse - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkChangeStatusTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkChangeStatusTest.java deleted file mode 100644 index 038025ee..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkChangeStatusTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for NetworkChangeStatus - */ -public class NetworkChangeStatusTest { - /** - * Model tests for NetworkChangeStatus - */ - @Test - public void testNetworkChangeStatus() { - // TODO: test NetworkChangeStatus - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkChangeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkChangeTest.java deleted file mode 100644 index 83f4c5f1..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkChangeTest.java +++ /dev/null @@ -1,103 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.NetworkChangeOperation; -import com.equinix.openapi.fabric.v4.model.NetworkChangeStatus; -import com.equinix.openapi.fabric.v4.model.NetworkChangeType; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.time.OffsetDateTime; -import java.util.ArrayList; -import java.util.List; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for NetworkChange - */ -public class NetworkChangeTest { - private final NetworkChange model = new NetworkChange(); - - /** - * Model tests for NetworkChange - */ - @Test - public void testNetworkChange() { - // TODO: test NetworkChange - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'status' - */ - @Test - public void statusTest() { - // TODO: test status - } - - /** - * Test the property 'createdDateTime' - */ - @Test - public void createdDateTimeTest() { - // TODO: test createdDateTime - } - - /** - * Test the property 'updatedDateTime' - */ - @Test - public void updatedDateTimeTest() { - // TODO: test updatedDateTime - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkChangeTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkChangeTypeTest.java deleted file mode 100644 index fb45df83..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkChangeTypeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for NetworkChangeType - */ -public class NetworkChangeTypeTest { - /** - * Model tests for NetworkChangeType - */ - @Test - public void testNetworkChangeType() { - // TODO: test NetworkChangeType - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkConnectionsTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkConnectionsTest.java deleted file mode 100644 index d516df85..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkConnectionsTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Connection; -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for NetworkConnections - */ -public class NetworkConnectionsTest { - private final NetworkConnections model = new NetworkConnections(); - - /** - * Model tests for NetworkConnections - */ - @Test - public void testNetworkConnections() { - // TODO: test NetworkConnections - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkEquinixStatusTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkEquinixStatusTest.java deleted file mode 100644 index 37e9d823..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkEquinixStatusTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for NetworkEquinixStatus - */ -public class NetworkEquinixStatusTest { - /** - * Model tests for NetworkEquinixStatus - */ - @Test - public void testNetworkEquinixStatus() { - // TODO: test NetworkEquinixStatus - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkFilterTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkFilterTest.java deleted file mode 100644 index b51d7618..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkFilterTest.java +++ /dev/null @@ -1,82 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.NetworkSearchFieldName; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for NetworkFilter - */ -public class NetworkFilterTest { - private final NetworkFilter model = new NetworkFilter(); - - /** - * Model tests for NetworkFilter - */ - @Test - public void testNetworkFilter() { - // TODO: test NetworkFilter - } - - /** - * Test the property 'and' - */ - @Test - public void andTest() { - // TODO: test and - } - - /** - * Test the property 'or' - */ - @Test - public void orTest() { - // TODO: test or - } - - /** - * Test the property 'property' - */ - @Test - public void propertyTest() { - // TODO: test property - } - - /** - * Test the property 'operator' - */ - @Test - public void operatorTest() { - // TODO: test operator - } - - /** - * Test the property 'values' - */ - @Test - public void valuesTest() { - // TODO: test values - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkOperationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkOperationTest.java deleted file mode 100644 index fd1daf63..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkOperationTest.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.NetworkEquinixStatus; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for NetworkOperation - */ -public class NetworkOperationTest { - private final NetworkOperation model = new NetworkOperation(); - - /** - * Model tests for NetworkOperation - */ - @Test - public void testNetworkOperation() { - // TODO: test NetworkOperation - } - - /** - * Test the property 'equinixStatus' - */ - @Test - public void equinixStatusTest() { - // TODO: test equinixStatus - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkPostRequestTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkPostRequestTest.java deleted file mode 100644 index aceebe04..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkPostRequestTest.java +++ /dev/null @@ -1,94 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.NetworkScope; -import com.equinix.openapi.fabric.v4.model.NetworkType; -import com.equinix.openapi.fabric.v4.model.Project; -import com.equinix.openapi.fabric.v4.model.SimplifiedLocation; -import com.equinix.openapi.fabric.v4.model.SimplifiedNotification; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for NetworkPostRequest - */ -public class NetworkPostRequestTest { - private final NetworkPostRequest model = new NetworkPostRequest(); - - /** - * Model tests for NetworkPostRequest - */ - @Test - public void testNetworkPostRequest() { - // TODO: test NetworkPostRequest - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'scope' - */ - @Test - public void scopeTest() { - // TODO: test scope - } - - /** - * Test the property 'location' - */ - @Test - public void locationTest() { - // TODO: test location - } - - /** - * Test the property 'project' - */ - @Test - public void projectTest() { - // TODO: test project - } - - /** - * Test the property 'notifications' - */ - @Test - public void notificationsTest() { - // TODO: test notifications - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkScopeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkScopeTest.java deleted file mode 100644 index 7b8e456b..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkScopeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for NetworkScope - */ -public class NetworkScopeTest { - /** - * Model tests for NetworkScope - */ - @Test - public void testNetworkScope() { - // TODO: test NetworkScope - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSearchFieldNameTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSearchFieldNameTest.java deleted file mode 100644 index 81093d44..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSearchFieldNameTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for NetworkSearchFieldName - */ -public class NetworkSearchFieldNameTest { - /** - * Model tests for NetworkSearchFieldName - */ - @Test - public void testNetworkSearchFieldName() { - // TODO: test NetworkSearchFieldName - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSearchRequestTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSearchRequestTest.java deleted file mode 100644 index 7d713fb7..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSearchRequestTest.java +++ /dev/null @@ -1,68 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.NetworkFilter; -import com.equinix.openapi.fabric.v4.model.NetworkSortCriteria; -import com.equinix.openapi.fabric.v4.model.PaginationRequest; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for NetworkSearchRequest - */ -public class NetworkSearchRequestTest { - private final NetworkSearchRequest model = new NetworkSearchRequest(); - - /** - * Model tests for NetworkSearchRequest - */ - @Test - public void testNetworkSearchRequest() { - // TODO: test NetworkSearchRequest - } - - /** - * Test the property 'filter' - */ - @Test - public void filterTest() { - // TODO: test filter - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'sort' - */ - @Test - public void sortTest() { - // TODO: test sort - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSearchResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSearchResponseTest.java deleted file mode 100644 index b2de68bd..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSearchResponseTest.java +++ /dev/null @@ -1,68 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Network; -import com.equinix.openapi.fabric.v4.model.NetworkSortCriteriaResponse; -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for NetworkSearchResponse - */ -public class NetworkSearchResponseTest { - private final NetworkSearchResponse model = new NetworkSearchResponse(); - - /** - * Model tests for NetworkSearchResponse - */ - @Test - public void testNetworkSearchResponse() { - // TODO: test NetworkSearchResponse - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'sort' - */ - @Test - public void sortTest() { - // TODO: test sort - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSortByResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSortByResponseTest.java deleted file mode 100644 index 052b6361..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSortByResponseTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for NetworkSortByResponse - */ -public class NetworkSortByResponseTest { - /** - * Model tests for NetworkSortByResponse - */ - @Test - public void testNetworkSortByResponse() { - // TODO: test NetworkSortByResponse - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSortByTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSortByTest.java deleted file mode 100644 index f6019be8..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSortByTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for NetworkSortBy - */ -public class NetworkSortByTest { - /** - * Model tests for NetworkSortBy - */ - @Test - public void testNetworkSortBy() { - // TODO: test NetworkSortBy - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSortCriteriaResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSortCriteriaResponseTest.java deleted file mode 100644 index b3f8bfe2..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSortCriteriaResponseTest.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.NetworkSortByResponse; -import com.equinix.openapi.fabric.v4.model.NetworkSortDirectionResponse; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for NetworkSortCriteriaResponse - */ -public class NetworkSortCriteriaResponseTest { - private final NetworkSortCriteriaResponse model = new NetworkSortCriteriaResponse(); - - /** - * Model tests for NetworkSortCriteriaResponse - */ - @Test - public void testNetworkSortCriteriaResponse() { - // TODO: test NetworkSortCriteriaResponse - } - - /** - * Test the property 'direction' - */ - @Test - public void directionTest() { - // TODO: test direction - } - - /** - * Test the property 'property' - */ - @Test - public void propertyTest() { - // TODO: test property - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSortCriteriaTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSortCriteriaTest.java deleted file mode 100644 index 2b28378c..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSortCriteriaTest.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.NetworkSortBy; -import com.equinix.openapi.fabric.v4.model.NetworkSortDirection; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for NetworkSortCriteria - */ -public class NetworkSortCriteriaTest { - private final NetworkSortCriteria model = new NetworkSortCriteria(); - - /** - * Model tests for NetworkSortCriteria - */ - @Test - public void testNetworkSortCriteria() { - // TODO: test NetworkSortCriteria - } - - /** - * Test the property 'direction' - */ - @Test - public void directionTest() { - // TODO: test direction - } - - /** - * Test the property 'property' - */ - @Test - public void propertyTest() { - // TODO: test property - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSortDirectionResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSortDirectionResponseTest.java deleted file mode 100644 index 76e2891c..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSortDirectionResponseTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for NetworkSortDirectionResponse - */ -public class NetworkSortDirectionResponseTest { - /** - * Model tests for NetworkSortDirectionResponse - */ - @Test - public void testNetworkSortDirectionResponse() { - // TODO: test NetworkSortDirectionResponse - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSortDirectionTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSortDirectionTest.java deleted file mode 100644 index 237d0586..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkSortDirectionTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for NetworkSortDirection - */ -public class NetworkSortDirectionTest { - /** - * Model tests for NetworkSortDirection - */ - @Test - public void testNetworkSortDirection() { - // TODO: test NetworkSortDirection - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkStateTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkStateTest.java deleted file mode 100644 index fd565673..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkStateTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for NetworkState - */ -public class NetworkStateTest { - /** - * Model tests for NetworkState - */ - @Test - public void testNetworkState() { - // TODO: test NetworkState - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkTest.java deleted file mode 100644 index 29045244..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkTest.java +++ /dev/null @@ -1,175 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Changelog; -import com.equinix.openapi.fabric.v4.model.Link; -import com.equinix.openapi.fabric.v4.model.NetworkOperation; -import com.equinix.openapi.fabric.v4.model.NetworkScope; -import com.equinix.openapi.fabric.v4.model.NetworkState; -import com.equinix.openapi.fabric.v4.model.NetworkType; -import com.equinix.openapi.fabric.v4.model.Project; -import com.equinix.openapi.fabric.v4.model.SimplifiedAccount; -import com.equinix.openapi.fabric.v4.model.SimplifiedLocation; -import com.equinix.openapi.fabric.v4.model.SimplifiedNetworkChange; -import com.equinix.openapi.fabric.v4.model.SimplifiedNotification; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.math.BigDecimal; -import java.net.URI; -import java.util.ArrayList; -import java.util.List; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Network - */ -public class NetworkTest { - private final Network model = new Network(); - - /** - * Model tests for Network - */ - @Test - public void testNetwork() { - // TODO: test Network - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'state' - */ - @Test - public void stateTest() { - // TODO: test state - } - - /** - * Test the property 'connectionsCount' - */ - @Test - public void connectionsCountTest() { - // TODO: test connectionsCount - } - - /** - * Test the property 'account' - */ - @Test - public void accountTest() { - // TODO: test account - } - - /** - * Test the property 'change' - */ - @Test - public void changeTest() { - // TODO: test change - } - - /** - * Test the property 'operation' - */ - @Test - public void operationTest() { - // TODO: test operation - } - - /** - * Test the property 'changeLog' - */ - @Test - public void changeLogTest() { - // TODO: test changeLog - } - - /** - * Test the property 'links' - */ - @Test - public void linksTest() { - // TODO: test links - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'scope' - */ - @Test - public void scopeTest() { - // TODO: test scope - } - - /** - * Test the property 'location' - */ - @Test - public void locationTest() { - // TODO: test location - } - - /** - * Test the property 'project' - */ - @Test - public void projectTest() { - // TODO: test project - } - - /** - * Test the property 'notifications' - */ - @Test - public void notificationsTest() { - // TODO: test notifications - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkTypeTest.java deleted file mode 100644 index ab4b61a7..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/NetworkTypeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for NetworkType - */ -public class NetworkTypeTest { - /** - * Model tests for NetworkType - */ - @Test - public void testNetworkType() { - // TODO: test NetworkType - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/OpEnumTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/OpEnumTest.java deleted file mode 100644 index 9fd72d99..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/OpEnumTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for OpEnum - */ -public class OpEnumTest { - /** - * Model tests for OpEnum - */ - @Test - public void testOpEnum() { - // TODO: test OpEnum - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/OrderTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/OrderTest.java deleted file mode 100644 index 34407fe8..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/OrderTest.java +++ /dev/null @@ -1,79 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Order - */ -public class OrderTest { - private final Order model = new Order(); - - /** - * Model tests for Order - */ - @Test - public void testOrder() { - // TODO: test Order - } - - /** - * Test the property 'purchaseOrderNumber' - */ - @Test - public void purchaseOrderNumberTest() { - // TODO: test purchaseOrderNumber - } - - /** - * Test the property 'customerReferenceNumber' - */ - @Test - public void customerReferenceNumberTest() { - // TODO: test customerReferenceNumber - } - - /** - * Test the property 'billingTier' - */ - @Test - public void billingTierTest() { - // TODO: test billingTier - } - - /** - * Test the property 'orderId' - */ - @Test - public void orderIdTest() { - // TODO: test orderId - } - - /** - * Test the property 'orderNumber' - */ - @Test - public void orderNumberTest() { - // TODO: test orderNumber - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PackageChangeLogTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PackageChangeLogTest.java deleted file mode 100644 index 6a68b670..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PackageChangeLogTest.java +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.time.OffsetDateTime; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PackageChangeLog - */ -public class PackageChangeLogTest { - private final PackageChangeLog model = new PackageChangeLog(); - - /** - * Model tests for PackageChangeLog - */ - @Test - public void testPackageChangeLog() { - // TODO: test PackageChangeLog - } - - /** - * Test the property 'createdDateTime' - */ - @Test - public void createdDateTimeTest() { - // TODO: test createdDateTime - } - - /** - * Test the property 'updatedDateTime' - */ - @Test - public void updatedDateTimeTest() { - // TODO: test updatedDateTime - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PackageResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PackageResponseTest.java deleted file mode 100644 index 47134245..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PackageResponseTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.CloudRouterPackage; -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PackageResponse - */ -public class PackageResponseTest { - private final PackageResponse model = new PackageResponse(); - - /** - * Model tests for PackageResponse - */ - @Test - public void testPackageResponse() { - // TODO: test PackageResponse - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PaginationRequestTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PaginationRequestTest.java deleted file mode 100644 index 7750a348..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PaginationRequestTest.java +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PaginationRequest - */ -public class PaginationRequestTest { - private final PaginationRequest model = new PaginationRequest(); - - /** - * Model tests for PaginationRequest - */ - @Test - public void testPaginationRequest() { - // TODO: test PaginationRequest - } - - /** - * Test the property 'offset' - */ - @Test - public void offsetTest() { - // TODO: test offset - } - - /** - * Test the property 'limit' - */ - @Test - public void limitTest() { - // TODO: test limit - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PaginationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PaginationTest.java deleted file mode 100644 index bd13c845..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PaginationTest.java +++ /dev/null @@ -1,79 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Pagination - */ -public class PaginationTest { - private final Pagination model = new Pagination(); - - /** - * Model tests for Pagination - */ - @Test - public void testPagination() { - // TODO: test Pagination - } - - /** - * Test the property 'offset' - */ - @Test - public void offsetTest() { - // TODO: test offset - } - - /** - * Test the property 'limit' - */ - @Test - public void limitTest() { - // TODO: test limit - } - - /** - * Test the property 'total' - */ - @Test - public void totalTest() { - // TODO: test total - } - - /** - * Test the property 'next' - */ - @Test - public void nextTest() { - // TODO: test next - } - - /** - * Test the property 'previous' - */ - @Test - public void previousTest() { - // TODO: test previous - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PeeringTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PeeringTypeTest.java deleted file mode 100644 index e4401eab..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PeeringTypeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PeeringType - */ -public class PeeringTypeTest { - /** - * Model tests for PeeringType - */ - @Test - public void testPeeringType() { - // TODO: test PeeringType - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PhysicalPortTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PhysicalPortTest.java deleted file mode 100644 index 1fc17b0f..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PhysicalPortTest.java +++ /dev/null @@ -1,155 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.PhysicalPortType; -import com.equinix.openapi.fabric.v4.model.PortAdditionalInfo; -import com.equinix.openapi.fabric.v4.model.PortDemarcationPoint; -import com.equinix.openapi.fabric.v4.model.PortLoa; -import com.equinix.openapi.fabric.v4.model.PortOperation; -import com.equinix.openapi.fabric.v4.model.PortOrder; -import com.equinix.openapi.fabric.v4.model.PortState; -import com.equinix.openapi.fabric.v4.model.PortTether; -import com.equinix.openapi.fabric.v4.model.SimplifiedAccount; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PhysicalPort - */ -public class PhysicalPortTest { - private final PhysicalPort model = new PhysicalPort(); - - /** - * Model tests for PhysicalPort - */ - @Test - public void testPhysicalPort() { - // TODO: test PhysicalPort - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'id' - */ - @Test - public void idTest() { - // TODO: test id - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'state' - */ - @Test - public void stateTest() { - // TODO: test state - } - - /** - * Test the property 'account' - */ - @Test - public void accountTest() { - // TODO: test account - } - - /** - * Test the property 'interfaceSpeed' - */ - @Test - public void interfaceSpeedTest() { - // TODO: test interfaceSpeed - } - - /** - * Test the property 'interfaceType' - */ - @Test - public void interfaceTypeTest() { - // TODO: test interfaceType - } - - /** - * Test the property 'tether' - */ - @Test - public void tetherTest() { - // TODO: test tether - } - - /** - * Test the property 'demarcationPoint' - */ - @Test - public void demarcationPointTest() { - // TODO: test demarcationPoint - } - - /** - * Test the property 'additionalInfo' - */ - @Test - public void additionalInfoTest() { - // TODO: test additionalInfo - } - - /** - * Test the property 'order' - */ - @Test - public void orderTest() { - // TODO: test order - } - - /** - * Test the property 'operation' - */ - @Test - public void operationTest() { - // TODO: test operation - } - - /** - * Test the property 'loas' - */ - @Test - public void loasTest() { - // TODO: test loas - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PhysicalPortTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PhysicalPortTypeTest.java deleted file mode 100644 index 9a8afa5e..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PhysicalPortTypeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PhysicalPortType - */ -public class PhysicalPortTypeTest { - /** - * Model tests for PhysicalPortType - */ - @Test - public void testPhysicalPortType() { - // TODO: test PhysicalPortType - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortAdditionalInfoTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortAdditionalInfoTest.java deleted file mode 100644 index 03026974..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortAdditionalInfoTest.java +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortAdditionalInfo - */ -public class PortAdditionalInfoTest { - private final PortAdditionalInfo model = new PortAdditionalInfo(); - - /** - * Model tests for PortAdditionalInfo - */ - @Test - public void testPortAdditionalInfo() { - // TODO: test PortAdditionalInfo - } - - /** - * Test the property 'key' - */ - @Test - public void keyTest() { - // TODO: test key - } - - /** - * Test the property 'value' - */ - @Test - public void valueTest() { - // TODO: test value - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortDemarcationPointTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortDemarcationPointTest.java deleted file mode 100644 index 59d5951f..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortDemarcationPointTest.java +++ /dev/null @@ -1,103 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortDemarcationPoint - */ -public class PortDemarcationPointTest { - private final PortDemarcationPoint model = new PortDemarcationPoint(); - - /** - * Model tests for PortDemarcationPoint - */ - @Test - public void testPortDemarcationPoint() { - // TODO: test PortDemarcationPoint - } - - /** - * Test the property 'cabinetUniqueSpaceId' - */ - @Test - public void cabinetUniqueSpaceIdTest() { - // TODO: test cabinetUniqueSpaceId - } - - /** - * Test the property 'cageUniqueSpaceId' - */ - @Test - public void cageUniqueSpaceIdTest() { - // TODO: test cageUniqueSpaceId - } - - /** - * Test the property 'patchPanel' - */ - @Test - public void patchPanelTest() { - // TODO: test patchPanel - } - - /** - * Test the property 'patchPanelName' - */ - @Test - public void patchPanelNameTest() { - // TODO: test patchPanelName - } - - /** - * Test the property 'patchPanelPortA' - */ - @Test - public void patchPanelPortATest() { - // TODO: test patchPanelPortA - } - - /** - * Test the property 'patchPanelPortB' - */ - @Test - public void patchPanelPortBTest() { - // TODO: test patchPanelPortB - } - - /** - * Test the property 'connectorType' - */ - @Test - public void connectorTypeTest() { - // TODO: test connectorType - } - - /** - * Test the property 'ibx' - */ - @Test - public void ibxTest() { - // TODO: test ibx - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortDeviceRedundancyTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortDeviceRedundancyTest.java deleted file mode 100644 index d73f7e86..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortDeviceRedundancyTest.java +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortDeviceRedundancy - */ -public class PortDeviceRedundancyTest { - private final PortDeviceRedundancy model = new PortDeviceRedundancy(); - - /** - * Model tests for PortDeviceRedundancy - */ - @Test - public void testPortDeviceRedundancy() { - // TODO: test PortDeviceRedundancy - } - - /** - * Test the property 'group' - */ - @Test - public void groupTest() { - // TODO: test group - } - - /** - * Test the property 'priority' - */ - @Test - public void priorityTest() { - // TODO: test priority - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortDeviceTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortDeviceTest.java deleted file mode 100644 index 36a72157..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortDeviceTest.java +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.PortDeviceRedundancy; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortDevice - */ -public class PortDeviceTest { - private final PortDevice model = new PortDevice(); - - /** - * Model tests for PortDevice - */ - @Test - public void testPortDevice() { - // TODO: test PortDevice - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'redundancy' - */ - @Test - public void redundancyTest() { - // TODO: test redundancy - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortEncapsulationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortEncapsulationTest.java deleted file mode 100644 index 9fcd59b1..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortEncapsulationTest.java +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortEncapsulation - */ -public class PortEncapsulationTest { - private final PortEncapsulation model = new PortEncapsulation(); - - /** - * Model tests for PortEncapsulation - */ - @Test - public void testPortEncapsulation() { - // TODO: test PortEncapsulation - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'tagProtocolId' - */ - @Test - public void tagProtocolIdTest() { - // TODO: test tagProtocolId - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortExpressionTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortExpressionTest.java deleted file mode 100644 index d682bd27..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortExpressionTest.java +++ /dev/null @@ -1,82 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.PortSearchFieldName; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortExpression - */ -public class PortExpressionTest { - private final PortExpression model = new PortExpression(); - - /** - * Model tests for PortExpression - */ - @Test - public void testPortExpression() { - // TODO: test PortExpression - } - - /** - * Test the property 'and' - */ - @Test - public void andTest() { - // TODO: test and - } - - /** - * Test the property 'or' - */ - @Test - public void orTest() { - // TODO: test or - } - - /** - * Test the property 'property' - */ - @Test - public void propertyTest() { - // TODO: test property - } - - /** - * Test the property 'operator' - */ - @Test - public void operatorTest() { - // TODO: test operator - } - - /** - * Test the property 'values' - */ - @Test - public void valuesTest() { - // TODO: test values - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortInterfaceTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortInterfaceTest.java deleted file mode 100644 index a63b6772..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortInterfaceTest.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortInterface - */ -public class PortInterfaceTest { - private final PortInterface model = new PortInterface(); - - /** - * Model tests for PortInterface - */ - @Test - public void testPortInterface() { - // TODO: test PortInterface - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'ifIndex' - */ - @Test - public void ifIndexTest() { - // TODO: test ifIndex - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortLagTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortLagTest.java deleted file mode 100644 index 6bb0352c..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortLagTest.java +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortLag - */ -public class PortLagTest { - private final PortLag model = new PortLag(); - - /** - * Model tests for PortLag - */ - @Test - public void testPortLag() { - // TODO: test PortLag - } - - /** - * Test the property 'id' - */ - @Test - public void idTest() { - // TODO: test id - } - - /** - * Test the property 'enabled' - */ - @Test - public void enabledTest() { - // TODO: test enabled - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'memberStatus' - */ - @Test - public void memberStatusTest() { - // TODO: test memberStatus - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortLoaTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortLoaTest.java deleted file mode 100644 index b8197e35..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortLoaTest.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortLoa - */ -public class PortLoaTest { - private final PortLoa model = new PortLoa(); - - /** - * Model tests for PortLoa - */ - @Test - public void testPortLoa() { - // TODO: test PortLoa - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortNotificationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortNotificationTest.java deleted file mode 100644 index f3bb702e..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortNotificationTest.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortNotification - */ -public class PortNotificationTest { - private final PortNotification model = new PortNotification(); - - /** - * Model tests for PortNotification - */ - @Test - public void testPortNotification() { - // TODO: test PortNotification - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'registeredUsers' - */ - @Test - public void registeredUsersTest() { - // TODO: test registeredUsers - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortOperationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortOperationTest.java deleted file mode 100644 index 827f0bf2..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortOperationTest.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.time.OffsetDateTime; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortOperation - */ -public class PortOperationTest { - private final PortOperation model = new PortOperation(); - - /** - * Model tests for PortOperation - */ - @Test - public void testPortOperation() { - // TODO: test PortOperation - } - - /** - * Test the property 'operationalStatus' - */ - @Test - public void operationalStatusTest() { - // TODO: test operationalStatus - } - - /** - * Test the property 'connectionCount' - */ - @Test - public void connectionCountTest() { - // TODO: test connectionCount - } - - /** - * Test the property 'opStatusChangedAt' - */ - @Test - public void opStatusChangedAtTest() { - // TODO: test opStatusChangedAt - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortOrderPurchaseOrderTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortOrderPurchaseOrderTest.java deleted file mode 100644 index b8d461bf..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortOrderPurchaseOrderTest.java +++ /dev/null @@ -1,88 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortOrderPurchaseOrder - */ -public class PortOrderPurchaseOrderTest { - private final PortOrderPurchaseOrder model = new PortOrderPurchaseOrder(); - - /** - * Model tests for PortOrderPurchaseOrder - */ - @Test - public void testPortOrderPurchaseOrder() { - // TODO: test PortOrderPurchaseOrder - } - - /** - * Test the property 'number' - */ - @Test - public void numberTest() { - // TODO: test number - } - - /** - * Test the property 'amount' - */ - @Test - public void amountTest() { - // TODO: test amount - } - - /** - * Test the property 'startDate' - */ - @Test - public void startDateTest() { - // TODO: test startDate - } - - /** - * Test the property 'endDate' - */ - @Test - public void endDateTest() { - // TODO: test endDate - } - - /** - * Test the property 'attachmentId' - */ - @Test - public void attachmentIdTest() { - // TODO: test attachmentId - } - - /** - * Test the property 'selectionType' - */ - @Test - public void selectionTypeTest() { - // TODO: test selectionType - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortOrderSignatureDelegateTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortOrderSignatureDelegateTest.java deleted file mode 100644 index d581b00a..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortOrderSignatureDelegateTest.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortOrderSignatureDelegate - */ -public class PortOrderSignatureDelegateTest { - private final PortOrderSignatureDelegate model = new PortOrderSignatureDelegate(); - - /** - * Model tests for PortOrderSignatureDelegate - */ - @Test - public void testPortOrderSignatureDelegate() { - // TODO: test PortOrderSignatureDelegate - } - - /** - * Test the property 'firstName' - */ - @Test - public void firstNameTest() { - // TODO: test firstName - } - - /** - * Test the property 'lastName' - */ - @Test - public void lastNameTest() { - // TODO: test lastName - } - - /** - * Test the property 'email' - */ - @Test - public void emailTest() { - // TODO: test email - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortOrderSignatureTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortOrderSignatureTest.java deleted file mode 100644 index 1c63bcae..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortOrderSignatureTest.java +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.PortOrderSignatureDelegate; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortOrderSignature - */ -public class PortOrderSignatureTest { - private final PortOrderSignature model = new PortOrderSignature(); - - /** - * Model tests for PortOrderSignature - */ - @Test - public void testPortOrderSignature() { - // TODO: test PortOrderSignature - } - - /** - * Test the property 'signatory' - */ - @Test - public void signatoryTest() { - // TODO: test signatory - } - - /** - * Test the property 'delegate' - */ - @Test - public void delegateTest() { - // TODO: test delegate - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortOrderTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortOrderTest.java deleted file mode 100644 index bb06d172..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortOrderTest.java +++ /dev/null @@ -1,82 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.PortOrderPurchaseOrder; -import com.equinix.openapi.fabric.v4.model.PortOrderSignature; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortOrder - */ -public class PortOrderTest { - private final PortOrder model = new PortOrder(); - - /** - * Model tests for PortOrder - */ - @Test - public void testPortOrder() { - // TODO: test PortOrder - } - - /** - * Test the property 'purchaseOrder' - */ - @Test - public void purchaseOrderTest() { - // TODO: test purchaseOrder - } - - /** - * Test the property 'orderId' - */ - @Test - public void orderIdTest() { - // TODO: test orderId - } - - /** - * Test the property 'orderNumber' - */ - @Test - public void orderNumberTest() { - // TODO: test orderNumber - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'signature' - */ - @Test - public void signatureTest() { - // TODO: test signature - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortPriorityTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortPriorityTest.java deleted file mode 100644 index b01c74b8..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortPriorityTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortPriority - */ -public class PortPriorityTest { - /** - * Model tests for PortPriority - */ - @Test - public void testPortPriority() { - // TODO: test PortPriority - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortRedundancyTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortRedundancyTest.java deleted file mode 100644 index 01131e7e..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortRedundancyTest.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.PortPriority; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortRedundancy - */ -public class PortRedundancyTest { - private final PortRedundancy model = new PortRedundancy(); - - /** - * Model tests for PortRedundancy - */ - @Test - public void testPortRedundancy() { - // TODO: test PortRedundancy - } - - /** - * Test the property 'enabled' - */ - @Test - public void enabledTest() { - // TODO: test enabled - } - - /** - * Test the property 'group' - */ - @Test - public void groupTest() { - // TODO: test group - } - - /** - * Test the property 'priority' - */ - @Test - public void priorityTest() { - // TODO: test priority - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortSearchFieldNameTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortSearchFieldNameTest.java deleted file mode 100644 index 050da998..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortSearchFieldNameTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortSearchFieldName - */ -public class PortSearchFieldNameTest { - /** - * Model tests for PortSearchFieldName - */ - @Test - public void testPortSearchFieldName() { - // TODO: test PortSearchFieldName - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortSettingsTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortSettingsTest.java deleted file mode 100644 index 3204cc41..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortSettingsTest.java +++ /dev/null @@ -1,111 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortSettings - */ -public class PortSettingsTest { - private final PortSettings model = new PortSettings(); - - /** - * Model tests for PortSettings - */ - @Test - public void testPortSettings() { - // TODO: test PortSettings - } - - /** - * Test the property 'product' - */ - @Test - public void productTest() { - // TODO: test product - } - - /** - * Test the property 'buyout' - */ - @Test - public void buyoutTest() { - // TODO: test buyout - } - - /** - * Test the property 'viewPortPermission' - */ - @Test - public void viewPortPermissionTest() { - // TODO: test viewPortPermission - } - - /** - * Test the property 'placeVcOrderPermission' - */ - @Test - public void placeVcOrderPermissionTest() { - // TODO: test placeVcOrderPermission - } - - /** - * Test the property 'layer3Enabled' - */ - @Test - public void layer3EnabledTest() { - // TODO: test layer3Enabled - } - - /** - * Test the property 'productCode' - */ - @Test - public void productCodeTest() { - // TODO: test productCode - } - - /** - * Test the property 'sharedPortType' - */ - @Test - public void sharedPortTypeTest() { - // TODO: test sharedPortType - } - - /** - * Test the property 'sharedPortProduct' - */ - @Test - public void sharedPortProductTest() { - // TODO: test sharedPortProduct - } - - /** - * Test the property 'packageType' - */ - @Test - public void packageTypeTest() { - // TODO: test packageType - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortSortByTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortSortByTest.java deleted file mode 100644 index c79a8787..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortSortByTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortSortBy - */ -public class PortSortByTest { - /** - * Model tests for PortSortBy - */ - @Test - public void testPortSortBy() { - // TODO: test PortSortBy - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortSortCriteriaTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortSortCriteriaTest.java deleted file mode 100644 index e9d32106..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortSortCriteriaTest.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.PortSortBy; -import com.equinix.openapi.fabric.v4.model.PortSortDirection; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortSortCriteria - */ -public class PortSortCriteriaTest { - private final PortSortCriteria model = new PortSortCriteria(); - - /** - * Model tests for PortSortCriteria - */ - @Test - public void testPortSortCriteria() { - // TODO: test PortSortCriteria - } - - /** - * Test the property 'direction' - */ - @Test - public void directionTest() { - // TODO: test direction - } - - /** - * Test the property 'property' - */ - @Test - public void propertyTest() { - // TODO: test property - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortSortDirectionTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortSortDirectionTest.java deleted file mode 100644 index 6ddab463..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortSortDirectionTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortSortDirection - */ -public class PortSortDirectionTest { - /** - * Model tests for PortSortDirection - */ - @Test - public void testPortSortDirection() { - // TODO: test PortSortDirection - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortStateTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortStateTest.java deleted file mode 100644 index 32101040..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortStateTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortState - */ -public class PortStateTest { - /** - * Model tests for PortState - */ - @Test - public void testPortState() { - // TODO: test PortState - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortTest.java deleted file mode 100644 index 203b6d46..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortTest.java +++ /dev/null @@ -1,382 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Changelog; -import com.equinix.openapi.fabric.v4.model.PhysicalPort; -import com.equinix.openapi.fabric.v4.model.PortAdditionalInfo; -import com.equinix.openapi.fabric.v4.model.PortDemarcationPoint; -import com.equinix.openapi.fabric.v4.model.PortDevice; -import com.equinix.openapi.fabric.v4.model.PortEncapsulation; -import com.equinix.openapi.fabric.v4.model.PortInterface; -import com.equinix.openapi.fabric.v4.model.PortLag; -import com.equinix.openapi.fabric.v4.model.PortLoa; -import com.equinix.openapi.fabric.v4.model.PortNotification; -import com.equinix.openapi.fabric.v4.model.PortOperation; -import com.equinix.openapi.fabric.v4.model.PortOrder; -import com.equinix.openapi.fabric.v4.model.PortRedundancy; -import com.equinix.openapi.fabric.v4.model.PortSettings; -import com.equinix.openapi.fabric.v4.model.PortState; -import com.equinix.openapi.fabric.v4.model.PortType; -import com.equinix.openapi.fabric.v4.model.Project; -import com.equinix.openapi.fabric.v4.model.SimplifiedAccount; -import com.equinix.openapi.fabric.v4.model.SimplifiedLocation; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.ArrayList; -import java.util.List; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Port - */ -public class PortTest { - private final Port model = new Port(); - - /** - * Model tests for Port - */ - @Test - public void testPort() { - // TODO: test Port - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'id' - */ - @Test - public void idTest() { - // TODO: test id - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'description' - */ - @Test - public void descriptionTest() { - // TODO: test description - } - - /** - * Test the property 'physicalPortsSpeed' - */ - @Test - public void physicalPortsSpeedTest() { - // TODO: test physicalPortsSpeed - } - - /** - * Test the property 'connectionsCount' - */ - @Test - public void connectionsCountTest() { - // TODO: test connectionsCount - } - - /** - * Test the property 'physicalPortsType' - */ - @Test - public void physicalPortsTypeTest() { - // TODO: test physicalPortsType - } - - /** - * Test the property 'physicalPortsCount' - */ - @Test - public void physicalPortsCountTest() { - // TODO: test physicalPortsCount - } - - /** - * Test the property 'connectivitySourceType' - */ - @Test - public void connectivitySourceTypeTest() { - // TODO: test connectivitySourceType - } - - /** - * Test the property 'bmmrType' - */ - @Test - public void bmmrTypeTest() { - // TODO: test bmmrType - } - - /** - * Test the property 'project' - */ - @Test - public void projectTest() { - // TODO: test project - } - - /** - * Test the property 'state' - */ - @Test - public void stateTest() { - // TODO: test state - } - - /** - * Test the property 'order' - */ - @Test - public void orderTest() { - // TODO: test order - } - - /** - * Test the property 'cvpId' - */ - @Test - public void cvpIdTest() { - // TODO: test cvpId - } - - /** - * Test the property 'operation' - */ - @Test - public void operationTest() { - // TODO: test operation - } - - /** - * Test the property 'account' - */ - @Test - public void accountTest() { - // TODO: test account - } - - /** - * Test the property 'changelog' - */ - @Test - public void changelogTest() { - // TODO: test changelog - } - - /** - * Test the property 'serviceType' - */ - @Test - public void serviceTypeTest() { - // TODO: test serviceType - } - - /** - * Test the property 'bandwidth' - */ - @Test - public void bandwidthTest() { - // TODO: test bandwidth - } - - /** - * Test the property 'availableBandwidth' - */ - @Test - public void availableBandwidthTest() { - // TODO: test availableBandwidth - } - - /** - * Test the property 'usedBandwidth' - */ - @Test - public void usedBandwidthTest() { - // TODO: test usedBandwidth - } - - /** - * Test the property 'location' - */ - @Test - public void locationTest() { - // TODO: test location - } - - /** - * Test the property 'device' - */ - @Test - public void deviceTest() { - // TODO: test device - } - - /** - * Test the property '_interface' - */ - @Test - public void _interfaceTest() { - // TODO: test _interface - } - - /** - * Test the property 'demarcationPointIbx' - */ - @Test - public void demarcationPointIbxTest() { - // TODO: test demarcationPointIbx - } - - /** - * Test the property 'tetherIbx' - */ - @Test - public void tetherIbxTest() { - // TODO: test tetherIbx - } - - /** - * Test the property 'demarcationPoint' - */ - @Test - public void demarcationPointTest() { - // TODO: test demarcationPoint - } - - /** - * Test the property 'redundancy' - */ - @Test - public void redundancyTest() { - // TODO: test redundancy - } - - /** - * Test the property 'encapsulation' - */ - @Test - public void encapsulationTest() { - // TODO: test encapsulation - } - - /** - * Test the property 'lagEnabled' - */ - @Test - public void lagEnabledTest() { - // TODO: test lagEnabled - } - - /** - * Test the property 'lag' - */ - @Test - public void lagTest() { - // TODO: test lag - } - - /** - * Test the property 'asn' - */ - @Test - public void asnTest() { - // TODO: test asn - } - - /** - * Test the property 'settings' - */ - @Test - public void settingsTest() { - // TODO: test settings - } - - /** - * Test the property 'physicalPortQuantity' - */ - @Test - public void physicalPortQuantityTest() { - // TODO: test physicalPortQuantity - } - - /** - * Test the property 'notifications' - */ - @Test - public void notificationsTest() { - // TODO: test notifications - } - - /** - * Test the property 'additionalInfo' - */ - @Test - public void additionalInfoTest() { - // TODO: test additionalInfo - } - - /** - * Test the property 'physicalPorts' - */ - @Test - public void physicalPortsTest() { - // TODO: test physicalPorts - } - - /** - * Test the property 'loas' - */ - @Test - public void loasTest() { - // TODO: test loas - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortTetherTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortTetherTest.java deleted file mode 100644 index 27c90c53..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortTetherTest.java +++ /dev/null @@ -1,95 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortTether - */ -public class PortTetherTest { - private final PortTether model = new PortTether(); - - /** - * Model tests for PortTether - */ - @Test - public void testPortTether() { - // TODO: test PortTether - } - - /** - * Test the property 'crossConnectId' - */ - @Test - public void crossConnectIdTest() { - // TODO: test crossConnectId - } - - /** - * Test the property 'cabinetNumber' - */ - @Test - public void cabinetNumberTest() { - // TODO: test cabinetNumber - } - - /** - * Test the property 'systemName' - */ - @Test - public void systemNameTest() { - // TODO: test systemName - } - - /** - * Test the property 'patchPanel' - */ - @Test - public void patchPanelTest() { - // TODO: test patchPanel - } - - /** - * Test the property 'patchPanelPortA' - */ - @Test - public void patchPanelPortATest() { - // TODO: test patchPanelPortA - } - - /** - * Test the property 'patchPanelPortB' - */ - @Test - public void patchPanelPortBTest() { - // TODO: test patchPanelPortB - } - - /** - * Test the property 'ibx' - */ - @Test - public void ibxTest() { - // TODO: test ibx - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortTypeTest.java deleted file mode 100644 index 6050d789..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortTypeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortType - */ -public class PortTypeTest { - /** - * Model tests for PortType - */ - @Test - public void testPortType() { - // TODO: test PortType - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortV4SearchRequestTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortV4SearchRequestTest.java deleted file mode 100644 index c1dd33e6..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PortV4SearchRequestTest.java +++ /dev/null @@ -1,68 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.PaginationRequest; -import com.equinix.openapi.fabric.v4.model.PortExpression; -import com.equinix.openapi.fabric.v4.model.PortSortCriteria; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PortV4SearchRequest - */ -public class PortV4SearchRequestTest { - private final PortV4SearchRequest model = new PortV4SearchRequest(); - - /** - * Model tests for PortV4SearchRequest - */ - @Test - public void testPortV4SearchRequest() { - // TODO: test PortV4SearchRequest - } - - /** - * Test the property 'filter' - */ - @Test - public void filterTest() { - // TODO: test filter - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'sort' - */ - @Test - public void sortTest() { - // TODO: test sort - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PrecisionTimeChangeOperationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PrecisionTimeChangeOperationTest.java deleted file mode 100644 index e7bcc833..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PrecisionTimeChangeOperationTest.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PrecisionTimeChangeOperation - */ -public class PrecisionTimeChangeOperationTest { - private final PrecisionTimeChangeOperation model = new PrecisionTimeChangeOperation(); - - /** - * Model tests for PrecisionTimeChangeOperation - */ - @Test - public void testPrecisionTimeChangeOperation() { - // TODO: test PrecisionTimeChangeOperation - } - - /** - * Test the property 'op' - */ - @Test - public void opTest() { - // TODO: test op - } - - /** - * Test the property 'path' - */ - @Test - public void pathTest() { - // TODO: test path - } - - /** - * Test the property 'value' - */ - @Test - public void valueTest() { - // TODO: test value - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PrecisionTimePackageRequestTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PrecisionTimePackageRequestTest.java deleted file mode 100644 index 58514ba8..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PrecisionTimePackageRequestTest.java +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PrecisionTimePackageRequest - */ -public class PrecisionTimePackageRequestTest { - private final PrecisionTimePackageRequest model = new PrecisionTimePackageRequest(); - - /** - * Model tests for PrecisionTimePackageRequest - */ - @Test - public void testPrecisionTimePackageRequest() { - // TODO: test PrecisionTimePackageRequest - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'code' - */ - @Test - public void codeTest() { - // TODO: test code - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PrecisionTimePackageResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PrecisionTimePackageResponseTest.java deleted file mode 100644 index a44e65f8..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PrecisionTimePackageResponseTest.java +++ /dev/null @@ -1,137 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Changelog; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PrecisionTimePackageResponse - */ -public class PrecisionTimePackageResponseTest { - private final PrecisionTimePackageResponse model = new PrecisionTimePackageResponse(); - - /** - * Model tests for PrecisionTimePackageResponse - */ - @Test - public void testPrecisionTimePackageResponse() { - // TODO: test PrecisionTimePackageResponse - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'code' - */ - @Test - public void codeTest() { - // TODO: test code - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'bandwidth' - */ - @Test - public void bandwidthTest() { - // TODO: test bandwidth - } - - /** - * Test the property 'clientsPerSecondMax' - */ - @Test - public void clientsPerSecondMaxTest() { - // TODO: test clientsPerSecondMax - } - - /** - * Test the property 'redundancySupported' - */ - @Test - public void redundancySupportedTest() { - // TODO: test redundancySupported - } - - /** - * Test the property 'multiSubnetSupported' - */ - @Test - public void multiSubnetSupportedTest() { - // TODO: test multiSubnetSupported - } - - /** - * Test the property 'accuracyUnit' - */ - @Test - public void accuracyUnitTest() { - // TODO: test accuracyUnit - } - - /** - * Test the property 'accuracySla' - */ - @Test - public void accuracySlaTest() { - // TODO: test accuracySla - } - - /** - * Test the property 'accuracyAvgMin' - */ - @Test - public void accuracyAvgMinTest() { - // TODO: test accuracyAvgMin - } - - /** - * Test the property 'accuracyAvgMax' - */ - @Test - public void accuracyAvgMaxTest() { - // TODO: test accuracyAvgMax - } - - /** - * Test the property 'changelog' - */ - @Test - public void changelogTest() { - // TODO: test changelog - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PrecisionTimeServiceConnectionsResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PrecisionTimeServiceConnectionsResponseTest.java deleted file mode 100644 index f2cf4e05..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PrecisionTimeServiceConnectionsResponseTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ConnectionLink; -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PrecisionTimeServiceConnectionsResponse - */ -public class PrecisionTimeServiceConnectionsResponseTest { - private final PrecisionTimeServiceConnectionsResponse model = new PrecisionTimeServiceConnectionsResponse(); - - /** - * Model tests for PrecisionTimeServiceConnectionsResponse - */ - @Test - public void testPrecisionTimeServiceConnectionsResponse() { - // TODO: test PrecisionTimeServiceConnectionsResponse - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PrecisionTimeServiceCreateResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PrecisionTimeServiceCreateResponseTest.java deleted file mode 100644 index cdc5a3ab..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PrecisionTimeServiceCreateResponseTest.java +++ /dev/null @@ -1,145 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Account; -import com.equinix.openapi.fabric.v4.model.AdvanceConfiguration; -import com.equinix.openapi.fabric.v4.model.FabricConnectionUuid; -import com.equinix.openapi.fabric.v4.model.Ipv4; -import com.equinix.openapi.fabric.v4.model.PrecisionTimePackageResponse; -import com.equinix.openapi.fabric.v4.model.Project; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.LinkedHashSet; -import java.util.Set; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PrecisionTimeServiceCreateResponse - */ -public class PrecisionTimeServiceCreateResponseTest { - private final PrecisionTimeServiceCreateResponse model = new PrecisionTimeServiceCreateResponse(); - - /** - * Model tests for PrecisionTimeServiceCreateResponse - */ - @Test - public void testPrecisionTimeServiceCreateResponse() { - // TODO: test PrecisionTimeServiceCreateResponse - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'description' - */ - @Test - public void descriptionTest() { - // TODO: test description - } - - /** - * Test the property 'state' - */ - @Test - public void stateTest() { - // TODO: test state - } - - /** - * Test the property '_package' - */ - @Test - public void _packageTest() { - // TODO: test _package - } - - /** - * Test the property 'connections' - */ - @Test - public void connectionsTest() { - // TODO: test connections - } - - /** - * Test the property 'ipv4' - */ - @Test - public void ipv4Test() { - // TODO: test ipv4 - } - - /** - * Test the property 'account' - */ - @Test - public void accountTest() { - // TODO: test account - } - - /** - * Test the property 'advanceConfiguration' - */ - @Test - public void advanceConfigurationTest() { - // TODO: test advanceConfiguration - } - - /** - * Test the property 'project' - */ - @Test - public void projectTest() { - // TODO: test project - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PrecisionTimeServicePackagesResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PrecisionTimeServicePackagesResponseTest.java deleted file mode 100644 index ceb060a9..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PrecisionTimeServicePackagesResponseTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.equinix.openapi.fabric.v4.model.PrecisionTimePackageResponse; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PrecisionTimeServicePackagesResponse - */ -public class PrecisionTimeServicePackagesResponseTest { - private final PrecisionTimeServicePackagesResponse model = new PrecisionTimeServicePackagesResponse(); - - /** - * Model tests for PrecisionTimeServicePackagesResponse - */ - @Test - public void testPrecisionTimeServicePackagesResponse() { - // TODO: test PrecisionTimeServicePackagesResponse - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PrecisionTimeServiceRequestTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PrecisionTimeServiceRequestTest.java deleted file mode 100644 index ed7de2d7..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PrecisionTimeServiceRequestTest.java +++ /dev/null @@ -1,110 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.AdvanceConfiguration; -import com.equinix.openapi.fabric.v4.model.FabricConnectionUuid; -import com.equinix.openapi.fabric.v4.model.Ipv4; -import com.equinix.openapi.fabric.v4.model.PrecisionTimePackageRequest; -import com.equinix.openapi.fabric.v4.model.Project; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PrecisionTimeServiceRequest - */ -public class PrecisionTimeServiceRequestTest { - private final PrecisionTimeServiceRequest model = new PrecisionTimeServiceRequest(); - - /** - * Model tests for PrecisionTimeServiceRequest - */ - @Test - public void testPrecisionTimeServiceRequest() { - // TODO: test PrecisionTimeServiceRequest - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'description' - */ - @Test - public void descriptionTest() { - // TODO: test description - } - - /** - * Test the property '_package' - */ - @Test - public void _packageTest() { - // TODO: test _package - } - - /** - * Test the property 'connections' - */ - @Test - public void connectionsTest() { - // TODO: test connections - } - - /** - * Test the property 'ipv4' - */ - @Test - public void ipv4Test() { - // TODO: test ipv4 - } - - /** - * Test the property 'advanceConfiguration' - */ - @Test - public void advanceConfigurationTest() { - // TODO: test advanceConfiguration - } - - /** - * Test the property 'project' - */ - @Test - public void projectTest() { - // TODO: test project - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PresenceTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PresenceTest.java deleted file mode 100644 index 16543f1c..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PresenceTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Presence - */ -public class PresenceTest { - /** - * Model tests for Presence - */ - @Test - public void testPresence() { - // TODO: test Presence - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PriceCategoryTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PriceCategoryTest.java deleted file mode 100644 index 61b1276c..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PriceCategoryTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PriceCategory - */ -public class PriceCategoryTest { - /** - * Model tests for PriceCategory - */ - @Test - public void testPriceCategory() { - // TODO: test PriceCategory - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PriceChargeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PriceChargeTest.java deleted file mode 100644 index ee580862..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PriceChargeTest.java +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PriceCharge - */ -public class PriceChargeTest { - private final PriceCharge model = new PriceCharge(); - - /** - * Model tests for PriceCharge - */ - @Test - public void testPriceCharge() { - // TODO: test PriceCharge - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'price' - */ - @Test - public void priceTest() { - // TODO: test price - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PriceErrorAdditionalInfoTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PriceErrorAdditionalInfoTest.java deleted file mode 100644 index 2000a6e4..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PriceErrorAdditionalInfoTest.java +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PriceErrorAdditionalInfo - */ -public class PriceErrorAdditionalInfoTest { - private final PriceErrorAdditionalInfo model = new PriceErrorAdditionalInfo(); - - /** - * Model tests for PriceErrorAdditionalInfo - */ - @Test - public void testPriceErrorAdditionalInfo() { - // TODO: test PriceErrorAdditionalInfo - } - - /** - * Test the property 'property' - */ - @Test - public void propertyTest() { - // TODO: test property - } - - /** - * Test the property 'reason' - */ - @Test - public void reasonTest() { - // TODO: test reason - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PriceErrorTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PriceErrorTest.java deleted file mode 100644 index 17eccb38..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PriceErrorTest.java +++ /dev/null @@ -1,90 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.PriceErrorAdditionalInfo; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PriceError - */ -public class PriceErrorTest { - private final PriceError model = new PriceError(); - - /** - * Model tests for PriceError - */ - @Test - public void testPriceError() { - // TODO: test PriceError - } - - /** - * Test the property 'errorCode' - */ - @Test - public void errorCodeTest() { - // TODO: test errorCode - } - - /** - * Test the property 'errorMessage' - */ - @Test - public void errorMessageTest() { - // TODO: test errorMessage - } - - /** - * Test the property 'correlationId' - */ - @Test - public void correlationIdTest() { - // TODO: test correlationId - } - - /** - * Test the property 'details' - */ - @Test - public void detailsTest() { - // TODO: test details - } - - /** - * Test the property 'help' - */ - @Test - public void helpTest() { - // TODO: test help - } - - /** - * Test the property 'additionalInfo' - */ - @Test - public void additionalInfoTest() { - // TODO: test additionalInfo - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PriceLocationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PriceLocationTest.java deleted file mode 100644 index b8174276..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PriceLocationTest.java +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PriceLocation - */ -public class PriceLocationTest { - private final PriceLocation model = new PriceLocation(); - - /** - * Model tests for PriceLocation - */ - @Test - public void testPriceLocation() { - // TODO: test PriceLocation - } - - /** - * Test the property 'metroCode' - */ - @Test - public void metroCodeTest() { - // TODO: test metroCode - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PriceSearchResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PriceSearchResponseTest.java deleted file mode 100644 index 3ed85864..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PriceSearchResponseTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.equinix.openapi.fabric.v4.model.Price; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PriceSearchResponse - */ -public class PriceSearchResponseTest { - private final PriceSearchResponse model = new PriceSearchResponse(); - - /** - * Model tests for PriceSearchResponse - */ - @Test - public void testPriceSearchResponse() { - // TODO: test PriceSearchResponse - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PriceTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PriceTest.java deleted file mode 100644 index 751b2839..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PriceTest.java +++ /dev/null @@ -1,161 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.FabricCloudRouterPrice; -import com.equinix.openapi.fabric.v4.model.IpBlockPrice; -import com.equinix.openapi.fabric.v4.model.PriceCategory; -import com.equinix.openapi.fabric.v4.model.PriceCharge; -import com.equinix.openapi.fabric.v4.model.ProductType; -import com.equinix.openapi.fabric.v4.model.SimplifiedAccount; -import com.equinix.openapi.fabric.v4.model.VirtualConnectionPrice; -import com.equinix.openapi.fabric.v4.model.VirtualPortPrice; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Price - */ -public class PriceTest { - private final Price model = new Price(); - - /** - * Model tests for Price - */ - @Test - public void testPrice() { - // TODO: test Price - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'code' - */ - @Test - public void codeTest() { - // TODO: test code - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'description' - */ - @Test - public void descriptionTest() { - // TODO: test description - } - - /** - * Test the property 'account' - */ - @Test - public void accountTest() { - // TODO: test account - } - - /** - * Test the property 'charges' - */ - @Test - public void chargesTest() { - // TODO: test charges - } - - /** - * Test the property 'currency' - */ - @Test - public void currencyTest() { - // TODO: test currency - } - - /** - * Test the property 'termLength' - */ - @Test - public void termLengthTest() { - // TODO: test termLength - } - - /** - * Test the property 'catgory' - */ - @Test - public void catgoryTest() { - // TODO: test catgory - } - - /** - * Test the property 'connection' - */ - @Test - public void connectionTest() { - // TODO: test connection - } - - /** - * Test the property 'ipBlock' - */ - @Test - public void ipBlockTest() { - // TODO: test ipBlock - } - - /** - * Test the property 'router' - */ - @Test - public void routerTest() { - // TODO: test router - } - - /** - * Test the property 'port' - */ - @Test - public void portTest() { - // TODO: test port - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ProcessStepTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ProcessStepTest.java deleted file mode 100644 index 686a7a54..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ProcessStepTest.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ProcessStep - */ -public class ProcessStepTest { - private final ProcessStep model = new ProcessStep(); - - /** - * Model tests for ProcessStep - */ - @Test - public void testProcessStep() { - // TODO: test ProcessStep - } - - /** - * Test the property 'title' - */ - @Test - public void titleTest() { - // TODO: test title - } - - /** - * Test the property 'subTitle' - */ - @Test - public void subTitleTest() { - // TODO: test subTitle - } - - /** - * Test the property 'description' - */ - @Test - public void descriptionTest() { - // TODO: test description - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ProductTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ProductTypeTest.java deleted file mode 100644 index 2d9f5d7e..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ProductTypeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ProductType - */ -public class ProductTypeTest { - /** - * Model tests for ProductType - */ - @Test - public void testProductType() { - // TODO: test ProductType - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ProjectTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ProjectTest.java deleted file mode 100644 index fe625af3..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ProjectTest.java +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Project - */ -public class ProjectTest { - private final Project model = new Project(); - - /** - * Model tests for Project - */ - @Test - public void testProject() { - // TODO: test Project - } - - /** - * Test the property 'projectId' - */ - @Test - public void projectIdTest() { - // TODO: test projectId - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ProviderStatusTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ProviderStatusTest.java deleted file mode 100644 index 4de3ed42..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ProviderStatusTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ProviderStatus - */ -public class ProviderStatusTest { - /** - * Model tests for ProviderStatus - */ - @Test - public void testProviderStatus() { - // TODO: test ProviderStatus - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PtpAdvanceConfigurationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PtpAdvanceConfigurationTest.java deleted file mode 100644 index 5fd7f461..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/PtpAdvanceConfigurationTest.java +++ /dev/null @@ -1,111 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for PtpAdvanceConfiguration - */ -public class PtpAdvanceConfigurationTest { - private final PtpAdvanceConfiguration model = new PtpAdvanceConfiguration(); - - /** - * Model tests for PtpAdvanceConfiguration - */ - @Test - public void testPtpAdvanceConfiguration() { - // TODO: test PtpAdvanceConfiguration - } - - /** - * Test the property 'timeScale' - */ - @Test - public void timeScaleTest() { - // TODO: test timeScale - } - - /** - * Test the property 'domain' - */ - @Test - public void domainTest() { - // TODO: test domain - } - - /** - * Test the property 'priority1' - */ - @Test - public void priority1Test() { - // TODO: test priority1 - } - - /** - * Test the property 'priority2' - */ - @Test - public void priority2Test() { - // TODO: test priority2 - } - - /** - * Test the property 'logAnnounceInterval' - */ - @Test - public void logAnnounceIntervalTest() { - // TODO: test logAnnounceInterval - } - - /** - * Test the property 'logSyncInterval' - */ - @Test - public void logSyncIntervalTest() { - // TODO: test logSyncInterval - } - - /** - * Test the property 'logDelayReqInterval' - */ - @Test - public void logDelayReqIntervalTest() { - // TODO: test logDelayReqInterval - } - - /** - * Test the property 'transportMode' - */ - @Test - public void transportModeTest() { - // TODO: test transportMode - } - - /** - * Test the property 'grantTime' - */ - @Test - public void grantTimeTest() { - // TODO: test grantTime - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/QueryDirectionTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/QueryDirectionTest.java deleted file mode 100644 index cb08c2e6..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/QueryDirectionTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for QueryDirection - */ -public class QueryDirectionTest { - /** - * Model tests for QueryDirection - */ - @Test - public void testQueryDirection() { - // TODO: test QueryDirection - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RemoveOperationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RemoveOperationTest.java deleted file mode 100644 index 3ae0beeb..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RemoveOperationTest.java +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.OpEnum; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RemoveOperation - */ -public class RemoveOperationTest { - private final RemoveOperation model = new RemoveOperation(); - - /** - * Model tests for RemoveOperation - */ - @Test - public void testRemoveOperation() { - // TODO: test RemoveOperation - } - - /** - * Test the property 'op' - */ - @Test - public void opTest() { - // TODO: test op - } - - /** - * Test the property 'path' - */ - @Test - public void pathTest() { - // TODO: test path - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ReplaceOperationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ReplaceOperationTest.java deleted file mode 100644 index 5885be01..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ReplaceOperationTest.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.OpEnum; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ReplaceOperation - */ -public class ReplaceOperationTest { - private final ReplaceOperation model = new ReplaceOperation(); - - /** - * Model tests for ReplaceOperation - */ - @Test - public void testReplaceOperation() { - // TODO: test ReplaceOperation - } - - /** - * Test the property 'op' - */ - @Test - public void opTest() { - // TODO: test op - } - - /** - * Test the property 'path' - */ - @Test - public void pathTest() { - // TODO: test path - } - - /** - * Test the property 'value' - */ - @Test - public void valueTest() { - // TODO: test value - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterChangeDataResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterChangeDataResponseTest.java deleted file mode 100644 index 0cde4004..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterChangeDataResponseTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.equinix.openapi.fabric.v4.model.RouteFilterChangeData; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteFilterChangeDataResponse - */ -public class RouteFilterChangeDataResponseTest { - private final RouteFilterChangeDataResponse model = new RouteFilterChangeDataResponse(); - - /** - * Model tests for RouteFilterChangeDataResponse - */ - @Test - public void testRouteFilterChangeDataResponse() { - // TODO: test RouteFilterChangeDataResponse - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterChangeDataTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterChangeDataTest.java deleted file mode 100644 index 8624b5cf..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterChangeDataTest.java +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.RouteFiltersChangeOperation; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.time.OffsetDateTime; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteFilterChangeData - */ -public class RouteFilterChangeDataTest { - private final RouteFilterChangeData model = new RouteFilterChangeData(); - - /** - * Model tests for RouteFilterChangeData - */ - @Test - public void testRouteFilterChangeData() { - // TODO: test RouteFilterChangeData - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterConnectionsDataTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterConnectionsDataTest.java deleted file mode 100644 index 673ec7d4..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterConnectionsDataTest.java +++ /dev/null @@ -1,74 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ConnectionType; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteFilterConnectionsData - */ -public class RouteFilterConnectionsDataTest { - private final RouteFilterConnectionsData model = new RouteFilterConnectionsData(); - - /** - * Model tests for RouteFilterConnectionsData - */ - @Test - public void testRouteFilterConnectionsData() { - // TODO: test RouteFilterConnectionsData - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRuleStateTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRuleStateTest.java deleted file mode 100644 index ebb3fc3b..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRuleStateTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteFilterRuleState - */ -public class RouteFilterRuleStateTest { - /** - * Model tests for RouteFilterRuleState - */ - @Test - public void testRouteFilterRuleState() { - // TODO: test RouteFilterRuleState - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesBaseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesBaseTest.java deleted file mode 100644 index edc19cee..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesBaseTest.java +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteFilterRulesBase - */ -public class RouteFilterRulesBaseTest { - private final RouteFilterRulesBase model = new RouteFilterRulesBase(); - - /** - * Model tests for RouteFilterRulesBase - */ - @Test - public void testRouteFilterRulesBase() { - // TODO: test RouteFilterRulesBase - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'description' - */ - @Test - public void descriptionTest() { - // TODO: test description - } - - /** - * Test the property 'prefix' - */ - @Test - public void prefixTest() { - // TODO: test prefix - } - - /** - * Test the property 'prefixMatch' - */ - @Test - public void prefixMatchTest() { - // TODO: test prefixMatch - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesChangeDataResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesChangeDataResponseTest.java deleted file mode 100644 index 47644f3b..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesChangeDataResponseTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.equinix.openapi.fabric.v4.model.RouteFilterRulesChangeData; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteFilterRulesChangeDataResponse - */ -public class RouteFilterRulesChangeDataResponseTest { - private final RouteFilterRulesChangeDataResponse model = new RouteFilterRulesChangeDataResponse(); - - /** - * Model tests for RouteFilterRulesChangeDataResponse - */ - @Test - public void testRouteFilterRulesChangeDataResponse() { - // TODO: test RouteFilterRulesChangeDataResponse - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesChangeDataTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesChangeDataTest.java deleted file mode 100644 index 6911e282..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesChangeDataTest.java +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.RouteFilterRulesChangeOperation; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.time.OffsetDateTime; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteFilterRulesChangeData - */ -public class RouteFilterRulesChangeDataTest { - private final RouteFilterRulesChangeData model = new RouteFilterRulesChangeData(); - - /** - * Model tests for RouteFilterRulesChangeData - */ - @Test - public void testRouteFilterRulesChangeData() { - // TODO: test RouteFilterRulesChangeData - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesChangeOperationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesChangeOperationTest.java deleted file mode 100644 index 33d13b3a..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesChangeOperationTest.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.RouteFilterRulesBase; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteFilterRulesChangeOperation - */ -public class RouteFilterRulesChangeOperationTest { - private final RouteFilterRulesChangeOperation model = new RouteFilterRulesChangeOperation(); - - /** - * Model tests for RouteFilterRulesChangeOperation - */ - @Test - public void testRouteFilterRulesChangeOperation() { - // TODO: test RouteFilterRulesChangeOperation - } - - /** - * Test the property 'op' - */ - @Test - public void opTest() { - // TODO: test op - } - - /** - * Test the property 'path' - */ - @Test - public void pathTest() { - // TODO: test path - } - - /** - * Test the property 'value' - */ - @Test - public void valueTest() { - // TODO: test value - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesChangeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesChangeTest.java deleted file mode 100644 index ba045f73..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesChangeTest.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteFilterRulesChange - */ -public class RouteFilterRulesChangeTest { - private final RouteFilterRulesChange model = new RouteFilterRulesChange(); - - /** - * Model tests for RouteFilterRulesChange - */ - @Test - public void testRouteFilterRulesChange() { - // TODO: test RouteFilterRulesChange - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesDataTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesDataTest.java deleted file mode 100644 index cfee9ba0..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesDataTest.java +++ /dev/null @@ -1,132 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Changelog; -import com.equinix.openapi.fabric.v4.model.RouteFilterRuleState; -import com.equinix.openapi.fabric.v4.model.RouteFilterRulesChange; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteFilterRulesData - */ -public class RouteFilterRulesDataTest { - private final RouteFilterRulesData model = new RouteFilterRulesData(); - - /** - * Model tests for RouteFilterRulesData - */ - @Test - public void testRouteFilterRulesData() { - // TODO: test RouteFilterRulesData - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'description' - */ - @Test - public void descriptionTest() { - // TODO: test description - } - - /** - * Test the property 'state' - */ - @Test - public void stateTest() { - // TODO: test state - } - - /** - * Test the property 'prefixMatch' - */ - @Test - public void prefixMatchTest() { - // TODO: test prefixMatch - } - - /** - * Test the property 'change' - */ - @Test - public void changeTest() { - // TODO: test change - } - - /** - * Test the property 'action' - */ - @Test - public void actionTest() { - // TODO: test action - } - - /** - * Test the property 'prefix' - */ - @Test - public void prefixTest() { - // TODO: test prefix - } - - /** - * Test the property 'changelog' - */ - @Test - public void changelogTest() { - // TODO: test changelog - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesPatchRequestItemTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesPatchRequestItemTest.java deleted file mode 100644 index 371a82d1..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesPatchRequestItemTest.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteFilterRulesPatchRequestItem - */ -public class RouteFilterRulesPatchRequestItemTest { - private final RouteFilterRulesPatchRequestItem model = new RouteFilterRulesPatchRequestItem(); - - /** - * Model tests for RouteFilterRulesPatchRequestItem - */ - @Test - public void testRouteFilterRulesPatchRequestItem() { - // TODO: test RouteFilterRulesPatchRequestItem - } - - /** - * Test the property 'op' - */ - @Test - public void opTest() { - // TODO: test op - } - - /** - * Test the property 'path' - */ - @Test - public void pathTest() { - // TODO: test path - } - - /** - * Test the property 'value' - */ - @Test - public void valueTest() { - // TODO: test value - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesPostRequestTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesPostRequestTest.java deleted file mode 100644 index 81db3bcd..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterRulesPostRequestTest.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.RouteFilterRulesBase; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteFilterRulesPostRequest - */ -public class RouteFilterRulesPostRequestTest { - private final RouteFilterRulesPostRequest model = new RouteFilterRulesPostRequest(); - - /** - * Model tests for RouteFilterRulesPostRequest - */ - @Test - public void testRouteFilterRulesPostRequest() { - // TODO: test RouteFilterRulesPostRequest - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterStateTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterStateTest.java deleted file mode 100644 index 37c60d47..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFilterStateTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteFilterState - */ -public class RouteFilterStateTest { - /** - * Model tests for RouteFilterState - */ - @Test - public void testRouteFilterState() { - // TODO: test RouteFilterState - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersBaseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersBaseTest.java deleted file mode 100644 index 7e695683..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersBaseTest.java +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Project; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteFiltersBase - */ -public class RouteFiltersBaseTest { - private final RouteFiltersBase model = new RouteFiltersBase(); - - /** - * Model tests for RouteFiltersBase - */ - @Test - public void testRouteFiltersBase() { - // TODO: test RouteFiltersBase - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'description' - */ - @Test - public void descriptionTest() { - // TODO: test description - } - - /** - * Test the property 'project' - */ - @Test - public void projectTest() { - // TODO: test project - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersChangeOperationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersChangeOperationTest.java deleted file mode 100644 index f1e13561..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersChangeOperationTest.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.RouteFiltersBase; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteFiltersChangeOperation - */ -public class RouteFiltersChangeOperationTest { - private final RouteFiltersChangeOperation model = new RouteFiltersChangeOperation(); - - /** - * Model tests for RouteFiltersChangeOperation - */ - @Test - public void testRouteFiltersChangeOperation() { - // TODO: test RouteFiltersChangeOperation - } - - /** - * Test the property 'op' - */ - @Test - public void opTest() { - // TODO: test op - } - - /** - * Test the property 'path' - */ - @Test - public void pathTest() { - // TODO: test path - } - - /** - * Test the property 'value' - */ - @Test - public void valueTest() { - // TODO: test value - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersChangeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersChangeTest.java deleted file mode 100644 index 72f905af..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersChangeTest.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteFiltersChange - */ -public class RouteFiltersChangeTest { - private final RouteFiltersChange model = new RouteFiltersChange(); - - /** - * Model tests for RouteFiltersChange - */ - @Test - public void testRouteFiltersChange() { - // TODO: test RouteFiltersChange - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersDataProjectTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersDataProjectTest.java deleted file mode 100644 index e76359f9..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersDataProjectTest.java +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteFiltersDataProject - */ -public class RouteFiltersDataProjectTest { - private final RouteFiltersDataProject model = new RouteFiltersDataProject(); - - /** - * Model tests for RouteFiltersDataProject - */ - @Test - public void testRouteFiltersDataProject() { - // TODO: test RouteFiltersDataProject - } - - /** - * Test the property 'projectId' - */ - @Test - public void projectIdTest() { - // TODO: test projectId - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersDataTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersDataTest.java deleted file mode 100644 index 95c9ba4c..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersDataTest.java +++ /dev/null @@ -1,141 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Changelog; -import com.equinix.openapi.fabric.v4.model.RouteFilterState; -import com.equinix.openapi.fabric.v4.model.RouteFiltersChange; -import com.equinix.openapi.fabric.v4.model.RouteFiltersDataProject; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteFiltersData - */ -public class RouteFiltersDataTest { - private final RouteFiltersData model = new RouteFiltersData(); - - /** - * Model tests for RouteFiltersData - */ - @Test - public void testRouteFiltersData() { - // TODO: test RouteFiltersData - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'description' - */ - @Test - public void descriptionTest() { - // TODO: test description - } - - /** - * Test the property 'state' - */ - @Test - public void stateTest() { - // TODO: test state - } - - /** - * Test the property 'change' - */ - @Test - public void changeTest() { - // TODO: test change - } - - /** - * Test the property 'notMatchedRuleAction' - */ - @Test - public void notMatchedRuleActionTest() { - // TODO: test notMatchedRuleAction - } - - /** - * Test the property 'connectionsCount' - */ - @Test - public void connectionsCountTest() { - // TODO: test connectionsCount - } - - /** - * Test the property 'rulesCount' - */ - @Test - public void rulesCountTest() { - // TODO: test rulesCount - } - - /** - * Test the property 'project' - */ - @Test - public void projectTest() { - // TODO: test project - } - - /** - * Test the property 'changelog' - */ - @Test - public void changelogTest() { - // TODO: test changelog - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersPatchRequestItemTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersPatchRequestItemTest.java deleted file mode 100644 index 864a9368..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersPatchRequestItemTest.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteFiltersPatchRequestItem - */ -public class RouteFiltersPatchRequestItemTest { - private final RouteFiltersPatchRequestItem model = new RouteFiltersPatchRequestItem(); - - /** - * Model tests for RouteFiltersPatchRequestItem - */ - @Test - public void testRouteFiltersPatchRequestItem() { - // TODO: test RouteFiltersPatchRequestItem - } - - /** - * Test the property 'op' - */ - @Test - public void opTest() { - // TODO: test op - } - - /** - * Test the property 'path' - */ - @Test - public void pathTest() { - // TODO: test path - } - - /** - * Test the property 'value' - */ - @Test - public void valueTest() { - // TODO: test value - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersSearchBaseFilterTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersSearchBaseFilterTest.java deleted file mode 100644 index 973287ac..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersSearchBaseFilterTest.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.RouteFiltersSearchFilterItem; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteFiltersSearchBaseFilter - */ -public class RouteFiltersSearchBaseFilterTest { - private final RouteFiltersSearchBaseFilter model = new RouteFiltersSearchBaseFilter(); - - /** - * Model tests for RouteFiltersSearchBaseFilter - */ - @Test - public void testRouteFiltersSearchBaseFilter() { - // TODO: test RouteFiltersSearchBaseFilter - } - - /** - * Test the property 'and' - */ - @Test - public void andTest() { - // TODO: test and - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersSearchBaseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersSearchBaseTest.java deleted file mode 100644 index ee559ee8..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersSearchBaseTest.java +++ /dev/null @@ -1,68 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.equinix.openapi.fabric.v4.model.RouteFiltersSearchBaseFilter; -import com.equinix.openapi.fabric.v4.model.SortItem; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteFiltersSearchBase - */ -public class RouteFiltersSearchBaseTest { - private final RouteFiltersSearchBase model = new RouteFiltersSearchBase(); - - /** - * Model tests for RouteFiltersSearchBase - */ - @Test - public void testRouteFiltersSearchBase() { - // TODO: test RouteFiltersSearchBase - } - - /** - * Test the property 'filter' - */ - @Test - public void filterTest() { - // TODO: test filter - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'sort' - */ - @Test - public void sortTest() { - // TODO: test sort - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersSearchFilterItemTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersSearchFilterItemTest.java deleted file mode 100644 index a3cf84f0..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersSearchFilterItemTest.java +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteFiltersSearchFilterItem - */ -public class RouteFiltersSearchFilterItemTest { - private final RouteFiltersSearchFilterItem model = new RouteFiltersSearchFilterItem(); - - /** - * Model tests for RouteFiltersSearchFilterItem - */ - @Test - public void testRouteFiltersSearchFilterItem() { - // TODO: test RouteFiltersSearchFilterItem - } - - /** - * Test the property 'property' - */ - @Test - public void propertyTest() { - // TODO: test property - } - - /** - * Test the property 'operator' - */ - @Test - public void operatorTest() { - // TODO: test operator - } - - /** - * Test the property 'values' - */ - @Test - public void valuesTest() { - // TODO: test values - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersSearchResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersSearchResponseTest.java deleted file mode 100644 index 8d36544f..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteFiltersSearchResponseTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.equinix.openapi.fabric.v4.model.RouteFiltersData; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteFiltersSearchResponse - */ -public class RouteFiltersSearchResponseTest { - private final RouteFiltersSearchResponse model = new RouteFiltersSearchResponse(); - - /** - * Model tests for RouteFiltersSearchResponse - */ - @Test - public void testRouteFiltersSearchResponse() { - // TODO: test RouteFiltersSearchResponse - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryConnectionTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryConnectionTest.java deleted file mode 100644 index 8ec569e0..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryConnectionTest.java +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteTableEntryConnection - */ -public class RouteTableEntryConnectionTest { - private final RouteTableEntryConnection model = new RouteTableEntryConnection(); - - /** - * Model tests for RouteTableEntryConnection - */ - @Test - public void testRouteTableEntryConnection() { - // TODO: test RouteTableEntryConnection - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryFilterTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryFilterTest.java deleted file mode 100644 index 9d590e8e..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryFilterTest.java +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.RouteTableEntryOrFilter; -import com.equinix.openapi.fabric.v4.model.RouteTableEntrySimpleExpression; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteTableEntryFilter - */ -public class RouteTableEntryFilterTest { - private final RouteTableEntryFilter model = new RouteTableEntryFilter(); - - /** - * Model tests for RouteTableEntryFilter - */ - @Test - public void testRouteTableEntryFilter() { - // TODO: test RouteTableEntryFilter - } - - /** - * Test the property 'property' - */ - @Test - public void propertyTest() { - // TODO: test property - } - - /** - * Test the property 'operator' - */ - @Test - public void operatorTest() { - // TODO: test operator - } - - /** - * Test the property 'values' - */ - @Test - public void valuesTest() { - // TODO: test values - } - - /** - * Test the property 'or' - */ - @Test - public void orTest() { - // TODO: test or - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryFiltersTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryFiltersTest.java deleted file mode 100644 index 0c486ff4..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryFiltersTest.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.RouteTableEntryFilter; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteTableEntryFilters - */ -public class RouteTableEntryFiltersTest { - private final RouteTableEntryFilters model = new RouteTableEntryFilters(); - - /** - * Model tests for RouteTableEntryFilters - */ - @Test - public void testRouteTableEntryFilters() { - // TODO: test RouteTableEntryFilters - } - - /** - * Test the property 'and' - */ - @Test - public void andTest() { - // TODO: test and - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryOrFilterTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryOrFilterTest.java deleted file mode 100644 index b6495ff0..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryOrFilterTest.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.RouteTableEntrySimpleExpression; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteTableEntryOrFilter - */ -public class RouteTableEntryOrFilterTest { - private final RouteTableEntryOrFilter model = new RouteTableEntryOrFilter(); - - /** - * Model tests for RouteTableEntryOrFilter - */ - @Test - public void testRouteTableEntryOrFilter() { - // TODO: test RouteTableEntryOrFilter - } - - /** - * Test the property 'or' - */ - @Test - public void orTest() { - // TODO: test or - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryProtocolTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryProtocolTypeTest.java deleted file mode 100644 index e4a40dae..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryProtocolTypeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteTableEntryProtocolType - */ -public class RouteTableEntryProtocolTypeTest { - /** - * Model tests for RouteTableEntryProtocolType - */ - @Test - public void testRouteTableEntryProtocolType() { - // TODO: test RouteTableEntryProtocolType - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntrySearchRequestTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntrySearchRequestTest.java deleted file mode 100644 index 1d875832..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntrySearchRequestTest.java +++ /dev/null @@ -1,68 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.PaginationRequest; -import com.equinix.openapi.fabric.v4.model.RouteTableEntryFilters; -import com.equinix.openapi.fabric.v4.model.RouteTableEntrySortCriteria; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteTableEntrySearchRequest - */ -public class RouteTableEntrySearchRequestTest { - private final RouteTableEntrySearchRequest model = new RouteTableEntrySearchRequest(); - - /** - * Model tests for RouteTableEntrySearchRequest - */ - @Test - public void testRouteTableEntrySearchRequest() { - // TODO: test RouteTableEntrySearchRequest - } - - /** - * Test the property 'filter' - */ - @Test - public void filterTest() { - // TODO: test filter - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'sort' - */ - @Test - public void sortTest() { - // TODO: test sort - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntrySearchResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntrySearchResponseTest.java deleted file mode 100644 index 41b1e60f..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntrySearchResponseTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.equinix.openapi.fabric.v4.model.RouteTableEntry; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteTableEntrySearchResponse - */ -public class RouteTableEntrySearchResponseTest { - private final RouteTableEntrySearchResponse model = new RouteTableEntrySearchResponse(); - - /** - * Model tests for RouteTableEntrySearchResponse - */ - @Test - public void testRouteTableEntrySearchResponse() { - // TODO: test RouteTableEntrySearchResponse - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntrySimpleExpressionTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntrySimpleExpressionTest.java deleted file mode 100644 index 5cc6d268..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntrySimpleExpressionTest.java +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteTableEntrySimpleExpression - */ -public class RouteTableEntrySimpleExpressionTest { - private final RouteTableEntrySimpleExpression model = new RouteTableEntrySimpleExpression(); - - /** - * Model tests for RouteTableEntrySimpleExpression - */ - @Test - public void testRouteTableEntrySimpleExpression() { - // TODO: test RouteTableEntrySimpleExpression - } - - /** - * Test the property 'property' - */ - @Test - public void propertyTest() { - // TODO: test property - } - - /** - * Test the property 'operator' - */ - @Test - public void operatorTest() { - // TODO: test operator - } - - /** - * Test the property 'values' - */ - @Test - public void valuesTest() { - // TODO: test values - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntrySortByTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntrySortByTest.java deleted file mode 100644 index 8900a475..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntrySortByTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteTableEntrySortBy - */ -public class RouteTableEntrySortByTest { - /** - * Model tests for RouteTableEntrySortBy - */ - @Test - public void testRouteTableEntrySortBy() { - // TODO: test RouteTableEntrySortBy - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntrySortCriteriaTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntrySortCriteriaTest.java deleted file mode 100644 index 9bda71d7..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntrySortCriteriaTest.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.RouteTableEntrySortBy; -import com.equinix.openapi.fabric.v4.model.RouteTableEntrySortDirection; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteTableEntrySortCriteria - */ -public class RouteTableEntrySortCriteriaTest { - private final RouteTableEntrySortCriteria model = new RouteTableEntrySortCriteria(); - - /** - * Model tests for RouteTableEntrySortCriteria - */ - @Test - public void testRouteTableEntrySortCriteria() { - // TODO: test RouteTableEntrySortCriteria - } - - /** - * Test the property 'direction' - */ - @Test - public void directionTest() { - // TODO: test direction - } - - /** - * Test the property 'property' - */ - @Test - public void propertyTest() { - // TODO: test property - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntrySortDirectionTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntrySortDirectionTest.java deleted file mode 100644 index 04418288..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntrySortDirectionTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteTableEntrySortDirection - */ -public class RouteTableEntrySortDirectionTest { - /** - * Model tests for RouteTableEntrySortDirection - */ - @Test - public void testRouteTableEntrySortDirection() { - // TODO: test RouteTableEntrySortDirection - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryStateTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryStateTest.java deleted file mode 100644 index cc56494d..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryStateTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteTableEntryState - */ -public class RouteTableEntryStateTest { - /** - * Model tests for RouteTableEntryState - */ - @Test - public void testRouteTableEntryState() { - // TODO: test RouteTableEntryState - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryTest.java deleted file mode 100644 index 4b3f6bde..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryTest.java +++ /dev/null @@ -1,134 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Changelog; -import com.equinix.openapi.fabric.v4.model.RouteTableEntryConnection; -import com.equinix.openapi.fabric.v4.model.RouteTableEntryProtocolType; -import com.equinix.openapi.fabric.v4.model.RouteTableEntryState; -import com.equinix.openapi.fabric.v4.model.RouteTableEntryType; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteTableEntry - */ -public class RouteTableEntryTest { - private final RouteTableEntry model = new RouteTableEntry(); - - /** - * Model tests for RouteTableEntry - */ - @Test - public void testRouteTableEntry() { - // TODO: test RouteTableEntry - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'protocolType' - */ - @Test - public void protocolTypeTest() { - // TODO: test protocolType - } - - /** - * Test the property 'state' - */ - @Test - public void stateTest() { - // TODO: test state - } - - /** - * Test the property 'age' - */ - @Test - public void ageTest() { - // TODO: test age - } - - /** - * Test the property 'prefix' - */ - @Test - public void prefixTest() { - // TODO: test prefix - } - - /** - * Test the property 'nextHop' - */ - @Test - public void nextHopTest() { - // TODO: test nextHop - } - - /** - * Test the property 'metric' - */ - @Test - public void metricTest() { - // TODO: test metric - } - - /** - * Test the property 'localPreference' - */ - @Test - public void localPreferenceTest() { - // TODO: test localPreference - } - - /** - * Test the property 'asPath' - */ - @Test - public void asPathTest() { - // TODO: test asPath - } - - /** - * Test the property 'connection' - */ - @Test - public void connectionTest() { - // TODO: test connection - } - - /** - * Test the property 'changeLog' - */ - @Test - public void changeLogTest() { - // TODO: test changeLog - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryTypeTest.java deleted file mode 100644 index 40897ed2..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouteTableEntryTypeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouteTableEntryType - */ -public class RouteTableEntryTypeTest { - /** - * Model tests for RouteTableEntryType - */ - @Test - public void testRouteTableEntryType() { - // TODO: test RouteTableEntryType - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouterPackageCodeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouterPackageCodeTest.java deleted file mode 100644 index 443477bd..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RouterPackageCodeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RouterPackageCode - */ -public class RouterPackageCodeTest { - /** - * Model tests for RouterPackageCode - */ - @Test - public void testRouterPackageCode() { - // TODO: test RouterPackageCode - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolBFDTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolBFDTest.java deleted file mode 100644 index 3c5887c5..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolBFDTest.java +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RoutingProtocolBFD - */ -public class RoutingProtocolBFDTest { - private final RoutingProtocolBFD model = new RoutingProtocolBFD(); - - /** - * Model tests for RoutingProtocolBFD - */ - @Test - public void testRoutingProtocolBFD() { - // TODO: test RoutingProtocolBFD - } - - /** - * Test the property 'enabled' - */ - @Test - public void enabledTest() { - // TODO: test enabled - } - - /** - * Test the property 'interval' - */ - @Test - public void intervalTest() { - // TODO: test interval - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolBGPDataTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolBGPDataTest.java deleted file mode 100644 index e2b1e71e..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolBGPDataTest.java +++ /dev/null @@ -1,159 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.BGPConnectionIpv4; -import com.equinix.openapi.fabric.v4.model.BGPConnectionIpv6; -import com.equinix.openapi.fabric.v4.model.Changelog; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolBFD; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolChange; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolOperation; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RoutingProtocolBGPData - */ -public class RoutingProtocolBGPDataTest { - private final RoutingProtocolBGPData model = new RoutingProtocolBGPData(); - - /** - * Model tests for RoutingProtocolBGPData - */ - @Test - public void testRoutingProtocolBGPData() { - // TODO: test RoutingProtocolBGPData - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'bgpIpv4' - */ - @Test - public void bgpIpv4Test() { - // TODO: test bgpIpv4 - } - - /** - * Test the property 'bgpIpv6' - */ - @Test - public void bgpIpv6Test() { - // TODO: test bgpIpv6 - } - - /** - * Test the property 'customerAsn' - */ - @Test - public void customerAsnTest() { - // TODO: test customerAsn - } - - /** - * Test the property 'equinixAsn' - */ - @Test - public void equinixAsnTest() { - // TODO: test equinixAsn - } - - /** - * Test the property 'bgpAuthKey' - */ - @Test - public void bgpAuthKeyTest() { - // TODO: test bgpAuthKey - } - - /** - * Test the property 'bfd' - */ - @Test - public void bfdTest() { - // TODO: test bfd - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'state' - */ - @Test - public void stateTest() { - // TODO: test state - } - - /** - * Test the property 'operation' - */ - @Test - public void operationTest() { - // TODO: test operation - } - - /** - * Test the property 'change' - */ - @Test - public void changeTest() { - // TODO: test change - } - - /** - * Test the property 'changelog' - */ - @Test - public void changelogTest() { - // TODO: test changelog - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolBGPTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolBGPTypeTest.java deleted file mode 100644 index bf1a9239..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolBGPTypeTest.java +++ /dev/null @@ -1,106 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.BGPConnectionIpv4; -import com.equinix.openapi.fabric.v4.model.BGPConnectionIpv6; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolBFD; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RoutingProtocolBGPType - */ -public class RoutingProtocolBGPTypeTest { - private final RoutingProtocolBGPType model = new RoutingProtocolBGPType(); - - /** - * Model tests for RoutingProtocolBGPType - */ - @Test - public void testRoutingProtocolBGPType() { - // TODO: test RoutingProtocolBGPType - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'bgpIpv4' - */ - @Test - public void bgpIpv4Test() { - // TODO: test bgpIpv4 - } - - /** - * Test the property 'bgpIpv6' - */ - @Test - public void bgpIpv6Test() { - // TODO: test bgpIpv6 - } - - /** - * Test the property 'customerAsn' - */ - @Test - public void customerAsnTest() { - // TODO: test customerAsn - } - - /** - * Test the property 'equinixAsn' - */ - @Test - public void equinixAsnTest() { - // TODO: test equinixAsn - } - - /** - * Test the property 'bgpAuthKey' - */ - @Test - public void bgpAuthKeyTest() { - // TODO: test bgpAuthKey - } - - /** - * Test the property 'bfd' - */ - @Test - public void bfdTest() { - // TODO: test bfd - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolBaseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolBaseTest.java deleted file mode 100644 index 298a068e..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolBaseTest.java +++ /dev/null @@ -1,126 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.BGPConnectionIpv4; -import com.equinix.openapi.fabric.v4.model.BGPConnectionIpv6; -import com.equinix.openapi.fabric.v4.model.DirectConnectionIpv4; -import com.equinix.openapi.fabric.v4.model.DirectConnectionIpv6; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolBFD; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolBGPType; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolDirectType; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RoutingProtocolBase - */ -public class RoutingProtocolBaseTest { - private final RoutingProtocolBase model = new RoutingProtocolBase(); - - /** - * Model tests for RoutingProtocolBase - */ - @Test - public void testRoutingProtocolBase() { - // TODO: test RoutingProtocolBase - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'bgpIpv4' - */ - @Test - public void bgpIpv4Test() { - // TODO: test bgpIpv4 - } - - /** - * Test the property 'bgpIpv6' - */ - @Test - public void bgpIpv6Test() { - // TODO: test bgpIpv6 - } - - /** - * Test the property 'customerAsn' - */ - @Test - public void customerAsnTest() { - // TODO: test customerAsn - } - - /** - * Test the property 'equinixAsn' - */ - @Test - public void equinixAsnTest() { - // TODO: test equinixAsn - } - - /** - * Test the property 'bgpAuthKey' - */ - @Test - public void bgpAuthKeyTest() { - // TODO: test bgpAuthKey - } - - /** - * Test the property 'bfd' - */ - @Test - public void bfdTest() { - // TODO: test bfd - } - - /** - * Test the property 'directIpv4' - */ - @Test - public void directIpv4Test() { - // TODO: test directIpv4 - } - - /** - * Test the property 'directIpv6' - */ - @Test - public void directIpv6Test() { - // TODO: test directIpv6 - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolChangeDataResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolChangeDataResponseTest.java deleted file mode 100644 index c97a9fd7..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolChangeDataResponseTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolChangeData; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RoutingProtocolChangeDataResponse - */ -public class RoutingProtocolChangeDataResponseTest { - private final RoutingProtocolChangeDataResponse model = new RoutingProtocolChangeDataResponse(); - - /** - * Model tests for RoutingProtocolChangeDataResponse - */ - @Test - public void testRoutingProtocolChangeDataResponse() { - // TODO: test RoutingProtocolChangeDataResponse - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolChangeDataTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolChangeDataTest.java deleted file mode 100644 index 84515948..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolChangeDataTest.java +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.RoutingProtocolChangeOperation; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.time.OffsetDateTime; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RoutingProtocolChangeData - */ -public class RoutingProtocolChangeDataTest { - private final RoutingProtocolChangeData model = new RoutingProtocolChangeData(); - - /** - * Model tests for RoutingProtocolChangeData - */ - @Test - public void testRoutingProtocolChangeData() { - // TODO: test RoutingProtocolChangeData - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolChangeOperationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolChangeOperationTest.java deleted file mode 100644 index fd86931e..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolChangeOperationTest.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.RoutingProtocolBase; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RoutingProtocolChangeOperation - */ -public class RoutingProtocolChangeOperationTest { - private final RoutingProtocolChangeOperation model = new RoutingProtocolChangeOperation(); - - /** - * Model tests for RoutingProtocolChangeOperation - */ - @Test - public void testRoutingProtocolChangeOperation() { - // TODO: test RoutingProtocolChangeOperation - } - - /** - * Test the property 'op' - */ - @Test - public void opTest() { - // TODO: test op - } - - /** - * Test the property 'path' - */ - @Test - public void pathTest() { - // TODO: test path - } - - /** - * Test the property 'value' - */ - @Test - public void valueTest() { - // TODO: test value - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolChangeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolChangeTest.java deleted file mode 100644 index e02ec8bb..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolChangeTest.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RoutingProtocolChange - */ -public class RoutingProtocolChangeTest { - private final RoutingProtocolChange model = new RoutingProtocolChange(); - - /** - * Model tests for RoutingProtocolChange - */ - @Test - public void testRoutingProtocolChange() { - // TODO: test RoutingProtocolChange - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolDataTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolDataTest.java deleted file mode 100644 index bc617ed7..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolDataTest.java +++ /dev/null @@ -1,179 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.BGPConnectionIpv4; -import com.equinix.openapi.fabric.v4.model.BGPConnectionIpv6; -import com.equinix.openapi.fabric.v4.model.Changelog; -import com.equinix.openapi.fabric.v4.model.DirectConnectionIpv4; -import com.equinix.openapi.fabric.v4.model.DirectConnectionIpv6; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolBFD; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolBGPData; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolChange; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolDirectData; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolOperation; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RoutingProtocolData - */ -public class RoutingProtocolDataTest { - private final RoutingProtocolData model = new RoutingProtocolData(); - - /** - * Model tests for RoutingProtocolData - */ - @Test - public void testRoutingProtocolData() { - // TODO: test RoutingProtocolData - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'bgpIpv4' - */ - @Test - public void bgpIpv4Test() { - // TODO: test bgpIpv4 - } - - /** - * Test the property 'bgpIpv6' - */ - @Test - public void bgpIpv6Test() { - // TODO: test bgpIpv6 - } - - /** - * Test the property 'customerAsn' - */ - @Test - public void customerAsnTest() { - // TODO: test customerAsn - } - - /** - * Test the property 'equinixAsn' - */ - @Test - public void equinixAsnTest() { - // TODO: test equinixAsn - } - - /** - * Test the property 'bgpAuthKey' - */ - @Test - public void bgpAuthKeyTest() { - // TODO: test bgpAuthKey - } - - /** - * Test the property 'bfd' - */ - @Test - public void bfdTest() { - // TODO: test bfd - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'state' - */ - @Test - public void stateTest() { - // TODO: test state - } - - /** - * Test the property 'operation' - */ - @Test - public void operationTest() { - // TODO: test operation - } - - /** - * Test the property 'change' - */ - @Test - public void changeTest() { - // TODO: test change - } - - /** - * Test the property 'changelog' - */ - @Test - public void changelogTest() { - // TODO: test changelog - } - - /** - * Test the property 'directIpv4' - */ - @Test - public void directIpv4Test() { - // TODO: test directIpv4 - } - - /** - * Test the property 'directIpv6' - */ - @Test - public void directIpv6Test() { - // TODO: test directIpv6 - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolDirectDataTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolDirectDataTest.java deleted file mode 100644 index b3b31612..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolDirectDataTest.java +++ /dev/null @@ -1,126 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Changelog; -import com.equinix.openapi.fabric.v4.model.DirectConnectionIpv4; -import com.equinix.openapi.fabric.v4.model.DirectConnectionIpv6; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolChange; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolOperation; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RoutingProtocolDirectData - */ -public class RoutingProtocolDirectDataTest { - private final RoutingProtocolDirectData model = new RoutingProtocolDirectData(); - - /** - * Model tests for RoutingProtocolDirectData - */ - @Test - public void testRoutingProtocolDirectData() { - // TODO: test RoutingProtocolDirectData - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'directIpv4' - */ - @Test - public void directIpv4Test() { - // TODO: test directIpv4 - } - - /** - * Test the property 'directIpv6' - */ - @Test - public void directIpv6Test() { - // TODO: test directIpv6 - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'state' - */ - @Test - public void stateTest() { - // TODO: test state - } - - /** - * Test the property 'operation' - */ - @Test - public void operationTest() { - // TODO: test operation - } - - /** - * Test the property 'change' - */ - @Test - public void changeTest() { - // TODO: test change - } - - /** - * Test the property 'changelog' - */ - @Test - public void changelogTest() { - // TODO: test changelog - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolDirectTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolDirectTypeTest.java deleted file mode 100644 index 22c92f86..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolDirectTypeTest.java +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.DirectConnectionIpv4; -import com.equinix.openapi.fabric.v4.model.DirectConnectionIpv6; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RoutingProtocolDirectType - */ -public class RoutingProtocolDirectTypeTest { - private final RoutingProtocolDirectType model = new RoutingProtocolDirectType(); - - /** - * Model tests for RoutingProtocolDirectType - */ - @Test - public void testRoutingProtocolDirectType() { - // TODO: test RoutingProtocolDirectType - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'directIpv4' - */ - @Test - public void directIpv4Test() { - // TODO: test directIpv4 - } - - /** - * Test the property 'directIpv6' - */ - @Test - public void directIpv6Test() { - // TODO: test directIpv6 - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolOperationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolOperationTest.java deleted file mode 100644 index 490fda48..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/RoutingProtocolOperationTest.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Error; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for RoutingProtocolOperation - */ -public class RoutingProtocolOperationTest { - private final RoutingProtocolOperation model = new RoutingProtocolOperation(); - - /** - * Model tests for RoutingProtocolOperation - */ - @Test - public void testRoutingProtocolOperation() { - // TODO: test RoutingProtocolOperation - } - - /** - * Test the property 'errors' - */ - @Test - public void errorsTest() { - // TODO: test errors - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SearchExpressionTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SearchExpressionTest.java deleted file mode 100644 index 685084d9..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SearchExpressionTest.java +++ /dev/null @@ -1,81 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for SearchExpression - */ -public class SearchExpressionTest { - private final SearchExpression model = new SearchExpression(); - - /** - * Model tests for SearchExpression - */ - @Test - public void testSearchExpression() { - // TODO: test SearchExpression - } - - /** - * Test the property 'and' - */ - @Test - public void andTest() { - // TODO: test and - } - - /** - * Test the property 'or' - */ - @Test - public void orTest() { - // TODO: test or - } - - /** - * Test the property 'property' - */ - @Test - public void propertyTest() { - // TODO: test property - } - - /** - * Test the property 'operator' - */ - @Test - public void operatorTest() { - // TODO: test operator - } - - /** - * Test the property 'values' - */ - @Test - public void valuesTest() { - // TODO: test values - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SearchFieldNameTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SearchFieldNameTest.java deleted file mode 100644 index b432b665..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SearchFieldNameTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for SearchFieldName - */ -public class SearchFieldNameTest { - /** - * Model tests for SearchFieldName - */ - @Test - public void testSearchFieldName() { - // TODO: test SearchFieldName - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SearchRequestTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SearchRequestTest.java deleted file mode 100644 index 5a49961b..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SearchRequestTest.java +++ /dev/null @@ -1,68 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Expression; -import com.equinix.openapi.fabric.v4.model.PaginationRequest; -import com.equinix.openapi.fabric.v4.model.SortCriteria; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for SearchRequest - */ -public class SearchRequestTest { - private final SearchRequest model = new SearchRequest(); - - /** - * Model tests for SearchRequest - */ - @Test - public void testSearchRequest() { - // TODO: test SearchRequest - } - - /** - * Test the property 'filter' - */ - @Test - public void filterTest() { - // TODO: test filter - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'sort' - */ - @Test - public void sortTest() { - // TODO: test sort - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SearchResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SearchResponseTest.java deleted file mode 100644 index 3b6afcb7..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SearchResponseTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.CloudRouter; -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for SearchResponse - */ -public class SearchResponseTest { - private final SearchResponse model = new SearchResponse(); - - /** - * Model tests for SearchResponse - */ - @Test - public void testSearchResponse() { - // TODO: test SearchResponse - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceMetroTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceMetroTest.java deleted file mode 100644 index 923eafc0..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceMetroTest.java +++ /dev/null @@ -1,99 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceMetro - */ -public class ServiceMetroTest { - private final ServiceMetro model = new ServiceMetro(); - - /** - * Model tests for ServiceMetro - */ - @Test - public void testServiceMetro() { - // TODO: test ServiceMetro - } - - /** - * Test the property 'code' - */ - @Test - public void codeTest() { - // TODO: test code - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'vcBandwidthMax' - */ - @Test - public void vcBandwidthMaxTest() { - // TODO: test vcBandwidthMax - } - - /** - * Test the property 'ibxs' - */ - @Test - public void ibxsTest() { - // TODO: test ibxs - } - - /** - * Test the property 'inTrail' - */ - @Test - public void inTrailTest() { - // TODO: test inTrail - } - - /** - * Test the property 'displayName' - */ - @Test - public void displayNameTest() { - // TODO: test displayName - } - - /** - * Test the property 'sellerRegions' - */ - @Test - public void sellerRegionsTest() { - // TODO: test sellerRegions - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceMetrosTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceMetrosTest.java deleted file mode 100644 index ef477dae..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceMetrosTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.equinix.openapi.fabric.v4.model.ServiceMetro; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceMetros - */ -public class ServiceMetrosTest { - private final ServiceMetros model = new ServiceMetros(); - - /** - * Model tests for ServiceMetros - */ - @Test - public void testServiceMetros() { - // TODO: test ServiceMetros - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileAccessPointCOLOTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileAccessPointCOLOTest.java deleted file mode 100644 index 61b7bbae..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileAccessPointCOLOTest.java +++ /dev/null @@ -1,89 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.SimplifiedLocation; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceProfileAccessPointCOLO - */ -public class ServiceProfileAccessPointCOLOTest { - private final ServiceProfileAccessPointCOLO model = new ServiceProfileAccessPointCOLO(); - - /** - * Model tests for ServiceProfileAccessPointCOLO - */ - @Test - public void testServiceProfileAccessPointCOLO() { - // TODO: test ServiceProfileAccessPointCOLO - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'location' - */ - @Test - public void locationTest() { - // TODO: test location - } - - /** - * Test the property 'sellerRegion' - */ - @Test - public void sellerRegionTest() { - // TODO: test sellerRegion - } - - /** - * Test the property 'sellerRegionDescription' - */ - @Test - public void sellerRegionDescriptionTest() { - // TODO: test sellerRegionDescription - } - - /** - * Test the property 'crossConnectId' - */ - @Test - public void crossConnectIdTest() { - // TODO: test crossConnectId - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileAccessPointTypeCOLOTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileAccessPointTypeCOLOTest.java deleted file mode 100644 index 2a141a10..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileAccessPointTypeCOLOTest.java +++ /dev/null @@ -1,167 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ApiConfig; -import com.equinix.openapi.fabric.v4.model.AuthenticationKey; -import com.equinix.openapi.fabric.v4.model.ServiceProfileAccessPointTypeEnum; -import com.equinix.openapi.fabric.v4.model.ServiceProfileLinkProtocolConfig; -import com.equinix.openapi.fabric.v4.model.ServiceProfileMetadata; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceProfileAccessPointTypeCOLO - */ -public class ServiceProfileAccessPointTypeCOLOTest { - private final ServiceProfileAccessPointTypeCOLO model = new ServiceProfileAccessPointTypeCOLO(); - - /** - * Model tests for ServiceProfileAccessPointTypeCOLO - */ - @Test - public void testServiceProfileAccessPointTypeCOLO() { - // TODO: test ServiceProfileAccessPointTypeCOLO - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'supportedBandwidths' - */ - @Test - public void supportedBandwidthsTest() { - // TODO: test supportedBandwidths - } - - /** - * Test the property 'allowRemoteConnections' - */ - @Test - public void allowRemoteConnectionsTest() { - // TODO: test allowRemoteConnections - } - - /** - * Test the property 'allowCustomBandwidth' - */ - @Test - public void allowCustomBandwidthTest() { - // TODO: test allowCustomBandwidth - } - - /** - * Test the property 'bandwidthAlertThreshold' - */ - @Test - public void bandwidthAlertThresholdTest() { - // TODO: test bandwidthAlertThreshold - } - - /** - * Test the property 'allowBandwidthAutoApproval' - */ - @Test - public void allowBandwidthAutoApprovalTest() { - // TODO: test allowBandwidthAutoApproval - } - - /** - * Test the property 'allowBandwidthUpgrade' - */ - @Test - public void allowBandwidthUpgradeTest() { - // TODO: test allowBandwidthUpgrade - } - - /** - * Test the property 'linkProtocolConfig' - */ - @Test - public void linkProtocolConfigTest() { - // TODO: test linkProtocolConfig - } - - /** - * Test the property 'enableAutoGenerateServiceKey' - */ - @Test - public void enableAutoGenerateServiceKeyTest() { - // TODO: test enableAutoGenerateServiceKey - } - - /** - * Test the property 'connectionRedundancyRequired' - */ - @Test - public void connectionRedundancyRequiredTest() { - // TODO: test connectionRedundancyRequired - } - - /** - * Test the property 'apiConfig' - */ - @Test - public void apiConfigTest() { - // TODO: test apiConfig - } - - /** - * Test the property 'connectionLabel' - */ - @Test - public void connectionLabelTest() { - // TODO: test connectionLabel - } - - /** - * Test the property 'authenticationKey' - */ - @Test - public void authenticationKeyTest() { - // TODO: test authenticationKey - } - - /** - * Test the property 'metadata' - */ - @Test - public void metadataTest() { - // TODO: test metadata - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileAccessPointTypeEnumTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileAccessPointTypeEnumTest.java deleted file mode 100644 index f023a925..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileAccessPointTypeEnumTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceProfileAccessPointTypeEnum - */ -public class ServiceProfileAccessPointTypeEnumTest { - /** - * Model tests for ServiceProfileAccessPointTypeEnum - */ - @Test - public void testServiceProfileAccessPointTypeEnum() { - // TODO: test ServiceProfileAccessPointTypeEnum - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileAccessPointTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileAccessPointTypeTest.java deleted file mode 100644 index 42b1e0ea..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileAccessPointTypeTest.java +++ /dev/null @@ -1,169 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ApiConfig; -import com.equinix.openapi.fabric.v4.model.AuthenticationKey; -import com.equinix.openapi.fabric.v4.model.ServiceProfileAccessPointTypeCOLO; -import com.equinix.openapi.fabric.v4.model.ServiceProfileAccessPointTypeEnum; -import com.equinix.openapi.fabric.v4.model.ServiceProfileAccessPointTypeVD; -import com.equinix.openapi.fabric.v4.model.ServiceProfileLinkProtocolConfig; -import com.equinix.openapi.fabric.v4.model.ServiceProfileMetadata; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceProfileAccessPointType - */ -public class ServiceProfileAccessPointTypeTest { - private final ServiceProfileAccessPointType model = new ServiceProfileAccessPointType(); - - /** - * Model tests for ServiceProfileAccessPointType - */ - @Test - public void testServiceProfileAccessPointType() { - // TODO: test ServiceProfileAccessPointType - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'supportedBandwidths' - */ - @Test - public void supportedBandwidthsTest() { - // TODO: test supportedBandwidths - } - - /** - * Test the property 'allowRemoteConnections' - */ - @Test - public void allowRemoteConnectionsTest() { - // TODO: test allowRemoteConnections - } - - /** - * Test the property 'allowCustomBandwidth' - */ - @Test - public void allowCustomBandwidthTest() { - // TODO: test allowCustomBandwidth - } - - /** - * Test the property 'bandwidthAlertThreshold' - */ - @Test - public void bandwidthAlertThresholdTest() { - // TODO: test bandwidthAlertThreshold - } - - /** - * Test the property 'allowBandwidthAutoApproval' - */ - @Test - public void allowBandwidthAutoApprovalTest() { - // TODO: test allowBandwidthAutoApproval - } - - /** - * Test the property 'allowBandwidthUpgrade' - */ - @Test - public void allowBandwidthUpgradeTest() { - // TODO: test allowBandwidthUpgrade - } - - /** - * Test the property 'linkProtocolConfig' - */ - @Test - public void linkProtocolConfigTest() { - // TODO: test linkProtocolConfig - } - - /** - * Test the property 'enableAutoGenerateServiceKey' - */ - @Test - public void enableAutoGenerateServiceKeyTest() { - // TODO: test enableAutoGenerateServiceKey - } - - /** - * Test the property 'connectionRedundancyRequired' - */ - @Test - public void connectionRedundancyRequiredTest() { - // TODO: test connectionRedundancyRequired - } - - /** - * Test the property 'apiConfig' - */ - @Test - public void apiConfigTest() { - // TODO: test apiConfig - } - - /** - * Test the property 'connectionLabel' - */ - @Test - public void connectionLabelTest() { - // TODO: test connectionLabel - } - - /** - * Test the property 'authenticationKey' - */ - @Test - public void authenticationKeyTest() { - // TODO: test authenticationKey - } - - /** - * Test the property 'metadata' - */ - @Test - public void metadataTest() { - // TODO: test metadata - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileAccessPointTypeVDTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileAccessPointTypeVDTest.java deleted file mode 100644 index f468e8d2..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileAccessPointTypeVDTest.java +++ /dev/null @@ -1,82 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ServiceProfileAccessPointTypeEnum; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceProfileAccessPointTypeVD - */ -public class ServiceProfileAccessPointTypeVDTest { - private final ServiceProfileAccessPointTypeVD model = new ServiceProfileAccessPointTypeVD(); - - /** - * Model tests for ServiceProfileAccessPointTypeVD - */ - @Test - public void testServiceProfileAccessPointTypeVD() { - // TODO: test ServiceProfileAccessPointTypeVD - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'supportedBandwidths' - */ - @Test - public void supportedBandwidthsTest() { - // TODO: test supportedBandwidths - } - - /** - * Test the property 'allowRemoteConnections' - */ - @Test - public void allowRemoteConnectionsTest() { - // TODO: test allowRemoteConnections - } - - /** - * Test the property 'allowCustomBandwidth' - */ - @Test - public void allowCustomBandwidthTest() { - // TODO: test allowCustomBandwidth - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileAccessPointVDTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileAccessPointVDTest.java deleted file mode 100644 index b87cc8c6..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileAccessPointVDTest.java +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.SimplifiedLocation; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceProfileAccessPointVD - */ -public class ServiceProfileAccessPointVDTest { - private final ServiceProfileAccessPointVD model = new ServiceProfileAccessPointVD(); - - /** - * Model tests for ServiceProfileAccessPointVD - */ - @Test - public void testServiceProfileAccessPointVD() { - // TODO: test ServiceProfileAccessPointVD - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'location' - */ - @Test - public void locationTest() { - // TODO: test location - } - - /** - * Test the property 'interfaceUuid' - */ - @Test - public void interfaceUuidTest() { - // TODO: test interfaceUuid - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileAndFilterTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileAndFilterTest.java deleted file mode 100644 index f54ff82f..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileAndFilterTest.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ServiceProfileSimpleExpression; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceProfileAndFilter - */ -public class ServiceProfileAndFilterTest { - private final ServiceProfileAndFilter model = new ServiceProfileAndFilter(); - - /** - * Model tests for ServiceProfileAndFilter - */ - @Test - public void testServiceProfileAndFilter() { - // TODO: test ServiceProfileAndFilter - } - - /** - * Test the property 'and' - */ - @Test - public void andTest() { - // TODO: test and - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileFilterTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileFilterTest.java deleted file mode 100644 index 41044256..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileFilterTest.java +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ServiceProfileAndFilter; -import com.equinix.openapi.fabric.v4.model.ServiceProfileSimpleExpression; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceProfileFilter - */ -public class ServiceProfileFilterTest { - private final ServiceProfileFilter model = new ServiceProfileFilter(); - - /** - * Model tests for ServiceProfileFilter - */ - @Test - public void testServiceProfileFilter() { - // TODO: test ServiceProfileFilter - } - - /** - * Test the property 'property' - */ - @Test - public void propertyTest() { - // TODO: test property - } - - /** - * Test the property 'operator' - */ - @Test - public void operatorTest() { - // TODO: test operator - } - - /** - * Test the property 'values' - */ - @Test - public void valuesTest() { - // TODO: test values - } - - /** - * Test the property 'and' - */ - @Test - public void andTest() { - // TODO: test and - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileLinkProtocolConfigTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileLinkProtocolConfigTest.java deleted file mode 100644 index 3918f6ea..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileLinkProtocolConfigTest.java +++ /dev/null @@ -1,81 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceProfileLinkProtocolConfig - */ -public class ServiceProfileLinkProtocolConfigTest { - private final ServiceProfileLinkProtocolConfig model = new ServiceProfileLinkProtocolConfig(); - - /** - * Model tests for ServiceProfileLinkProtocolConfig - */ - @Test - public void testServiceProfileLinkProtocolConfig() { - // TODO: test ServiceProfileLinkProtocolConfig - } - - /** - * Test the property 'encapsulationStrategy' - */ - @Test - public void encapsulationStrategyTest() { - // TODO: test encapsulationStrategy - } - - /** - * Test the property 'namedTags' - */ - @Test - public void namedTagsTest() { - // TODO: test namedTags - } - - /** - * Test the property 'vlanCTagLabel' - */ - @Test - public void vlanCTagLabelTest() { - // TODO: test vlanCTagLabel - } - - /** - * Test the property 'reuseVlanSTag' - */ - @Test - public void reuseVlanSTagTest() { - // TODO: test reuseVlanSTag - } - - /** - * Test the property 'encapsulation' - */ - @Test - public void encapsulationTest() { - // TODO: test encapsulation - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileMetadataTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileMetadataTest.java deleted file mode 100644 index fa880df8..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileMetadataTest.java +++ /dev/null @@ -1,191 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceProfileMetadata - */ -public class ServiceProfileMetadataTest { - private final ServiceProfileMetadata model = new ServiceProfileMetadata(); - - /** - * Model tests for ServiceProfileMetadata - */ - @Test - public void testServiceProfileMetadata() { - // TODO: test ServiceProfileMetadata - } - - /** - * Test the property 'props' - */ - @Test - public void propsTest() { - // TODO: test props - } - - /** - * Test the property 'regEx' - */ - @Test - public void regExTest() { - // TODO: test regEx - } - - /** - * Test the property 'regExMsg' - */ - @Test - public void regExMsgTest() { - // TODO: test regExMsg - } - - /** - * Test the property 'vlanRangeMaxValue' - */ - @Test - public void vlanRangeMaxValueTest() { - // TODO: test vlanRangeMaxValue - } - - /** - * Test the property 'vlanRangeMinValue' - */ - @Test - public void vlanRangeMinValueTest() { - // TODO: test vlanRangeMinValue - } - - /** - * Test the property 'maxQinq' - */ - @Test - public void maxQinqTest() { - // TODO: test maxQinq - } - - /** - * Test the property 'maxDot1q' - */ - @Test - public void maxDot1qTest() { - // TODO: test maxDot1q - } - - /** - * Test the property 'variableBilling' - */ - @Test - public void variableBillingTest() { - // TODO: test variableBilling - } - - /** - * Test the property 'globalOrganization' - */ - @Test - public void globalOrganizationTest() { - // TODO: test globalOrganization - } - - /** - * Test the property 'limitAuthKeyConn' - */ - @Test - public void limitAuthKeyConnTest() { - // TODO: test limitAuthKeyConn - } - - /** - * Test the property 'allowSecondaryLocation' - */ - @Test - public void allowSecondaryLocationTest() { - // TODO: test allowSecondaryLocation - } - - /** - * Test the property 'redundantProfileId' - */ - @Test - public void redundantProfileIdTest() { - // TODO: test redundantProfileId - } - - /** - * Test the property 'allowVcMigration' - */ - @Test - public void allowVcMigrationTest() { - // TODO: test allowVcMigration - } - - /** - * Test the property 'connectionEditable' - */ - @Test - public void connectionEditableTest() { - // TODO: test connectionEditable - } - - /** - * Test the property 'releaseVlan' - */ - @Test - public void releaseVlanTest() { - // TODO: test releaseVlan - } - - /** - * Test the property 'maxConnectionsOnPort' - */ - @Test - public void maxConnectionsOnPortTest() { - // TODO: test maxConnectionsOnPort - } - - /** - * Test the property 'portAssignmentStrategy' - */ - @Test - public void portAssignmentStrategyTest() { - // TODO: test portAssignmentStrategy - } - - /** - * Test the property 'eqxManagedPort' - */ - @Test - public void eqxManagedPortTest() { - // TODO: test eqxManagedPort - } - - /** - * Test the property 'connectionNameEditable' - */ - @Test - public void connectionNameEditableTest() { - // TODO: test connectionNameEditable - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileRequestTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileRequestTest.java deleted file mode 100644 index 83b6a284..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileRequestTest.java +++ /dev/null @@ -1,189 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.CustomField; -import com.equinix.openapi.fabric.v4.model.MarketingInfo; -import com.equinix.openapi.fabric.v4.model.Project; -import com.equinix.openapi.fabric.v4.model.ServiceMetro; -import com.equinix.openapi.fabric.v4.model.ServiceProfileAccessPointCOLO; -import com.equinix.openapi.fabric.v4.model.ServiceProfileAccessPointType; -import com.equinix.openapi.fabric.v4.model.ServiceProfileAccessPointVD; -import com.equinix.openapi.fabric.v4.model.ServiceProfileTypeEnum; -import com.equinix.openapi.fabric.v4.model.ServiceProfileVisibilityEnum; -import com.equinix.openapi.fabric.v4.model.SimplifiedNotification; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.ArrayList; -import java.util.List; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceProfileRequest - */ -public class ServiceProfileRequestTest { - private final ServiceProfileRequest model = new ServiceProfileRequest(); - - /** - * Model tests for ServiceProfileRequest - */ - @Test - public void testServiceProfileRequest() { - // TODO: test ServiceProfileRequest - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'description' - */ - @Test - public void descriptionTest() { - // TODO: test description - } - - /** - * Test the property 'notifications' - */ - @Test - public void notificationsTest() { - // TODO: test notifications - } - - /** - * Test the property 'tags' - */ - @Test - public void tagsTest() { - // TODO: test tags - } - - /** - * Test the property 'visibility' - */ - @Test - public void visibilityTest() { - // TODO: test visibility - } - - /** - * Test the property 'allowedEmails' - */ - @Test - public void allowedEmailsTest() { - // TODO: test allowedEmails - } - - /** - * Test the property 'accessPointTypeConfigs' - */ - @Test - public void accessPointTypeConfigsTest() { - // TODO: test accessPointTypeConfigs - } - - /** - * Test the property 'customFields' - */ - @Test - public void customFieldsTest() { - // TODO: test customFields - } - - /** - * Test the property 'marketingInfo' - */ - @Test - public void marketingInfoTest() { - // TODO: test marketingInfo - } - - /** - * Test the property 'ports' - */ - @Test - public void portsTest() { - // TODO: test ports - } - - /** - * Test the property 'virtualDevices' - */ - @Test - public void virtualDevicesTest() { - // TODO: test virtualDevices - } - - /** - * Test the property 'metros' - */ - @Test - public void metrosTest() { - // TODO: test metros - } - - /** - * Test the property 'selfProfile' - */ - @Test - public void selfProfileTest() { - // TODO: test selfProfile - } - - /** - * Test the property 'projectId' - */ - @Test - public void projectIdTest() { - // TODO: test projectId - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileSearchRequestTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileSearchRequestTest.java deleted file mode 100644 index cf6ce246..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileSearchRequestTest.java +++ /dev/null @@ -1,68 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.PaginationRequest; -import com.equinix.openapi.fabric.v4.model.ServiceProfileFilter; -import com.equinix.openapi.fabric.v4.model.ServiceProfileSortCriteria; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceProfileSearchRequest - */ -public class ServiceProfileSearchRequestTest { - private final ServiceProfileSearchRequest model = new ServiceProfileSearchRequest(); - - /** - * Model tests for ServiceProfileSearchRequest - */ - @Test - public void testServiceProfileSearchRequest() { - // TODO: test ServiceProfileSearchRequest - } - - /** - * Test the property 'filter' - */ - @Test - public void filterTest() { - // TODO: test filter - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'sort' - */ - @Test - public void sortTest() { - // TODO: test sort - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileSimpleExpressionTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileSimpleExpressionTest.java deleted file mode 100644 index 17b4e165..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileSimpleExpressionTest.java +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceProfileSimpleExpression - */ -public class ServiceProfileSimpleExpressionTest { - private final ServiceProfileSimpleExpression model = new ServiceProfileSimpleExpression(); - - /** - * Model tests for ServiceProfileSimpleExpression - */ - @Test - public void testServiceProfileSimpleExpression() { - // TODO: test ServiceProfileSimpleExpression - } - - /** - * Test the property 'property' - */ - @Test - public void propertyTest() { - // TODO: test property - } - - /** - * Test the property 'operator' - */ - @Test - public void operatorTest() { - // TODO: test operator - } - - /** - * Test the property 'values' - */ - @Test - public void valuesTest() { - // TODO: test values - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileSortByTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileSortByTest.java deleted file mode 100644 index dccd6143..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileSortByTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceProfileSortBy - */ -public class ServiceProfileSortByTest { - /** - * Model tests for ServiceProfileSortBy - */ - @Test - public void testServiceProfileSortBy() { - // TODO: test ServiceProfileSortBy - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileSortCriteriaTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileSortCriteriaTest.java deleted file mode 100644 index c7a9e552..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileSortCriteriaTest.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ServiceProfileSortBy; -import com.equinix.openapi.fabric.v4.model.ServiceProfileSortDirection; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceProfileSortCriteria - */ -public class ServiceProfileSortCriteriaTest { - private final ServiceProfileSortCriteria model = new ServiceProfileSortCriteria(); - - /** - * Model tests for ServiceProfileSortCriteria - */ - @Test - public void testServiceProfileSortCriteria() { - // TODO: test ServiceProfileSortCriteria - } - - /** - * Test the property 'direction' - */ - @Test - public void directionTest() { - // TODO: test direction - } - - /** - * Test the property 'property' - */ - @Test - public void propertyTest() { - // TODO: test property - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileSortDirectionTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileSortDirectionTest.java deleted file mode 100644 index 5aaab754..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileSortDirectionTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceProfileSortDirection - */ -public class ServiceProfileSortDirectionTest { - /** - * Model tests for ServiceProfileSortDirection - */ - @Test - public void testServiceProfileSortDirection() { - // TODO: test ServiceProfileSortDirection - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileStateEnumTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileStateEnumTest.java deleted file mode 100644 index beb33d5a..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileStateEnumTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceProfileStateEnum - */ -public class ServiceProfileStateEnumTest { - /** - * Model tests for ServiceProfileStateEnum - */ - @Test - public void testServiceProfileStateEnum() { - // TODO: test ServiceProfileStateEnum - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileTest.java deleted file mode 100644 index d472bae6..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileTest.java +++ /dev/null @@ -1,192 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Changelog; -import com.equinix.openapi.fabric.v4.model.CustomField; -import com.equinix.openapi.fabric.v4.model.MarketingInfo; -import com.equinix.openapi.fabric.v4.model.Project; -import com.equinix.openapi.fabric.v4.model.ServiceMetro; -import com.equinix.openapi.fabric.v4.model.ServiceProfileAccessPointCOLO; -import com.equinix.openapi.fabric.v4.model.ServiceProfileAccessPointType; -import com.equinix.openapi.fabric.v4.model.ServiceProfileAccessPointVD; -import com.equinix.openapi.fabric.v4.model.ServiceProfileStateEnum; -import com.equinix.openapi.fabric.v4.model.ServiceProfileTypeEnum; -import com.equinix.openapi.fabric.v4.model.ServiceProfileVisibilityEnum; -import com.equinix.openapi.fabric.v4.model.SimplifiedAccount; -import com.equinix.openapi.fabric.v4.model.SimplifiedNotification; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.ArrayList; -import java.util.List; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceProfile - */ -public class ServiceProfileTest { - private final ServiceProfile model = new ServiceProfile(); - - /** - * Model tests for ServiceProfile - */ - @Test - public void testServiceProfile() { - // TODO: test ServiceProfile - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'description' - */ - @Test - public void descriptionTest() { - // TODO: test description - } - - /** - * Test the property 'notifications' - */ - @Test - public void notificationsTest() { - // TODO: test notifications - } - - /** - * Test the property 'tags' - */ - @Test - public void tagsTest() { - // TODO: test tags - } - - /** - * Test the property 'visibility' - */ - @Test - public void visibilityTest() { - // TODO: test visibility - } - - /** - * Test the property 'allowedEmails' - */ - @Test - public void allowedEmailsTest() { - // TODO: test allowedEmails - } - - /** - * Test the property 'accessPointTypeConfigs' - */ - @Test - public void accessPointTypeConfigsTest() { - // TODO: test accessPointTypeConfigs - } - - /** - * Test the property 'customFields' - */ - @Test - public void customFieldsTest() { - // TODO: test customFields - } - - /** - * Test the property 'marketingInfo' - */ - @Test - public void marketingInfoTest() { - // TODO: test marketingInfo - } - - /** - * Test the property 'ports' - */ - @Test - public void portsTest() { - // TODO: test ports - } - - /** - * Test the property 'virtualDevices' - */ - @Test - public void virtualDevicesTest() { - // TODO: test virtualDevices - } - - /** - * Test the property 'metros' - */ - @Test - public void metrosTest() { - // TODO: test metros - } - - /** - * Test the property 'selfProfile' - */ - @Test - public void selfProfileTest() { - // TODO: test selfProfile - } - - /** - * Test the property 'projectId' - */ - @Test - public void projectIdTest() { - // TODO: test projectId - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileTypeEnumTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileTypeEnumTest.java deleted file mode 100644 index 3bbbc2c5..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileTypeEnumTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceProfileTypeEnum - */ -public class ServiceProfileTypeEnumTest { - /** - * Model tests for ServiceProfileTypeEnum - */ - @Test - public void testServiceProfileTypeEnum() { - // TODO: test ServiceProfileTypeEnum - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileVisibilityEnumTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileVisibilityEnumTest.java deleted file mode 100644 index b1231dc4..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfileVisibilityEnumTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceProfileVisibilityEnum - */ -public class ServiceProfileVisibilityEnumTest { - /** - * Model tests for ServiceProfileVisibilityEnum - */ - @Test - public void testServiceProfileVisibilityEnum() { - // TODO: test ServiceProfileVisibilityEnum - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfilesTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfilesTest.java deleted file mode 100644 index ec9ea6f0..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceProfilesTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.equinix.openapi.fabric.v4.model.ServiceProfile; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceProfiles - */ -public class ServiceProfilesTest { - private final ServiceProfiles model = new ServiceProfiles(); - - /** - * Model tests for ServiceProfiles - */ - @Test - public void testServiceProfiles() { - // TODO: test ServiceProfiles - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenActionRequestTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenActionRequestTest.java deleted file mode 100644 index 888e20b4..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenActionRequestTest.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ServiceTokenActions; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceTokenActionRequest - */ -public class ServiceTokenActionRequestTest { - private final ServiceTokenActionRequest model = new ServiceTokenActionRequest(); - - /** - * Model tests for ServiceTokenActionRequest - */ - @Test - public void testServiceTokenActionRequest() { - // TODO: test ServiceTokenActionRequest - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenActionsTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenActionsTest.java deleted file mode 100644 index c5ea1bf5..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenActionsTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceTokenActions - */ -public class ServiceTokenActionsTest { - /** - * Model tests for ServiceTokenActions - */ - @Test - public void testServiceTokenActions() { - // TODO: test ServiceTokenActions - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenChangeOperationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenChangeOperationTest.java deleted file mode 100644 index 39e8ca55..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenChangeOperationTest.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceTokenChangeOperation - */ -public class ServiceTokenChangeOperationTest { - private final ServiceTokenChangeOperation model = new ServiceTokenChangeOperation(); - - /** - * Model tests for ServiceTokenChangeOperation - */ - @Test - public void testServiceTokenChangeOperation() { - // TODO: test ServiceTokenChangeOperation - } - - /** - * Test the property 'op' - */ - @Test - public void opTest() { - // TODO: test op - } - - /** - * Test the property 'path' - */ - @Test - public void pathTest() { - // TODO: test path - } - - /** - * Test the property 'value' - */ - @Test - public void valueTest() { - // TODO: test value - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenConnectionTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenConnectionTest.java deleted file mode 100644 index 0afda3de..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenConnectionTest.java +++ /dev/null @@ -1,108 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ServiceTokenSide; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.ArrayList; -import java.util.List; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceTokenConnection - */ -public class ServiceTokenConnectionTest { - private final ServiceTokenConnection model = new ServiceTokenConnection(); - - /** - * Model tests for ServiceTokenConnection - */ - @Test - public void testServiceTokenConnection() { - // TODO: test ServiceTokenConnection - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'allowRemoteConnection' - */ - @Test - public void allowRemoteConnectionTest() { - // TODO: test allowRemoteConnection - } - - /** - * Test the property 'bandwidthLimit' - */ - @Test - public void bandwidthLimitTest() { - // TODO: test bandwidthLimit - } - - /** - * Test the property 'supportedBandwidths' - */ - @Test - public void supportedBandwidthsTest() { - // TODO: test supportedBandwidths - } - - /** - * Test the property 'aSide' - */ - @Test - public void aSideTest() { - // TODO: test aSide - } - - /** - * Test the property 'zSide' - */ - @Test - public void zSideTest() { - // TODO: test zSide - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenSearchExpressionTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenSearchExpressionTest.java deleted file mode 100644 index 5a6ef0b0..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenSearchExpressionTest.java +++ /dev/null @@ -1,74 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ServiceTokenSearchFieldName; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceTokenSearchExpression - */ -public class ServiceTokenSearchExpressionTest { - private final ServiceTokenSearchExpression model = new ServiceTokenSearchExpression(); - - /** - * Model tests for ServiceTokenSearchExpression - */ - @Test - public void testServiceTokenSearchExpression() { - // TODO: test ServiceTokenSearchExpression - } - - /** - * Test the property 'and' - */ - @Test - public void andTest() { - // TODO: test and - } - - /** - * Test the property 'property' - */ - @Test - public void propertyTest() { - // TODO: test property - } - - /** - * Test the property 'operator' - */ - @Test - public void operatorTest() { - // TODO: test operator - } - - /** - * Test the property 'values' - */ - @Test - public void valuesTest() { - // TODO: test values - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenSearchFieldNameTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenSearchFieldNameTest.java deleted file mode 100644 index 5080ce5a..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenSearchFieldNameTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceTokenSearchFieldName - */ -public class ServiceTokenSearchFieldNameTest { - /** - * Model tests for ServiceTokenSearchFieldName - */ - @Test - public void testServiceTokenSearchFieldName() { - // TODO: test ServiceTokenSearchFieldName - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenSearchRequestTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenSearchRequestTest.java deleted file mode 100644 index a375ff8d..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenSearchRequestTest.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.PaginationRequest; -import com.equinix.openapi.fabric.v4.model.ServiceTokenSearchExpression; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceTokenSearchRequest - */ -public class ServiceTokenSearchRequestTest { - private final ServiceTokenSearchRequest model = new ServiceTokenSearchRequest(); - - /** - * Model tests for ServiceTokenSearchRequest - */ - @Test - public void testServiceTokenSearchRequest() { - // TODO: test ServiceTokenSearchRequest - } - - /** - * Test the property 'filter' - */ - @Test - public void filterTest() { - // TODO: test filter - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenSideTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenSideTest.java deleted file mode 100644 index 8ee2c6cb..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenSideTest.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.AccessPointSelector; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceTokenSide - */ -public class ServiceTokenSideTest { - private final ServiceTokenSide model = new ServiceTokenSide(); - - /** - * Model tests for ServiceTokenSide - */ - @Test - public void testServiceTokenSide() { - // TODO: test ServiceTokenSide - } - - /** - * Test the property 'accessPointSelectors' - */ - @Test - public void accessPointSelectorsTest() { - // TODO: test accessPointSelectors - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenStateTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenStateTest.java deleted file mode 100644 index 88b8a72b..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenStateTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceTokenState - */ -public class ServiceTokenStateTest { - /** - * Model tests for ServiceTokenState - */ - @Test - public void testServiceTokenState() { - // TODO: test ServiceTokenState - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenTest.java deleted file mode 100644 index 62d3e09f..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenTest.java +++ /dev/null @@ -1,147 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Changelog; -import com.equinix.openapi.fabric.v4.model.Project; -import com.equinix.openapi.fabric.v4.model.ServiceTokenConnection; -import com.equinix.openapi.fabric.v4.model.ServiceTokenState; -import com.equinix.openapi.fabric.v4.model.ServiceTokenType; -import com.equinix.openapi.fabric.v4.model.SimplifiedAccount; -import com.equinix.openapi.fabric.v4.model.SimplifiedNotification; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.time.OffsetDateTime; -import java.util.ArrayList; -import java.util.List; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceToken - */ -public class ServiceTokenTest { - private final ServiceToken model = new ServiceToken(); - - /** - * Model tests for ServiceToken - */ - @Test - public void testServiceToken() { - // TODO: test ServiceToken - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'description' - */ - @Test - public void descriptionTest() { - // TODO: test description - } - - /** - * Test the property 'expirationDateTime' - */ - @Test - public void expirationDateTimeTest() { - // TODO: test expirationDateTime - } - - /** - * Test the property 'connection' - */ - @Test - public void connectionTest() { - // TODO: test connection - } - - /** - * Test the property 'state' - */ - @Test - public void stateTest() { - // TODO: test state - } - - /** - * Test the property 'notifications' - */ - @Test - public void notificationsTest() { - // TODO: test notifications - } - - /** - * Test the property 'account' - */ - @Test - public void accountTest() { - // TODO: test account - } - - /** - * Test the property 'changelog' - */ - @Test - public void changelogTest() { - // TODO: test changelog - } - - /** - * Test the property 'project' - */ - @Test - public void projectTest() { - // TODO: test project - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenTypeTest.java deleted file mode 100644 index 306b5985..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokenTypeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceTokenType - */ -public class ServiceTokenTypeTest { - /** - * Model tests for ServiceTokenType - */ - @Test - public void testServiceTokenType() { - // TODO: test ServiceTokenType - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokensTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokensTest.java deleted file mode 100644 index 06e18909..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ServiceTokensTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.equinix.openapi.fabric.v4.model.ServiceToken; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ServiceTokens - */ -public class ServiceTokensTest { - private final ServiceTokens model = new ServiceTokens(); - - /** - * Model tests for ServiceTokens - */ - @Test - public void testServiceTokens() { - // TODO: test ServiceTokens - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedAccountTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedAccountTest.java deleted file mode 100644 index 7eea4318..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedAccountTest.java +++ /dev/null @@ -1,135 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for SimplifiedAccount - */ -public class SimplifiedAccountTest { - private final SimplifiedAccount model = new SimplifiedAccount(); - - /** - * Model tests for SimplifiedAccount - */ - @Test - public void testSimplifiedAccount() { - // TODO: test SimplifiedAccount - } - - /** - * Test the property 'accountNumber' - */ - @Test - public void accountNumberTest() { - // TODO: test accountNumber - } - - /** - * Test the property 'accountName' - */ - @Test - public void accountNameTest() { - // TODO: test accountName - } - - /** - * Test the property 'orgId' - */ - @Test - public void orgIdTest() { - // TODO: test orgId - } - - /** - * Test the property 'organizationName' - */ - @Test - public void organizationNameTest() { - // TODO: test organizationName - } - - /** - * Test the property 'globalOrgId' - */ - @Test - public void globalOrgIdTest() { - // TODO: test globalOrgId - } - - /** - * Test the property 'globalOrganizationName' - */ - @Test - public void globalOrganizationNameTest() { - // TODO: test globalOrganizationName - } - - /** - * Test the property 'ucmId' - */ - @Test - public void ucmIdTest() { - // TODO: test ucmId - } - - /** - * Test the property 'globalCustId' - */ - @Test - public void globalCustIdTest() { - // TODO: test globalCustId - } - - /** - * Test the property 'resellerAccountNumber' - */ - @Test - public void resellerAccountNumberTest() { - // TODO: test resellerAccountNumber - } - - /** - * Test the property 'resellerAccountName' - */ - @Test - public void resellerAccountNameTest() { - // TODO: test resellerAccountName - } - - /** - * Test the property 'resellerUcmId' - */ - @Test - public void resellerUcmIdTest() { - // TODO: test resellerUcmId - } - - /** - * Test the property 'resellerOrgId' - */ - @Test - public void resellerOrgIdTest() { - // TODO: test resellerOrgId - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedLinkProtocolTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedLinkProtocolTest.java deleted file mode 100644 index 8ad10896..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedLinkProtocolTest.java +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.LinkProtocolType; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for SimplifiedLinkProtocol - */ -public class SimplifiedLinkProtocolTest { - private final SimplifiedLinkProtocol model = new SimplifiedLinkProtocol(); - - /** - * Model tests for SimplifiedLinkProtocol - */ - @Test - public void testSimplifiedLinkProtocol() { - // TODO: test SimplifiedLinkProtocol - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'vlanTag' - */ - @Test - public void vlanTagTest() { - // TODO: test vlanTag - } - - /** - * Test the property 'vlanSTag' - */ - @Test - public void vlanSTagTest() { - // TODO: test vlanSTag - } - - /** - * Test the property 'vlanCTag' - */ - @Test - public void vlanCTagTest() { - // TODO: test vlanCTag - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedLocationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedLocationTest.java deleted file mode 100644 index 047a32b8..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedLocationTest.java +++ /dev/null @@ -1,79 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for SimplifiedLocation - */ -public class SimplifiedLocationTest { - private final SimplifiedLocation model = new SimplifiedLocation(); - - /** - * Model tests for SimplifiedLocation - */ - @Test - public void testSimplifiedLocation() { - // TODO: test SimplifiedLocation - } - - /** - * Test the property 'region' - */ - @Test - public void regionTest() { - // TODO: test region - } - - /** - * Test the property 'metroName' - */ - @Test - public void metroNameTest() { - // TODO: test metroName - } - - /** - * Test the property 'metroCode' - */ - @Test - public void metroCodeTest() { - // TODO: test metroCode - } - - /** - * Test the property 'metroHref' - */ - @Test - public void metroHrefTest() { - // TODO: test metroHref - } - - /** - * Test the property 'ibx' - */ - @Test - public void ibxTest() { - // TODO: test ibx - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedLocationWithoutIBXTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedLocationWithoutIBXTest.java deleted file mode 100644 index 78194fda..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedLocationWithoutIBXTest.java +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for SimplifiedLocationWithoutIBX - */ -public class SimplifiedLocationWithoutIBXTest { - private final SimplifiedLocationWithoutIBX model = new SimplifiedLocationWithoutIBX(); - - /** - * Model tests for SimplifiedLocationWithoutIBX - */ - @Test - public void testSimplifiedLocationWithoutIBX() { - // TODO: test SimplifiedLocationWithoutIBX - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'region' - */ - @Test - public void regionTest() { - // TODO: test region - } - - /** - * Test the property 'metroName' - */ - @Test - public void metroNameTest() { - // TODO: test metroName - } - - /** - * Test the property 'metroCode' - */ - @Test - public void metroCodeTest() { - // TODO: test metroCode - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedMetadataEntityTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedMetadataEntityTest.java deleted file mode 100644 index ec4e7e8d..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedMetadataEntityTest.java +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for SimplifiedMetadataEntity - */ -public class SimplifiedMetadataEntityTest { - private final SimplifiedMetadataEntity model = new SimplifiedMetadataEntity(); - - /** - * Model tests for SimplifiedMetadataEntity - */ - @Test - public void testSimplifiedMetadataEntity() { - // TODO: test SimplifiedMetadataEntity - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedNetworkChangeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedNetworkChangeTest.java deleted file mode 100644 index 73337c45..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedNetworkChangeTest.java +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.NetworkChangeType; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for SimplifiedNetworkChange - */ -public class SimplifiedNetworkChangeTest { - private final SimplifiedNetworkChange model = new SimplifiedNetworkChange(); - - /** - * Model tests for SimplifiedNetworkChange - */ - @Test - public void testSimplifiedNetworkChange() { - // TODO: test SimplifiedNetworkChange - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedNetworkTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedNetworkTest.java deleted file mode 100644 index 2a490571..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedNetworkTest.java +++ /dev/null @@ -1,148 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Changelog; -import com.equinix.openapi.fabric.v4.model.Link; -import com.equinix.openapi.fabric.v4.model.NetworkOperation; -import com.equinix.openapi.fabric.v4.model.NetworkScope; -import com.equinix.openapi.fabric.v4.model.NetworkState; -import com.equinix.openapi.fabric.v4.model.NetworkType; -import com.equinix.openapi.fabric.v4.model.SimplifiedAccount; -import com.equinix.openapi.fabric.v4.model.SimplifiedLocation; -import com.equinix.openapi.fabric.v4.model.SimplifiedNetworkChange; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.ArrayList; -import java.util.List; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for SimplifiedNetwork - */ -public class SimplifiedNetworkTest { - private final SimplifiedNetwork model = new SimplifiedNetwork(); - - /** - * Model tests for SimplifiedNetwork - */ - @Test - public void testSimplifiedNetwork() { - // TODO: test SimplifiedNetwork - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'state' - */ - @Test - public void stateTest() { - // TODO: test state - } - - /** - * Test the property 'account' - */ - @Test - public void accountTest() { - // TODO: test account - } - - /** - * Test the property 'change' - */ - @Test - public void changeTest() { - // TODO: test change - } - - /** - * Test the property 'operation' - */ - @Test - public void operationTest() { - // TODO: test operation - } - - /** - * Test the property 'changeLog' - */ - @Test - public void changeLogTest() { - // TODO: test changeLog - } - - /** - * Test the property 'links' - */ - @Test - public void linksTest() { - // TODO: test links - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'scope' - */ - @Test - public void scopeTest() { - // TODO: test scope - } - - /** - * Test the property 'location' - */ - @Test - public void locationTest() { - // TODO: test location - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedNotificationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedNotificationTest.java deleted file mode 100644 index 8b46bb35..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedNotificationTest.java +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for SimplifiedNotification - */ -public class SimplifiedNotificationTest { - private final SimplifiedNotification model = new SimplifiedNotification(); - - /** - * Model tests for SimplifiedNotification - */ - @Test - public void testSimplifiedNotification() { - // TODO: test SimplifiedNotification - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'sendInterval' - */ - @Test - public void sendIntervalTest() { - // TODO: test sendInterval - } - - /** - * Test the property 'emails' - */ - @Test - public void emailsTest() { - // TODO: test emails - } - - /** - * Test the property 'registeredUsers' - */ - @Test - public void registeredUsersTest() { - // TODO: test registeredUsers - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedPortTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedPortTest.java deleted file mode 100644 index a438b5d4..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedPortTest.java +++ /dev/null @@ -1,290 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.PhysicalPort; -import com.equinix.openapi.fabric.v4.model.PortAdditionalInfo; -import com.equinix.openapi.fabric.v4.model.PortDemarcationPoint; -import com.equinix.openapi.fabric.v4.model.PortDevice; -import com.equinix.openapi.fabric.v4.model.PortEncapsulation; -import com.equinix.openapi.fabric.v4.model.PortInterface; -import com.equinix.openapi.fabric.v4.model.PortOperation; -import com.equinix.openapi.fabric.v4.model.PortRedundancy; -import com.equinix.openapi.fabric.v4.model.PortSettings; -import com.equinix.openapi.fabric.v4.model.PortState; -import com.equinix.openapi.fabric.v4.model.PortTether; -import com.equinix.openapi.fabric.v4.model.PortType; -import com.equinix.openapi.fabric.v4.model.Project; -import com.equinix.openapi.fabric.v4.model.SimplifiedAccount; -import com.equinix.openapi.fabric.v4.model.SimplifiedLocation; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.ArrayList; -import java.util.List; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for SimplifiedPort - */ -public class SimplifiedPortTest { - private final SimplifiedPort model = new SimplifiedPort(); - - /** - * Model tests for SimplifiedPort - */ - @Test - public void testSimplifiedPort() { - // TODO: test SimplifiedPort - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'id' - */ - @Test - public void idTest() { - // TODO: test id - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'description' - */ - @Test - public void descriptionTest() { - // TODO: test description - } - - /** - * Test the property 'physicalPortsSpeed' - */ - @Test - public void physicalPortsSpeedTest() { - // TODO: test physicalPortsSpeed - } - - /** - * Test the property 'connectionsCount' - */ - @Test - public void connectionsCountTest() { - // TODO: test connectionsCount - } - - /** - * Test the property 'project' - */ - @Test - public void projectTest() { - // TODO: test project - } - - /** - * Test the property 'state' - */ - @Test - public void stateTest() { - // TODO: test state - } - - /** - * Test the property 'cvpId' - */ - @Test - public void cvpIdTest() { - // TODO: test cvpId - } - - /** - * Test the property 'operation' - */ - @Test - public void operationTest() { - // TODO: test operation - } - - /** - * Test the property 'account' - */ - @Test - public void accountTest() { - // TODO: test account - } - - /** - * Test the property 'serviceType' - */ - @Test - public void serviceTypeTest() { - // TODO: test serviceType - } - - /** - * Test the property 'bandwidth' - */ - @Test - public void bandwidthTest() { - // TODO: test bandwidth - } - - /** - * Test the property 'availableBandwidth' - */ - @Test - public void availableBandwidthTest() { - // TODO: test availableBandwidth - } - - /** - * Test the property 'usedBandwidth' - */ - @Test - public void usedBandwidthTest() { - // TODO: test usedBandwidth - } - - /** - * Test the property 'location' - */ - @Test - public void locationTest() { - // TODO: test location - } - - /** - * Test the property 'device' - */ - @Test - public void deviceTest() { - // TODO: test device - } - - /** - * Test the property '_interface' - */ - @Test - public void _interfaceTest() { - // TODO: test _interface - } - - /** - * Test the property 'tether' - */ - @Test - public void tetherTest() { - // TODO: test tether - } - - /** - * Test the property 'demarcationPoint' - */ - @Test - public void demarcationPointTest() { - // TODO: test demarcationPoint - } - - /** - * Test the property 'redundancy' - */ - @Test - public void redundancyTest() { - // TODO: test redundancy - } - - /** - * Test the property 'encapsulation' - */ - @Test - public void encapsulationTest() { - // TODO: test encapsulation - } - - /** - * Test the property 'lagEnabled' - */ - @Test - public void lagEnabledTest() { - // TODO: test lagEnabled - } - - /** - * Test the property 'settings' - */ - @Test - public void settingsTest() { - // TODO: test settings - } - - /** - * Test the property 'physicalPortQuantity' - */ - @Test - public void physicalPortQuantityTest() { - // TODO: test physicalPortQuantity - } - - /** - * Test the property 'additionalInfo' - */ - @Test - public void additionalInfoTest() { - // TODO: test additionalInfo - } - - /** - * Test the property 'physicalPorts' - */ - @Test - public void physicalPortsTest() { - // TODO: test physicalPorts - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedServiceProfileTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedServiceProfileTest.java deleted file mode 100644 index e97d6ef4..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SimplifiedServiceProfileTest.java +++ /dev/null @@ -1,188 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.CustomField; -import com.equinix.openapi.fabric.v4.model.MarketingInfo; -import com.equinix.openapi.fabric.v4.model.ServiceMetro; -import com.equinix.openapi.fabric.v4.model.ServiceProfileAccessPointCOLO; -import com.equinix.openapi.fabric.v4.model.ServiceProfileAccessPointType; -import com.equinix.openapi.fabric.v4.model.ServiceProfileAccessPointVD; -import com.equinix.openapi.fabric.v4.model.ServiceProfileTypeEnum; -import com.equinix.openapi.fabric.v4.model.ServiceProfileVisibilityEnum; -import com.equinix.openapi.fabric.v4.model.SimplifiedNotification; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.ArrayList; -import java.util.List; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for SimplifiedServiceProfile - */ -public class SimplifiedServiceProfileTest { - private final SimplifiedServiceProfile model = new SimplifiedServiceProfile(); - - /** - * Model tests for SimplifiedServiceProfile - */ - @Test - public void testSimplifiedServiceProfile() { - // TODO: test SimplifiedServiceProfile - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'description' - */ - @Test - public void descriptionTest() { - // TODO: test description - } - - /** - * Test the property 'notifications' - */ - @Test - public void notificationsTest() { - // TODO: test notifications - } - - /** - * Test the property 'tags' - */ - @Test - public void tagsTest() { - // TODO: test tags - } - - /** - * Test the property 'visibility' - */ - @Test - public void visibilityTest() { - // TODO: test visibility - } - - /** - * Test the property 'allowedEmails' - */ - @Test - public void allowedEmailsTest() { - // TODO: test allowedEmails - } - - /** - * Test the property 'accessPointTypeConfigs' - */ - @Test - public void accessPointTypeConfigsTest() { - // TODO: test accessPointTypeConfigs - } - - /** - * Test the property 'customFields' - */ - @Test - public void customFieldsTest() { - // TODO: test customFields - } - - /** - * Test the property 'marketingInfo' - */ - @Test - public void marketingInfoTest() { - // TODO: test marketingInfo - } - - /** - * Test the property 'ports' - */ - @Test - public void portsTest() { - // TODO: test ports - } - - /** - * Test the property 'virtualDevices' - */ - @Test - public void virtualDevicesTest() { - // TODO: test virtualDevices - } - - /** - * Test the property 'metros' - */ - @Test - public void metrosTest() { - // TODO: test metros - } - - /** - * Test the property 'selfProfile' - */ - @Test - public void selfProfileTest() { - // TODO: test selfProfile - } - - /** - * Test the property 'projectId' - */ - @Test - public void projectIdTest() { - // TODO: test projectId - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SortByTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SortByTest.java deleted file mode 100644 index 51ac0f14..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SortByTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for SortBy - */ -public class SortByTest { - /** - * Model tests for SortBy - */ - @Test - public void testSortBy() { - // TODO: test SortBy - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SortCriteriaResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SortCriteriaResponseTest.java deleted file mode 100644 index f3a8a870..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SortCriteriaResponseTest.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.SortBy; -import com.equinix.openapi.fabric.v4.model.SortDirection; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for SortCriteriaResponse - */ -public class SortCriteriaResponseTest { - private final SortCriteriaResponse model = new SortCriteriaResponse(); - - /** - * Model tests for SortCriteriaResponse - */ - @Test - public void testSortCriteriaResponse() { - // TODO: test SortCriteriaResponse - } - - /** - * Test the property 'direction' - */ - @Test - public void directionTest() { - // TODO: test direction - } - - /** - * Test the property 'property' - */ - @Test - public void propertyTest() { - // TODO: test property - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SortCriteriaTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SortCriteriaTest.java deleted file mode 100644 index 02e57225..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SortCriteriaTest.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.SortBy; -import com.equinix.openapi.fabric.v4.model.SortDirection; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for SortCriteria - */ -public class SortCriteriaTest { - private final SortCriteria model = new SortCriteria(); - - /** - * Model tests for SortCriteria - */ - @Test - public void testSortCriteria() { - // TODO: test SortCriteria - } - - /** - * Test the property 'direction' - */ - @Test - public void directionTest() { - // TODO: test direction - } - - /** - * Test the property 'property' - */ - @Test - public void propertyTest() { - // TODO: test property - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SortDirectionTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SortDirectionTest.java deleted file mode 100644 index d8e2261c..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SortDirectionTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for SortDirection - */ -public class SortDirectionTest { - /** - * Model tests for SortDirection - */ - @Test - public void testSortDirection() { - // TODO: test SortDirection - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SortItemTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SortItemTest.java deleted file mode 100644 index 1a95c876..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SortItemTest.java +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for SortItem - */ -public class SortItemTest { - private final SortItem model = new SortItem(); - - /** - * Model tests for SortItem - */ - @Test - public void testSortItem() { - // TODO: test SortItem - } - - /** - * Test the property 'property' - */ - @Test - public void propertyTest() { - // TODO: test property - } - - /** - * Test the property 'direction' - */ - @Test - public void directionTest() { - // TODO: test direction - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SortTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SortTest.java deleted file mode 100644 index 62d7c252..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SortTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Sort - */ -public class SortTest { - /** - * Model tests for Sort - */ - @Test - public void testSort() { - // TODO: test Sort - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/StatisticsTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/StatisticsTest.java deleted file mode 100644 index edc2ea0b..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/StatisticsTest.java +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.BandwidthUtilization; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.time.OffsetDateTime; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for Statistics - */ -public class StatisticsTest { - private final Statistics model = new Statistics(); - - /** - * Model tests for Statistics - */ - @Test - public void testStatistics() { - // TODO: test Statistics - } - - /** - * Test the property 'startDateTime' - */ - @Test - public void startDateTimeTest() { - // TODO: test startDateTime - } - - /** - * Test the property 'endDateTime' - */ - @Test - public void endDateTimeTest() { - // TODO: test endDateTime - } - - /** - * Test the property 'viewPoint' - */ - @Test - public void viewPointTest() { - // TODO: test viewPoint - } - - /** - * Test the property 'bandwidthUtilization' - */ - @Test - public void bandwidthUtilizationTest() { - // TODO: test bandwidthUtilization - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SubInterfaceTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SubInterfaceTest.java deleted file mode 100644 index 8700dbd8..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/SubInterfaceTest.java +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for SubInterface - */ -public class SubInterfaceTest { - private final SubInterface model = new SubInterface(); - - /** - * Model tests for SubInterface - */ - @Test - public void testSubInterface() { - // TODO: test SubInterface - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'unit' - */ - @Test - public void unitTest() { - // TODO: test unit - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/TopUtilizedStatisticsTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/TopUtilizedStatisticsTest.java deleted file mode 100644 index dbf7a870..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/TopUtilizedStatisticsTest.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.Pagination; -import com.equinix.openapi.fabric.v4.model.Statistics; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for TopUtilizedStatistics - */ -public class TopUtilizedStatisticsTest { - private final TopUtilizedStatistics model = new TopUtilizedStatistics(); - - /** - * Model tests for TopUtilizedStatistics - */ - @Test - public void testTopUtilizedStatistics() { - // TODO: test TopUtilizedStatistics - } - - /** - * Test the property 'pagination' - */ - @Test - public void paginationTest() { - // TODO: test pagination - } - - /** - * Test the property 'data' - */ - @Test - public void dataTest() { - // TODO: test data - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ValidateRequestFilterAndTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ValidateRequestFilterAndTest.java deleted file mode 100644 index 1346285d..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ValidateRequestFilterAndTest.java +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ValidateRequestFilterAnd - */ -public class ValidateRequestFilterAndTest { - private final ValidateRequestFilterAnd model = new ValidateRequestFilterAnd(); - - /** - * Model tests for ValidateRequestFilterAnd - */ - @Test - public void testValidateRequestFilterAnd() { - // TODO: test ValidateRequestFilterAnd - } - - /** - * Test the property 'property' - */ - @Test - public void propertyTest() { - // TODO: test property - } - - /** - * Test the property 'operator' - */ - @Test - public void operatorTest() { - // TODO: test operator - } - - /** - * Test the property 'values' - */ - @Test - public void valuesTest() { - // TODO: test values - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ValidateRequestFilterTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ValidateRequestFilterTest.java deleted file mode 100644 index 38ab528e..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ValidateRequestFilterTest.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ValidateRequestFilterAnd; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ValidateRequestFilter - */ -public class ValidateRequestFilterTest { - private final ValidateRequestFilter model = new ValidateRequestFilter(); - - /** - * Model tests for ValidateRequestFilter - */ - @Test - public void testValidateRequestFilter() { - // TODO: test ValidateRequestFilter - } - - /** - * Test the property 'and' - */ - @Test - public void andTest() { - // TODO: test and - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ValidateRequestTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ValidateRequestTest.java deleted file mode 100644 index d1d1f2ef..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ValidateRequestTest.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ValidateRequestFilter; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ValidateRequest - */ -public class ValidateRequestTest { - private final ValidateRequest model = new ValidateRequest(); - - /** - * Model tests for ValidateRequest - */ - @Test - public void testValidateRequest() { - // TODO: test ValidateRequest - } - - /** - * Test the property 'filter' - */ - @Test - public void filterTest() { - // TODO: test filter - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ValidateSubnetResponseTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ValidateSubnetResponseTest.java deleted file mode 100644 index 6920e80a..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ValidateSubnetResponseTest.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ConnectionSideAdditionalInfo; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ValidateSubnetResponse - */ -public class ValidateSubnetResponseTest { - private final ValidateSubnetResponse model = new ValidateSubnetResponse(); - - /** - * Model tests for ValidateSubnetResponse - */ - @Test - public void testValidateSubnetResponse() { - // TODO: test ValidateSubnetResponse - } - - /** - * Test the property 'additionalInfo' - */ - @Test - public void additionalInfoTest() { - // TODO: test additionalInfo - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ViewPointTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ViewPointTest.java deleted file mode 100644 index aba04101..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/ViewPointTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for ViewPoint - */ -public class ViewPointTest { - /** - * Model tests for ViewPoint - */ - @Test - public void testViewPoint() { - // TODO: test ViewPoint - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionBridgePackageCodeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionBridgePackageCodeTest.java deleted file mode 100644 index 532f5b67..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionBridgePackageCodeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for VirtualConnectionBridgePackageCode - */ -public class VirtualConnectionBridgePackageCodeTest { - /** - * Model tests for VirtualConnectionBridgePackageCode - */ - @Test - public void testVirtualConnectionBridgePackageCode() { - // TODO: test VirtualConnectionBridgePackageCode - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceASideAccessPointPortSettingsTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceASideAccessPointPortSettingsTest.java deleted file mode 100644 index 8862e757..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceASideAccessPointPortSettingsTest.java +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for VirtualConnectionPriceASideAccessPointPortSettings - */ -public class VirtualConnectionPriceASideAccessPointPortSettingsTest { - private final VirtualConnectionPriceASideAccessPointPortSettings model = new VirtualConnectionPriceASideAccessPointPortSettings(); - - /** - * Model tests for VirtualConnectionPriceASideAccessPointPortSettings - */ - @Test - public void testVirtualConnectionPriceASideAccessPointPortSettings() { - // TODO: test VirtualConnectionPriceASideAccessPointPortSettings - } - - /** - * Test the property 'buyout' - */ - @Test - public void buyoutTest() { - // TODO: test buyout - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceASideAccessPointPortTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceASideAccessPointPortTest.java deleted file mode 100644 index e0b4044d..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceASideAccessPointPortTest.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.VirtualConnectionPriceASideAccessPointPortSettings; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for VirtualConnectionPriceASideAccessPointPort - */ -public class VirtualConnectionPriceASideAccessPointPortTest { - private final VirtualConnectionPriceASideAccessPointPort model = new VirtualConnectionPriceASideAccessPointPort(); - - /** - * Model tests for VirtualConnectionPriceASideAccessPointPort - */ - @Test - public void testVirtualConnectionPriceASideAccessPointPort() { - // TODO: test VirtualConnectionPriceASideAccessPointPort - } - - /** - * Test the property 'settings' - */ - @Test - public void settingsTest() { - // TODO: test settings - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceASideAccessPointTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceASideAccessPointTest.java deleted file mode 100644 index 586b2eb0..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceASideAccessPointTest.java +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.PriceLocation; -import com.equinix.openapi.fabric.v4.model.VirtualConnectionPriceASideAccessPointPort; -import com.equinix.openapi.fabric.v4.model.VirtualConnectionPriceAccessPointType; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for VirtualConnectionPriceASideAccessPoint - */ -public class VirtualConnectionPriceASideAccessPointTest { - private final VirtualConnectionPriceASideAccessPoint model = new VirtualConnectionPriceASideAccessPoint(); - - /** - * Model tests for VirtualConnectionPriceASideAccessPoint - */ - @Test - public void testVirtualConnectionPriceASideAccessPoint() { - // TODO: test VirtualConnectionPriceASideAccessPoint - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'location' - */ - @Test - public void locationTest() { - // TODO: test location - } - - /** - * Test the property 'port' - */ - @Test - public void portTest() { - // TODO: test port - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceASideTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceASideTest.java deleted file mode 100644 index 01ef75f3..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceASideTest.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.VirtualConnectionPriceASideAccessPoint; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for VirtualConnectionPriceASide - */ -public class VirtualConnectionPriceASideTest { - private final VirtualConnectionPriceASide model = new VirtualConnectionPriceASide(); - - /** - * Model tests for VirtualConnectionPriceASide - */ - @Test - public void testVirtualConnectionPriceASide() { - // TODO: test VirtualConnectionPriceASide - } - - /** - * Test the property 'accessPoint' - */ - @Test - public void accessPointTest() { - // TODO: test accessPoint - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceAccessPointTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceAccessPointTypeTest.java deleted file mode 100644 index 1e28c7f7..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceAccessPointTypeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for VirtualConnectionPriceAccessPointType - */ -public class VirtualConnectionPriceAccessPointTypeTest { - /** - * Model tests for VirtualConnectionPriceAccessPointType - */ - @Test - public void testVirtualConnectionPriceAccessPointType() { - // TODO: test VirtualConnectionPriceAccessPointType - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceConnectionTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceConnectionTypeTest.java deleted file mode 100644 index c175bd47..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceConnectionTypeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for VirtualConnectionPriceConnectionType - */ -public class VirtualConnectionPriceConnectionTypeTest { - /** - * Model tests for VirtualConnectionPriceConnectionType - */ - @Test - public void testVirtualConnectionPriceConnectionType() { - // TODO: test VirtualConnectionPriceConnectionType - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceTest.java deleted file mode 100644 index adddf600..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceTest.java +++ /dev/null @@ -1,83 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.VirtualConnectionPriceASide; -import com.equinix.openapi.fabric.v4.model.VirtualConnectionPriceConnectionType; -import com.equinix.openapi.fabric.v4.model.VirtualConnectionPriceZSide; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for VirtualConnectionPrice - */ -public class VirtualConnectionPriceTest { - private final VirtualConnectionPrice model = new VirtualConnectionPrice(); - - /** - * Model tests for VirtualConnectionPrice - */ - @Test - public void testVirtualConnectionPrice() { - // TODO: test VirtualConnectionPrice - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'bandwidth' - */ - @Test - public void bandwidthTest() { - // TODO: test bandwidth - } - - /** - * Test the property 'aSide' - */ - @Test - public void aSideTest() { - // TODO: test aSide - } - - /** - * Test the property 'zSide' - */ - @Test - public void zSideTest() { - // TODO: test zSide - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceZSideAccessPointBridgePackageTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceZSideAccessPointBridgePackageTest.java deleted file mode 100644 index ca1cac20..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceZSideAccessPointBridgePackageTest.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.VirtualConnectionBridgePackageCode; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for VirtualConnectionPriceZSideAccessPointBridgePackage - */ -public class VirtualConnectionPriceZSideAccessPointBridgePackageTest { - private final VirtualConnectionPriceZSideAccessPointBridgePackage model = new VirtualConnectionPriceZSideAccessPointBridgePackage(); - - /** - * Model tests for VirtualConnectionPriceZSideAccessPointBridgePackage - */ - @Test - public void testVirtualConnectionPriceZSideAccessPointBridgePackage() { - // TODO: test VirtualConnectionPriceZSideAccessPointBridgePackage - } - - /** - * Test the property 'code' - */ - @Test - public void codeTest() { - // TODO: test code - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceZSideAccessPointBridgeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceZSideAccessPointBridgeTest.java deleted file mode 100644 index 28260e9b..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceZSideAccessPointBridgeTest.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.VirtualConnectionPriceZSideAccessPointBridgePackage; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for VirtualConnectionPriceZSideAccessPointBridge - */ -public class VirtualConnectionPriceZSideAccessPointBridgeTest { - private final VirtualConnectionPriceZSideAccessPointBridge model = new VirtualConnectionPriceZSideAccessPointBridge(); - - /** - * Model tests for VirtualConnectionPriceZSideAccessPointBridge - */ - @Test - public void testVirtualConnectionPriceZSideAccessPointBridge() { - // TODO: test VirtualConnectionPriceZSideAccessPointBridge - } - - /** - * Test the property '_package' - */ - @Test - public void _packageTest() { - // TODO: test _package - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceZSideAccessPointProfileTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceZSideAccessPointProfileTest.java deleted file mode 100644 index b45fcd74..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceZSideAccessPointProfileTest.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for VirtualConnectionPriceZSideAccessPointProfile - */ -public class VirtualConnectionPriceZSideAccessPointProfileTest { - private final VirtualConnectionPriceZSideAccessPointProfile model = new VirtualConnectionPriceZSideAccessPointProfile(); - - /** - * Model tests for VirtualConnectionPriceZSideAccessPointProfile - */ - @Test - public void testVirtualConnectionPriceZSideAccessPointProfile() { - // TODO: test VirtualConnectionPriceZSideAccessPointProfile - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceZSideAccessPointTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceZSideAccessPointTest.java deleted file mode 100644 index 91dc4b6a..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceZSideAccessPointTest.java +++ /dev/null @@ -1,93 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.PriceLocation; -import com.equinix.openapi.fabric.v4.model.VirtualConnectionPriceASideAccessPointPort; -import com.equinix.openapi.fabric.v4.model.VirtualConnectionPriceAccessPointType; -import com.equinix.openapi.fabric.v4.model.VirtualConnectionPriceZSideAccessPointBridge; -import com.equinix.openapi.fabric.v4.model.VirtualConnectionPriceZSideAccessPointProfile; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for VirtualConnectionPriceZSideAccessPoint - */ -public class VirtualConnectionPriceZSideAccessPointTest { - private final VirtualConnectionPriceZSideAccessPoint model = new VirtualConnectionPriceZSideAccessPoint(); - - /** - * Model tests for VirtualConnectionPriceZSideAccessPoint - */ - @Test - public void testVirtualConnectionPriceZSideAccessPoint() { - // TODO: test VirtualConnectionPriceZSideAccessPoint - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'location' - */ - @Test - public void locationTest() { - // TODO: test location - } - - /** - * Test the property 'port' - */ - @Test - public void portTest() { - // TODO: test port - } - - /** - * Test the property 'profile' - */ - @Test - public void profileTest() { - // TODO: test profile - } - - /** - * Test the property 'bridge' - */ - @Test - public void bridgeTest() { - // TODO: test bridge - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceZSideTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceZSideTest.java deleted file mode 100644 index c639f528..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualConnectionPriceZSideTest.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.VirtualConnectionPriceZSideAccessPoint; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for VirtualConnectionPriceZSide - */ -public class VirtualConnectionPriceZSideTest { - private final VirtualConnectionPriceZSide model = new VirtualConnectionPriceZSide(); - - /** - * Model tests for VirtualConnectionPriceZSide - */ - @Test - public void testVirtualConnectionPriceZSide() { - // TODO: test VirtualConnectionPriceZSide - } - - /** - * Test the property 'accessPoint' - */ - @Test - public void accessPointTest() { - // TODO: test accessPoint - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualDeviceTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualDeviceTest.java deleted file mode 100644 index eb22b377..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualDeviceTest.java +++ /dev/null @@ -1,82 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.SimplifiedAccount; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for VirtualDevice - */ -public class VirtualDeviceTest { - private final VirtualDevice model = new VirtualDevice(); - - /** - * Model tests for VirtualDevice - */ - @Test - public void testVirtualDevice() { - // TODO: test VirtualDevice - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'name' - */ - @Test - public void nameTest() { - // TODO: test name - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'account' - */ - @Test - public void accountTest() { - // TODO: test account - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualNetworkTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualNetworkTest.java deleted file mode 100644 index 91e1aa76..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualNetworkTest.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.net.URI; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for VirtualNetwork - */ -public class VirtualNetworkTest { - private final VirtualNetwork model = new VirtualNetwork(); - - /** - * Model tests for VirtualNetwork - */ - @Test - public void testVirtualNetwork() { - // TODO: test VirtualNetwork - } - - /** - * Test the property 'href' - */ - @Test - public void hrefTest() { - // TODO: test href - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualPortConfigurationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualPortConfigurationTest.java deleted file mode 100644 index 846a85a5..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualPortConfigurationTest.java +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for VirtualPortConfiguration - */ -public class VirtualPortConfigurationTest { - private final VirtualPortConfiguration model = new VirtualPortConfiguration(); - - /** - * Model tests for VirtualPortConfiguration - */ - @Test - public void testVirtualPortConfiguration() { - // TODO: test VirtualPortConfiguration - } - - /** - * Test the property 'buyout' - */ - @Test - public void buyoutTest() { - // TODO: test buyout - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualPortLocationTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualPortLocationTest.java deleted file mode 100644 index 7e1dc29e..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualPortLocationTest.java +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for VirtualPortLocation - */ -public class VirtualPortLocationTest { - private final VirtualPortLocation model = new VirtualPortLocation(); - - /** - * Model tests for VirtualPortLocation - */ - @Test - public void testVirtualPortLocation() { - // TODO: test VirtualPortLocation - } - - /** - * Test the property 'ibx' - */ - @Test - public void ibxTest() { - // TODO: test ibx - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualPortPriceTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualPortPriceTest.java deleted file mode 100644 index 4b998bc4..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualPortPriceTest.java +++ /dev/null @@ -1,127 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.equinix.openapi.fabric.v4.model.ConnectivitySource; -import com.equinix.openapi.fabric.v4.model.LinkAggregationGroup; -import com.equinix.openapi.fabric.v4.model.VirtualPortConfiguration; -import com.equinix.openapi.fabric.v4.model.VirtualPortLocation; -import com.equinix.openapi.fabric.v4.model.VirtualPortRedundancy; -import com.equinix.openapi.fabric.v4.model.VirtualPortServiceType; -import com.equinix.openapi.fabric.v4.model.VirtualPortType; -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import java.util.UUID; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for VirtualPortPrice - */ -public class VirtualPortPriceTest { - private final VirtualPortPrice model = new VirtualPortPrice(); - - /** - * Model tests for VirtualPortPrice - */ - @Test - public void testVirtualPortPrice() { - // TODO: test VirtualPortPrice - } - - /** - * Test the property 'uuid' - */ - @Test - public void uuidTest() { - // TODO: test uuid - } - - /** - * Test the property 'type' - */ - @Test - public void typeTest() { - // TODO: test type - } - - /** - * Test the property 'location' - */ - @Test - public void locationTest() { - // TODO: test location - } - - /** - * Test the property 'lag' - */ - @Test - public void lagTest() { - // TODO: test lag - } - - /** - * Test the property 'physicalPortsQuantity' - */ - @Test - public void physicalPortsQuantityTest() { - // TODO: test physicalPortsQuantity - } - - /** - * Test the property 'bandwidth' - */ - @Test - public void bandwidthTest() { - // TODO: test bandwidth - } - - /** - * Test the property 'redundancy' - */ - @Test - public void redundancyTest() { - // TODO: test redundancy - } - - /** - * Test the property 'connectivitySource' - */ - @Test - public void connectivitySourceTest() { - // TODO: test connectivitySource - } - - /** - * Test the property 'serviceType' - */ - @Test - public void serviceTypeTest() { - // TODO: test serviceType - } - - /** - * Test the property 'settings' - */ - @Test - public void settingsTest() { - // TODO: test settings - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualPortRedundancyTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualPortRedundancyTest.java deleted file mode 100644 index 11c7c5fd..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualPortRedundancyTest.java +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.TypeAdapter; -import com.google.gson.annotations.JsonAdapter; -import com.google.gson.annotations.SerializedName; -import com.google.gson.stream.JsonReader; -import com.google.gson.stream.JsonWriter; -import java.io.IOException; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for VirtualPortRedundancy - */ -public class VirtualPortRedundancyTest { - private final VirtualPortRedundancy model = new VirtualPortRedundancy(); - - /** - * Model tests for VirtualPortRedundancy - */ - @Test - public void testVirtualPortRedundancy() { - // TODO: test VirtualPortRedundancy - } - - /** - * Test the property 'enabled' - */ - @Test - public void enabledTest() { - // TODO: test enabled - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualPortServiceTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualPortServiceTypeTest.java deleted file mode 100644 index b48306a4..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualPortServiceTypeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for VirtualPortServiceType - */ -public class VirtualPortServiceTypeTest { - /** - * Model tests for VirtualPortServiceType - */ - @Test - public void testVirtualPortServiceType() { - // TODO: test VirtualPortServiceType - } - -} diff --git a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualPortTypeTest.java b/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualPortTypeTest.java deleted file mode 100644 index fb39c201..00000000 --- a/equinix-openapi-fabric/src/test/java/com/equinix/openapi/fabric/v4/model/VirtualPortTypeTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Equinix Fabric API v4 - * Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to:
1. Cloud Service Providers - Clouds, network and other service providers.
2. Enterprises - Other Equinix customers, vendors and partners.
3. Myself - Another customer instance deployed at Equinix.
- * - * Contact: api-support@equinix.com - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -package com.equinix.openapi.fabric.v4.model; - -import com.google.gson.annotations.SerializedName; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; - - -/** - * Model tests for VirtualPortType - */ -public class VirtualPortTypeTest { - /** - * Model tests for VirtualPortType - */ - @Test - public void testVirtualPortType() { - // TODO: test VirtualPortType - } - -} diff --git a/v4/api/AbstractTest.java b/v4/api/AbstractTest.java index 1be51b99..1e36503c 100644 --- a/v4/api/AbstractTest.java +++ b/v4/api/AbstractTest.java @@ -4,9 +4,9 @@ import com.equinix.openapi.fabric.ApiException; import com.equinix.openapi.fabric.Configuration; import com.equinix.openapi.fabric.Pair; -import com.equinix.openapi.fabric.v4.api.dto.PortDto; import com.equinix.openapi.fabric.v4.api.dto.TokenRequestDto; import com.equinix.openapi.fabric.v4.api.dto.TokenResponseDto; +import com.equinix.openapi.fabric.v4.api.dto.port.PortDto; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.ObjectWriter; @@ -14,7 +14,6 @@ import java.io.IOException; import java.lang.reflect.Type; -import java.nio.file.Paths; import java.util.ArrayList; import java.util.HashMap; import java.util.List; @@ -61,12 +60,11 @@ public ApiClient generateToken() { return apiClient; } - protected PortDto getPort(com.equinix.openapi.fabric.v4.api.AbstractTest.JsonFiles jsonFile) { + protected PortDto getPort(EnvVariable envVariable) { ObjectMapper mapper = new ObjectMapper(); - - String path = System.getProperty("user.dir") + "/src/test/java/com/equinix/openapi/fabric/v4/api/json/" + jsonFile.value; + String json = System.getenv(envVariable.value); try { - return mapper.readValue(Paths.get(path).toFile(), PortDto.class); + return mapper.readValue(json, PortDto.class); } catch (IOException e) { throw new RuntimeException(e); } @@ -83,13 +81,12 @@ protected void printJson(Object object) { } } - public enum JsonFiles { - PORT_2_PRIVATE_SERVICE_PROFILE_CONNECTION("port-2-private-service-profile-connection.json"), - PORT_2_PUBLIC_SERVICE_PROFILE_CONNECTION("port-2-public-service-profile-connection.json"); + public enum EnvVariable { + QINQ_PORT("TEST_DATA_UAT_QINQ_PORT"); private String value; - JsonFiles(String value) { + EnvVariable(String value) { this.value = value; } diff --git a/v4/api/CloudRoutersApiTest.java b/v4/api/CloudRoutersApiTest.java index 779c9bf4..2ceb1f1c 100644 --- a/v4/api/CloudRoutersApiTest.java +++ b/v4/api/CloudRoutersApiTest.java @@ -9,51 +9,26 @@ * Do not edit the class manually. */ - package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; -import com.equinix.openapi.fabric.v4.model.CloudRouter; -import com.equinix.openapi.fabric.v4.model.CloudRouterActionRequest; -import com.equinix.openapi.fabric.v4.model.CloudRouterActionResponse; -import com.equinix.openapi.fabric.v4.model.CloudRouterActionState; -import com.equinix.openapi.fabric.v4.model.CloudRouterChangeOperation; -import com.equinix.openapi.fabric.v4.model.CloudRouterPackage; -import com.equinix.openapi.fabric.v4.model.CloudRouterPostRequest; -import com.equinix.openapi.fabric.v4.model.CloudRouterSearchRequest; -import com.equinix.openapi.fabric.v4.model.Error; -import com.equinix.openapi.fabric.v4.model.PackageResponse; -import com.equinix.openapi.fabric.v4.model.RouteTableEntrySearchRequest; -import com.equinix.openapi.fabric.v4.model.RouteTableEntrySearchResponse; -import com.equinix.openapi.fabric.v4.model.RouterPackageCode; -import com.equinix.openapi.fabric.v4.model.SearchResponse; -import java.util.UUID; -import org.junit.Test; -import org.junit.Ignore; -import org.junit.Assert; - -import java.time.LocalDate; -import java.time.OffsetDateTime; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.Disabled; /** * API tests for CloudRoutersApi */ -@Ignore +@Disabled public class CloudRoutersApiTest extends AbstractTest { private final CloudRoutersApi api = new CloudRoutersApi(generateToken()); /** * Create Routers - * + *

* This API provides capability to create user's Cloud Routers * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void createCloudRouterTest() throws ApiException { @@ -64,13 +39,13 @@ public void createCloudRouterTest() throws ApiException { // TODO: test validations } + /** * Route table actions - * + *

* This API provides capability to refresh route table and bgp session summary information * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void createCloudRouterActionTest() throws ApiException { @@ -83,13 +58,13 @@ public void createCloudRouterActionTest() throws ApiException { // TODO: test validations } + /** * Delete Routers - * + *

* This API provides capability to delete user's Cloud Routers * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void deleteCloudRouterByUuidTest() throws ApiException { @@ -100,13 +75,13 @@ public void deleteCloudRouterByUuidTest() throws ApiException { // TODO: test validations } + /** * Get actions - * + *

* This API provides capability to fetch action status * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getCloudRouterActionsTest() throws ApiException { @@ -119,13 +94,13 @@ public void getCloudRouterActionsTest() throws ApiException { // TODO: test validations } + /** * Get Routers - * + *

* This API provides capability to retrieve user's Cloud Routers * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getCloudRouterByUuidTest() throws ApiException { @@ -136,13 +111,13 @@ public void getCloudRouterByUuidTest() throws ApiException { // TODO: test validations } + /** * Get Package Details - * + *

* This API provides capability to retrieve user's Cloud Routers Package Details * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getCloudRouterPackageByCodeTest() throws ApiException { @@ -153,13 +128,13 @@ public void getCloudRouterPackageByCodeTest() throws ApiException { // TODO: test validations } + /** * List Packages - * + *

* This API provides capability to retrieve user's Cloud Routers Packages * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getCloudRouterPackagesTest() throws ApiException { @@ -172,13 +147,13 @@ public void getCloudRouterPackagesTest() throws ApiException { // TODO: test validations } + /** * Search Route Table - * + *

* The API provides capability to get list of user's Fabric Cloud Router route table entries using search criteria, including optional filtering, pagination and sorting * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void searchCloudRouterRoutesTest() throws ApiException { @@ -191,13 +166,13 @@ public void searchCloudRouterRoutesTest() throws ApiException { // TODO: test validations } + /** * Search Routers - * + *

* The API provides capability to get list of user's Cloud Routers using search criteria, including optional filtering, pagination and sorting * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void searchCloudRoutersTest() throws ApiException { @@ -208,13 +183,13 @@ public void searchCloudRoutersTest() throws ApiException { // TODO: test validations } + /** * Update Routers - * + *

* This API provides capability to update user's Cloud Routers * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void updateCloudRouterByUuidTest() throws ApiException { diff --git a/v4/api/ConnectionsApiTest.java b/v4/api/ConnectionsApiTest.java index f74c1b73..776effbb 100644 --- a/v4/api/ConnectionsApiTest.java +++ b/v4/api/ConnectionsApiTest.java @@ -9,47 +9,26 @@ * Do not edit the class manually. */ - package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; -import com.equinix.openapi.fabric.v4.model.Connection; -import com.equinix.openapi.fabric.v4.model.ConnectionAction; -import com.equinix.openapi.fabric.v4.model.ConnectionActionRequest; -import com.equinix.openapi.fabric.v4.model.ConnectionChangeOperation; -import com.equinix.openapi.fabric.v4.model.ConnectionDirection; -import com.equinix.openapi.fabric.v4.model.ConnectionPostRequest; -import com.equinix.openapi.fabric.v4.model.ConnectionResponse; -import com.equinix.openapi.fabric.v4.model.ConnectionSearchResponse; -import com.equinix.openapi.fabric.v4.model.Error; -import com.equinix.openapi.fabric.v4.model.SearchRequest; -import com.equinix.openapi.fabric.v4.model.ValidateRequest; -import org.junit.Test; -import org.junit.Ignore; -import org.junit.Assert; - -import java.time.LocalDate; -import java.time.OffsetDateTime; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.Disabled; /** * API tests for ConnectionsApi */ -@Ignore +@Disabled public class ConnectionsApiTest extends AbstractTest { private final ConnectionsApi api = new ConnectionsApi(generateToken()); /** * Create Connection - * + *

* This API provides capability to create user's virtual connection * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void createConnectionTest() throws ApiException { @@ -60,13 +39,13 @@ public void createConnectionTest() throws ApiException { // TODO: test validations } + /** * Connection Actions - * + *

* This API provides capability to accept/reject user's virtual connection * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void createConnectionActionTest() throws ApiException { @@ -79,13 +58,13 @@ public void createConnectionActionTest() throws ApiException { // TODO: test validations } + /** * Delete by ID - * + *

* Delete Connection by ID * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void deleteConnectionByUuidTest() throws ApiException { @@ -96,13 +75,13 @@ public void deleteConnectionByUuidTest() throws ApiException { // TODO: test validations } + /** * Get Connection by ID - * + *

* The API provides capability to get user's virtual connection details (Service Tokens, Access Points, Link Protocols, etc) by it's connection ID (UUID) * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getConnectionByUuidTest() throws ApiException { @@ -115,13 +94,13 @@ public void getConnectionByUuidTest() throws ApiException { // TODO: test validations } + /** * Search connections - * + *

* The API provides capability to get list of user's virtual connections using search criteria, including optional filtering, pagination and sorting * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void searchConnectionsTest() throws ApiException { @@ -132,13 +111,13 @@ public void searchConnectionsTest() throws ApiException { // TODO: test validations } + /** * Update by ID - * + *

* Update Connection by ID * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void updateConnectionByUuidTest() throws ApiException { @@ -151,13 +130,13 @@ public void updateConnectionByUuidTest() throws ApiException { // TODO: test validations } + /** * Validate Connection - * + *

* This API provides capability to validate by auth key * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void validateConnectionsTest() throws ApiException { diff --git a/v4/api/HealthApiTest.java b/v4/api/HealthApiTest.java index 3e025478..944a78b9 100644 --- a/v4/api/HealthApiTest.java +++ b/v4/api/HealthApiTest.java @@ -14,9 +14,8 @@ import com.equinix.openapi.fabric.ApiException; import com.equinix.openapi.fabric.v4.model.HealthResponse; -import org.junit.Test; -import org.junit.Ignore; -import org.junit.Assert; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.Disabled; import java.time.LocalDate; import java.time.OffsetDateTime; @@ -28,6 +27,7 @@ /** * API tests for HealthApi */ +@Disabled public class HealthApiTest { private final HealthApi api = new HealthApi(); diff --git a/v4/api/MetrosApiTest.java b/v4/api/MetrosApiTest.java index 7841480b..7d0899a3 100644 --- a/v4/api/MetrosApiTest.java +++ b/v4/api/MetrosApiTest.java @@ -15,10 +15,11 @@ import com.equinix.openapi.fabric.v4.model.Metro; import com.equinix.openapi.fabric.v4.model.MetroResponse; import com.equinix.openapi.fabric.v4.model.Presence; -import org.junit.Test; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertTrue; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; /** * API tests for MetrosApi diff --git a/v4/api/NetworksApiTest.java b/v4/api/NetworksApiTest.java index e14955b8..3ac6cac9 100644 --- a/v4/api/NetworksApiTest.java +++ b/v4/api/NetworksApiTest.java @@ -9,46 +9,26 @@ * Do not edit the class manually. */ - package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; -import com.equinix.openapi.fabric.v4.model.Error; -import com.equinix.openapi.fabric.v4.model.Network; -import com.equinix.openapi.fabric.v4.model.NetworkChange; -import com.equinix.openapi.fabric.v4.model.NetworkChangeOperation; -import com.equinix.openapi.fabric.v4.model.NetworkChangeResponse; -import com.equinix.openapi.fabric.v4.model.NetworkConnections; -import com.equinix.openapi.fabric.v4.model.NetworkPostRequest; -import com.equinix.openapi.fabric.v4.model.NetworkSearchRequest; -import com.equinix.openapi.fabric.v4.model.NetworkSearchResponse; -import java.util.UUID; -import org.junit.Test; -import org.junit.Ignore; -import org.junit.Assert; - -import java.time.LocalDate; -import java.time.OffsetDateTime; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.Disabled; /** * API tests for NetworksApi */ -@Ignore +@Disabled public class NetworksApiTest extends AbstractTest { private final NetworksApi api = new NetworksApi(generateToken()); /** * Create Network - * + *

* This API provides capability to create user's Fabric Network * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void createNetworkTest() throws ApiException { @@ -59,13 +39,13 @@ public void createNetworkTest() throws ApiException { // TODO: test validations } + /** * Delete Network By ID - * + *

* This API provides capability to delete user's Fabric Network * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void deleteNetworkByUuidTest() throws ApiException { @@ -76,13 +56,13 @@ public void deleteNetworkByUuidTest() throws ApiException { // TODO: test validations } + /** * Get Connections - * + *

* The API provides capability to get list of user's Fabric Network connections * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getConnectionsByNetworkUuidTest() throws ApiException { @@ -93,13 +73,13 @@ public void getConnectionsByNetworkUuidTest() throws ApiException { // TODO: test validations } + /** * Get Network By ID - * + *

* This API provides capability to retrieve user's Fabric Network * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getNetworkByUuidTest() throws ApiException { @@ -110,13 +90,13 @@ public void getNetworkByUuidTest() throws ApiException { // TODO: test validations } + /** * Get Change By ID - * + *

* This API provides capability to retrieve user's Fabric Network Change * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getNetworkChangeByUuidTest() throws ApiException { @@ -129,13 +109,13 @@ public void getNetworkChangeByUuidTest() throws ApiException { // TODO: test validations } + /** * Get Network Changes - * + *

* The API provides capability to get list of user's Fabric Network changes * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getNetworkChangesTest() throws ApiException { @@ -146,13 +126,13 @@ public void getNetworkChangesTest() throws ApiException { // TODO: test validations } + /** * Search Network - * + *

* The API provides capability to get list of user's Fabric Network using search criteria, including optional filtering, pagination and sorting * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void searchNetworksTest() throws ApiException { @@ -163,13 +143,13 @@ public void searchNetworksTest() throws ApiException { // TODO: test validations } + /** * Update Network By ID - * + *

* This API provides capability to update user's Fabric Network * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void updateNetworkByUuidTest() throws ApiException { diff --git a/v4/api/PortsApiTest.java b/v4/api/PortsApiTest.java index c8590c54..2d73f8d7 100644 --- a/v4/api/PortsApiTest.java +++ b/v4/api/PortsApiTest.java @@ -12,10 +12,10 @@ package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; -import com.equinix.openapi.fabric.v4.api.dto.PortDto; +import com.equinix.openapi.fabric.v4.api.dto.port.PortDto; import com.equinix.openapi.fabric.v4.model.*; -import org.junit.Ignore; -import org.junit.Test; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.Disabled; import java.util.Arrays; import java.util.Collections; @@ -26,7 +26,7 @@ /** * API tests for PortsApi */ -@Ignore +@Disabled public class PortsApiTest extends AbstractTest { private final PortsApi api = new PortsApi(generateToken()); @@ -107,10 +107,10 @@ public void getPortByUuidTest() throws ApiException { */ @Test public void getPortsTest() throws ApiException { - PortDto portDto = getPort(JsonFiles.PORT_2_PUBLIC_SERVICE_PROFILE_CONNECTION); - AllPortsResponse response = api.getPorts(portDto.getAsidePortName()); + PortDto portDto = getPort(EnvVariable.QINQ_PORT); + AllPortsResponse response = api.getPorts(portDto.getName()); assertEquals(200, api.getApiClient().getStatusCode()); - assertEquals(portDto.getAsidePortName(), response.getData().get(0).getName()); + assertEquals(portDto.getName(), response.getData().get(0).getName()); } /** diff --git a/v4/api/PrecisionTimeApiTest.java b/v4/api/PrecisionTimeApiTest.java index a3b39512..2de013db 100644 --- a/v4/api/PrecisionTimeApiTest.java +++ b/v4/api/PrecisionTimeApiTest.java @@ -9,44 +9,26 @@ * Do not edit the class manually. */ - package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; -import com.equinix.openapi.fabric.v4.model.Error; -import com.equinix.openapi.fabric.v4.model.PrecisionTimeChangeOperation; -import com.equinix.openapi.fabric.v4.model.PrecisionTimePackageResponse; -import com.equinix.openapi.fabric.v4.model.PrecisionTimeServiceConnectionsResponse; -import com.equinix.openapi.fabric.v4.model.PrecisionTimeServiceCreateResponse; -import com.equinix.openapi.fabric.v4.model.PrecisionTimeServicePackagesResponse; -import com.equinix.openapi.fabric.v4.model.PrecisionTimeServiceRequest; -import java.util.UUID; -import org.junit.Test; -import org.junit.Ignore; -import org.junit.Assert; - -import java.time.LocalDate; -import java.time.OffsetDateTime; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.Disabled; /** * API tests for PrecisionTimeApi */ -@Ignore +@Disabled public class PrecisionTimeApiTest extends AbstractTest { private final PrecisionTimeApi api = new PrecisionTimeApi(generateToken()); /** * Create Time Service - * + *

* The API provides capability to create timing service * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void createTimeServicesTest() throws ApiException { @@ -57,13 +39,13 @@ public void createTimeServicesTest() throws ApiException { // TODO: test validations } + /** * Delete time service - * + *

* Delete EPT service by it's uuid * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void deleteTimeServiceByIdTest() throws ApiException { @@ -74,13 +56,13 @@ public void deleteTimeServiceByIdTest() throws ApiException { // TODO: test validations } + /** * Get Time Service - * + *

* The API provides capability to get precision timing service's details * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getTimeServicesByIdTest() throws ApiException { @@ -91,13 +73,13 @@ public void getTimeServicesByIdTest() throws ApiException { // TODO: test validations } + /** * Get Connection Links - * + *

* The API provides capability to get prevision timing service's details * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getTimeServicesConnectionsByServiceIdTest() throws ApiException { @@ -108,13 +90,13 @@ public void getTimeServicesConnectionsByServiceIdTest() throws ApiException { // TODO: test validations } + /** * Get Package By Code - * + *

* The API provides capability to get timing service's package by code * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getTimeServicesPackageByCodeTest() throws ApiException { @@ -125,13 +107,13 @@ public void getTimeServicesPackageByCodeTest() throws ApiException { // TODO: test validations } + /** * Get Packages - * + *

* The API provides capability to get timing service's packages * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getTimeServicesPackagesTest() throws ApiException { @@ -140,13 +122,13 @@ public void getTimeServicesPackagesTest() throws ApiException { // TODO: test validations } + /** * Patch time service - * + *

* The API provides capability to update timing service * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void updateTimeServicesByIdTest() throws ApiException { diff --git a/v4/api/PricesApiTest.java b/v4/api/PricesApiTest.java index 0af9420c..bcfd75fc 100644 --- a/v4/api/PricesApiTest.java +++ b/v4/api/PricesApiTest.java @@ -15,13 +15,13 @@ import com.equinix.openapi.fabric.v4.model.FilterBody; import com.equinix.openapi.fabric.v4.model.PriceSearchResponse; import com.equinix.openapi.fabric.v4.model.SearchExpression; -import org.junit.Test; +import org.junit.jupiter.api.Test; import java.util.Arrays; import java.util.Collections; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNotEquals; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotEquals; /** * API tests for PricesApi diff --git a/v4/api/RouteFilterRulesApiTest.java b/v4/api/RouteFilterRulesApiTest.java index 221c47e4..056b41f0 100644 --- a/v4/api/RouteFilterRulesApiTest.java +++ b/v4/api/RouteFilterRulesApiTest.java @@ -9,45 +9,26 @@ * Do not edit the class manually. */ - package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; -import com.equinix.openapi.fabric.v4.model.Error; -import com.equinix.openapi.fabric.v4.model.GetRouteFilterRulesResponse; -import com.equinix.openapi.fabric.v4.model.RouteFilterRulesBase; -import com.equinix.openapi.fabric.v4.model.RouteFilterRulesChangeData; -import com.equinix.openapi.fabric.v4.model.RouteFilterRulesChangeDataResponse; -import com.equinix.openapi.fabric.v4.model.RouteFilterRulesData; -import com.equinix.openapi.fabric.v4.model.RouteFilterRulesPatchRequestItem; -import com.equinix.openapi.fabric.v4.model.RouteFilterRulesPostRequest; -import java.util.UUID; -import org.junit.Test; -import org.junit.Ignore; -import org.junit.Assert; - -import java.time.LocalDate; -import java.time.OffsetDateTime; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.Disabled; /** * API tests for RouteFilterRulesApi */ -@Ignore -public class RouteFilterRulesApiTest extends AbstractTest{ +@Disabled +public class RouteFilterRulesApiTest extends AbstractTest { private final RouteFilterRulesApi api = new RouteFilterRulesApi(generateToken()); /** * Create RFRule - * + *

* This API provides capability to create a Route Filter Rule * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void createRouteFilterRuleTest() throws ApiException { @@ -60,13 +41,13 @@ public void createRouteFilterRuleTest() throws ApiException { // TODO: test validations } + /** * Bulk RFRules - * + *

* This API provides capability to create bulk route filter rules * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void createRouteFilterRulesInBulkTest() throws ApiException { @@ -79,13 +60,13 @@ public void createRouteFilterRulesInBulkTest() throws ApiException { // TODO: test validations } + /** * DeleteRFRule - * + *

* This API provides capability to delete a Route Filter Rule * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void deleteRouteFilterRuleByUuidTest() throws ApiException { @@ -98,13 +79,13 @@ public void deleteRouteFilterRuleByUuidTest() throws ApiException { // TODO: test validations } + /** * GetRFRule By UUID - * + *

* This API provides capability to view a Route Filter Rule by UUID * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getRouteFilterRuleByUuidTest() throws ApiException { @@ -117,13 +98,13 @@ public void getRouteFilterRuleByUuidTest() throws ApiException { // TODO: test validations } + /** * Get Change By ID - * + *

* This API provides capability to retrieve a specific Route Filter Rule's Changes * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getRouteFilterRuleChangeByUuidTest() throws ApiException { @@ -138,13 +119,13 @@ public void getRouteFilterRuleChangeByUuidTest() throws ApiException { // TODO: test validations } + /** * Get All Changes - * + *

* This API provides capability to retrieve all of a Route Filter Rule's Changes * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getRouteFilterRuleChangesTest() throws ApiException { @@ -161,13 +142,13 @@ public void getRouteFilterRuleChangesTest() throws ApiException { // TODO: test validations } + /** * GetRFRules - * + *

* This API provides capability to get all Route Filters Rules for Fabric * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getRouteFilterRulesTest() throws ApiException { @@ -182,13 +163,13 @@ public void getRouteFilterRulesTest() throws ApiException { // TODO: test validations } + /** * PatchRFilterRule - * + *

* This API provides capability to partially update a Route Filter Rule * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void patchRouteFilterRuleByUuidTest() throws ApiException { @@ -203,13 +184,13 @@ public void patchRouteFilterRuleByUuidTest() throws ApiException { // TODO: test validations } + /** * ReplaceRFRule - * + *

* This API provides capability to replace a Route Filter Rule completely * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void replaceRouteFilterRuleByUuidTest() throws ApiException { diff --git a/v4/api/RouteFiltersApiTest.java b/v4/api/RouteFiltersApiTest.java index 82e43674..49eae1ed 100644 --- a/v4/api/RouteFiltersApiTest.java +++ b/v4/api/RouteFiltersApiTest.java @@ -9,49 +9,26 @@ * Do not edit the class manually. */ - package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; -import com.equinix.openapi.fabric.v4.model.ConnectionRouteFilterData; -import com.equinix.openapi.fabric.v4.model.ConnectionRouteFiltersBase; -import com.equinix.openapi.fabric.v4.model.Error; -import com.equinix.openapi.fabric.v4.model.GetAllConnectionRouteFiltersResponse; -import com.equinix.openapi.fabric.v4.model.GetRouteFilterGetConnectionsResponse; -import com.equinix.openapi.fabric.v4.model.RouteFilterChangeData; -import com.equinix.openapi.fabric.v4.model.RouteFilterChangeDataResponse; -import com.equinix.openapi.fabric.v4.model.RouteFiltersBase; -import com.equinix.openapi.fabric.v4.model.RouteFiltersData; -import com.equinix.openapi.fabric.v4.model.RouteFiltersPatchRequestItem; -import com.equinix.openapi.fabric.v4.model.RouteFiltersSearchBase; -import com.equinix.openapi.fabric.v4.model.RouteFiltersSearchResponse; -import java.util.UUID; -import org.junit.Test; -import org.junit.Ignore; -import org.junit.Assert; - -import java.time.LocalDate; -import java.time.OffsetDateTime; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.Disabled; /** * API tests for RouteFiltersApi */ -@Ignore -public class RouteFiltersApiTest extends AbstractTest{ +@Disabled +public class RouteFiltersApiTest extends AbstractTest { private final RouteFiltersApi api = new RouteFiltersApi(generateToken()); /** * Attach Route Filter - * + *

* This API provides capability to attach a Route Filter to a Connection * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void attachConnectionRouteFilterTest() throws ApiException { @@ -66,13 +43,13 @@ public void attachConnectionRouteFilterTest() throws ApiException { // TODO: test validations } + /** * Create Route Filters - * + *

* This API provides capability to create a Route Filter * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void createRouteFilterTest() throws ApiException { @@ -83,13 +60,13 @@ public void createRouteFilterTest() throws ApiException { // TODO: test validations } + /** * Delete Route Filter - * + *

* This API provides capability to delete a Route Filter * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void deleteRouteFilterByUuidTest() throws ApiException { @@ -100,13 +77,13 @@ public void deleteRouteFilterByUuidTest() throws ApiException { // TODO: test validations } + /** * Detach Route Filter - * + *

* This API provides capability to detach a Route Filter from a Connection * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void detachConnectionRouteFilterTest() throws ApiException { @@ -119,13 +96,13 @@ public void detachConnectionRouteFilterTest() throws ApiException { // TODO: test validations } + /** * Get Route Filter - * + *

* This API provides capability to view a specific Route Filter attached to a Connection * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getConnectionRouteFilterByUuidTest() throws ApiException { @@ -138,13 +115,13 @@ public void getConnectionRouteFilterByUuidTest() throws ApiException { // TODO: test validations } + /** * Get All RouteFilters - * + *

* This API provides capability to view all Route Filters attached to a Connection * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getConnectionRouteFiltersTest() throws ApiException { @@ -155,13 +132,13 @@ public void getConnectionRouteFiltersTest() throws ApiException { // TODO: test validations } + /** * Get Filter By UUID - * + *

* This API provides capability to view a Route Filter by UUID * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getRouteFilterByUuidTest() throws ApiException { @@ -172,13 +149,13 @@ public void getRouteFilterByUuidTest() throws ApiException { // TODO: test validations } + /** * Get Change By ID - * + *

* This API provides capability to retrieve a specific Route Filter's Changes * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getRouteFilterChangeByUuidTest() throws ApiException { @@ -191,13 +168,13 @@ public void getRouteFilterChangeByUuidTest() throws ApiException { // TODO: test validations } + /** * Get All Changes - * + *

* This API provides capability to retrieve all of a Route Filter's Changes * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getRouteFilterChangesTest() throws ApiException { @@ -212,13 +189,13 @@ public void getRouteFilterChangesTest() throws ApiException { // TODO: test validations } + /** * Get Connections - * + *

* This API provides capability to view all Connections using the Route Filter * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getRouteFilterConnectionsTest() throws ApiException { @@ -229,13 +206,13 @@ public void getRouteFilterConnectionsTest() throws ApiException { // TODO: test validations } + /** * Patch Route Filter - * + *

* This API provides capability to partially update a Route Filter * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void patchRouteFilterByUuidTest() throws ApiException { @@ -248,13 +225,13 @@ public void patchRouteFilterByUuidTest() throws ApiException { // TODO: test validations } + /** * Search Route Filters - * + *

* This API provides capability to search Route Filters * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void searchRouteFiltersTest() throws ApiException { diff --git a/v4/api/RoutingProtocolsApiTest.java b/v4/api/RoutingProtocolsApiTest.java index 99fa9d4b..e5fee1f7 100644 --- a/v4/api/RoutingProtocolsApiTest.java +++ b/v4/api/RoutingProtocolsApiTest.java @@ -9,50 +9,26 @@ * Do not edit the class manually. */ - package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; -import com.equinix.openapi.fabric.v4.model.BGPActionData; -import com.equinix.openapi.fabric.v4.model.BGPActionRequest; -import com.equinix.openapi.fabric.v4.model.BGPActionsBulkData; -import com.equinix.openapi.fabric.v4.model.ConnectionChangeOperation; -import com.equinix.openapi.fabric.v4.model.ConnectionRoutingProtocolPostRequest; -import com.equinix.openapi.fabric.v4.model.Error; -import com.equinix.openapi.fabric.v4.model.GetResponse; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolBase; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolChangeData; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolChangeDataResponse; -import com.equinix.openapi.fabric.v4.model.RoutingProtocolData; -import java.util.UUID; -import com.equinix.openapi.fabric.v4.model.ValidateRequest; -import com.equinix.openapi.fabric.v4.model.ValidateSubnetResponse; -import org.junit.Test; -import org.junit.Ignore; -import org.junit.Assert; - -import java.time.LocalDate; -import java.time.OffsetDateTime; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.Disabled; /** * API tests for RoutingProtocolsApi */ -@Ignore -public class RoutingProtocolsApiTest extends AbstractTest{ +@Disabled +public class RoutingProtocolsApiTest extends AbstractTest { private final RoutingProtocolsApi api = new RoutingProtocolsApi(generateToken()); /** * Create Protocol - * + *

* This API provides capability to create Routing Protocol for connections * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void createConnectionRoutingProtocolTest() throws ApiException { @@ -65,13 +41,13 @@ public void createConnectionRoutingProtocolTest() throws ApiException { // TODO: test validations } + /** * Bulk Create Protocol - * + *

* This API provides capability to create Routing Protocol for connections * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void createConnectionRoutingProtocolsInBulkTest() throws ApiException { @@ -84,13 +60,13 @@ public void createConnectionRoutingProtocolsInBulkTest() throws ApiException { // TODO: test validations } + /** * Delete Protocol - * + *

* This API provides capability to delete Routing Protocols on virtual connection * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void deleteConnectionRoutingProtocolByUuidTest() throws ApiException { @@ -103,13 +79,13 @@ public void deleteConnectionRoutingProtocolByUuidTest() throws ApiException { // TODO: test validations } + /** * Get BGP Actions - * + *

* This API provides capability to get all BGP actions status * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getConnectionRoutingProtocolAllBgpActionsTest() throws ApiException { @@ -126,13 +102,13 @@ public void getConnectionRoutingProtocolAllBgpActionsTest() throws ApiException // TODO: test validations } + /** * Get Protocol - * + *

* This API provides capability to accept/reject user's virtual connection * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getConnectionRoutingProtocolByUuidTest() throws ApiException { @@ -145,13 +121,13 @@ public void getConnectionRoutingProtocolByUuidTest() throws ApiException { // TODO: test validations } + /** * GetRoutingProtocols - * + *

* This API provides capability to get Routing Protocols for connections * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getConnectionRoutingProtocolsTest() throws ApiException { @@ -166,13 +142,13 @@ public void getConnectionRoutingProtocolsTest() throws ApiException { // TODO: test validations } + /** * Get BGP Action - * + *

* This API provides capability to retrieve specific BGP action * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getConnectionRoutingProtocolsBgpActionByUuidTest() throws ApiException { @@ -187,13 +163,13 @@ public void getConnectionRoutingProtocolsBgpActionByUuidTest() throws ApiExcepti // TODO: test validations } + /** * Get Change By ID - * + *

* This API provides capability to retrieve specific Routing Protocol Change * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getConnectionRoutingProtocolsChangeByUuidTest() throws ApiException { @@ -208,13 +184,13 @@ public void getConnectionRoutingProtocolsChangeByUuidTest() throws ApiException // TODO: test validations } + /** * Get Changes - * + *

* This API provides capability to retrieve user's Routing Protocol Changes * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getConnectionRoutingProtocolsChangesTest() throws ApiException { @@ -231,13 +207,13 @@ public void getConnectionRoutingProtocolsChangesTest() throws ApiException { // TODO: test validations } + /** * Patch Protocol - * + *

* This API provides capability to partially update Routing Protocols on a virtual connection * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void patchConnectionRoutingProtocolByUuidTest() throws ApiException { @@ -252,13 +228,13 @@ public void patchConnectionRoutingProtocolByUuidTest() throws ApiException { // TODO: test validations } + /** * Clear/Reset BGP - * + *

* This API provides capability to clear/reset Routing Protocols BGP session * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void postConnectionRoutingProtocolBgpActionByUuidTest() throws ApiException { @@ -273,13 +249,13 @@ public void postConnectionRoutingProtocolBgpActionByUuidTest() throws ApiExcepti // TODO: test validations } + /** * Replace Protocol - * + *

* This API provides capability to replace complete Routing Protocols on a virtual connection * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void replaceConnectionRoutingProtocolByUuidTest() throws ApiException { @@ -294,13 +270,13 @@ public void replaceConnectionRoutingProtocolByUuidTest() throws ApiException { // TODO: test validations } + /** * Validate Subnet - * + *

* This API provides capability to validate all subnets associated with any connection in the given FCR * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void validateRoutingProtocolTest() throws ApiException { diff --git a/v4/api/ServiceProfilesApiTest.java b/v4/api/ServiceProfilesApiTest.java index ad72e1fb..28026d48 100644 --- a/v4/api/ServiceProfilesApiTest.java +++ b/v4/api/ServiceProfilesApiTest.java @@ -9,44 +9,26 @@ * Do not edit the class manually. */ - package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; -import com.equinix.openapi.fabric.v4.model.Error; -import com.equinix.openapi.fabric.v4.model.JsonPatchOperation; -import com.equinix.openapi.fabric.v4.model.ServiceMetros; -import com.equinix.openapi.fabric.v4.model.ServiceProfile; -import com.equinix.openapi.fabric.v4.model.ServiceProfileRequest; -import com.equinix.openapi.fabric.v4.model.ServiceProfileSearchRequest; -import com.equinix.openapi.fabric.v4.model.ServiceProfiles; -import java.util.UUID; -import org.junit.Test; -import org.junit.Ignore; -import org.junit.Assert; - -import java.time.LocalDate; -import java.time.OffsetDateTime; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.Disabled; /** * API tests for ServiceProfilesApi */ -@Ignore -public class ServiceProfilesApiTest extends AbstractTest{ +@Disabled +public class ServiceProfilesApiTest extends AbstractTest { private final ServiceProfilesApi api = new ServiceProfilesApi(generateToken()); /** * Create Profile - * + *

* Create Service Profile creates Equinix Fabric? Service Profile. * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void createServiceProfileTest() throws ApiException { @@ -57,13 +39,13 @@ public void createServiceProfileTest() throws ApiException { // TODO: test validations } + /** * Delete Profile - * + *

* delete Service Profile by UUID * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void deleteServiceProfileByUuidTest() throws ApiException { @@ -74,13 +56,13 @@ public void deleteServiceProfileByUuidTest() throws ApiException { // TODO: test validations } + /** * Get Profile - * + *

* Get service profile by UUID. View Point parameter if set to zSide will give seller's view of the profile otherwise buyer's view. * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getServiceProfileByUuidTest() throws ApiException { @@ -93,13 +75,13 @@ public void getServiceProfileByUuidTest() throws ApiException { // TODO: test validations } + /** * Get Profile Metros - * + *

* Get service profile metros by UUID. * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getServiceProfileMetrosByUuidTest() throws ApiException { @@ -114,13 +96,13 @@ public void getServiceProfileMetrosByUuidTest() throws ApiException { // TODO: test validations } + /** * Get all Profiles - * + *

* The API request returns all Equinix Fabric Service Profiles in accordance with the view point requested. * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getServiceProfilesTest() throws ApiException { @@ -135,13 +117,13 @@ public void getServiceProfilesTest() throws ApiException { // TODO: test validations } + /** * Replace Profile - * + *

* This API request replaces a service profile definition * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void putServiceProfileByUuidTest() throws ApiException { @@ -156,13 +138,13 @@ public void putServiceProfileByUuidTest() throws ApiException { // TODO: test validations } + /** * Profile Search - * + *

* Search service profiles by search criteria * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void searchServiceProfilesTest() throws ApiException { @@ -175,13 +157,13 @@ public void searchServiceProfilesTest() throws ApiException { // TODO: test validations } + /** * Update Profile - * + *

* Update Service Profile by UUID * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void updateServiceProfileByUuidTest() throws ApiException { diff --git a/v4/api/ServiceTokensApiTest.java b/v4/api/ServiceTokensApiTest.java index 043ba955..f7939bbf 100644 --- a/v4/api/ServiceTokensApiTest.java +++ b/v4/api/ServiceTokensApiTest.java @@ -9,44 +9,26 @@ * Do not edit the class manually. */ - package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; -import java.math.BigDecimal; -import com.equinix.openapi.fabric.v4.model.Error; -import com.equinix.openapi.fabric.v4.model.ServiceToken; -import com.equinix.openapi.fabric.v4.model.ServiceTokenActionRequest; -import com.equinix.openapi.fabric.v4.model.ServiceTokenChangeOperation; -import com.equinix.openapi.fabric.v4.model.ServiceTokenSearchRequest; -import com.equinix.openapi.fabric.v4.model.ServiceTokens; -import java.util.UUID; -import org.junit.Test; -import org.junit.Ignore; -import org.junit.Assert; - -import java.time.LocalDate; -import java.time.OffsetDateTime; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.Disabled; /** * API tests for ServiceTokensApi */ -@Ignore +@Disabled public class ServiceTokensApiTest extends AbstractTest { private final ServiceTokensApi api = new ServiceTokensApi(generateToken()); /** * Create Service Token - * + *

* Create Service Tokens generates Equinix Fabric? service tokens. These tokens authorize users to access protected resources and services. * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void createServiceTokenTest() throws ApiException { @@ -57,13 +39,13 @@ public void createServiceTokenTest() throws ApiException { // TODO: test validations } + /** * ServiceToken Actions - * + *

* This API provides capability to accept/reject user's servicetokens * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void createServiceTokenActionTest() throws ApiException { @@ -76,13 +58,13 @@ public void createServiceTokenActionTest() throws ApiException { // TODO: test validations } + /** * Delete Token by uuid - * + *

* Delete Service Tokens removes an Equinix Fabric service token corresponding to the specified uuid which are in INACTIVE state. * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void deleteServiceTokenByUuidTest() throws ApiException { @@ -93,13 +75,13 @@ public void deleteServiceTokenByUuidTest() throws ApiException { // TODO: test validations } + /** * Get Token by uuid - * + *

* Get Specified Service Tokens uses the uuid of an Equinix Fabric service token to return details about the token's type, state, location, bandwidth, and other key properties. * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getServiceTokenByUuidTest() throws ApiException { @@ -110,13 +92,13 @@ public void getServiceTokenByUuidTest() throws ApiException { // TODO: test validations } + /** * Get All Tokens - * + *

* Get All ServiceTokens creates a list of all Equinix Fabric service tokens associated with the subscriber's account. * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getServiceTokensTest() throws ApiException { @@ -129,13 +111,13 @@ public void getServiceTokensTest() throws ApiException { // TODO: test validations } + /** * Search servicetokens - * + *

* The API provides capability to get list of user's servicetokens using search criteria, including optional filtering, pagination and sorting * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void searchServiceTokensTest() throws ApiException { @@ -146,13 +128,13 @@ public void searchServiceTokensTest() throws ApiException { // TODO: test validations } + /** * Update Token By ID - * + *

* This API provides capability to update user's Service Token * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void updateServiceTokenByUuidTest() throws ApiException { diff --git a/v4/api/StatisticsApiTest.java b/v4/api/StatisticsApiTest.java index 5e396a5a..2fcc85f9 100644 --- a/v4/api/StatisticsApiTest.java +++ b/v4/api/StatisticsApiTest.java @@ -9,30 +9,21 @@ * Do not edit the class manually. */ - package com.equinix.openapi.fabric.v4.api; import com.equinix.openapi.fabric.ApiException; -import com.equinix.openapi.fabric.v4.model.Duration; -import com.equinix.openapi.fabric.v4.model.Error; -import com.equinix.openapi.fabric.v4.model.MetricInterval; +import com.equinix.openapi.fabric.v4.api.dto.port.PortDto; +import com.equinix.openapi.fabric.v4.model.*; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; + import java.time.OffsetDateTime; -import com.equinix.openapi.fabric.v4.model.QueryDirection; -import com.equinix.openapi.fabric.v4.model.Sort; -import com.equinix.openapi.fabric.v4.model.Statistics; -import com.equinix.openapi.fabric.v4.model.TopUtilizedStatistics; +import java.time.ZoneOffset; +import java.time.temporal.ChronoUnit; +import java.util.Collections; import java.util.UUID; -import com.equinix.openapi.fabric.v4.model.ViewPoint; -import org.junit.Test; -import org.junit.Ignore; -import org.junit.Assert; -import java.time.LocalDate; -import java.time.OffsetDateTime; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import static org.junit.jupiter.api.Assertions.assertEquals; /** * API tests for StatisticsApi @@ -43,12 +34,12 @@ public class StatisticsApiTest extends AbstractTest { /** * Get Stats by uuid - * + *

* This API provides service-level metrics so that you can view access and gather key information required to manage service subscription sizing and capacity * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ + @Disabled @Test public void getConnectionStatsByPortUuidTest() throws ApiException { // @@ -64,54 +55,43 @@ public void getConnectionStatsByPortUuidTest() throws ApiException { // TODO: test validations } + /** * Top Port Statistics - * + *

* This API provides top utilized service-level traffic metrics so that you can view access and gather key information required to manage service subscription sizing and capacity. * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getPortStatsTest() throws ApiException { - // - //List metros = null; - // - //Sort sort = null; - // - //Integer top = null; - // - //Duration duration = null; - // - //QueryDirection direction = null; - // - //MetricInterval metricInterval = null; - // - //String projectId = null; - // - //TopUtilizedStatistics response = api.getPortStats(metros, sort, top, duration, direction, metricInterval, projectId); - - // TODO: test validations + String projectId = "291639000636552"; + TopUtilizedStatistics response = api.getPortStats( + Collections.singletonList(""), + Sort._BANDWIDTHUTILIZATION, + 5, + Duration.P7D, + QueryDirection.OUTBOUND, + MetricInterval.P7D, + projectId); + assertEquals(200, api.getApiClient().getStatusCode()); } + /** * Get Stats by uuid - * + *

* This API provides service-level traffic metrics so that you can view access and gather key information required to manage service subscription sizing and capacity. * - * @throws ApiException - * if the Api call fails + * @throws ApiException if the Api call fails */ @Test public void getPortStatsByPortUuidTest() throws ApiException { - // - //UUID portId = null; - // - //OffsetDateTime startDateTime = null; - // - //OffsetDateTime endDateTime = null; - // - //Statistics response = api.getPortStatsByPortUuid(portId, startDateTime, endDateTime); + PortDto portDto = getPort(EnvVariable.QINQ_PORT); + OffsetDateTime startDate = OffsetDateTime.now().minusMonths(3).withOffsetSameLocal(ZoneOffset.UTC).truncatedTo(ChronoUnit.SECONDS); + OffsetDateTime endDate = OffsetDateTime.now().withOffsetSameLocal(ZoneOffset.UTC).truncatedTo(ChronoUnit.SECONDS); - // TODO: test validations + Statistics response = api.getPortStatsByPortUuid(UUID.fromString(portDto.getUuid()), startDate, endDate); + assertEquals(200, api.getApiClient().getStatusCode()); + assertEquals(portDto.getName(), response.getAdditionalProperties().get("name")); } } diff --git a/v4/api/dto/PortDto.java b/v4/api/dto/PortDto.java deleted file mode 100644 index 578e94af..00000000 --- a/v4/api/dto/PortDto.java +++ /dev/null @@ -1,92 +0,0 @@ -package com.equinix.openapi.fabric.v4.api.dto; - -import java.util.List; -import com.fasterxml.jackson.annotation.JsonProperty; -import com.google.gson.annotations.SerializedName; - -public class PortDto{ - - @SerializedName("connection_name") - private String connectionName; - - @SerializedName("connection_type") - private String connectionType; - - @SerializedName("bandwidth") - private int bandwidth; - - @SerializedName("aside_vlan_tag") - private String asideVlanTag; - - @SerializedName("zside_ap_profile_type") - private String zsideApProfileType; - - @SerializedName("purchase_order_number") - private String purchaseOrderNumber; - - @SerializedName("notifications_type") - private String notificationsType; - - @SerializedName("zside_ap_type") - private String zsideApType; - - @SerializedName("zside_sp_name") - private String zsideSpName; - - @SerializedName("notifications_emails") - private List notificationsEmails; - - @SerializedName("zside_location") - private String zsideLocation; - - @SerializedName("aside_port_name") - private String asidePortName; - - public String getConnectionName(){ - return connectionName; - } - - public String getConnectionType(){ - return connectionType; - } - - public int getBandwidth(){ - return bandwidth; - } - - public String getAsideVlanTag(){ - return asideVlanTag; - } - - public String getZsideApProfileType(){ - return zsideApProfileType; - } - - public String getPurchaseOrderNumber(){ - return purchaseOrderNumber; - } - - public String getNotificationsType(){ - return notificationsType; - } - - public String getZsideApType(){ - return zsideApType; - } - - public String getZsideSpName(){ - return zsideSpName; - } - - public List getNotificationsEmails(){ - return notificationsEmails; - } - - public String getZsideLocation(){ - return zsideLocation; - } - - public String getAsidePortName(){ - return asidePortName; - } -} diff --git a/v4/api/dto/port/Device.java b/v4/api/dto/port/Device.java new file mode 100644 index 00000000..7741d913 --- /dev/null +++ b/v4/api/dto/port/Device.java @@ -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; + } +} \ No newline at end of file diff --git a/v4/api/dto/port/Encapsulation.java b/v4/api/dto/port/Encapsulation.java new file mode 100644 index 00000000..6c00315d --- /dev/null +++ b/v4/api/dto/port/Encapsulation.java @@ -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; + } +} \ No newline at end of file diff --git a/v4/api/dto/port/Lag.java b/v4/api/dto/port/Lag.java new file mode 100644 index 00000000..5eb9fecf --- /dev/null +++ b/v4/api/dto/port/Lag.java @@ -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; + } +} \ No newline at end of file diff --git a/v4/api/dto/port/Location.java b/v4/api/dto/port/Location.java new file mode 100644 index 00000000..0138c6f7 --- /dev/null +++ b/v4/api/dto/port/Location.java @@ -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; + } +} \ No newline at end of file diff --git a/v4/api/dto/port/PortDto.java b/v4/api/dto/port/PortDto.java new file mode 100644 index 00000000..adb75723 --- /dev/null +++ b/v4/api/dto/port/PortDto.java @@ -0,0 +1,118 @@ +package com.equinix.openapi.fabric.v4.api.dto.port; + +import com.google.gson.annotations.SerializedName; + +public class PortDto{ + + @SerializedName("encapsulation") + private Encapsulation encapsulation; + + @SerializedName("settings") + private Settings settings; + + @SerializedName("availableBandwidth") + private int availableBandwidth; + + @SerializedName("bandwidth") + private int bandwidth; + + @SerializedName("lagEnabled") + private boolean lagEnabled; + + @SerializedName("type") + private String type; + + @SerializedName("uuid") + private String uuid; + + @SerializedName("cvpId") + private String cvpId; + + @SerializedName("lag") + private Lag lag; + + @SerializedName("usedBandwidth") + private int usedBandwidth; + + @SerializedName("name") + private String name; + + @SerializedName("location") + private Location location; + + @SerializedName("href") + private String href; + + @SerializedName("state") + private String state; + + @SerializedName("redundancy") + private Redundancy redundancy; + + @SerializedName("device") + private Device device; + + public Encapsulation getEncapsulation(){ + return encapsulation; + } + + public Settings getSettings(){ + return settings; + } + + public int getAvailableBandwidth(){ + return availableBandwidth; + } + + public int getBandwidth(){ + return bandwidth; + } + + public boolean isLagEnabled(){ + return lagEnabled; + } + + public String getType(){ + return type; + } + + public String getUuid(){ + return uuid; + } + + public String getCvpId(){ + return cvpId; + } + + public Lag getLag(){ + return lag; + } + + public int getUsedBandwidth(){ + return usedBandwidth; + } + + public String getName(){ + return name; + } + + public Location getLocation(){ + return location; + } + + public String getHref(){ + return href; + } + + public String getState(){ + return state; + } + + public Redundancy getRedundancy(){ + return redundancy; + } + + public Device getDevice(){ + return device; + } +} \ No newline at end of file diff --git a/v4/api/dto/port/Redundancy.java b/v4/api/dto/port/Redundancy.java new file mode 100644 index 00000000..c5d42f78 --- /dev/null +++ b/v4/api/dto/port/Redundancy.java @@ -0,0 +1,13 @@ +package com.equinix.openapi.fabric.v4.api.dto.port; + +import com.google.gson.annotations.SerializedName; + +public class Redundancy{ + + @SerializedName("priority") + private String priority; + + public String getPriority(){ + return priority; + } +} \ No newline at end of file diff --git a/v4/api/dto/port/Settings.java b/v4/api/dto/port/Settings.java new file mode 100644 index 00000000..fa3450a6 --- /dev/null +++ b/v4/api/dto/port/Settings.java @@ -0,0 +1,27 @@ +package com.equinix.openapi.fabric.v4.api.dto.port; + +import com.google.gson.annotations.SerializedName; + +public class Settings{ + + @SerializedName("buyout") + private boolean buyout; + + @SerializedName("placeVcOrderPermission") + private boolean placeVcOrderPermission; + + @SerializedName("viewPortPermission") + private boolean viewPortPermission; + + public boolean isBuyout(){ + return buyout; + } + + public boolean isPlaceVcOrderPermission(){ + return placeVcOrderPermission; + } + + public boolean isViewPortPermission(){ + return viewPortPermission; + } +} \ No newline at end of file