You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
For cmdlets which call DELETE methods and have empty results, the SDK currently will return the HTTP status code along with a status method (IE Remove-RubrikFileset). This same functionality isn't applied for cmdlets which remove objects and return nothing using the POST method (IE Remove-RubrikUnmanagedObject)
Describe the solution you'd like
Would like to see the cmdlets which have no returned result using the POST method also display the HTTPStatus Codes and STatus methods just as those that call DELETE methods do.
This would at least allow end users and customers to see that something did happen and whether it was successful or not. As well as give us something to test against with unit tests.
Would need to include POST methods as well as DELETE on the if statement on line 19 of Submit-Request.ps1
IE, changing
if ($resources.method -eq 'Delete') {
to
if ($resources.method -in ("Delete","Post") {
Describe alternatives you've considered
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
For cmdlets which call DELETE methods and have empty results, the SDK currently will return the HTTP status code along with a status method (IE Remove-RubrikFileset). This same functionality isn't applied for cmdlets which remove objects and return nothing using the POST method (IE Remove-RubrikUnmanagedObject)
Describe the solution you'd like
Would like to see the cmdlets which have no returned result using the POST method also display the HTTPStatus Codes and STatus methods just as those that call DELETE methods do.
This would at least allow end users and customers to see that something did happen and whether it was successful or not. As well as give us something to test against with unit tests.
Would need to include POST methods as well as DELETE on the if statement on line 19 of Submit-Request.ps1
IE, changing
if ($resources.method -eq 'Delete') {
to
if ($resources.method -in ("Delete","Post") {
Describe alternatives you've considered
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: