Skip to content

Commit 4a8f0dc

Browse files
committed
Identity: add 'enabled' field on Endpoint
1 parent 2921f45 commit 4a8f0dc

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

openstack/identity/v3/endpoints/results.go

+3
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@ type Endpoint struct {
5757

5858
// URL is the url of the Endpoint.
5959
URL string `json:"url"`
60+
61+
// Enabled is whether or not the endpoint is enabled.
62+
Enabled bool `json:"enabled"`
6063
}
6164

6265
// EndpointPage is a single page of Endpoint results.

openstack/identity/v3/endpoints/testing/requests_test.go

+9-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ func TestCreateSuccessful(t *testing.T) {
3737
"endpoint": {
3838
"id": "12",
3939
"interface": "public",
40-
"links": {
40+
"enabled": true,
41+
"links": {
4142
"self": "https://localhost:5000/v3/endpoints/12"
4243
},
4344
"name": "the-endiest-of-points",
@@ -61,6 +62,7 @@ func TestCreateSuccessful(t *testing.T) {
6162
expected := &endpoints.Endpoint{
6263
ID: "12",
6364
Availability: gophercloud.AvailabilityPublic,
65+
Enabled: true,
6466
Name: "the-endiest-of-points",
6567
Region: "underground",
6668
ServiceID: "asdfasdfasdfasdf",
@@ -85,6 +87,7 @@ func TestListEndpoints(t *testing.T) {
8587
{
8688
"id": "12",
8789
"interface": "public",
90+
"enabled": true,
8891
"links": {
8992
"self": "https://localhost:5000/v3/endpoints/12"
9093
},
@@ -96,6 +99,7 @@ func TestListEndpoints(t *testing.T) {
9699
{
97100
"id": "13",
98101
"interface": "internal",
102+
"enabled": false,
99103
"links": {
100104
"self": "https://localhost:5000/v3/endpoints/13"
101105
},
@@ -126,6 +130,7 @@ func TestListEndpoints(t *testing.T) {
126130
{
127131
ID: "12",
128132
Availability: gophercloud.AvailabilityPublic,
133+
Enabled: true,
129134
Name: "the-endiest-of-points",
130135
Region: "underground",
131136
ServiceID: "asdfasdfasdfasdf",
@@ -134,6 +139,7 @@ func TestListEndpoints(t *testing.T) {
134139
{
135140
ID: "13",
136141
Availability: gophercloud.AvailabilityInternal,
142+
Enabled: false,
137143
Name: "shhhh",
138144
Region: "underground",
139145
ServiceID: "asdfasdfasdfasdf",
@@ -167,6 +173,7 @@ func TestUpdateEndpoint(t *testing.T) {
167173
"endpoint": {
168174
"id": "12",
169175
"interface": "public",
176+
"enabled": true,
170177
"links": {
171178
"self": "https://localhost:5000/v3/endpoints/12"
172179
},
@@ -190,6 +197,7 @@ func TestUpdateEndpoint(t *testing.T) {
190197
expected := &endpoints.Endpoint{
191198
ID: "12",
192199
Availability: gophercloud.AvailabilityPublic,
200+
Enabled: true,
193201
Name: "renamed",
194202
Region: "somewhere-else",
195203
ServiceID: "asdfasdfasdfasdf",

0 commit comments

Comments
 (0)