-
Notifications
You must be signed in to change notification settings - Fork 0
CSTACKEX-50: Disable, Re-Enable, Delete Storage pool and Enter, Exit Maintenance mode #20
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
Changes from all commits
00e8a25
59224d0
5f8f744
ffa4927
bd107b3
1b0dbba
1809077
9319777
a4347d6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -24,14 +24,14 @@ | |||||
| <parent> | ||||||
| <groupId>org.apache.cloudstack</groupId> | ||||||
| <artifactId>cloudstack-plugins</artifactId> | ||||||
| <version>4.22.0.0-SNAPSHOT</version> | ||||||
| <version>4.23.0.0-SNAPSHOT</version> | ||||||
| <relativePath>../../../pom.xml</relativePath> | ||||||
| </parent> | ||||||
| <properties> | ||||||
| <spring-cloud.version>2021.0.7</spring-cloud.version> | ||||||
| <openfeign.version>11.0</openfeign.version> | ||||||
| <json.version>20230227</json.version> | ||||||
| <jackson-databind.version>2.15.2</jackson-databind.version> | ||||||
| <jackson-databind.version>2.13.4</jackson-databind.version> | ||||||
|
||||||
| <jackson-databind.version>2.13.4</jackson-databind.version> | |
| <jackson-databind.version>2.15.2</jackson-databind.version> |
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same as earlier comment |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| package org.apache.cloudstack.storage.feign.client; | ||
|
||
|
|
||
| import feign.Headers; | ||
| import feign.Param; | ||
| import feign.QueryMap; | ||
| import feign.RequestLine; | ||
| import org.apache.cloudstack.storage.feign.model.IpInterface; | ||
| import org.apache.cloudstack.storage.feign.model.response.OntapResponse; | ||
|
|
||
| import java.util.Map; | ||
|
|
||
| public interface NetworkFeignClient { | ||
| @RequestLine("GET /api/network/ip/interfaces") | ||
| @Headers({"Authorization: {authHeader}"}) | ||
| OntapResponse<IpInterface> getNetworkIpInterfaces(@Param("authHeader") String authHeader, @QueryMap Map<String, Object> queryParams); | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same changes are available in Piyush's PR also. whoever is merging second, do ensure to take latest and remove redundant changes before merge