diff --git a/csi.proto b/csi.proto index 87d98eec..0b4d5e7a 100644 --- a/csi.proto +++ b/csi.proto @@ -140,18 +140,18 @@ message CreateVolumeRequest { // validating these parameters. COs will treat these as opaque. map parameters = 5; - // End user credentials used to authenticate/authorize volume creation - // request. + // Credentials used by Controller plugin to authenticate/authorize + // volume creation request. // This field contains credential data, for example username and // password. Each key must consist of alphanumeric characters, '-', // '_' or '.'. Each value MUST contain a valid string. An SP MAY // choose to accept binary (non-string) data by using a binary-to-text // encoding scheme, like base64. An SP SHALL advertise the // requirements for credentials in documentation. COs SHALL permit - // users to pass through the required credentials. This information is + // passing through the required credentials. This information is // sensitive and MUST be treated as such (not logged, etc.) by the CO. // This field is OPTIONAL. - map user_credentials = 6; + map controller_create_credentials = 6; } message CreateVolumeResponse { @@ -267,18 +267,18 @@ message DeleteVolumeRequest { // This field is REQUIRED. string volume_id = 2; - // End user credentials used to authenticate/authorize volume deletion - // request. + // Credentials used by Controller plugin to authenticate/authorize + // volume deletion request. // This field contains credential data, for example username and // password. Each key must consist of alphanumeric characters, '-', // '_' or '.'. Each value MUST contain a valid string. An SP MAY // choose to accept binary (non-string) data by using a binary-to-text // encoding scheme, like base64. An SP SHALL advertise the // requirements for credentials in documentation. COs SHALL permit - // users to pass through the required credentials. This information is + // passing through the required credentials. This information is // sensitive and MUST be treated as such (not logged, etc.) by the CO. // This field is OPTIONAL. - map user_credentials = 3; + map controller_delete_credentials = 3; } message DeleteVolumeResponse {} @@ -304,18 +304,18 @@ message ControllerPublishVolumeRequest { // REQUIRED. bool readonly = 5; - // End user credentials used to authenticate/authorize controller - // publish request. + // Credentials used by Controller plugin to authenticate/authorize + // controller publish request. // This field contains credential data, for example username and // password. Each key must consist of alphanumeric characters, '-', // '_' or '.'. Each value MUST contain a valid string. An SP MAY // choose to accept binary (non-string) data by using a binary-to-text // encoding scheme, like base64. An SP SHALL advertise the // requirements for credentials in documentation. COs SHALL permit - // users to pass through the required credentials. This information is + // passing through the required credentials. This information is // sensitive and MUST be treated as such (not logged, etc.) by the CO. // This field is OPTIONAL. - map user_credentials = 6; + map controller_publish_credentials = 6; // Attributes of the volume to be used on a node. This field is // OPTIONAL and MUST match the attributes of the VolumeInfo identified @@ -345,18 +345,18 @@ message ControllerUnpublishVolumeRequest { // the volume from all nodes it is published to. string node_id = 3; - // End user credentials used to authenticate/authorize controller - // unpublish request. + // Credentials used by Controller plugin to authenticate/authorize + // controller unpublish request. // This field contains credential data, for example username and // password. Each key must consist of alphanumeric characters, '-', // '_' or '.'. Each value MUST contain a valid string. An SP MAY // choose to accept binary (non-string) data by using a binary-to-text // encoding scheme, like base64. An SP SHALL advertise the // requirements for credentials in documentation. COs SHALL permit - // users to pass through the required credentials. This information is + // passing through the required credentials. This information is // sensitive and MUST be treated as such (not logged, etc.) by the CO. // This field is OPTIONAL. - map user_credentials = 4; + map controller_unpublish_credentials = 4; } message ControllerUnpublishVolumeResponse {} @@ -526,7 +526,7 @@ message NodePublishVolumeRequest { // REQUIRED. bool readonly = 6; - // End user credentials used to authenticate/authorize node + // Credentials used by Node plugin to authenticate/authorize node // publish request. // This field contains credential data, for example username and // password. Each key must consist of alphanumeric characters, '-', @@ -534,10 +534,10 @@ message NodePublishVolumeRequest { // choose to accept binary (non-string) data by using a binary-to-text // encoding scheme, like base64. An SP SHALL advertise the // requirements for credentials in documentation. COs SHALL permit - // users to pass through the required credentials. This information is + // passing through the required credentials. This information is // sensitive and MUST be treated as such (not logged, etc.) by the CO. // This field is OPTIONAL. - map user_credentials = 7; + map node_publish_credentials = 7; // Attributes of the volume to publish. This field is OPTIONAL and // MUST match the attributes of the VolumeInfo identified by @@ -560,7 +560,7 @@ message NodeUnpublishVolumeRequest { // This is a REQUIRED field. string target_path = 3; - // End user credentials used to authenticate/authorize node + // Credentials used by Node plugin to authenticate/authorize node // unpublish request. // This field contains credential data, for example username and // password. Each key must consist of alphanumeric characters, '-', @@ -568,10 +568,10 @@ message NodeUnpublishVolumeRequest { // choose to accept binary (non-string) data by using a binary-to-text // encoding scheme, like base64. An SP SHALL advertise the // requirements for credentials in documentation. COs SHALL permit - // users to pass through the required credentials. This information is + // passing through the required credentials. This information is // sensitive and MUST be treated as such (not logged, etc.) by the CO. // This field is OPTIONAL. - map user_credentials = 4; + map node_unpublish_credentials = 4; } message NodeUnpublishVolumeResponse {} diff --git a/lib/go/csi/csi.pb.go b/lib/go/csi/csi.pb.go index 7f53a1cb..990e7bea 100644 --- a/lib/go/csi/csi.pb.go +++ b/lib/go/csi/csi.pb.go @@ -325,18 +325,18 @@ type CreateVolumeRequest struct { // This field is OPTIONAL. The Plugin is responsible for parsing and // validating these parameters. COs will treat these as opaque. Parameters map[string]string `protobuf:"bytes,5,rep,name=parameters" json:"parameters,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` - // End user credentials used to authenticate/authorize volume creation - // request. + // Credentials used by Controller plugin to authenticate/authorize + // volume creation request. // This field contains credential data, for example username and // password. Each key must consist of alphanumeric characters, '-', // '_' or '.'. Each value MUST contain a valid string. An SP MAY // choose to accept binary (non-string) data by using a binary-to-text // encoding scheme, like base64. An SP SHALL advertise the // requirements for credentials in documentation. COs SHALL permit - // users to pass through the required credentials. This information is + // passing through the required credentials. This information is // sensitive and MUST be treated as such (not logged, etc.) by the CO. // This field is OPTIONAL. - UserCredentials map[string]string `protobuf:"bytes,6,rep,name=user_credentials,json=userCredentials" json:"user_credentials,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + ControllerCreateCredentials map[string]string `protobuf:"bytes,6,rep,name=controller_create_credentials,json=controllerCreateCredentials" json:"controller_create_credentials,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` } func (m *CreateVolumeRequest) Reset() { *m = CreateVolumeRequest{} } @@ -379,9 +379,9 @@ func (m *CreateVolumeRequest) GetParameters() map[string]string { return nil } -func (m *CreateVolumeRequest) GetUserCredentials() map[string]string { +func (m *CreateVolumeRequest) GetControllerCreateCredentials() map[string]string { if m != nil { - return m.UserCredentials + return m.ControllerCreateCredentials } return nil } @@ -684,18 +684,18 @@ type DeleteVolumeRequest struct { // The ID of the volume to be deprovisioned. // This field is REQUIRED. VolumeId string `protobuf:"bytes,2,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"` - // End user credentials used to authenticate/authorize volume deletion - // request. + // Credentials used by Controller plugin to authenticate/authorize + // volume deletion request. // This field contains credential data, for example username and // password. Each key must consist of alphanumeric characters, '-', // '_' or '.'. Each value MUST contain a valid string. An SP MAY // choose to accept binary (non-string) data by using a binary-to-text // encoding scheme, like base64. An SP SHALL advertise the // requirements for credentials in documentation. COs SHALL permit - // users to pass through the required credentials. This information is + // passing through the required credentials. This information is // sensitive and MUST be treated as such (not logged, etc.) by the CO. // This field is OPTIONAL. - UserCredentials map[string]string `protobuf:"bytes,3,rep,name=user_credentials,json=userCredentials" json:"user_credentials,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + ControllerDeleteCredentials map[string]string `protobuf:"bytes,3,rep,name=controller_delete_credentials,json=controllerDeleteCredentials" json:"controller_delete_credentials,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` } func (m *DeleteVolumeRequest) Reset() { *m = DeleteVolumeRequest{} } @@ -717,9 +717,9 @@ func (m *DeleteVolumeRequest) GetVolumeId() string { return "" } -func (m *DeleteVolumeRequest) GetUserCredentials() map[string]string { +func (m *DeleteVolumeRequest) GetControllerDeleteCredentials() map[string]string { if m != nil { - return m.UserCredentials + return m.ControllerDeleteCredentials } return nil } @@ -749,18 +749,18 @@ type ControllerPublishVolumeRequest struct { // Whether to publish the volume in readonly mode. This field is // REQUIRED. Readonly bool `protobuf:"varint,5,opt,name=readonly" json:"readonly,omitempty"` - // End user credentials used to authenticate/authorize controller - // publish request. + // Credentials used by Controller plugin to authenticate/authorize + // controller publish request. // This field contains credential data, for example username and // password. Each key must consist of alphanumeric characters, '-', // '_' or '.'. Each value MUST contain a valid string. An SP MAY // choose to accept binary (non-string) data by using a binary-to-text // encoding scheme, like base64. An SP SHALL advertise the // requirements for credentials in documentation. COs SHALL permit - // users to pass through the required credentials. This information is + // passing through the required credentials. This information is // sensitive and MUST be treated as such (not logged, etc.) by the CO. // This field is OPTIONAL. - UserCredentials map[string]string `protobuf:"bytes,6,rep,name=user_credentials,json=userCredentials" json:"user_credentials,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + ControllerPublishCredentials map[string]string `protobuf:"bytes,6,rep,name=controller_publish_credentials,json=controllerPublishCredentials" json:"controller_publish_credentials,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` // Attributes of the volume to be used on a node. This field is // OPTIONAL and MUST match the attributes of the VolumeInfo identified // by `volume_id`. @@ -807,9 +807,9 @@ func (m *ControllerPublishVolumeRequest) GetReadonly() bool { return false } -func (m *ControllerPublishVolumeRequest) GetUserCredentials() map[string]string { +func (m *ControllerPublishVolumeRequest) GetControllerPublishCredentials() map[string]string { if m != nil { - return m.UserCredentials + return m.ControllerPublishCredentials } return nil } @@ -855,18 +855,18 @@ type ControllerUnpublishVolumeRequest struct { // the specified node. If the value is unset, the SP MUST unpublish // the volume from all nodes it is published to. NodeId string `protobuf:"bytes,3,opt,name=node_id,json=nodeId" json:"node_id,omitempty"` - // End user credentials used to authenticate/authorize controller - // unpublish request. + // Credentials used by Controller plugin to authenticate/authorize + // controller unpublish request. // This field contains credential data, for example username and // password. Each key must consist of alphanumeric characters, '-', // '_' or '.'. Each value MUST contain a valid string. An SP MAY // choose to accept binary (non-string) data by using a binary-to-text // encoding scheme, like base64. An SP SHALL advertise the // requirements for credentials in documentation. COs SHALL permit - // users to pass through the required credentials. This information is + // passing through the required credentials. This information is // sensitive and MUST be treated as such (not logged, etc.) by the CO. // This field is OPTIONAL. - UserCredentials map[string]string `protobuf:"bytes,4,rep,name=user_credentials,json=userCredentials" json:"user_credentials,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + ControllerUnpublishCredentials map[string]string `protobuf:"bytes,4,rep,name=controller_unpublish_credentials,json=controllerUnpublishCredentials" json:"controller_unpublish_credentials,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` } func (m *ControllerUnpublishVolumeRequest) Reset() { *m = ControllerUnpublishVolumeRequest{} } @@ -897,9 +897,9 @@ func (m *ControllerUnpublishVolumeRequest) GetNodeId() string { return "" } -func (m *ControllerUnpublishVolumeRequest) GetUserCredentials() map[string]string { +func (m *ControllerUnpublishVolumeRequest) GetControllerUnpublishCredentials() map[string]string { if m != nil { - return m.UserCredentials + return m.ControllerUnpublishCredentials } return nil } @@ -1356,7 +1356,7 @@ type NodePublishVolumeRequest struct { // Whether to publish the volume in readonly mode. This field is // REQUIRED. Readonly bool `protobuf:"varint,6,opt,name=readonly" json:"readonly,omitempty"` - // End user credentials used to authenticate/authorize node + // Credentials used by Node plugin to authenticate/authorize node // publish request. // This field contains credential data, for example username and // password. Each key must consist of alphanumeric characters, '-', @@ -1364,10 +1364,10 @@ type NodePublishVolumeRequest struct { // choose to accept binary (non-string) data by using a binary-to-text // encoding scheme, like base64. An SP SHALL advertise the // requirements for credentials in documentation. COs SHALL permit - // users to pass through the required credentials. This information is + // passing through the required credentials. This information is // sensitive and MUST be treated as such (not logged, etc.) by the CO. // This field is OPTIONAL. - UserCredentials map[string]string `protobuf:"bytes,7,rep,name=user_credentials,json=userCredentials" json:"user_credentials,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + NodePublishCredentials map[string]string `protobuf:"bytes,7,rep,name=node_publish_credentials,json=nodePublishCredentials" json:"node_publish_credentials,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` // Attributes of the volume to publish. This field is OPTIONAL and // MUST match the attributes of the VolumeInfo identified by // `volume_id`. @@ -1421,9 +1421,9 @@ func (m *NodePublishVolumeRequest) GetReadonly() bool { return false } -func (m *NodePublishVolumeRequest) GetUserCredentials() map[string]string { +func (m *NodePublishVolumeRequest) GetNodePublishCredentials() map[string]string { if m != nil { - return m.UserCredentials + return m.NodePublishCredentials } return nil } @@ -1454,7 +1454,7 @@ type NodeUnpublishVolumeRequest struct { // path in the root filesystem of the process serving this request. // This is a REQUIRED field. TargetPath string `protobuf:"bytes,3,opt,name=target_path,json=targetPath" json:"target_path,omitempty"` - // End user credentials used to authenticate/authorize node + // Credentials used by Node plugin to authenticate/authorize node // unpublish request. // This field contains credential data, for example username and // password. Each key must consist of alphanumeric characters, '-', @@ -1462,10 +1462,10 @@ type NodeUnpublishVolumeRequest struct { // choose to accept binary (non-string) data by using a binary-to-text // encoding scheme, like base64. An SP SHALL advertise the // requirements for credentials in documentation. COs SHALL permit - // users to pass through the required credentials. This information is + // passing through the required credentials. This information is // sensitive and MUST be treated as such (not logged, etc.) by the CO. // This field is OPTIONAL. - UserCredentials map[string]string `protobuf:"bytes,4,rep,name=user_credentials,json=userCredentials" json:"user_credentials,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + NodeUnpublishCredentials map[string]string `protobuf:"bytes,4,rep,name=node_unpublish_credentials,json=nodeUnpublishCredentials" json:"node_unpublish_credentials,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` } func (m *NodeUnpublishVolumeRequest) Reset() { *m = NodeUnpublishVolumeRequest{} } @@ -1494,9 +1494,9 @@ func (m *NodeUnpublishVolumeRequest) GetTargetPath() string { return "" } -func (m *NodeUnpublishVolumeRequest) GetUserCredentials() map[string]string { +func (m *NodeUnpublishVolumeRequest) GetNodeUnpublishCredentials() map[string]string { if m != nil { - return m.UserCredentials + return m.NodeUnpublishCredentials } return nil } @@ -2400,130 +2400,136 @@ var _Node_serviceDesc = grpc.ServiceDesc{ func init() { proto.RegisterFile("csi.proto", fileDescriptor0) } var fileDescriptor0 = []byte{ - // 1993 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x59, 0x4b, 0x73, 0xe3, 0x58, - 0x15, 0xb6, 0x6c, 0xe7, 0xe1, 0xe3, 0x38, 0xed, 0x5c, 0xe7, 0xa1, 0x28, 0xfd, 0x70, 0xab, 0xa7, - 0x7b, 0x42, 0x15, 0xe3, 0xa2, 0x3c, 0x54, 0xd1, 0xe9, 0x9e, 0x19, 0x48, 0x6c, 0x4f, 0x62, 0x26, - 0x71, 0xa7, 0x14, 0xa7, 0x9b, 0x01, 0xa6, 0x84, 0x62, 0xdf, 0xa4, 0x45, 0xcb, 0x92, 0x47, 0x92, - 0x5d, 0xed, 0x3d, 0x4b, 0x16, 0xec, 0xd8, 0xc1, 0x72, 0xa0, 0x58, 0x02, 0xbf, 0x80, 0xbf, 0x00, - 0xac, 0xd9, 0xf2, 0x0f, 0xa8, 0x62, 0x43, 0xdd, 0x87, 0x64, 0x49, 0x96, 0x1c, 0x3b, 0x93, 0x1e, - 0x66, 0x27, 0x9d, 0xc7, 0x77, 0xcf, 0xe3, 0xde, 0x73, 0xce, 0x95, 0x20, 0xd7, 0x71, 0xf4, 0x4a, - 0xdf, 0xb6, 0x5c, 0x0b, 0x65, 0x3a, 0x8e, 0x2e, 0xdf, 0x83, 0x9d, 0x43, 0xec, 0x9e, 0x0d, 0xfa, - 0x7d, 0xcb, 0x76, 0x71, 0xf7, 0x25, 0xb6, 0x1d, 0xdd, 0x32, 0x1d, 0x05, 0x7f, 0x39, 0xc0, 0x8e, - 0x2b, 0xff, 0x0c, 0xee, 0xc6, 0xb3, 0x9d, 0xbe, 0x65, 0x3a, 0x18, 0x3d, 0x07, 0xe4, 0x78, 0x4c, - 0x75, 0xc8, 0xb9, 0xa2, 0x50, 0xce, 0xec, 0xe6, 0xab, 0x2b, 0x15, 0xb2, 0x16, 0x57, 0x51, 0xd6, - 0x9c, 0x28, 0x88, 0xfc, 0x19, 0x2c, 0xf1, 0x67, 0xb4, 0x0e, 0x0b, 0x3d, 0xed, 0x97, 0x96, 0x2d, - 0x0a, 0x65, 0x61, 0xb7, 0xa0, 0xb0, 0x17, 0x4a, 0xd5, 0x4d, 0xcb, 0x16, 0xd3, 0x9c, 0x4a, 0x5e, - 0x08, 0xb5, 0xaf, 0xb9, 0x9d, 0xd7, 0x62, 0x86, 0x51, 0xe9, 0x8b, 0xfc, 0x09, 0xac, 0x1f, 0x62, - 0xf7, 0xd4, 0x18, 0x5c, 0xe9, 0x66, 0xd3, 0xbc, 0xb4, 0xb8, 0x07, 0xe8, 0x09, 0x2c, 0x71, 0xbb, - 0x28, 0x76, 0xd4, 0x2c, 0x8f, 0x29, 0xff, 0x43, 0x80, 0x8d, 0x08, 0x00, 0xf7, 0x11, 0x41, 0xd6, - 0xd4, 0x7a, 0x98, 0xaa, 0xe7, 0x14, 0xfa, 0x8c, 0x1e, 0xc3, 0xea, 0x10, 0x9b, 0x5d, 0xcb, 0xf6, - 0x9c, 0xa6, 0x26, 0xe6, 0x94, 0x02, 0xa3, 0x7a, 0x6e, 0xd5, 0x61, 0xb9, 0xa7, 0x99, 0xfa, 0x25, - 0x76, 0x5c, 0x31, 0x43, 0x83, 0xb2, 0x4b, 0x57, 0x8f, 0x5d, 0xa8, 0x72, 0xc2, 0x45, 0x1b, 0xa6, - 0x6b, 0x8f, 0x14, 0x5f, 0x53, 0x7a, 0x0e, 0x85, 0x10, 0x0b, 0x15, 0x21, 0xf3, 0x06, 0x8f, 0xb8, - 0x41, 0xe4, 0x91, 0xc4, 0x64, 0xa8, 0x19, 0x03, 0xcc, 0xcd, 0x60, 0x2f, 0xcf, 0xd2, 0x4f, 0x05, - 0xf9, 0xbf, 0x19, 0x28, 0xd5, 0x6c, 0xac, 0xb9, 0xf8, 0xa5, 0x65, 0x0c, 0x7a, 0x78, 0xce, 0xb8, - 0xf8, 0xde, 0xa7, 0x03, 0xde, 0xef, 0xc1, 0x6a, 0x47, 0xeb, 0x6b, 0x1d, 0xdd, 0x1d, 0xa9, 0xb6, - 0x66, 0x5e, 0x61, 0x9a, 0x8a, 0x7c, 0x15, 0x51, 0x88, 0x1a, 0x67, 0x29, 0x84, 0xa3, 0x14, 0x3a, - 0xc1, 0x57, 0xf4, 0x29, 0x94, 0x86, 0xd4, 0x0e, 0x95, 0xd0, 0x2f, 0x74, 0x43, 0x77, 0x75, 0xec, - 0x88, 0x59, 0x1a, 0x9c, 0x0d, 0x66, 0x02, 0xe5, 0xd7, 0x3c, 0xf6, 0x48, 0x41, 0xc3, 0x30, 0x45, - 0xc7, 0x0e, 0x3a, 0x02, 0xe8, 0x6b, 0xb6, 0xd6, 0xc3, 0x2e, 0xb6, 0x1d, 0x71, 0x21, 0x10, 0xdb, - 0x18, 0x67, 0x2b, 0xa7, 0xbe, 0x28, 0x8b, 0x6d, 0x40, 0x17, 0xfd, 0x04, 0x8a, 0x03, 0x07, 0xdb, - 0x6a, 0xc7, 0xc6, 0x5d, 0x6c, 0xba, 0xba, 0x66, 0x38, 0xe2, 0x22, 0xc5, 0xfb, 0x20, 0x11, 0xef, - 0xdc, 0xc1, 0x76, 0x6d, 0x2c, 0xcf, 0x40, 0xef, 0x0c, 0xc2, 0x54, 0xe9, 0x63, 0xb8, 0x13, 0x59, - 0x78, 0x9e, 0xcc, 0x49, 0x07, 0xb0, 0x1e, 0xb7, 0xce, 0x5c, 0xd9, 0x3f, 0x82, 0xf5, 0xb0, 0xfd, - 0x7c, 0x4f, 0x7f, 0x0f, 0xf2, 0x3c, 0x0d, 0xba, 0x79, 0x69, 0xf1, 0x1d, 0x70, 0x27, 0x10, 0x7e, - 0xba, 0x31, 0x61, 0xe8, 0x3f, 0xcb, 0xbf, 0xcb, 0x42, 0x31, 0x9a, 0x19, 0xb4, 0x07, 0x0b, 0x17, - 0x86, 0xd5, 0x79, 0xc3, 0x01, 0x1e, 0xc6, 0xe6, 0xaf, 0x72, 0x40, 0x44, 0x18, 0xf5, 0x28, 0xa5, - 0x30, 0x0d, 0xa2, 0xda, 0xb3, 0x06, 0xa6, 0x4b, 0x6d, 0x4e, 0x54, 0x3d, 0x21, 0x22, 0x63, 0x55, - 0xaa, 0x81, 0xf6, 0x21, 0xaf, 0x75, 0x3a, 0xd8, 0x71, 0xd4, 0x9e, 0xd5, 0xf5, 0xf6, 0x5e, 0x39, - 0x1e, 0x60, 0x9f, 0x0a, 0x9e, 0x58, 0x5d, 0xac, 0x80, 0xe6, 0x3f, 0x4b, 0x05, 0xc8, 0x07, 0xac, - 0x92, 0x0e, 0x21, 0x1f, 0x58, 0x09, 0x6d, 0xc1, 0xd2, 0xa5, 0xa3, 0xba, 0xa3, 0xbe, 0x77, 0xe8, - 0x17, 0x2f, 0x9d, 0xf6, 0xa8, 0x8f, 0xd1, 0x03, 0xc8, 0x53, 0x13, 0xd4, 0x4b, 0x43, 0xbb, 0x72, - 0xc4, 0x74, 0x39, 0xb3, 0x9b, 0x53, 0x80, 0x92, 0x3e, 0x25, 0x14, 0xe9, 0xdf, 0x02, 0xc0, 0x78, - 0x49, 0xb4, 0x07, 0x59, 0x6a, 0x22, 0x41, 0x59, 0xad, 0x3e, 0xbe, 0xce, 0xc4, 0x0a, 0xb5, 0x93, - 0xaa, 0xc8, 0xbf, 0x17, 0x20, 0x4b, 0x31, 0xf2, 0xb0, 0x74, 0xde, 0xfa, 0xac, 0xf5, 0xe2, 0x55, - 0xab, 0x98, 0x42, 0x9b, 0x80, 0xce, 0x9a, 0xad, 0xc3, 0xe3, 0x86, 0xda, 0x7a, 0x51, 0x6f, 0xa8, - 0xaf, 0x94, 0x66, 0xbb, 0xa1, 0x14, 0x05, 0xb4, 0x03, 0x5b, 0x41, 0xba, 0xd2, 0xd8, 0xaf, 0x37, - 0x14, 0xf5, 0x45, 0xeb, 0xf8, 0xf3, 0x62, 0x1a, 0x49, 0xb0, 0x79, 0x72, 0x7e, 0xdc, 0x6e, 0x4e, - 0xf2, 0x32, 0xe8, 0x2e, 0x88, 0x01, 0x1e, 0xc7, 0xe0, 0xb0, 0x59, 0x02, 0x1b, 0xe0, 0xb2, 0x47, - 0xce, 0x5c, 0x38, 0x28, 0xf8, 0x69, 0x20, 0x91, 0x92, 0x5f, 0x41, 0x21, 0x74, 0xf2, 0x49, 0x8d, - 0xb4, 0xf1, 0x97, 0x03, 0xdd, 0xc6, 0x5d, 0xf5, 0x62, 0xe4, 0x62, 0x87, 0x86, 0x21, 0xab, 0x14, - 0x3c, 0xea, 0x01, 0x21, 0x92, 0x98, 0x1a, 0x7a, 0x4f, 0x77, 0xb9, 0x4c, 0x9a, 0xca, 0x00, 0x25, - 0x51, 0x01, 0xf9, 0x6f, 0x02, 0xc0, 0x78, 0x53, 0x12, 0x58, 0xbf, 0xf8, 0x84, 0x60, 0x3d, 0x2a, - 0x83, 0x5d, 0x85, 0xb4, 0xde, 0xe5, 0x07, 0x22, 0xad, 0x77, 0xd1, 0x0f, 0x01, 0x34, 0xd7, 0xb5, - 0xf5, 0x8b, 0x01, 0x51, 0x61, 0xc5, 0xf8, 0x41, 0x64, 0xc3, 0x57, 0xf6, 0x7d, 0x09, 0x5e, 0x27, - 0xc6, 0x2a, 0xe4, 0x34, 0x47, 0xd8, 0x73, 0x9d, 0xc4, 0xff, 0x08, 0x50, 0xaa, 0x63, 0x03, 0xdf, - 0xb4, 0x0e, 0xef, 0x40, 0xce, 0x3b, 0xb1, 0x9e, 0x5b, 0xcb, 0xfc, 0x78, 0x76, 0x63, 0x6b, 0x58, - 0x26, 0x50, 0xc3, 0x62, 0x16, 0x9e, 0xb1, 0x86, 0xdd, 0x46, 0x11, 0xda, 0x84, 0xf5, 0xb0, 0x01, - 0xac, 0x08, 0xc9, 0x7f, 0xc9, 0xc2, 0xfd, 0x9a, 0x65, 0xba, 0xb6, 0x65, 0x18, 0xd8, 0x3e, 0x1d, - 0x5c, 0x18, 0xba, 0xf3, 0xfa, 0x1d, 0x44, 0x67, 0x0b, 0x96, 0x4c, 0xab, 0x4b, 0x59, 0x19, 0x76, - 0x9c, 0xc9, 0x6b, 0xb3, 0x8b, 0x0e, 0x60, 0x2d, 0xda, 0x8c, 0x46, 0x62, 0x96, 0xae, 0x93, 0xd0, - 0x8a, 0x8a, 0xc3, 0x68, 0x09, 0x94, 0x60, 0xd9, 0xc6, 0x5a, 0xd7, 0x32, 0x8d, 0x91, 0xb8, 0x50, - 0x16, 0x76, 0x97, 0x15, 0xff, 0x1d, 0x75, 0x12, 0x5b, 0xcb, 0x53, 0xd6, 0x5a, 0xa6, 0x3a, 0x3f, - 0x5b, 0x86, 0xd0, 0xa5, 0xef, 0x44, 0x60, 0x7f, 0x2f, 0xd1, 0x55, 0xf6, 0x66, 0x59, 0x85, 0xbd, - 0x45, 0x77, 0x3e, 0x77, 0x74, 0x4c, 0xbe, 0x8d, 0x9d, 0x20, 0xd5, 0x60, 0x23, 0x76, 0xb9, 0xb9, - 0xb6, 0xd3, 0xdf, 0x05, 0x78, 0x90, 0xe8, 0x13, 0xef, 0x6f, 0x6f, 0xa0, 0xd4, 0x67, 0x0c, 0x35, - 0xdc, 0xe7, 0x48, 0x58, 0x9e, 0x4f, 0x0f, 0x0b, 0x9f, 0xc6, 0x42, 0x54, 0x52, 0x1d, 0x58, 0x60, - 0xd6, 0xfa, 0x51, 0xba, 0x54, 0x87, 0xcd, 0x78, 0xe1, 0xb9, 0xdc, 0xfa, 0x53, 0x1a, 0xca, 0x63, - 0x9b, 0xce, 0xcd, 0xfe, 0x37, 0x7f, 0x1e, 0x70, 0xcc, 0x7e, 0x65, 0x93, 0xd9, 0xb3, 0x48, 0xc8, - 0xe2, 0xcd, 0xfb, 0x06, 0x6b, 0xca, 0x23, 0x78, 0x38, 0xc5, 0x1a, 0x5e, 0x60, 0xfe, 0x95, 0x86, - 0x87, 0x2f, 0x35, 0x43, 0xef, 0xfa, 0x03, 0x50, 0x70, 0x86, 0xbc, 0xd5, 0x98, 0x26, 0xcc, 0xb5, - 0x99, 0x79, 0xe7, 0x5a, 0x3d, 0xee, 0x34, 0xb3, 0x1c, 0x7c, 0xc4, 0x50, 0xae, 0xf3, 0x67, 0xe6, - 0x03, 0x7d, 0x2b, 0x87, 0xf1, 0xe7, 0x20, 0x4f, 0xb3, 0x88, 0x1f, 0xc7, 0xbb, 0x90, 0xf3, 0xaf, - 0x7f, 0x14, 0x77, 0x59, 0x19, 0x13, 0x90, 0x08, 0x4b, 0x3d, 0xec, 0x38, 0xda, 0x95, 0x87, 0xef, - 0xbd, 0xca, 0xbf, 0x12, 0x00, 0x1d, 0xeb, 0x0e, 0x9f, 0xcb, 0xe6, 0xce, 0x18, 0x19, 0xd7, 0xb4, - 0xb7, 0x2a, 0x36, 0x5d, 0x5b, 0xe7, 0xa3, 0x45, 0x41, 0x81, 0x9e, 0xf6, 0xb6, 0xc1, 0x28, 0x64, - 0x96, 0x70, 0x5c, 0xcd, 0x76, 0x75, 0xf3, 0x4a, 0x75, 0xad, 0x37, 0xd8, 0xe4, 0x07, 0xa2, 0xe0, - 0x51, 0xdb, 0x84, 0x28, 0xff, 0x51, 0x80, 0x52, 0xc8, 0x0c, 0xee, 0xd6, 0x53, 0x58, 0xf2, 0xb0, - 0x59, 0x65, 0xb9, 0x4f, 0xed, 0x88, 0x11, 0xad, 0xb0, 0x24, 0x78, 0xe2, 0xe8, 0x1e, 0x80, 0x89, - 0xdf, 0xba, 0x7c, 0x51, 0xe6, 0x75, 0x8e, 0x50, 0xe8, 0x82, 0xd2, 0x1e, 0x2c, 0xb0, 0x54, 0xcc, - 0x3f, 0xa7, 0xff, 0x3a, 0x0d, 0xe8, 0x10, 0xbb, 0xfe, 0x28, 0x36, 0x67, 0xc8, 0x12, 0xf6, 0x71, - 0x7a, 0xde, 0x7d, 0x7c, 0x18, 0xba, 0x9f, 0xb1, 0x63, 0xf0, 0xbe, 0x77, 0xf7, 0x8d, 0x18, 0x37, - 0xed, 0x7a, 0xf6, 0x35, 0x2f, 0x51, 0x72, 0x1d, 0x4a, 0xa1, 0x05, 0x79, 0xe6, 0x3e, 0x00, 0xa4, - 0x0d, 0x35, 0xdd, 0xd0, 0x2e, 0x0c, 0xe6, 0x29, 0xe1, 0xf2, 0x41, 0x72, 0xcd, 0xe7, 0x78, 0x6a, - 0xf2, 0x8f, 0x60, 0x33, 0xd0, 0x2e, 0x6c, 0xeb, 0x62, 0xde, 0x82, 0x2c, 0x6f, 0xc3, 0xd6, 0x04, - 0x02, 0xaf, 0x52, 0x3f, 0x0e, 0xd6, 0x7d, 0x6e, 0xec, 0x0d, 0x6b, 0x94, 0xac, 0x07, 0xcb, 0xe2, - 0x04, 0x16, 0x77, 0xbe, 0x0e, 0x2b, 0x31, 0xc9, 0x2d, 0x47, 0x4a, 0xfc, 0x19, 0xb6, 0x87, 0x7a, - 0x27, 0x98, 0xe7, 0x90, 0x96, 0xfc, 0xdb, 0x34, 0xec, 0x4c, 0x91, 0x46, 0x4f, 0x21, 0x63, 0xf7, - 0x3b, 0xdc, 0xdc, 0xf7, 0xae, 0x03, 0xaf, 0x28, 0xa7, 0xb5, 0xa3, 0x94, 0x42, 0x54, 0xa4, 0xbf, - 0x0a, 0x90, 0x51, 0x4e, 0x6b, 0xe8, 0x63, 0xc8, 0xfa, 0x77, 0xb0, 0xd5, 0xea, 0x77, 0x66, 0x81, - 0xa8, 0x90, 0x6b, 0x9a, 0x42, 0xd5, 0x64, 0x0b, 0xb2, 0xf4, 0xd2, 0x16, 0xba, 0x40, 0x89, 0xb0, - 0x5e, 0x53, 0x1a, 0xfb, 0xed, 0x86, 0x5a, 0x6f, 0x1c, 0x37, 0xda, 0x0d, 0xf5, 0xe5, 0x8b, 0xe3, - 0xf3, 0x93, 0x46, 0x51, 0x20, 0x37, 0xa1, 0xd3, 0xf3, 0x83, 0xe3, 0xe6, 0xd9, 0x91, 0x7a, 0xde, - 0xf2, 0x9e, 0x38, 0x37, 0x8d, 0x8a, 0xb0, 0x72, 0xdc, 0x3c, 0x6b, 0x73, 0xc2, 0x59, 0x31, 0x43, - 0x28, 0x87, 0x8d, 0xb6, 0x5a, 0xdb, 0x3f, 0xdd, 0xaf, 0x35, 0xdb, 0x9f, 0x17, 0xb3, 0x07, 0x8b, - 0xcc, 0x5e, 0xf9, 0x9f, 0x0b, 0x20, 0xb6, 0xac, 0x2e, 0x7e, 0x77, 0x13, 0x6d, 0x37, 0x7e, 0xbc, - 0x61, 0xc7, 0xec, 0xfb, 0x14, 0x30, 0xc9, 0x80, 0xd9, 0xe7, 0x1a, 0x52, 0x3e, 0x5d, 0xcd, 0xbe, - 0xc2, 0xae, 0xda, 0xd7, 0xdc, 0xd7, 0x74, 0x30, 0xce, 0x29, 0xc0, 0x48, 0xa7, 0x9a, 0xfb, 0x3a, - 0x7e, 0x7e, 0x5e, 0xb8, 0xf9, 0xfc, 0xbc, 0x18, 0x99, 0x9f, 0xbf, 0x88, 0x99, 0x47, 0xd8, 0x64, - 0x5b, 0x9d, 0xee, 0xe3, 0x6c, 0x93, 0xf3, 0x2f, 0xe2, 0x7a, 0xed, 0x32, 0xc5, 0xff, 0x70, 0x3a, - 0xfe, 0xac, 0x2d, 0xf6, 0x56, 0x26, 0xc3, 0x6f, 0xcf, 0xe4, 0xbd, 0x03, 0xdb, 0x31, 0x21, 0xe1, - 0x65, 0xec, 0xab, 0x34, 0x48, 0x84, 0xfb, 0x2e, 0x27, 0xd7, 0xc8, 0x8e, 0xcc, 0x4c, 0xec, 0x48, - 0x35, 0x71, 0x82, 0x1d, 0x9f, 0x8a, 0xff, 0xfb, 0xec, 0x7a, 0x0f, 0x76, 0x62, 0xed, 0xe0, 0x81, - 0x7c, 0x06, 0xc5, 0x43, 0xec, 0x12, 0x89, 0x66, 0x7d, 0xde, 0xfa, 0xff, 0x5d, 0x58, 0x0b, 0xe8, - 0xf2, 0x7a, 0x1f, 0x98, 0xf7, 0x85, 0xe0, 0xbc, 0x4f, 0x56, 0xa2, 0xf9, 0xbc, 0x49, 0x43, 0x2b, - 0xc1, 0x5a, 0x40, 0x97, 0x9b, 0x5e, 0x67, 0x5b, 0xe0, 0x6b, 0x36, 0xb1, 0x2f, 0x58, 0x7c, 0x92, - 0xda, 0xd7, 0x27, 0x91, 0xf6, 0xc5, 0x46, 0x2f, 0xc9, 0xcf, 0xef, 0x75, 0x8d, 0xeb, 0x0f, 0x02, - 0x6c, 0xc4, 0xca, 0xa1, 0x6a, 0xb0, 0x65, 0xdd, 0x4f, 0x06, 0x0c, 0x36, 0xab, 0x33, 0xd6, 0xab, - 0x7e, 0x10, 0xea, 0x55, 0x8f, 0xa6, 0xeb, 0x06, 0xbb, 0x54, 0x29, 0xa6, 0x4b, 0x79, 0x9d, 0xa4, - 0xfa, 0x67, 0x01, 0x96, 0x9b, 0x74, 0xa3, 0xb9, 0xa4, 0x1a, 0xae, 0xc7, 0xfd, 0x8b, 0x41, 0x65, - 0x6f, 0xac, 0x4a, 0xfa, 0x8b, 0x23, 0x3d, 0x9c, 0x22, 0xc1, 0x33, 0x97, 0x42, 0x47, 0x50, 0x08, - 0xfd, 0x96, 0x40, 0xdb, 0x71, 0xbf, 0x2a, 0x18, 0xa0, 0x94, 0xfc, 0x17, 0x43, 0x4e, 0x55, 0xbf, - 0x5a, 0x04, 0x18, 0xf7, 0x69, 0xd4, 0x80, 0x95, 0xe0, 0x37, 0x68, 0x24, 0x26, 0x7d, 0x56, 0x97, - 0xb6, 0x63, 0x38, 0xbe, 0x7d, 0x0d, 0x58, 0x09, 0x7e, 0x45, 0xe2, 0x30, 0x31, 0x5f, 0xb6, 0x38, - 0x4c, 0xec, 0x27, 0xa7, 0x14, 0xba, 0x0c, 0x0d, 0x62, 0xc1, 0x03, 0x88, 0x1e, 0xcd, 0xf0, 0xb9, - 0x44, 0x7a, 0x6f, 0x96, 0x8f, 0x07, 0x72, 0x0a, 0x19, 0xb0, 0x9d, 0x78, 0x41, 0x45, 0x8f, 0x67, - 0xba, 0x4e, 0x4b, 0x4f, 0xae, 0x13, 0xf3, 0x57, 0xb3, 0x40, 0x4a, 0xbe, 0x86, 0xa1, 0x27, 0xb3, - 0xdd, 0x1c, 0xa5, 0xf7, 0xaf, 0x95, 0xf3, 0x17, 0x3c, 0x80, 0x7c, 0xe0, 0x9a, 0x83, 0xb6, 0x26, - 0x2f, 0x3e, 0x0c, 0x52, 0x4c, 0xba, 0x11, 0x31, 0x8c, 0xc0, 0x6c, 0xce, 0x31, 0x26, 0xaf, 0x07, - 0x1c, 0x23, 0x66, 0x8c, 0x97, 0x53, 0xa8, 0x05, 0x77, 0x22, 0x73, 0x35, 0xda, 0x89, 0x66, 0x28, - 0x50, 0xde, 0xa4, 0xbb, 0xf1, 0xcc, 0xf8, 0xb4, 0x45, 0x2a, 0xd0, 0x44, 0xda, 0xe2, 0xeb, 0xdc, - 0x44, 0xda, 0x12, 0x0a, 0x99, 0x9c, 0xaa, 0xfe, 0x26, 0x03, 0x59, 0x52, 0x25, 0x50, 0x9b, 0x57, - 0xd3, 0xd0, 0x2e, 0xb9, 0x37, 0x75, 0x08, 0x91, 0xee, 0x27, 0xb1, 0x7d, 0x67, 0x7e, 0x0a, 0xa5, - 0x98, 0x46, 0x83, 0x1e, 0x5c, 0xd3, 0x0a, 0xa5, 0x72, 0xb2, 0x80, 0x8f, 0xfd, 0x11, 0xe4, 0xfc, - 0x4e, 0x83, 0x36, 0xbc, 0x0c, 0x85, 0xba, 0x96, 0xb4, 0x19, 0x25, 0x07, 0xb5, 0xfd, 0xee, 0xc1, - 0xb5, 0xa3, 0x9d, 0x88, 0x6b, 0x4f, 0x36, 0x19, 0xdf, 0xaf, 0x68, 0x7a, 0xc6, 0x7e, 0x25, 0x24, - 0xa6, 0x9c, 0x2c, 0xe0, 0x61, 0x5f, 0x2c, 0xd2, 0x9f, 0xe3, 0x1f, 0xfe, 0x2f, 0x00, 0x00, 0xff, - 0xff, 0x17, 0x25, 0x65, 0xbe, 0x29, 0x1f, 0x00, 0x00, + // 2084 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x1a, 0x49, 0x73, 0xe3, 0x58, + 0x39, 0xb2, 0x9d, 0xed, 0x4b, 0x9c, 0x71, 0x9e, 0xb3, 0x28, 0xca, 0xd2, 0x6e, 0xf5, 0x74, 0x4f, + 0xa8, 0x02, 0x17, 0x95, 0xa1, 0x8a, 0xce, 0xf4, 0xf4, 0x40, 0x62, 0x7b, 0x12, 0xd3, 0x89, 0x13, + 0x14, 0xa7, 0xbb, 0x06, 0x98, 0x12, 0x8a, 0xfd, 0x92, 0x16, 0x6d, 0x4b, 0x1e, 0x49, 0x76, 0xb5, + 0x8b, 0xe2, 0xc6, 0x0d, 0x0e, 0x54, 0x71, 0xe0, 0x06, 0x47, 0x98, 0x2a, 0x6e, 0x14, 0xbf, 0x80, + 0x2b, 0x47, 0xb8, 0x73, 0x1d, 0xae, 0xfc, 0x01, 0xea, 0x2d, 0x92, 0x9f, 0x64, 0xc9, 0x4b, 0x4f, + 0xf7, 0x9c, 0x22, 0x7d, 0xdb, 0xfb, 0xb6, 0xf7, 0x2d, 0x56, 0x60, 0xb1, 0xe1, 0x9a, 0xc5, 0x8e, + 0x63, 0x7b, 0x36, 0x4a, 0x37, 0x5c, 0x53, 0xdd, 0x85, 0xed, 0x13, 0xec, 0x5d, 0x75, 0x3b, 0x1d, + 0xdb, 0xf1, 0x70, 0xf3, 0x39, 0x76, 0x5c, 0xd3, 0xb6, 0x5c, 0x0d, 0x7f, 0xd1, 0xc5, 0xae, 0xa7, + 0xfe, 0x14, 0x76, 0xe2, 0xd1, 0x6e, 0xc7, 0xb6, 0x5c, 0x8c, 0x9e, 0x00, 0x72, 0x7d, 0xa4, 0xde, + 0xe3, 0x58, 0x59, 0x2a, 0xa4, 0xf7, 0x97, 0x0e, 0x96, 0x8b, 0xe4, 0x2c, 0xce, 0xa2, 0xad, 0xba, + 0x51, 0x21, 0xea, 0x33, 0x98, 0xe7, 0xcf, 0x68, 0x0d, 0x66, 0xdb, 0xc6, 0x2f, 0x6c, 0x47, 0x96, + 0x0a, 0xd2, 0x7e, 0x56, 0x63, 0x2f, 0x14, 0x6a, 0x5a, 0xb6, 0x23, 0xa7, 0x38, 0x94, 0xbc, 0x10, + 0x68, 0xc7, 0xf0, 0x1a, 0x2f, 0xe5, 0x34, 0x83, 0xd2, 0x17, 0xf5, 0x13, 0x58, 0x3b, 0xc1, 0xde, + 0x65, 0xab, 0x7b, 0x67, 0x5a, 0x55, 0xeb, 0xd6, 0xe6, 0x16, 0xa0, 0x47, 0x30, 0xcf, 0xf5, 0xa2, + 0xb2, 0xa3, 0x6a, 0xf9, 0x48, 0xf5, 0xdf, 0x12, 0xac, 0x47, 0x04, 0x70, 0x1b, 0x11, 0x64, 0x2c, + 0xa3, 0x8d, 0x29, 0xfb, 0xa2, 0x46, 0x9f, 0xd1, 0x43, 0x58, 0xe9, 0x61, 0xab, 0x69, 0x3b, 0xbe, + 0xd1, 0x54, 0xc5, 0x45, 0x2d, 0xcb, 0xa0, 0xbe, 0x59, 0x65, 0x58, 0x68, 0x1b, 0x96, 0x79, 0x8b, + 0x5d, 0x4f, 0x4e, 0x53, 0xa7, 0xec, 0xd3, 0xd3, 0x63, 0x0f, 0x2a, 0x9e, 0x73, 0xd2, 0x8a, 0xe5, + 0x39, 0x7d, 0x2d, 0xe0, 0x54, 0x9e, 0x40, 0x36, 0x84, 0x42, 0x39, 0x48, 0xbf, 0xc2, 0x7d, 0xae, + 0x10, 0x79, 0x24, 0x3e, 0xe9, 0x19, 0xad, 0x2e, 0xe6, 0x6a, 0xb0, 0x97, 0x8f, 0x52, 0x8f, 0x25, + 0xf5, 0xaf, 0x19, 0xc8, 0x97, 0x1c, 0x6c, 0x78, 0xf8, 0xb9, 0xdd, 0xea, 0xb6, 0xf1, 0x94, 0x7e, + 0x09, 0xac, 0x4f, 0x09, 0xd6, 0x1f, 0xc2, 0x4a, 0xc3, 0xe8, 0x18, 0x0d, 0xd3, 0xeb, 0xeb, 0x8e, + 0x61, 0xdd, 0x61, 0x1a, 0x8a, 0xa5, 0x03, 0x44, 0x45, 0x94, 0x38, 0x4a, 0x23, 0x18, 0x2d, 0xdb, + 0x10, 0x5f, 0xd1, 0xa7, 0x90, 0xef, 0x51, 0x3d, 0x74, 0x02, 0xbf, 0x31, 0x5b, 0xa6, 0x67, 0x62, + 0x57, 0xce, 0x50, 0xe7, 0xac, 0x33, 0x15, 0x28, 0xbe, 0xe4, 0xa3, 0xfb, 0x1a, 0xea, 0x85, 0x21, + 0x26, 0x76, 0xd1, 0x29, 0x40, 0xc7, 0x70, 0x8c, 0x36, 0xf6, 0xb0, 0xe3, 0xca, 0xb3, 0x82, 0x6f, + 0x63, 0x8c, 0x2d, 0x5e, 0x06, 0xa4, 0xcc, 0xb7, 0x02, 0x2f, 0xfa, 0x15, 0xec, 0x36, 0x6c, 0xcb, + 0x73, 0xec, 0x56, 0x0b, 0x3b, 0x7a, 0x83, 0x72, 0x93, 0x3f, 0x4d, 0x6c, 0x79, 0xa6, 0xd1, 0x72, + 0xe5, 0x39, 0x2a, 0xfc, 0x30, 0x51, 0x78, 0x29, 0xe0, 0x66, 0xd8, 0xd2, 0x80, 0x97, 0x9d, 0xb6, + 0xdd, 0x48, 0xa6, 0x50, 0x9e, 0xc2, 0x7b, 0x11, 0xed, 0xa6, 0x09, 0xaf, 0x52, 0x83, 0xc2, 0xb8, + 0xf3, 0xa7, 0x4a, 0x97, 0x53, 0x58, 0x0b, 0xdb, 0xc8, 0x2f, 0xc1, 0x77, 0x61, 0x89, 0xc7, 0xcd, + 0xb4, 0x6e, 0x6d, 0x9e, 0x32, 0xef, 0x09, 0xf1, 0xa2, 0x99, 0x0c, 0xbd, 0xe0, 0x59, 0xfd, 0x63, + 0x06, 0x72, 0xd1, 0x50, 0xa2, 0x43, 0x98, 0xbd, 0x69, 0xd9, 0x8d, 0x57, 0x5c, 0xc0, 0xfd, 0xd8, + 0x80, 0x17, 0x8f, 0x09, 0x09, 0x83, 0x9e, 0xce, 0x68, 0x8c, 0x83, 0xb0, 0xb6, 0xed, 0xae, 0xe5, + 0x51, 0x9d, 0x13, 0x59, 0xcf, 0x09, 0xc9, 0x80, 0x95, 0x72, 0xa0, 0x23, 0x58, 0x32, 0x1a, 0x0d, + 0xec, 0xba, 0x7a, 0xdb, 0x6e, 0xfa, 0xc9, 0x5a, 0x88, 0x17, 0x70, 0x44, 0x09, 0xcf, 0xed, 0x26, + 0xd6, 0xc0, 0x08, 0x9e, 0x95, 0x2c, 0x2c, 0x09, 0x5a, 0x29, 0x27, 0xb0, 0x24, 0x9c, 0x84, 0x36, + 0x61, 0xfe, 0xd6, 0xd5, 0xbd, 0x7e, 0xc7, 0xaf, 0x12, 0x73, 0xb7, 0x6e, 0xbd, 0xdf, 0xc1, 0xe8, + 0x1e, 0x2c, 0x51, 0x15, 0xf4, 0xdb, 0x96, 0x71, 0xe7, 0xca, 0xa9, 0x42, 0x7a, 0x7f, 0x51, 0x03, + 0x0a, 0xfa, 0x94, 0x40, 0x94, 0xaf, 0x24, 0x80, 0xc1, 0x91, 0xe8, 0x10, 0x32, 0x54, 0x45, 0x22, + 0x65, 0xe5, 0xe0, 0xe1, 0x38, 0x15, 0x8b, 0x54, 0x4f, 0xca, 0xa2, 0xfe, 0x49, 0x82, 0x0c, 0x95, + 0xb1, 0x04, 0xf3, 0xd7, 0xb5, 0x67, 0xb5, 0x8b, 0x17, 0xb5, 0xdc, 0x0c, 0xda, 0x00, 0x74, 0x55, + 0xad, 0x9d, 0x9c, 0x55, 0xf4, 0xda, 0x45, 0xb9, 0xa2, 0xbf, 0xd0, 0xaa, 0xf5, 0x8a, 0x96, 0x93, + 0xd0, 0x36, 0x6c, 0x8a, 0x70, 0xad, 0x72, 0x54, 0xae, 0x68, 0xfa, 0x45, 0xed, 0xec, 0xb3, 0x5c, + 0x0a, 0x29, 0xb0, 0x71, 0x7e, 0x7d, 0x56, 0xaf, 0x0e, 0xe3, 0xd2, 0x68, 0x07, 0x64, 0x01, 0xc7, + 0x65, 0x70, 0xb1, 0x19, 0x22, 0x56, 0xc0, 0xb2, 0x47, 0x8e, 0x9c, 0x3d, 0xce, 0x06, 0x61, 0x20, + 0x9e, 0x52, 0x5f, 0x40, 0x36, 0x54, 0x2a, 0x48, 0x51, 0x75, 0xf0, 0x17, 0x5d, 0xd3, 0xc1, 0x4d, + 0xfd, 0xa6, 0xef, 0x61, 0x97, 0xba, 0x21, 0xa3, 0x65, 0x7d, 0xe8, 0x31, 0x01, 0x12, 0x9f, 0xb6, + 0xcc, 0xb6, 0xe9, 0x71, 0x9a, 0x14, 0xa5, 0x01, 0x0a, 0xa2, 0x04, 0xea, 0x3f, 0x24, 0x80, 0x41, + 0x52, 0x12, 0xb1, 0x41, 0xb5, 0x0a, 0x89, 0xf5, 0xa1, 0x4c, 0xec, 0x0a, 0xa4, 0xcc, 0x26, 0xbf, + 0x10, 0x29, 0xb3, 0x89, 0x7e, 0x00, 0x60, 0x78, 0x9e, 0x63, 0xde, 0x74, 0x09, 0x0b, 0xab, 0xde, + 0xf7, 0x22, 0x09, 0x5f, 0x3c, 0x0a, 0x28, 0x78, 0x61, 0x19, 0xb0, 0x90, 0x9b, 0x1d, 0x41, 0x4f, + 0x75, 0x13, 0xbf, 0x4c, 0x41, 0xbe, 0x8c, 0x5b, 0xf8, 0x4d, 0x0b, 0xf7, 0x36, 0x2c, 0xfa, 0x37, + 0xd6, 0x37, 0x6b, 0x81, 0x5f, 0xcf, 0x66, 0xa4, 0xe8, 0x35, 0xe9, 0x31, 0xa1, 0xa2, 0x97, 0x16, + 0x8a, 0x5e, 0x8c, 0x16, 0x42, 0xd1, 0x63, 0xd8, 0x51, 0x45, 0x6f, 0x88, 0x22, 0x5c, 0xb5, 0xe2, + 0x05, 0x4c, 0xe5, 0xab, 0x0d, 0x58, 0x0b, 0x2b, 0xc9, 0xaa, 0x96, 0xfa, 0xdf, 0x0c, 0xec, 0x0d, + 0x0e, 0xba, 0xec, 0xde, 0xb4, 0x4c, 0xf7, 0xe5, 0x3b, 0x70, 0xe7, 0x26, 0xcc, 0x5b, 0x76, 0x93, + 0xa2, 0xd2, 0xec, 0xfe, 0x93, 0xd7, 0x6a, 0x13, 0x1d, 0xc3, 0x6a, 0xb4, 0xdd, 0xf5, 0xe5, 0x0c, + 0x3d, 0x27, 0xa1, 0xd9, 0xe5, 0x7a, 0xd1, 0x9a, 0xa9, 0xc0, 0x82, 0x83, 0x8d, 0xa6, 0x6d, 0xb5, + 0xfa, 0xf2, 0x6c, 0x41, 0xda, 0x5f, 0xd0, 0x82, 0x77, 0xf4, 0x1b, 0x09, 0xf6, 0x84, 0x40, 0x76, + 0x98, 0x85, 0x31, 0xed, 0xab, 0xc2, 0xda, 0xd7, 0x48, 0x5f, 0x0c, 0xa3, 0x87, 0xa2, 0xba, 0xd3, + 0x18, 0x41, 0x82, 0x6e, 0x03, 0x6b, 0x85, 0x9b, 0x33, 0x2f, 0xb6, 0xcf, 0xd1, 0xe7, 0xb3, 0xb7, + 0xe8, 0x9d, 0xe2, 0x1e, 0x19, 0x80, 0x95, 0x0b, 0xb8, 0x3f, 0x56, 0xd5, 0xa9, 0xba, 0x68, 0x09, + 0xd6, 0x63, 0xcf, 0x9e, 0x2a, 0x09, 0xff, 0x25, 0xc1, 0xbd, 0x44, 0x03, 0x79, 0x1b, 0x7d, 0x05, + 0x79, 0x3f, 0x46, 0xe1, 0x76, 0x4a, 0x7c, 0xf4, 0x64, 0xb4, 0x8f, 0xf8, 0x94, 0x18, 0x82, 0x92, + 0x22, 0xc4, 0xbc, 0xb4, 0xda, 0x89, 0xc2, 0x95, 0x32, 0x6c, 0xc4, 0x13, 0x4f, 0x65, 0xd6, 0x57, + 0x29, 0xf1, 0xb2, 0x5e, 0x5b, 0x9d, 0x6f, 0xfe, 0x16, 0xfd, 0x5e, 0x82, 0x82, 0x90, 0xe5, 0x5d, + 0x2b, 0x2e, 0xcf, 0xd9, 0x08, 0x59, 0x8d, 0xf8, 0x30, 0x5e, 0xdf, 0x38, 0x82, 0xa1, 0x5c, 0x17, + 0x2e, 0x56, 0x1c, 0x91, 0xf2, 0x63, 0x78, 0x30, 0x81, 0x98, 0xa9, 0x7c, 0xfd, 0x40, 0x4c, 0xec, + 0x21, 0xd5, 0x79, 0x51, 0xfb, 0x4f, 0x0a, 0xee, 0x3f, 0x37, 0x5a, 0x66, 0x33, 0x98, 0xd2, 0xc4, + 0xc9, 0xf8, 0xad, 0x46, 0x24, 0x61, 0x5a, 0x4f, 0x4f, 0x3b, 0xad, 0x9b, 0x71, 0x85, 0x81, 0x05, + 0xec, 0x63, 0x26, 0x65, 0x9c, 0x3d, 0x13, 0xd7, 0x86, 0xb7, 0x72, 0x95, 0x7f, 0x06, 0xea, 0x28, + 0x8d, 0xf8, 0x65, 0xde, 0x81, 0xc5, 0x60, 0xa9, 0xa5, 0x72, 0x17, 0xb4, 0x01, 0x00, 0xc9, 0x30, + 0xdf, 0xc6, 0xae, 0x6b, 0xdc, 0xf9, 0xf2, 0xfd, 0x57, 0xf5, 0xd7, 0x12, 0xa0, 0x33, 0xd3, 0xe5, + 0xc3, 0xe3, 0xd4, 0x11, 0x23, 0x33, 0xa5, 0xf1, 0x5a, 0xc7, 0x96, 0xe7, 0x98, 0x7c, 0xfe, 0xc9, + 0x6a, 0xd0, 0x36, 0x5e, 0x57, 0x18, 0x84, 0x0c, 0x3c, 0xae, 0x67, 0x38, 0x9e, 0x69, 0xdd, 0xe9, + 0x9e, 0xfd, 0x0a, 0x5b, 0xfc, 0x3a, 0x65, 0x7d, 0x68, 0x9d, 0x00, 0xd5, 0x2f, 0x25, 0xc8, 0x87, + 0xd4, 0xe0, 0x66, 0x3d, 0x86, 0x79, 0x5f, 0x36, 0xab, 0x4b, 0x7b, 0x54, 0x8f, 0x18, 0xd2, 0x22, + 0x0b, 0x82, 0x4f, 0x8e, 0x76, 0x01, 0x2c, 0xfc, 0xda, 0xe3, 0x87, 0x32, 0xab, 0x17, 0x09, 0x84, + 0x1e, 0xa8, 0x1c, 0xc2, 0x2c, 0x0b, 0xc5, 0xf4, 0xcb, 0xc4, 0x6f, 0x53, 0x80, 0x4e, 0xb0, 0x17, + 0xcc, 0x8b, 0x53, 0xba, 0x2c, 0x21, 0x8f, 0x53, 0xd3, 0xe6, 0xf1, 0x49, 0x68, 0xeb, 0x64, 0xd7, + 0xe0, 0x03, 0x7f, 0xa3, 0x8f, 0x28, 0x37, 0x6a, 0xe9, 0xfc, 0x9a, 0x5b, 0x9f, 0x5a, 0x86, 0x7c, + 0xe8, 0x40, 0x1e, 0xb9, 0xef, 0x00, 0x32, 0x7a, 0x86, 0xd9, 0x32, 0x6e, 0x5a, 0xcc, 0x52, 0x82, + 0xe5, 0xd3, 0xee, 0x6a, 0x80, 0xf1, 0xd9, 0xd4, 0x1f, 0xc2, 0x86, 0xd0, 0x6c, 0x1c, 0xfb, 0x66, + 0xda, 0x72, 0xae, 0x6e, 0xc1, 0xe6, 0x90, 0x04, 0x5e, 0xa5, 0x7e, 0x24, 0x76, 0x0d, 0xae, 0xec, + 0x1b, 0xd6, 0x28, 0xd5, 0x14, 0xcb, 0xe2, 0x90, 0x2c, 0x6e, 0x7c, 0x19, 0x96, 0x63, 0x82, 0x5b, + 0x88, 0xf4, 0x83, 0x2b, 0xec, 0xf4, 0xcc, 0x86, 0x18, 0xe7, 0x10, 0x97, 0xfa, 0x87, 0x14, 0x6c, + 0x8f, 0xa0, 0x46, 0x8f, 0x21, 0xed, 0x74, 0x1a, 0x5c, 0xdd, 0xf7, 0xc7, 0x09, 0x2f, 0x6a, 0x97, + 0xa5, 0xd3, 0x19, 0x8d, 0xb0, 0x28, 0x7f, 0x97, 0x20, 0xad, 0x5d, 0x96, 0xd0, 0x53, 0xc8, 0x04, + 0x8b, 0xe2, 0xca, 0xc1, 0xb7, 0x26, 0x11, 0x51, 0x24, 0xbb, 0xa4, 0x46, 0xd9, 0x54, 0x1b, 0x32, + 0x74, 0xb3, 0x0c, 0x6d, 0x79, 0x32, 0xac, 0x95, 0xb4, 0xca, 0x51, 0xbd, 0xa2, 0x97, 0x2b, 0x67, + 0x95, 0x7a, 0x45, 0x7f, 0x7e, 0x71, 0x76, 0x7d, 0x5e, 0xc9, 0x49, 0x64, 0x5d, 0xbb, 0xbc, 0x3e, + 0x3e, 0xab, 0x5e, 0x9d, 0xea, 0xd7, 0x35, 0xff, 0x89, 0x63, 0x53, 0x28, 0x07, 0xcb, 0x67, 0xd5, + 0xab, 0x3a, 0x07, 0x5c, 0xe5, 0xd2, 0x04, 0x72, 0x52, 0xa9, 0xeb, 0xa5, 0xa3, 0xcb, 0xa3, 0x52, + 0xb5, 0xfe, 0x59, 0x2e, 0x73, 0x3c, 0xc7, 0xf4, 0x55, 0xff, 0x37, 0x0b, 0x72, 0xcd, 0x6e, 0xe2, + 0x77, 0x37, 0x45, 0x37, 0xe3, 0x87, 0x23, 0x76, 0xcd, 0xbe, 0x47, 0x05, 0x26, 0x29, 0x30, 0xf9, + 0x54, 0x44, 0xca, 0xa7, 0x67, 0x38, 0x77, 0xd8, 0xd3, 0x3b, 0x86, 0xf7, 0x92, 0x0e, 0xe3, 0x8b, + 0x1a, 0x30, 0xd0, 0xa5, 0xe1, 0xbd, 0x8c, 0x9f, 0xd9, 0x67, 0xdf, 0x7c, 0x66, 0x9f, 0x8b, 0xcc, + 0xec, 0x2e, 0xc8, 0x74, 0xcc, 0x89, 0x1b, 0x62, 0xc4, 0x61, 0x39, 0xd1, 0x56, 0x01, 0x31, 0x34, + 0xb4, 0x6c, 0x58, 0xb1, 0x48, 0xf4, 0xf3, 0xb8, 0x0e, 0xbc, 0x40, 0x4f, 0xfb, 0x70, 0xf4, 0x69, + 0x93, 0x36, 0xde, 0xb7, 0x32, 0x6d, 0x2a, 0x55, 0xd8, 0x1e, 0x61, 0xde, 0x37, 0x3f, 0xd4, 0x6f, + 0xc3, 0x56, 0x8c, 0x67, 0x78, 0x8d, 0xfb, 0x67, 0x0a, 0x14, 0x82, 0x7d, 0x97, 0x43, 0x71, 0x24, + 0x5d, 0xd3, 0x43, 0xe9, 0xfa, 0x4b, 0x50, 0x68, 0x3a, 0x8d, 0x9a, 0x8a, 0x9f, 0x06, 0x21, 0x4e, + 0x98, 0x87, 0x43, 0xa8, 0xa1, 0xa4, 0xa2, 0xf9, 0x1a, 0x3b, 0x03, 0x3f, 0x83, 0xdd, 0x91, 0xac, + 0x53, 0xf9, 0x7a, 0x97, 0xc5, 0x3e, 0x69, 0xee, 0xfd, 0x08, 0x72, 0x27, 0xd8, 0x23, 0x14, 0xd5, + 0xf2, 0xb4, 0x1d, 0xe4, 0xdb, 0xb0, 0x2a, 0xf0, 0xf2, 0x8e, 0x21, 0xec, 0x1b, 0x92, 0xb8, 0x6f, + 0x90, 0x93, 0x68, 0xd0, 0xdf, 0xa4, 0x25, 0xe6, 0x61, 0x55, 0xe0, 0xe5, 0xaa, 0x97, 0x59, 0x9e, + 0x7c, 0xcd, 0x36, 0xf8, 0x39, 0xf3, 0x4f, 0x52, 0x03, 0xfc, 0x24, 0xd2, 0x00, 0xd9, 0xf0, 0xa6, + 0x04, 0xa1, 0x1f, 0xd7, 0xfa, 0xfe, 0x22, 0xc1, 0x7a, 0x2c, 0x1d, 0x3a, 0x10, 0x9b, 0xde, 0x5e, + 0xb2, 0x40, 0xb1, 0xdd, 0x5d, 0xb1, 0x6e, 0xf7, 0xfd, 0x50, 0xb7, 0x7b, 0x30, 0x9a, 0x57, 0xec, + 0x73, 0xf9, 0x98, 0x3e, 0xe7, 0xf7, 0xa2, 0x83, 0xbf, 0x49, 0xb0, 0x50, 0xa5, 0x89, 0xe6, 0xf5, + 0xd1, 0xe7, 0xf4, 0xcb, 0xcf, 0xd0, 0x37, 0x2a, 0x54, 0xf0, 0x07, 0xb3, 0xa4, 0xaf, 0x5b, 0xca, + 0xfd, 0x11, 0x14, 0x3c, 0x72, 0x33, 0xe8, 0x14, 0xb2, 0xa1, 0xcf, 0x35, 0x68, 0x2b, 0xee, 0x13, + 0x0e, 0x13, 0xa8, 0x24, 0x7f, 0xdd, 0x51, 0x67, 0x0e, 0xfe, 0x3c, 0x07, 0x30, 0xe8, 0xf4, 0xa8, + 0x02, 0xcb, 0xe2, 0x4f, 0xed, 0x48, 0x4e, 0xfa, 0xc2, 0xa0, 0x6c, 0xc5, 0x60, 0x02, 0xfd, 0x2a, + 0xb0, 0x2c, 0xfe, 0xf6, 0xc5, 0xc5, 0xc4, 0xfc, 0x66, 0xc7, 0xc5, 0xc4, 0xfe, 0x50, 0x36, 0x83, + 0x6e, 0x43, 0xa3, 0x9c, 0x78, 0x01, 0xd1, 0x83, 0x09, 0x7e, 0xbb, 0x51, 0xde, 0x9f, 0xe4, 0xc7, + 0x0b, 0x75, 0x06, 0xb5, 0x60, 0x2b, 0x71, 0xc5, 0x45, 0x0f, 0x27, 0xda, 0xde, 0x95, 0x47, 0xe3, + 0xc8, 0x82, 0xd3, 0x6c, 0x50, 0x92, 0x17, 0x39, 0xf4, 0x68, 0xb2, 0xdd, 0x53, 0xf9, 0x60, 0x2c, + 0x5d, 0x70, 0xe0, 0x31, 0x2c, 0x09, 0x8b, 0x12, 0xda, 0x1c, 0x5e, 0x9d, 0x98, 0x48, 0x39, 0x69, + 0xa7, 0x62, 0x32, 0x84, 0xe9, 0x9e, 0xcb, 0x18, 0x5e, 0x30, 0xb8, 0x8c, 0x98, 0x45, 0x40, 0x9d, + 0x41, 0x35, 0x78, 0x2f, 0x32, 0x99, 0xa3, 0xed, 0x68, 0x84, 0x84, 0xf2, 0xa6, 0xec, 0xc4, 0x23, + 0xe3, 0xc3, 0x16, 0xa9, 0x40, 0x43, 0x61, 0x8b, 0xaf, 0x73, 0x43, 0x61, 0x4b, 0x28, 0x64, 0xea, + 0xcc, 0xc1, 0xef, 0xd2, 0x90, 0x21, 0x55, 0x02, 0xd5, 0x79, 0x35, 0x0d, 0x65, 0xc9, 0xee, 0xc8, + 0x81, 0x45, 0xd9, 0x4b, 0x42, 0x07, 0xc6, 0xfc, 0x04, 0xf2, 0x31, 0x8d, 0x06, 0xdd, 0x1b, 0xd3, + 0x25, 0x95, 0x42, 0x32, 0x41, 0x20, 0xfb, 0x63, 0x58, 0x0c, 0x3a, 0x0d, 0x5a, 0xf7, 0x23, 0x14, + 0xea, 0x5a, 0xca, 0x46, 0x14, 0x2c, 0x72, 0x07, 0xdd, 0x83, 0x73, 0x47, 0x3b, 0x11, 0xe7, 0x1e, + 0x6e, 0x32, 0x81, 0x5d, 0xd1, 0xf0, 0x0c, 0xec, 0x4a, 0x08, 0x4c, 0x21, 0x99, 0xc0, 0x97, 0x7d, + 0x33, 0x47, 0xff, 0x69, 0xe0, 0xc3, 0xff, 0x07, 0x00, 0x00, 0xff, 0xff, 0x4c, 0x87, 0xb3, 0x9c, + 0x41, 0x20, 0x00, 0x00, } diff --git a/spec.md b/spec.md index 8fb6e5b8..2f533e2a 100644 --- a/spec.md +++ b/spec.md @@ -478,18 +478,18 @@ message CreateVolumeRequest { // validating these parameters. COs will treat these as opaque. map parameters = 5; - // End user credentials used to authenticate/authorize volume creation - // request. + // Credentials used by Controller plugin to authenticate/authorize + // volume creation request. // This field contains credential data, for example username and // password. Each key must consist of alphanumeric characters, '-', // '_' or '.'. Each value MUST contain a valid string. An SP MAY // choose to accept binary (non-string) data by using a binary-to-text // encoding scheme, like base64. An SP SHALL advertise the // requirements for credentials in documentation. COs SHALL permit - // users to pass through the required credentials. This information is + // passing through the required credentials. This information is // sensitive and MUST be treated as such (not logged, etc.) by the CO. // This field is OPTIONAL. - map user_credentials = 6; + map controller_create_credentials = 6; } message CreateVolumeResponse { @@ -629,18 +629,18 @@ message DeleteVolumeRequest { // This field is REQUIRED. string volume_id = 2; - // End user credentials used to authenticate/authorize volume deletion - // request. + // Credentials used by Controller plugin to authenticate/authorize + // volume deletion request. // This field contains credential data, for example username and // password. Each key must consist of alphanumeric characters, '-', // '_' or '.'. Each value MUST contain a valid string. An SP MAY // choose to accept binary (non-string) data by using a binary-to-text // encoding scheme, like base64. An SP SHALL advertise the // requirements for credentials in documentation. COs SHALL permit - // users to pass through the required credentials. This information is + // passing through the required credentials. This information is // sensitive and MUST be treated as such (not logged, etc.) by the CO. // This field is OPTIONAL. - map user_credentials = 3; + map controller_delete_credentials = 3; } message DeleteVolumeResponse {} @@ -694,18 +694,18 @@ message ControllerPublishVolumeRequest { // REQUIRED. bool readonly = 5; - // End user credentials used to authenticate/authorize controller - // publish request. + // Credentials used by Controller plugin to authenticate/authorize + // controller publish request. // This field contains credential data, for example username and // password. Each key must consist of alphanumeric characters, '-', // '_' or '.'. Each value MUST contain a valid string. An SP MAY // choose to accept binary (non-string) data by using a binary-to-text // encoding scheme, like base64. An SP SHALL advertise the // requirements for credentials in documentation. COs SHALL permit - // users to pass through the required credentials. This information is + // passing through the required credentials. This information is // sensitive and MUST be treated as such (not logged, etc.) by the CO. // This field is OPTIONAL. - map user_credentials = 6; + map controller_publish_credentials = 6; // Attributes of the volume to be used on a node. This field is // OPTIONAL and MUST match the attributes of the VolumeInfo identified @@ -766,18 +766,18 @@ message ControllerUnpublishVolumeRequest { // the volume from all nodes it is published to. string node_id = 3; - // End user credentials used to authenticate/authorize controller - // unpublish request. + // Credentials used by Controller plugin to authenticate/authorize + // controller unpublish request. // This field contains credential data, for example username and // password. Each key must consist of alphanumeric characters, '-', // '_' or '.'. Each value MUST contain a valid string. An SP MAY // choose to accept binary (non-string) data by using a binary-to-text // encoding scheme, like base64. An SP SHALL advertise the // requirements for credentials in documentation. COs SHALL permit - // users to pass through the required credentials. This information is + // passing through the required credentials. This information is // sensitive and MUST be treated as such (not logged, etc.) by the CO. // This field is OPTIONAL. - map user_credentials = 4; + map controller_unpublish_credentials = 4; } message ControllerUnpublishVolumeResponse {} @@ -1041,7 +1041,7 @@ The following table shows what the Plugin SHOULD return when receiving a second | MULTI_NODE | OK (idempotent) | ALREADY_EXISTS | OK | OK | | Non MULTI_NODE | OK (idempotent) | ALREADY_EXISTS | FAILED_PRECONDITION | FAILED_PRECONDITION| -(`Tn`: target path of the n-th `NodePublishVolume`, `Pn`: other arguments of the n-th `NodePublishVolume` except `user_credentials`) +(`Tn`: target path of the n-th `NodePublishVolume`, `Pn`: other arguments of the n-th `NodePublishVolume` except `node_credentials`) ```protobuf message NodePublishVolumeRequest { @@ -1074,7 +1074,7 @@ message NodePublishVolumeRequest { // REQUIRED. bool readonly = 6; - // End user credentials used to authenticate/authorize node + // Credentials used by Node plugin to authenticate/authorize node // publish request. // This field contains credential data, for example username and // password. Each key must consist of alphanumeric characters, '-', @@ -1082,10 +1082,10 @@ message NodePublishVolumeRequest { // choose to accept binary (non-string) data by using a binary-to-text // encoding scheme, like base64. An SP SHALL advertise the // requirements for credentials in documentation. COs SHALL permit - // users to pass through the required credentials. This information is + // passing through the required credentials. This information is // sensitive and MUST be treated as such (not logged, etc.) by the CO. // This field is OPTIONAL. - map user_credentials = 7; + map node_publish_credentials = 7; // Attributes of the volume to publish. This field is OPTIONAL and // MUST match the attributes of the VolumeInfo identified by @@ -1137,7 +1137,7 @@ message NodeUnpublishVolumeRequest { // This is a REQUIRED field. string target_path = 3; - // End user credentials used to authenticate/authorize node + // Credentials used by Node plugin to authenticate/authorize node // unpublish request. // This field contains credential data, for example username and // password. Each key must consist of alphanumeric characters, '-', @@ -1145,10 +1145,10 @@ message NodeUnpublishVolumeRequest { // choose to accept binary (non-string) data by using a binary-to-text // encoding scheme, like base64. An SP SHALL advertise the // requirements for credentials in documentation. COs SHALL permit - // users to pass through the required credentials. This information is + // passing through the required credentials. This information is // sensitive and MUST be treated as such (not logged, etc.) by the CO. // This field is OPTIONAL. - map user_credentials = 4; + map node_unpublish_credentials = 4; } message NodeUnpublishVolumeResponse {}