/vendor/src/github.com/docker/swarmkit/api/control.proto
https://gitlab.com/vectorci/docker-1 · Protocol Buffers · 295 lines · 224 code · 55 blank · 16 comment · 0 complexity · cff7bde86409cbc04818319bf436b398 MD5 · raw file
- syntax = "proto3";
- package docker.swarmkit.v1;
- import "specs.proto";
- import "objects.proto";
- import "types.proto";
- import "gogoproto/gogo.proto";
- import "plugin/plugin.proto";
- // Control defines the RPC methods for controlling a cluster.
- service Control {
- rpc GetNode(GetNodeRequest) returns (GetNodeResponse) {
- option (docker.protobuf.plugin.tls_authorization) = { roles: "swarm-manager" };
- };
- rpc ListNodes(ListNodesRequest) returns (ListNodesResponse) {
- option (docker.protobuf.plugin.tls_authorization) = { roles: "swarm-manager" };
- };
- rpc UpdateNode(UpdateNodeRequest) returns (UpdateNodeResponse) {
- option (docker.protobuf.plugin.tls_authorization) = { roles: "swarm-manager" };
- };
- rpc RemoveNode(RemoveNodeRequest) returns (RemoveNodeResponse) {
- option (docker.protobuf.plugin.tls_authorization) = { roles: "swarm-manager" };
- };
- rpc GetTask(GetTaskRequest) returns (GetTaskResponse) {
- option (docker.protobuf.plugin.tls_authorization) = { roles: "swarm-manager" };
- };
- rpc ListTasks(ListTasksRequest) returns (ListTasksResponse) {
- option (docker.protobuf.plugin.tls_authorization) = { roles: "swarm-manager" };
- };
- rpc RemoveTask(RemoveTaskRequest) returns (RemoveTaskResponse) {
- option (docker.protobuf.plugin.tls_authorization) = { roles: "swarm-manager" };
- };
- rpc GetService(GetServiceRequest) returns (GetServiceResponse) {
- option (docker.protobuf.plugin.tls_authorization) = { roles: "swarm-manager" };
- };
- rpc ListServices(ListServicesRequest) returns (ListServicesResponse) {
- option (docker.protobuf.plugin.tls_authorization) = { roles: "swarm-manager" };
- };
- rpc CreateService(CreateServiceRequest) returns (CreateServiceResponse) {
- option (docker.protobuf.plugin.tls_authorization) = { roles: "swarm-manager" };
- };
- rpc UpdateService(UpdateServiceRequest) returns (UpdateServiceResponse) {
- option (docker.protobuf.plugin.tls_authorization) = { roles: "swarm-manager" };
- };
- rpc RemoveService(RemoveServiceRequest) returns (RemoveServiceResponse) {
- option (docker.protobuf.plugin.tls_authorization) = { roles: "swarm-manager" };
- };
- rpc GetNetwork(GetNetworkRequest) returns (GetNetworkResponse) {
- option (docker.protobuf.plugin.tls_authorization) = { roles: "swarm-manager" };
- };
- rpc ListNetworks(ListNetworksRequest) returns (ListNetworksResponse) {
- option (docker.protobuf.plugin.tls_authorization) = { roles: "swarm-manager" };
- };
- rpc CreateNetwork(CreateNetworkRequest) returns (CreateNetworkResponse) {
- option (docker.protobuf.plugin.tls_authorization) = { roles: "swarm-manager" };
- };
- rpc RemoveNetwork(RemoveNetworkRequest) returns (RemoveNetworkResponse) {
- option (docker.protobuf.plugin.tls_authorization) = { roles: "swarm-manager" };
- };
- rpc GetCluster(GetClusterRequest) returns (GetClusterResponse) {
- option (docker.protobuf.plugin.tls_authorization) = { roles: "swarm-manager" };
- };
- rpc ListClusters(ListClustersRequest) returns (ListClustersResponse) {
- option (docker.protobuf.plugin.tls_authorization) = { roles: "swarm-manager" };
- };
- rpc UpdateCluster(UpdateClusterRequest) returns (UpdateClusterResponse) {
- option (docker.protobuf.plugin.tls_authorization) = { roles: "swarm-manager" };
- };
- }
- message GetNodeRequest {
- string node_id = 1 [(gogoproto.customname) = "NodeID"];
- }
- message GetNodeResponse {
- Node node = 1;
- }
- message ListNodesRequest {
- message Filters {
- repeated string names = 1;
- repeated string id_prefixes = 2 [(gogoproto.customname) = "IDPrefixes"];
- map<string, string> labels = 3;
- repeated NodeSpec.Membership memberships = 4;
- repeated NodeRole roles = 5;
- // NamePrefixes matches all objects with the given prefixes
- repeated string name_prefixes = 6;
- }
- Filters filters = 1;
- }
- message ListNodesResponse {
- repeated Node nodes = 1;
- }
- // UpdateNodeRequest requests an update to the specified node. This may be used
- // to request a new availability for a node, such as PAUSE. Invalid updates
- // will be denied and cause an error.
- message UpdateNodeRequest {
- string node_id = 1 [(gogoproto.customname) = "NodeID"];
- Version node_version = 2;
- NodeSpec spec = 3;
- }
- message UpdateNodeResponse {
- Node node = 1;
- }
- // RemoveNodeRequest requests to delete the specified node from store.
- message RemoveNodeRequest {
- string node_id = 1 [(gogoproto.customname) = "NodeID"];
- bool force = 2;
- }
- message RemoveNodeResponse {
- }
- message GetTaskRequest {
- string task_id = 1 [(gogoproto.customname) = "TaskID"];
- }
- message GetTaskResponse {
- Task task = 1;
- }
- message RemoveTaskRequest {
- string task_id = 1 [(gogoproto.customname) = "TaskID"];
- }
- message RemoveTaskResponse {
- }
- message ListTasksRequest {
- message Filters {
- repeated string names = 1;
- repeated string id_prefixes = 2 [(gogoproto.customname) = "IDPrefixes"];
- map<string, string> labels = 3;
- repeated string service_ids = 4 [(gogoproto.customname) = "ServiceIDs"];
- repeated string node_ids = 5 [(gogoproto.customname) = "NodeIDs"];
- repeated docker.swarmkit.v1.TaskState desired_states = 6;
- // NamePrefixes matches all objects with the given prefixes
- repeated string name_prefixes = 7;
- }
- Filters filters = 1;
- }
- message ListTasksResponse {
- repeated Task tasks = 1;
- }
- message CreateServiceRequest {
- ServiceSpec spec = 1;
- }
- message CreateServiceResponse {
- Service service = 1;
- }
- message GetServiceRequest {
- string service_id = 1 [(gogoproto.customname) = "ServiceID"];
- }
- message GetServiceResponse {
- Service service = 1;
- }
- message UpdateServiceRequest {
- string service_id = 1 [(gogoproto.customname) = "ServiceID"];
- Version service_version = 2;
- ServiceSpec spec = 3;
- }
- message UpdateServiceResponse {
- Service service = 1;
- }
- message RemoveServiceRequest {
- string service_id = 1 [(gogoproto.customname) = "ServiceID"];
- }
- message RemoveServiceResponse {
- }
- message ListServicesRequest {
- message Filters {
- repeated string names = 1;
- repeated string id_prefixes = 2 [(gogoproto.customname) = "IDPrefixes"];
- map<string, string> labels = 3;
- // NamePrefixes matches all objects with the given prefixes
- repeated string name_prefixes = 4;
- }
- Filters filters = 1;
- }
- message ListServicesResponse {
- repeated Service services = 1;
- }
- message CreateNetworkRequest {
- NetworkSpec spec = 1;
- }
- message CreateNetworkResponse {
- Network network = 1;
- }
- message GetNetworkRequest {
- string name = 1;
- string network_id = 2 [(gogoproto.customname) = "NetworkID"];
- }
- message GetNetworkResponse {
- Network network = 1;
- }
- message RemoveNetworkRequest {
- string name = 1;
- string network_id = 2 [(gogoproto.customname) = "NetworkID"];
- }
- message RemoveNetworkResponse {}
- message ListNetworksRequest {
- message Filters {
- repeated string names = 1;
- repeated string id_prefixes = 2 [(gogoproto.customname) = "IDPrefixes"];
- map<string, string> labels = 3;
- // NamePrefixes matches all objects with the given prefixes
- repeated string name_prefixes = 4;
- }
- Filters filters = 1;
- }
- message ListNetworksResponse {
- repeated Network networks = 1;
- }
- message GetClusterRequest {
- string cluster_id = 1 [(gogoproto.customname) = "ClusterID"];
- }
- message GetClusterResponse {
- Cluster cluster = 1;
- }
- message ListClustersRequest {
- message Filters {
- repeated string names = 1;
- repeated string id_prefixes = 2 [(gogoproto.customname) = "IDPrefixes"];
- map<string, string> labels = 3;
- // NamePrefixes matches all objects with the given prefixes
- repeated string name_prefixes = 4;
- }
- Filters filters = 1;
- }
- message ListClustersResponse {
- repeated Cluster clusters = 1;
- }
- message JoinTokenRotation {
- // RotateWorkerToken tells UpdateCluster to rotate the worker secret.
- bool rotate_worker_token = 1;
- // RotateManagerSecret tells UpdateCluster to rotate the manager secret.
- bool rotate_manager_token = 2;
- }
- message UpdateClusterRequest {
- // ClusterID is the cluster ID to update.
- string cluster_id = 1 [(gogoproto.customname) = "ClusterID"];
- // ClusterVersion is the version of the cluster being updated.
- Version cluster_version = 2;
- // Spec is the new spec to apply to the cluster.
- ClusterSpec spec = 3;
- // Rotation contains flags for join token rotation
- JoinTokenRotation rotation = 4 [(gogoproto.nullable) = false];
- }
- message UpdateClusterResponse {
- Cluster cluster = 1;
- }