Skip to content

Commit

Permalink
release/identityprovider.v1: Update APIs
Browse files Browse the repository at this point in the history
XXX_SKIP_CHECK_BREAKING

Change-Id: I8cf7587d789d212af3f060ac94af20ffe1db1d9c
  • Loading branch information
oumichae1 committed Apr 4, 2024
1 parent 0098874 commit 9412a7d
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 7 deletions.
8 changes: 5 additions & 3 deletions arista/identityprovider.v1/identityprovider-changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
# New entries go on top.

Changes:
- date: 2024-04-04
description: Update APIs
version: 1.7.2
cvaas: true
onprem: true
- date: 2024-03-11
description: Update bearer_token_introspection_endpoint field description
version: 1.7.1
Expand All @@ -15,15 +20,12 @@ Changes:
- date: 2023-08-08
description: Add username_attrname to saml
version: 1.7.0
cvaas: true
onprem: true
- date: 2023-06-22
description: Add roles_claim_name to oauth
version: 1.6.0
- date: 2023-04-07
description: Add org_attrname to saml
version: 1.5.0
cvaas: true
- date: 2023-03-17
description: Add bearer_token_introspection_endpoint to oauth
version: 1.4.0
Expand Down
2 changes: 1 addition & 1 deletion arista/identityprovider.v1/identityprovider.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ syntax = "proto3";

package arista.identityprovider.v1;

option go_package = "arista/resources/arista/identityprovider.v1;identityprovider";
option go_package = "github.com/aristanetworks/cloudvision-go/api/arista/identityprovider.v1;identityprovider";

import "google/protobuf/wrappers.proto";

Expand Down
12 changes: 11 additions & 1 deletion arista/identityprovider.v1/services.gen.proto
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
syntax = "proto3";

package arista.identityprovider.v1;
option go_package = "arista/resources/arista/identityprovider.v1;identityprovider";
option go_package = "github.com/aristanetworks/cloudvision-go/api/arista/identityprovider.v1;identityprovider";

import "arista/identityprovider.v1/identityprovider.proto";
import "arista/time/time.proto";
Expand Down Expand Up @@ -183,10 +183,15 @@ message OAuthConfigDeleteSomeResponse {
};

message OAuthConfigDeleteAllRequest {
// PartialEqFilter provides a way to server-side filter a DeleteAll.
// This requires all provided fields to be equal to the response.
// A filtered DeleteAll will use GetAll with filter to find things to delete.
repeated OAuthConfig partial_eq_filter = 1;
};

message OAuthConfigDeleteAllResponse {
// This describes the class of delete error.
// A DeleteAllResponse is only sent when there is an error.
fmp.DeleteError type = 1;
// This indicates the error message from the delete failure.
google.protobuf.StringValue error = 2;
Expand Down Expand Up @@ -361,10 +366,15 @@ message SAMLConfigDeleteSomeResponse {
};

message SAMLConfigDeleteAllRequest {
// PartialEqFilter provides a way to server-side filter a DeleteAll.
// This requires all provided fields to be equal to the response.
// A filtered DeleteAll will use GetAll with filter to find things to delete.
repeated SAMLConfig partial_eq_filter = 1;
};

message SAMLConfigDeleteAllResponse {
// This describes the class of delete error.
// A DeleteAllResponse is only sent when there is an error.
fmp.DeleteError type = 1;
// This indicates the error message from the delete failure.
google.protobuf.StringValue error = 2;
Expand Down
4 changes: 2 additions & 2 deletions arista/identityprovider.v1/services.gen.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -1300,7 +1300,7 @@
"properties": {
"type": {
"$ref": "#/definitions/fmp.DeleteError",
"description": "This describes the class of delete error."
"description": "This describes the class of delete error.\nA DeleteAllResponse is only sent when there is an error."
},
"error": {
"type": "string",
Expand Down Expand Up @@ -1514,7 +1514,7 @@
"properties": {
"type": {
"$ref": "#/definitions/fmp.DeleteError",
"description": "This describes the class of delete error."
"description": "This describes the class of delete error.\nA DeleteAllResponse is only sent when there is an error."
},
"error": {
"type": "string",
Expand Down

0 comments on commit 9412a7d

Please sign in to comment.