Merge pull request #25002 from thaJeztah/add-new-errors-to-api-docs

Add new error to API docs
This commit is contained in:
Vincent Demeester 2016-07-25 16:00:36 +02:00 committed by GitHub
commit e64f5f97fc
3 changed files with 6 additions and 2 deletions

View File

@ -121,7 +121,7 @@ func (n *networkRouter) postNetworkConnect(ctx context.Context, w http.ResponseW
}
if nw.Info().Dynamic() {
return newNetworkForbiddenError("Operation not supported for swarm scoped networks")
return newNetworkForbiddenError("operation not supported for swarm scoped networks")
}
return n.backend.ConnectContainerToNetwork(connect.Container, nw.Name(), connect.EndpointConfig)
@ -147,7 +147,7 @@ func (n *networkRouter) postNetworkDisconnect(ctx context.Context, w http.Respon
}
if nw.Info().Dynamic() {
return newNetworkForbiddenError("Operation not supported for swarm scoped networks")
return newNetworkForbiddenError("operation not supported for swarm scoped networks")
}
return n.backend.DisconnectContainerFromNetwork(disconnect.Container, nw, disconnect.Force)

View File

@ -3259,6 +3259,7 @@ Content-Type: application/json
**Status codes**:
- **200** - no error
- **403** - operation not supported for swarm scoped networks
- **404** - network or container is not found
- **500** - Internal Server Error
@ -3291,6 +3292,7 @@ Content-Type: application/json
**Status codes**:
- **200** - no error
- **403** - operation not supported for swarm scoped networks
- **404** - network or container not found
- **500** - Internal Server Error

View File

@ -3260,6 +3260,7 @@ Content-Type: application/json
**Status codes**:
- **200** - no error
- **403** - operation not supported for swarm scoped networks
- **404** - network or container is not found
- **500** - Internal Server Error
@ -3292,6 +3293,7 @@ Content-Type: application/json
**Status codes**:
- **200** - no error
- **403** - operation not supported for swarm scoped networks
- **404** - network or container not found
- **500** - Internal Server Error