Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Fabric 4.17 api spec update #80

Merged
merged 4 commits into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion Makefile.fabricv4
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
include Makefile

PACKAGE_NAME=fabricv4
SPEC_BASE_URL:=https://api.swaggerhub.com/apis/equinix-api/fabric/4.15
SPEC_BASE_URL:=https://api.swaggerhub.com/apis/equinix-api/fabric/4.17
SPEC_ROOT_FILE:=swagger.yaml

CODE_DIR=${CODE_BASE_DIR}/${PACKAGE_NAME}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
diff --git a/services/fabricv4/test/api_streams_test.go b/services/fabricv4/test/api_streams_test.go
index f760724..ca429c7 100644
--- a/services/fabricv4/test/api_streams_test.go
+++ b/services/fabricv4/test/api_streams_test.go
@@ -36,7 +36,7 @@ func Test_fabricv4_StreamsApiService(t *testing.T) {
t.Skip("skip test") // remove to run test

var assetId string
- var asset Asset
+ var asset openapiclient.Asset
var streamId string

resp, httpRes, err := apiClient.StreamsApi.DeleteStreamAssetByUuid(context.Background(), assetId, asset, streamId).Execute()
@@ -62,7 +62,7 @@ func Test_fabricv4_StreamsApiService(t *testing.T) {
t.Skip("skip test") // remove to run test

var assetId string
- var asset Asset
+ var asset openapiclient.Asset
var streamId string

resp, httpRes, err := apiClient.StreamsApi.GetStreamAssetByUuid(context.Background(), assetId, asset, streamId).Execute()
@@ -120,7 +120,7 @@ func Test_fabricv4_StreamsApiService(t *testing.T) {
t.Skip("skip test") // remove to run test

var assetId string
- var asset Asset
+ var asset openapiclient.Asset
var streamId string

resp, httpRes, err := apiClient.StreamsApi.UpdateStreamAssetByUuid(context.Background(), assetId, asset, streamId).Execute()
150 changes: 119 additions & 31 deletions services/fabricv4/README.md

Large diffs are not rendered by default.

Loading
Loading