From 12d7bebe646413dd680457a1edc52414c3195c56 Mon Sep 17 00:00:00 2001 From: akutz Date: Wed, 4 Oct 2017 17:44:58 -0500 Subject: [PATCH 1/2] VolumeHandle to string This patch updates all references to VolumeHandle so that it is now a simple string value. Associated field names and error codes have been updated accordingly. --- csi.proto | 105 +++--- lib/go/csi/csi.pb.go | 740 ++++++++++++++++++++----------------------- spec.md | 107 +++---- 3 files changed, 429 insertions(+), 523 deletions(-) diff --git a/csi.proto b/csi.proto index 7150a656..3fc8acc2 100644 --- a/csi.proto +++ b/csi.proto @@ -248,31 +248,9 @@ message VolumeInfo { // Contains identity information for the created volume. This field is // REQUIRED. The identity information will be used by the CO in - // subsequent calls to refer to the provisioned volume. - VolumeHandle handle = 2; -} - -// VolumeHandle objects are generated by Plugin implementations to -// serve two purposes: first, to efficiently identify a volume known -// to the Plugin implementation; second, to capture additional, opaque, -// possibly sensitive information associated with a volume. It SHALL -// NOT change over the lifetime of the volume and MAY be safely cached -// by the CO. -// Since this object will be passed around by the CO, it is RECOMMENDED -// that each Plugin keeps the information herein as small as possible. -// The total bytes of a serialized VolumeHandle must be less than 1 MiB. -message VolumeHandle { - // ID is the identity of the provisioned volume specified by the - // Plugin. This field is REQUIRED. - // This information SHALL NOT be considered sensitive such that, for - // example, the CO MAY generate log messages that include this data. - string id = 1; - - // Metadata captures additional, possibly sensitive, information about - // a volume in the form of key-value pairs. This field is OPTIONAL. - // Since this field MAY contain sensitive information, the CO MUST NOT - // leak this information to untrusted entities. - map metadata = 2; + // subsequent calls to refer to the provisioned volume. This field + // should not exceed 1MiB. + string id = 2; } // A standard way to encode credential data. The total bytes of the @@ -295,9 +273,9 @@ message DeleteVolumeRequest { // The API version assumed by the CO. This field is REQUIRED. Version version = 1; - // The handle of the volume to be deprovisioned. + // The ID of the volume to be deprovisioned. // This field is REQUIRED. - VolumeHandle volume_handle = 2; + string volume_id = 2; // End user credentials used to authenticate/authorize volume deletion // request. @@ -320,9 +298,9 @@ message ControllerPublishVolumeRequest { // The API version assumed by the CO. This field is REQUIRED. Version version = 1; - // The handle of the volume to be used on a node. + // The ID of the volume to be used on a node. // This field is REQUIRED. - VolumeHandle volume_handle = 2; + string volume_id = 2; // The ID of the node. This field is OPTIONAL. The CO SHALL set (or // clear) this field to match the `NodeID` returned by `GetNodeID`. @@ -372,8 +350,8 @@ message ControllerUnpublishVolumeRequest { // The API version assumed by the CO. This field is REQUIRED. Version version = 1; - // The handle of the volume. This field is REQUIRED. - VolumeHandle volume_handle = 2; + // The ID of the volume. This field is REQUIRED. + string volume_id = 2; // The ID of the node. This field is OPTIONAL. The CO SHALL set (or // clear) this field to match the `NodeID` returned by `GetNodeID`. @@ -407,9 +385,8 @@ message ValidateVolumeCapabilitiesRequest { // The API version assumed by the CO. This is a REQUIRED field. Version version = 1; - // The information about the volume to check. This is a REQUIRED - // field. - VolumeInfo volume_info = 2; + // The ID of the volume to check. This field is REQUIRED. + string volume_id = 2; // The capabilities that the CO wants to check for the volume. This // call SHALL return "supported" only if all the volume capabilities @@ -575,8 +552,8 @@ message NodePublishVolumeRequest { // The API version assumed by the CO. This is a REQUIRED field. Version version = 1; - // The handle of the volume to publish. This field is REQUIRED. - VolumeHandle volume_handle = 2; + // The ID of the volume to publish. This field is REQUIRED. + string volume_id = 2; // The CO SHALL set this field to the value returned by // `ControllerPublishVolume` if the corresponding Controller Plugin @@ -619,8 +596,8 @@ message NodeUnpublishVolumeRequest { // The API version assumed by the CO. This is a REQUIRED field. Version version = 1; - // The handle of the volume. This field is REQUIRED. - VolumeHandle volume_handle = 2; + // The ID of the volume. This field is REQUIRED. + string volume_id = 2; // The path at which the volume was published. It MUST be an absolute // path in the root filesystem of the process serving this request. @@ -895,16 +872,16 @@ message Error { // exponential back off. OPERATION_PENDING_FOR_VOLUME = 2; - // Indicates that the specified `VolumeHandle` is not allowed or + // Indicates that the specified volume ID is not allowed or // understood by the Plugin. More human-readable information MAY // be provided in the `error_description` field. // - // Recovery behavior: Caller MUST fix the `VolumeHandle` before + // Recovery behavior: Caller MUST fix the volume ID before // retrying. - INVALID_VOLUME_HANDLE = 3; + INVALID_VOLUME_ID = 3; // Indicates that a volume corresponding to the specified - // `VolumeHandle` does not exist. + // volume ID does not exist. // // Recovery behavior: Caller SHOULD assume the `DeleteVolume` call // succeeded. @@ -955,24 +932,24 @@ message Error { // exponential back off. OPERATION_PENDING_FOR_VOLUME = 2; - // Indicates that the specified `VolumeHandle` is not allowed or + // Indicates that the specified volume ID is not allowed or // understood by the Plugin. More human-readable information MAY // be provided in the `error_description` field. // - // Recovery behavior: Caller MUST fix the `VolumeHandle` before + // Recovery behavior: Caller MUST fix the volume ID before // retrying. - INVALID_VOLUME_HANDLE = 3; + INVALID_VOLUME_ID = 3; // Indicates that a volume corresponding to the specified - // `VolumeHandle` does not exist. + // volume ID does not exist. // - // Recovery behavior: Caller SHOULD verify that the `VolumeHandle` + // Recovery behavior: Caller SHOULD verify that the volume ID // is correct and that the volume is accessible and has not been // deleted before retrying with exponential back off. VOLUME_DOES_NOT_EXIST = 4; // Indicates that a volume corresponding to the specified - // `VolumeHandle` is already attached to another node and does not + // volume ID is already attached to another node and does not // support multi-node attach. If this error code is returned, the // Plugin MUST also specify the `node_id` of the node the volume // is already attached to. @@ -992,7 +969,7 @@ message Error { NODE_DOES_NOT_EXIST = 6; // Indicates that a volume corresponding to the specified - // `VolumeHandle` is already attached to the maximum supported + // volume ID is already attached to the maximum supported // number of nodes and therefore this operation can not be // completed until the volume is detached from at least one of the // existing nodes. When this error code is returned, the Plugin @@ -1067,18 +1044,18 @@ message Error { // exponential back off. OPERATION_PENDING_FOR_VOLUME = 2; - // Indicates that the specified `VolumeHandle` is not allowed or + // Indicates that the specified volume ID is not allowed or // understood by the Plugin. More human-readable information MAY // be provided in the `error_description` field. // - // Recovery behavior: Caller MUST fix the `VolumeHandle` before + // Recovery behavior: Caller MUST fix the volume ID before // retrying. - INVALID_VOLUME_HANDLE = 3; + INVALID_VOLUME_ID = 3; // Indicates that a volume corresponding to the specified - // `VolumeHandle` does not exist. + // volume ID does not exist. // - // Recovery behavior: Caller SHOULD verify that the `VolumeHandle` + // Recovery behavior: Caller SHOULD verify that the volume ID // is correct and that the volume is accessible and has not been // deleted before retrying with exponential back off. VOLUME_DOES_NOT_EXIST = 4; @@ -1201,9 +1178,9 @@ message Error { OPERATION_PENDING_FOR_VOLUME = 1; // Indicates that a volume corresponding to the specified - // `VolumeHandle` does not exist. + // volume ID does not exist. // - // Recovery behavior: Caller SHOULD verify that the `VolumeHandle` + // Recovery behavior: Caller SHOULD verify that the volume ID // is correct and that the volume is accessible and has not been // deleted before retrying with exponential back off. VOLUME_DOES_NOT_EXIST = 2; @@ -1213,13 +1190,13 @@ message Error { UNSUPPORTED_FS_TYPE = 5; MOUNT_ERROR = 6; - // Indicates that the specified `VolumeHandle` is not allowed or + // Indicates that the specified volume ID is not allowed or // understood by the Plugin. More human-readable information MAY // be provided in the `error_description` field. // - // Recovery behavior: Caller MUST fix the `VolumeHandle` before + // Recovery behavior: Caller MUST fix the volume ID before // retrying. - INVALID_VOLUME_HANDLE = 7; + INVALID_VOLUME_ID = 7; } NodePublishVolumeErrorCode error_code = 1; @@ -1255,22 +1232,22 @@ message Error { OPERATION_PENDING_FOR_VOLUME = 1; // Indicates that a volume corresponding to the specified - // `VolumeHandle` does not exist. + // volume ID does not exist. // - // Recovery behavior: Caller SHOULD verify that the `VolumeHandle` + // Recovery behavior: Caller SHOULD verify that the volume ID // is correct and that the volume is accessible and has not been // deleted before retrying with exponential back off. VOLUME_DOES_NOT_EXIST = 2; UNMOUNT_ERROR = 3; - // Indicates that the specified `VolumeHandle` is not allowed or + // Indicates that the specified volume ID is not allowed or // understood by the Plugin. More human-readable information MAY // be provided in the `error_description` field. // - // Recovery behavior: Caller MUST fix the `VolumeHandle` before + // Recovery behavior: Caller MUST fix the volume ID before // retrying. - INVALID_VOLUME_HANDLE = 4; + INVALID_VOLUME_ID = 4; } NodeUnpublishVolumeErrorCode error_code = 1; diff --git a/lib/go/csi/csi.pb.go b/lib/go/csi/csi.pb.go index e3db058c..282ef067 100644 --- a/lib/go/csi/csi.pb.go +++ b/lib/go/csi/csi.pb.go @@ -18,7 +18,6 @@ It has these top-level messages: VolumeCapability CapacityRange VolumeInfo - VolumeHandle Credentials DeleteVolumeRequest DeleteVolumeResponse @@ -144,7 +143,7 @@ func (x ControllerServiceCapability_RPC_Type) String() string { return proto.EnumName(ControllerServiceCapability_RPC_Type_name, int32(x)) } func (ControllerServiceCapability_RPC_Type) EnumDescriptor() ([]byte, []int) { - return fileDescriptor0, []int{29, 0, 0} + return fileDescriptor0, []int{28, 0, 0} } type NodeServiceCapability_RPC_Type int32 @@ -164,7 +163,7 @@ func (x NodeServiceCapability_RPC_Type) String() string { return proto.EnumName(NodeServiceCapability_RPC_Type_name, int32(x)) } func (NodeServiceCapability_RPC_Type) EnumDescriptor() ([]byte, []int) { - return fileDescriptor0, []int{40, 0, 0} + return fileDescriptor0, []int{39, 0, 0} } type Error_GeneralError_GeneralErrorCode int32 @@ -222,7 +221,7 @@ func (x Error_GeneralError_GeneralErrorCode) String() string { return proto.EnumName(Error_GeneralError_GeneralErrorCode_name, int32(x)) } func (Error_GeneralError_GeneralErrorCode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor0, []int{41, 0, 0} + return fileDescriptor0, []int{40, 0, 0} } type Error_CreateVolumeError_CreateVolumeErrorCode int32 @@ -320,7 +319,7 @@ func (x Error_CreateVolumeError_CreateVolumeErrorCode) String() string { return proto.EnumName(Error_CreateVolumeError_CreateVolumeErrorCode_name, int32(x)) } func (Error_CreateVolumeError_CreateVolumeErrorCode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor0, []int{41, 1, 0} + return fileDescriptor0, []int{40, 1, 0} } type Error_DeleteVolumeError_DeleteVolumeErrorCode int32 @@ -355,15 +354,15 @@ const ( // calls pending for the specified volume, and then retry with // exponential back off. Error_DeleteVolumeError_OPERATION_PENDING_FOR_VOLUME Error_DeleteVolumeError_DeleteVolumeErrorCode = 2 - // Indicates that the specified `VolumeHandle` is not allowed or + // Indicates that the specified volume ID is not allowed or // understood by the Plugin. More human-readable information MAY // be provided in the `error_description` field. // - // Recovery behavior: Caller MUST fix the `VolumeHandle` before + // Recovery behavior: Caller MUST fix the volume ID before // retrying. - Error_DeleteVolumeError_INVALID_VOLUME_HANDLE Error_DeleteVolumeError_DeleteVolumeErrorCode = 3 + Error_DeleteVolumeError_INVALID_VOLUME_ID Error_DeleteVolumeError_DeleteVolumeErrorCode = 3 // Indicates that a volume corresponding to the specified - // `VolumeHandle` does not exist. + // volume ID does not exist. // // Recovery behavior: Caller SHOULD assume the `DeleteVolume` call // succeeded. @@ -374,14 +373,14 @@ var Error_DeleteVolumeError_DeleteVolumeErrorCode_name = map[int32]string{ 0: "UNKNOWN", 1: "CALL_NOT_IMPLEMENTED", 2: "OPERATION_PENDING_FOR_VOLUME", - 3: "INVALID_VOLUME_HANDLE", + 3: "INVALID_VOLUME_ID", 4: "VOLUME_DOES_NOT_EXIST", } var Error_DeleteVolumeError_DeleteVolumeErrorCode_value = map[string]int32{ "UNKNOWN": 0, "CALL_NOT_IMPLEMENTED": 1, "OPERATION_PENDING_FOR_VOLUME": 2, - "INVALID_VOLUME_HANDLE": 3, + "INVALID_VOLUME_ID": 3, "VOLUME_DOES_NOT_EXIST": 4, } @@ -389,7 +388,7 @@ func (x Error_DeleteVolumeError_DeleteVolumeErrorCode) String() string { return proto.EnumName(Error_DeleteVolumeError_DeleteVolumeErrorCode_name, int32(x)) } func (Error_DeleteVolumeError_DeleteVolumeErrorCode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor0, []int{41, 2, 0} + return fileDescriptor0, []int{40, 2, 0} } type Error_ControllerPublishVolumeError_ControllerPublishVolumeErrorCode int32 @@ -425,22 +424,22 @@ const ( // calls pending for the specified volume, and then retry with // exponential back off. Error_ControllerPublishVolumeError_OPERATION_PENDING_FOR_VOLUME Error_ControllerPublishVolumeError_ControllerPublishVolumeErrorCode = 2 - // Indicates that the specified `VolumeHandle` is not allowed or + // Indicates that the specified volume ID is not allowed or // understood by the Plugin. More human-readable information MAY // be provided in the `error_description` field. // - // Recovery behavior: Caller MUST fix the `VolumeHandle` before + // Recovery behavior: Caller MUST fix the volume ID before // retrying. - Error_ControllerPublishVolumeError_INVALID_VOLUME_HANDLE Error_ControllerPublishVolumeError_ControllerPublishVolumeErrorCode = 3 + Error_ControllerPublishVolumeError_INVALID_VOLUME_ID Error_ControllerPublishVolumeError_ControllerPublishVolumeErrorCode = 3 // Indicates that a volume corresponding to the specified - // `VolumeHandle` does not exist. + // volume ID does not exist. // - // Recovery behavior: Caller SHOULD verify that the `VolumeHandle` + // Recovery behavior: Caller SHOULD verify that the volume ID // is correct and that the volume is accessible and has not been // deleted before retrying with exponential back off. Error_ControllerPublishVolumeError_VOLUME_DOES_NOT_EXIST Error_ControllerPublishVolumeError_ControllerPublishVolumeErrorCode = 4 // Indicates that a volume corresponding to the specified - // `VolumeHandle` is already attached to another node and does not + // volume ID is already attached to another node and does not // support multi-node attach. If this error code is returned, the // Plugin MUST also specify the `node_id` of the node the volume // is already attached to. @@ -458,7 +457,7 @@ const ( // terminated or deleted before retrying with exponential backoff. Error_ControllerPublishVolumeError_NODE_DOES_NOT_EXIST Error_ControllerPublishVolumeError_ControllerPublishVolumeErrorCode = 6 // Indicates that a volume corresponding to the specified - // `VolumeHandle` is already attached to the maximum supported + // volume ID is already attached to the maximum supported // number of nodes and therefore this operation can not be // completed until the volume is detached from at least one of the // existing nodes. When this error code is returned, the Plugin @@ -486,7 +485,7 @@ var Error_ControllerPublishVolumeError_ControllerPublishVolumeErrorCode_name = m 0: "UNKNOWN", 1: "CALL_NOT_IMPLEMENTED", 2: "OPERATION_PENDING_FOR_VOLUME", - 3: "INVALID_VOLUME_HANDLE", + 3: "INVALID_VOLUME_ID", 4: "VOLUME_DOES_NOT_EXIST", 5: "VOLUME_ALREADY_PUBLISHED", 6: "NODE_DOES_NOT_EXIST", @@ -500,7 +499,7 @@ var Error_ControllerPublishVolumeError_ControllerPublishVolumeErrorCode_value = "UNKNOWN": 0, "CALL_NOT_IMPLEMENTED": 1, "OPERATION_PENDING_FOR_VOLUME": 2, - "INVALID_VOLUME_HANDLE": 3, + "INVALID_VOLUME_ID": 3, "VOLUME_DOES_NOT_EXIST": 4, "VOLUME_ALREADY_PUBLISHED": 5, "NODE_DOES_NOT_EXIST": 6, @@ -515,7 +514,7 @@ func (x Error_ControllerPublishVolumeError_ControllerPublishVolumeErrorCode) Str return proto.EnumName(Error_ControllerPublishVolumeError_ControllerPublishVolumeErrorCode_name, int32(x)) } func (Error_ControllerPublishVolumeError_ControllerPublishVolumeErrorCode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor0, []int{41, 3, 0} + return fileDescriptor0, []int{40, 3, 0} } type Error_ControllerUnpublishVolumeError_ControllerUnpublishVolumeErrorCode int32 @@ -551,17 +550,17 @@ const ( // calls pending for the specified volume, and then retry with // exponential back off. Error_ControllerUnpublishVolumeError_OPERATION_PENDING_FOR_VOLUME Error_ControllerUnpublishVolumeError_ControllerUnpublishVolumeErrorCode = 2 - // Indicates that the specified `VolumeHandle` is not allowed or + // Indicates that the specified volume ID is not allowed or // understood by the Plugin. More human-readable information MAY // be provided in the `error_description` field. // - // Recovery behavior: Caller MUST fix the `VolumeHandle` before + // Recovery behavior: Caller MUST fix the volume ID before // retrying. - Error_ControllerUnpublishVolumeError_INVALID_VOLUME_HANDLE Error_ControllerUnpublishVolumeError_ControllerUnpublishVolumeErrorCode = 3 + Error_ControllerUnpublishVolumeError_INVALID_VOLUME_ID Error_ControllerUnpublishVolumeError_ControllerUnpublishVolumeErrorCode = 3 // Indicates that a volume corresponding to the specified - // `VolumeHandle` does not exist. + // volume ID does not exist. // - // Recovery behavior: Caller SHOULD verify that the `VolumeHandle` + // Recovery behavior: Caller SHOULD verify that the volume ID // is correct and that the volume is accessible and has not been // deleted before retrying with exponential back off. Error_ControllerUnpublishVolumeError_VOLUME_DOES_NOT_EXIST Error_ControllerUnpublishVolumeError_ControllerUnpublishVolumeErrorCode = 4 @@ -592,7 +591,7 @@ var Error_ControllerUnpublishVolumeError_ControllerUnpublishVolumeErrorCode_name 0: "UNKNOWN", 1: "CALL_NOT_IMPLEMENTED", 2: "OPERATION_PENDING_FOR_VOLUME", - 3: "INVALID_VOLUME_HANDLE", + 3: "INVALID_VOLUME_ID", 4: "VOLUME_DOES_NOT_EXIST", 5: "NODE_DOES_NOT_EXIST", 6: "INVALID_NODE_ID", @@ -603,7 +602,7 @@ var Error_ControllerUnpublishVolumeError_ControllerUnpublishVolumeErrorCode_valu "UNKNOWN": 0, "CALL_NOT_IMPLEMENTED": 1, "OPERATION_PENDING_FOR_VOLUME": 2, - "INVALID_VOLUME_HANDLE": 3, + "INVALID_VOLUME_ID": 3, "VOLUME_DOES_NOT_EXIST": 4, "NODE_DOES_NOT_EXIST": 5, "INVALID_NODE_ID": 6, @@ -615,7 +614,7 @@ func (x Error_ControllerUnpublishVolumeError_ControllerUnpublishVolumeErrorCode) return proto.EnumName(Error_ControllerUnpublishVolumeError_ControllerUnpublishVolumeErrorCode_name, int32(x)) } func (Error_ControllerUnpublishVolumeError_ControllerUnpublishVolumeErrorCode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor0, []int{41, 4, 0} + return fileDescriptor0, []int{40, 4, 0} } type Error_ValidateVolumeCapabilitiesError_ValidateVolumeCapabilitiesErrorCode int32 @@ -670,7 +669,7 @@ func (x Error_ValidateVolumeCapabilitiesError_ValidateVolumeCapabilitiesErrorCod return proto.EnumName(Error_ValidateVolumeCapabilitiesError_ValidateVolumeCapabilitiesErrorCode_name, int32(x)) } func (Error_ValidateVolumeCapabilitiesError_ValidateVolumeCapabilitiesErrorCode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor0, []int{41, 5, 0} + return fileDescriptor0, []int{40, 5, 0} } type Error_ControllerProbeError_ControllerProbeErrorCode int32 @@ -704,7 +703,7 @@ func (x Error_ControllerProbeError_ControllerProbeErrorCode) String() string { return proto.EnumName(Error_ControllerProbeError_ControllerProbeErrorCode_name, int32(x)) } func (Error_ControllerProbeError_ControllerProbeErrorCode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor0, []int{41, 6, 0} + return fileDescriptor0, []int{40, 6, 0} } type Error_NodePublishVolumeError_NodePublishVolumeErrorCode int32 @@ -734,9 +733,9 @@ const ( // exponential back off. Error_NodePublishVolumeError_OPERATION_PENDING_FOR_VOLUME Error_NodePublishVolumeError_NodePublishVolumeErrorCode = 1 // Indicates that a volume corresponding to the specified - // `VolumeHandle` does not exist. + // volume ID does not exist. // - // Recovery behavior: Caller SHOULD verify that the `VolumeHandle` + // Recovery behavior: Caller SHOULD verify that the volume ID // is correct and that the volume is accessible and has not been // deleted before retrying with exponential back off. Error_NodePublishVolumeError_VOLUME_DOES_NOT_EXIST Error_NodePublishVolumeError_NodePublishVolumeErrorCode = 2 @@ -744,13 +743,13 @@ const ( Error_NodePublishVolumeError_UNSUPPORTED_VOLUME_TYPE Error_NodePublishVolumeError_NodePublishVolumeErrorCode = 4 Error_NodePublishVolumeError_UNSUPPORTED_FS_TYPE Error_NodePublishVolumeError_NodePublishVolumeErrorCode = 5 Error_NodePublishVolumeError_MOUNT_ERROR Error_NodePublishVolumeError_NodePublishVolumeErrorCode = 6 - // Indicates that the specified `VolumeHandle` is not allowed or + // Indicates that the specified volume ID is not allowed or // understood by the Plugin. More human-readable information MAY // be provided in the `error_description` field. // - // Recovery behavior: Caller MUST fix the `VolumeHandle` before + // Recovery behavior: Caller MUST fix the volume ID before // retrying. - Error_NodePublishVolumeError_INVALID_VOLUME_HANDLE Error_NodePublishVolumeError_NodePublishVolumeErrorCode = 7 + Error_NodePublishVolumeError_INVALID_VOLUME_ID Error_NodePublishVolumeError_NodePublishVolumeErrorCode = 7 ) var Error_NodePublishVolumeError_NodePublishVolumeErrorCode_name = map[int32]string{ @@ -761,7 +760,7 @@ var Error_NodePublishVolumeError_NodePublishVolumeErrorCode_name = map[int32]str 4: "UNSUPPORTED_VOLUME_TYPE", 5: "UNSUPPORTED_FS_TYPE", 6: "MOUNT_ERROR", - 7: "INVALID_VOLUME_HANDLE", + 7: "INVALID_VOLUME_ID", } var Error_NodePublishVolumeError_NodePublishVolumeErrorCode_value = map[string]int32{ "UNKNOWN": 0, @@ -771,14 +770,14 @@ var Error_NodePublishVolumeError_NodePublishVolumeErrorCode_value = map[string]i "UNSUPPORTED_VOLUME_TYPE": 4, "UNSUPPORTED_FS_TYPE": 5, "MOUNT_ERROR": 6, - "INVALID_VOLUME_HANDLE": 7, + "INVALID_VOLUME_ID": 7, } func (x Error_NodePublishVolumeError_NodePublishVolumeErrorCode) String() string { return proto.EnumName(Error_NodePublishVolumeError_NodePublishVolumeErrorCode_name, int32(x)) } func (Error_NodePublishVolumeError_NodePublishVolumeErrorCode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor0, []int{41, 7, 0} + return fileDescriptor0, []int{40, 7, 0} } type Error_NodeUnpublishVolumeError_NodeUnpublishVolumeErrorCode int32 @@ -808,20 +807,20 @@ const ( // exponential back off. Error_NodeUnpublishVolumeError_OPERATION_PENDING_FOR_VOLUME Error_NodeUnpublishVolumeError_NodeUnpublishVolumeErrorCode = 1 // Indicates that a volume corresponding to the specified - // `VolumeHandle` does not exist. + // volume ID does not exist. // - // Recovery behavior: Caller SHOULD verify that the `VolumeHandle` + // Recovery behavior: Caller SHOULD verify that the volume ID // is correct and that the volume is accessible and has not been // deleted before retrying with exponential back off. Error_NodeUnpublishVolumeError_VOLUME_DOES_NOT_EXIST Error_NodeUnpublishVolumeError_NodeUnpublishVolumeErrorCode = 2 Error_NodeUnpublishVolumeError_UNMOUNT_ERROR Error_NodeUnpublishVolumeError_NodeUnpublishVolumeErrorCode = 3 - // Indicates that the specified `VolumeHandle` is not allowed or + // Indicates that the specified volume ID is not allowed or // understood by the Plugin. More human-readable information MAY // be provided in the `error_description` field. // - // Recovery behavior: Caller MUST fix the `VolumeHandle` before + // Recovery behavior: Caller MUST fix the volume ID before // retrying. - Error_NodeUnpublishVolumeError_INVALID_VOLUME_HANDLE Error_NodeUnpublishVolumeError_NodeUnpublishVolumeErrorCode = 4 + Error_NodeUnpublishVolumeError_INVALID_VOLUME_ID Error_NodeUnpublishVolumeError_NodeUnpublishVolumeErrorCode = 4 ) var Error_NodeUnpublishVolumeError_NodeUnpublishVolumeErrorCode_name = map[int32]string{ @@ -829,21 +828,21 @@ var Error_NodeUnpublishVolumeError_NodeUnpublishVolumeErrorCode_name = map[int32 1: "OPERATION_PENDING_FOR_VOLUME", 2: "VOLUME_DOES_NOT_EXIST", 3: "UNMOUNT_ERROR", - 4: "INVALID_VOLUME_HANDLE", + 4: "INVALID_VOLUME_ID", } var Error_NodeUnpublishVolumeError_NodeUnpublishVolumeErrorCode_value = map[string]int32{ "UNKNOWN": 0, "OPERATION_PENDING_FOR_VOLUME": 1, "VOLUME_DOES_NOT_EXIST": 2, "UNMOUNT_ERROR": 3, - "INVALID_VOLUME_HANDLE": 4, + "INVALID_VOLUME_ID": 4, } func (x Error_NodeUnpublishVolumeError_NodeUnpublishVolumeErrorCode) String() string { return proto.EnumName(Error_NodeUnpublishVolumeError_NodeUnpublishVolumeErrorCode_name, int32(x)) } func (Error_NodeUnpublishVolumeError_NodeUnpublishVolumeErrorCode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor0, []int{41, 8, 0} + return fileDescriptor0, []int{40, 8, 0} } type Error_NodeProbeError_NodeProbeErrorCode int32 @@ -877,7 +876,7 @@ func (x Error_NodeProbeError_NodeProbeErrorCode) String() string { return proto.EnumName(Error_NodeProbeError_NodeProbeErrorCode_name, int32(x)) } func (Error_NodeProbeError_NodeProbeErrorCode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor0, []int{41, 9, 0} + return fileDescriptor0, []int{40, 9, 0} } type Error_GetNodeIDError_GetNodeIDErrorCode int32 @@ -910,7 +909,7 @@ func (x Error_GetNodeIDError_GetNodeIDErrorCode) String() string { return proto.EnumName(Error_GetNodeIDError_GetNodeIDErrorCode_name, int32(x)) } func (Error_GetNodeIDError_GetNodeIDErrorCode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor0, []int{41, 10, 0} + return fileDescriptor0, []int{40, 10, 0} } // ////// @@ -1738,8 +1737,9 @@ type VolumeInfo struct { CapacityBytes uint64 `protobuf:"varint,1,opt,name=capacity_bytes,json=capacityBytes" json:"capacity_bytes,omitempty"` // Contains identity information for the created volume. This field is // REQUIRED. The identity information will be used by the CO in - // subsequent calls to refer to the provisioned volume. - Handle *VolumeHandle `protobuf:"bytes,2,opt,name=handle" json:"handle,omitempty"` + // subsequent calls to refer to the provisioned volume. This field + // should not exceed 1MiB. + Id string `protobuf:"bytes,2,opt,name=id" json:"id,omitempty"` } func (m *VolumeInfo) Reset() { *m = VolumeInfo{} } @@ -1754,54 +1754,13 @@ func (m *VolumeInfo) GetCapacityBytes() uint64 { return 0 } -func (m *VolumeInfo) GetHandle() *VolumeHandle { - if m != nil { - return m.Handle - } - return nil -} - -// VolumeHandle objects are generated by Plugin implementations to -// serve two purposes: first, to efficiently identify a volume known -// to the Plugin implementation; second, to capture additional, opaque, -// possibly sensitive information associated with a volume. It SHALL -// NOT change over the lifetime of the volume and MAY be safely cached -// by the CO. -// Since this object will be passed around by the CO, it is RECOMMENDED -// that each Plugin keeps the information herein as small as possible. -// The total bytes of a serialized VolumeHandle must be less than 1 MiB. -type VolumeHandle struct { - // ID is the identity of the provisioned volume specified by the - // Plugin. This field is REQUIRED. - // This information SHALL NOT be considered sensitive such that, for - // example, the CO MAY generate log messages that include this data. - Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"` - // Metadata captures additional, possibly sensitive, information about - // a volume in the form of key-value pairs. This field is OPTIONAL. - // Since this field MAY contain sensitive information, the CO MUST NOT - // leak this information to untrusted entities. - Metadata map[string]string `protobuf:"bytes,2,rep,name=metadata" json:"metadata,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` -} - -func (m *VolumeHandle) Reset() { *m = VolumeHandle{} } -func (m *VolumeHandle) String() string { return proto.CompactTextString(m) } -func (*VolumeHandle) ProtoMessage() {} -func (*VolumeHandle) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} } - -func (m *VolumeHandle) GetId() string { +func (m *VolumeInfo) GetId() string { if m != nil { return m.Id } return "" } -func (m *VolumeHandle) GetMetadata() map[string]string { - if m != nil { - return m.Metadata - } - return nil -} - // A standard way to encode credential data. The total bytes of the // values in the Data field must be less than 1 Mebibyte. type Credentials struct { @@ -1820,7 +1779,7 @@ type Credentials struct { func (m *Credentials) Reset() { *m = Credentials{} } func (m *Credentials) String() string { return proto.CompactTextString(m) } func (*Credentials) ProtoMessage() {} -func (*Credentials) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} } +func (*Credentials) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} } func (m *Credentials) GetData() map[string]string { if m != nil { @@ -1834,9 +1793,9 @@ func (m *Credentials) GetData() map[string]string { type DeleteVolumeRequest struct { // The API version assumed by the CO. This field is REQUIRED. Version *Version `protobuf:"bytes,1,opt,name=version" json:"version,omitempty"` - // The handle of the volume to be deprovisioned. + // The ID of the volume to be deprovisioned. // This field is REQUIRED. - VolumeHandle *VolumeHandle `protobuf:"bytes,2,opt,name=volume_handle,json=volumeHandle" json:"volume_handle,omitempty"` + 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. // This field is OPTIONAL. @@ -1846,7 +1805,7 @@ type DeleteVolumeRequest struct { func (m *DeleteVolumeRequest) Reset() { *m = DeleteVolumeRequest{} } func (m *DeleteVolumeRequest) String() string { return proto.CompactTextString(m) } func (*DeleteVolumeRequest) ProtoMessage() {} -func (*DeleteVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} } +func (*DeleteVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} } func (m *DeleteVolumeRequest) GetVersion() *Version { if m != nil { @@ -1855,11 +1814,11 @@ func (m *DeleteVolumeRequest) GetVersion() *Version { return nil } -func (m *DeleteVolumeRequest) GetVolumeHandle() *VolumeHandle { +func (m *DeleteVolumeRequest) GetVolumeId() string { if m != nil { - return m.VolumeHandle + return m.VolumeId } - return nil + return "" } func (m *DeleteVolumeRequest) GetUserCredentials() *Credentials { @@ -1881,7 +1840,7 @@ type DeleteVolumeResponse struct { func (m *DeleteVolumeResponse) Reset() { *m = DeleteVolumeResponse{} } func (m *DeleteVolumeResponse) String() string { return proto.CompactTextString(m) } func (*DeleteVolumeResponse) ProtoMessage() {} -func (*DeleteVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} } +func (*DeleteVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} } type isDeleteVolumeResponse_Reply interface { isDeleteVolumeResponse_Reply() @@ -1998,16 +1957,16 @@ type DeleteVolumeResponse_Result struct { func (m *DeleteVolumeResponse_Result) Reset() { *m = DeleteVolumeResponse_Result{} } func (m *DeleteVolumeResponse_Result) String() string { return proto.CompactTextString(m) } func (*DeleteVolumeResponse_Result) ProtoMessage() {} -func (*DeleteVolumeResponse_Result) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13, 0} } +func (*DeleteVolumeResponse_Result) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12, 0} } // ////// // ////// type ControllerPublishVolumeRequest struct { // The API version assumed by the CO. This field is REQUIRED. Version *Version `protobuf:"bytes,1,opt,name=version" json:"version,omitempty"` - // The handle of the volume to be used on a node. + // The ID of the volume to be used on a node. // This field is REQUIRED. - VolumeHandle *VolumeHandle `protobuf:"bytes,2,opt,name=volume_handle,json=volumeHandle" json:"volume_handle,omitempty"` + VolumeId string `protobuf:"bytes,2,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"` // The ID of the node. This field is OPTIONAL. The CO SHALL set (or // clear) this field to match the `NodeID` returned by `GetNodeID`. // `GetNodeID` is allowed to omit `NodeID` from a successful `Result`; @@ -2028,7 +1987,7 @@ type ControllerPublishVolumeRequest struct { func (m *ControllerPublishVolumeRequest) Reset() { *m = ControllerPublishVolumeRequest{} } func (m *ControllerPublishVolumeRequest) String() string { return proto.CompactTextString(m) } func (*ControllerPublishVolumeRequest) ProtoMessage() {} -func (*ControllerPublishVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{14} } +func (*ControllerPublishVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} } func (m *ControllerPublishVolumeRequest) GetVersion() *Version { if m != nil { @@ -2037,11 +1996,11 @@ func (m *ControllerPublishVolumeRequest) GetVersion() *Version { return nil } -func (m *ControllerPublishVolumeRequest) GetVolumeHandle() *VolumeHandle { +func (m *ControllerPublishVolumeRequest) GetVolumeId() string { if m != nil { - return m.VolumeHandle + return m.VolumeId } - return nil + return "" } func (m *ControllerPublishVolumeRequest) GetNodeId() *NodeID { @@ -2085,7 +2044,7 @@ func (m *ControllerPublishVolumeResponse) Reset() { *m = ControllerPubli func (m *ControllerPublishVolumeResponse) String() string { return proto.CompactTextString(m) } func (*ControllerPublishVolumeResponse) ProtoMessage() {} func (*ControllerPublishVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{15} + return fileDescriptor0, []int{14} } type isControllerPublishVolumeResponse_Reply interface { @@ -2210,7 +2169,7 @@ func (m *ControllerPublishVolumeResponse_Result) Reset() { func (m *ControllerPublishVolumeResponse_Result) String() string { return proto.CompactTextString(m) } func (*ControllerPublishVolumeResponse_Result) ProtoMessage() {} func (*ControllerPublishVolumeResponse_Result) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{15, 0} + return fileDescriptor0, []int{14, 0} } func (m *ControllerPublishVolumeResponse_Result) GetPublishVolumeInfo() map[string]string { @@ -2231,7 +2190,7 @@ type NodeID struct { func (m *NodeID) Reset() { *m = NodeID{} } func (m *NodeID) String() string { return proto.CompactTextString(m) } func (*NodeID) ProtoMessage() {} -func (*NodeID) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{16} } +func (*NodeID) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{15} } func (m *NodeID) GetValues() map[string]string { if m != nil { @@ -2245,8 +2204,8 @@ func (m *NodeID) GetValues() map[string]string { type ControllerUnpublishVolumeRequest struct { // The API version assumed by the CO. This field is REQUIRED. Version *Version `protobuf:"bytes,1,opt,name=version" json:"version,omitempty"` - // The handle of the volume. This field is REQUIRED. - VolumeHandle *VolumeHandle `protobuf:"bytes,2,opt,name=volume_handle,json=volumeHandle" json:"volume_handle,omitempty"` + // The ID of the volume. This field is REQUIRED. + VolumeId string `protobuf:"bytes,2,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"` // The ID of the node. This field is OPTIONAL. The CO SHALL set (or // clear) this field to match the `NodeID` returned by `GetNodeID`. // `GetNodeID` is allowed to omit `NodeID` from a successful `Result`; @@ -2267,7 +2226,7 @@ func (m *ControllerUnpublishVolumeRequest) Reset() { *m = ControllerUnpu func (m *ControllerUnpublishVolumeRequest) String() string { return proto.CompactTextString(m) } func (*ControllerUnpublishVolumeRequest) ProtoMessage() {} func (*ControllerUnpublishVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{17} + return fileDescriptor0, []int{16} } func (m *ControllerUnpublishVolumeRequest) GetVersion() *Version { @@ -2277,11 +2236,11 @@ func (m *ControllerUnpublishVolumeRequest) GetVersion() *Version { return nil } -func (m *ControllerUnpublishVolumeRequest) GetVolumeHandle() *VolumeHandle { +func (m *ControllerUnpublishVolumeRequest) GetVolumeId() string { if m != nil { - return m.VolumeHandle + return m.VolumeId } - return nil + return "" } func (m *ControllerUnpublishVolumeRequest) GetNodeId() *NodeID { @@ -2311,7 +2270,7 @@ func (m *ControllerUnpublishVolumeResponse) Reset() { *m = ControllerUnp func (m *ControllerUnpublishVolumeResponse) String() string { return proto.CompactTextString(m) } func (*ControllerUnpublishVolumeResponse) ProtoMessage() {} func (*ControllerUnpublishVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{18} + return fileDescriptor0, []int{17} } type isControllerUnpublishVolumeResponse_Reply interface { @@ -2432,7 +2391,7 @@ func (m *ControllerUnpublishVolumeResponse_Result) Reset() { func (m *ControllerUnpublishVolumeResponse_Result) String() string { return proto.CompactTextString(m) } func (*ControllerUnpublishVolumeResponse_Result) ProtoMessage() {} func (*ControllerUnpublishVolumeResponse_Result) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{18, 0} + return fileDescriptor0, []int{17, 0} } // ////// @@ -2440,9 +2399,8 @@ func (*ControllerUnpublishVolumeResponse_Result) Descriptor() ([]byte, []int) { type ValidateVolumeCapabilitiesRequest struct { // The API version assumed by the CO. This is a REQUIRED field. Version *Version `protobuf:"bytes,1,opt,name=version" json:"version,omitempty"` - // The information about the volume to check. This is a REQUIRED - // field. - VolumeInfo *VolumeInfo `protobuf:"bytes,2,opt,name=volume_info,json=volumeInfo" json:"volume_info,omitempty"` + // The ID of the volume to check. This field is REQUIRED. + VolumeId string `protobuf:"bytes,2,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"` // The capabilities that the CO wants to check for the volume. This // call SHALL return "supported" only if all the volume capabilities // specified below are supported. This field is REQUIRED. @@ -2453,7 +2411,7 @@ func (m *ValidateVolumeCapabilitiesRequest) Reset() { *m = ValidateVolum func (m *ValidateVolumeCapabilitiesRequest) String() string { return proto.CompactTextString(m) } func (*ValidateVolumeCapabilitiesRequest) ProtoMessage() {} func (*ValidateVolumeCapabilitiesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{19} + return fileDescriptor0, []int{18} } func (m *ValidateVolumeCapabilitiesRequest) GetVersion() *Version { @@ -2463,11 +2421,11 @@ func (m *ValidateVolumeCapabilitiesRequest) GetVersion() *Version { return nil } -func (m *ValidateVolumeCapabilitiesRequest) GetVolumeInfo() *VolumeInfo { +func (m *ValidateVolumeCapabilitiesRequest) GetVolumeId() string { if m != nil { - return m.VolumeInfo + return m.VolumeId } - return nil + return "" } func (m *ValidateVolumeCapabilitiesRequest) GetVolumeCapabilities() []*VolumeCapability { @@ -2490,7 +2448,7 @@ func (m *ValidateVolumeCapabilitiesResponse) Reset() { *m = ValidateVolu func (m *ValidateVolumeCapabilitiesResponse) String() string { return proto.CompactTextString(m) } func (*ValidateVolumeCapabilitiesResponse) ProtoMessage() {} func (*ValidateVolumeCapabilitiesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{20} + return fileDescriptor0, []int{19} } type isValidateVolumeCapabilitiesResponse_Reply interface { @@ -2617,7 +2575,7 @@ func (m *ValidateVolumeCapabilitiesResponse_Result) Reset() { func (m *ValidateVolumeCapabilitiesResponse_Result) String() string { return proto.CompactTextString(m) } func (*ValidateVolumeCapabilitiesResponse_Result) ProtoMessage() {} func (*ValidateVolumeCapabilitiesResponse_Result) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{20, 0} + return fileDescriptor0, []int{19, 0} } func (m *ValidateVolumeCapabilitiesResponse_Result) GetSupported() bool { @@ -2656,7 +2614,7 @@ type ListVolumesRequest struct { func (m *ListVolumesRequest) Reset() { *m = ListVolumesRequest{} } func (m *ListVolumesRequest) String() string { return proto.CompactTextString(m) } func (*ListVolumesRequest) ProtoMessage() {} -func (*ListVolumesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{21} } +func (*ListVolumesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{20} } func (m *ListVolumesRequest) GetVersion() *Version { if m != nil { @@ -2691,7 +2649,7 @@ type ListVolumesResponse struct { func (m *ListVolumesResponse) Reset() { *m = ListVolumesResponse{} } func (m *ListVolumesResponse) String() string { return proto.CompactTextString(m) } func (*ListVolumesResponse) ProtoMessage() {} -func (*ListVolumesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{22} } +func (*ListVolumesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{21} } type isListVolumesResponse_Reply interface { isListVolumesResponse_Reply() @@ -2815,7 +2773,7 @@ type ListVolumesResponse_Result struct { func (m *ListVolumesResponse_Result) Reset() { *m = ListVolumesResponse_Result{} } func (m *ListVolumesResponse_Result) String() string { return proto.CompactTextString(m) } func (*ListVolumesResponse_Result) ProtoMessage() {} -func (*ListVolumesResponse_Result) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{22, 0} } +func (*ListVolumesResponse_Result) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{21, 0} } func (m *ListVolumesResponse_Result) GetEntries() []*ListVolumesResponse_Result_Entry { if m != nil { @@ -2839,7 +2797,7 @@ func (m *ListVolumesResponse_Result_Entry) Reset() { *m = ListVolumesRes func (m *ListVolumesResponse_Result_Entry) String() string { return proto.CompactTextString(m) } func (*ListVolumesResponse_Result_Entry) ProtoMessage() {} func (*ListVolumesResponse_Result_Entry) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{22, 0, 0} + return fileDescriptor0, []int{21, 0, 0} } func (m *ListVolumesResponse_Result_Entry) GetVolumeInfo() *VolumeInfo { @@ -2870,7 +2828,7 @@ type GetCapacityRequest struct { func (m *GetCapacityRequest) Reset() { *m = GetCapacityRequest{} } func (m *GetCapacityRequest) String() string { return proto.CompactTextString(m) } func (*GetCapacityRequest) ProtoMessage() {} -func (*GetCapacityRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{23} } +func (*GetCapacityRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{22} } func (m *GetCapacityRequest) GetVersion() *Version { if m != nil { @@ -2905,7 +2863,7 @@ type GetCapacityResponse struct { func (m *GetCapacityResponse) Reset() { *m = GetCapacityResponse{} } func (m *GetCapacityResponse) String() string { return proto.CompactTextString(m) } func (*GetCapacityResponse) ProtoMessage() {} -func (*GetCapacityResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{24} } +func (*GetCapacityResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{23} } type isGetCapacityResponse_Reply interface { isGetCapacityResponse_Reply() @@ -3028,7 +2986,7 @@ type GetCapacityResponse_Result struct { func (m *GetCapacityResponse_Result) Reset() { *m = GetCapacityResponse_Result{} } func (m *GetCapacityResponse_Result) String() string { return proto.CompactTextString(m) } func (*GetCapacityResponse_Result) ProtoMessage() {} -func (*GetCapacityResponse_Result) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{24, 0} } +func (*GetCapacityResponse_Result) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{23, 0} } func (m *GetCapacityResponse_Result) GetAvailableCapacity() uint64 { if m != nil { @@ -3047,7 +3005,7 @@ type ControllerProbeRequest struct { func (m *ControllerProbeRequest) Reset() { *m = ControllerProbeRequest{} } func (m *ControllerProbeRequest) String() string { return proto.CompactTextString(m) } func (*ControllerProbeRequest) ProtoMessage() {} -func (*ControllerProbeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{25} } +func (*ControllerProbeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{24} } func (m *ControllerProbeRequest) GetVersion() *Version { if m != nil { @@ -3068,7 +3026,7 @@ type ControllerProbeResponse struct { func (m *ControllerProbeResponse) Reset() { *m = ControllerProbeResponse{} } func (m *ControllerProbeResponse) String() string { return proto.CompactTextString(m) } func (*ControllerProbeResponse) ProtoMessage() {} -func (*ControllerProbeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{26} } +func (*ControllerProbeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{25} } type isControllerProbeResponse_Reply interface { isControllerProbeResponse_Reply() @@ -3186,7 +3144,7 @@ func (m *ControllerProbeResponse_Result) Reset() { *m = ControllerProbeR func (m *ControllerProbeResponse_Result) String() string { return proto.CompactTextString(m) } func (*ControllerProbeResponse_Result) ProtoMessage() {} func (*ControllerProbeResponse_Result) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{26, 0} + return fileDescriptor0, []int{25, 0} } // ////// @@ -3200,7 +3158,7 @@ func (m *ControllerGetCapabilitiesRequest) Reset() { *m = ControllerGetC func (m *ControllerGetCapabilitiesRequest) String() string { return proto.CompactTextString(m) } func (*ControllerGetCapabilitiesRequest) ProtoMessage() {} func (*ControllerGetCapabilitiesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{27} + return fileDescriptor0, []int{26} } func (m *ControllerGetCapabilitiesRequest) GetVersion() *Version { @@ -3223,7 +3181,7 @@ func (m *ControllerGetCapabilitiesResponse) Reset() { *m = ControllerGet func (m *ControllerGetCapabilitiesResponse) String() string { return proto.CompactTextString(m) } func (*ControllerGetCapabilitiesResponse) ProtoMessage() {} func (*ControllerGetCapabilitiesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{28} + return fileDescriptor0, []int{27} } type isControllerGetCapabilitiesResponse_Reply interface { @@ -3347,7 +3305,7 @@ func (m *ControllerGetCapabilitiesResponse_Result) Reset() { func (m *ControllerGetCapabilitiesResponse_Result) String() string { return proto.CompactTextString(m) } func (*ControllerGetCapabilitiesResponse_Result) ProtoMessage() {} func (*ControllerGetCapabilitiesResponse_Result) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{28, 0} + return fileDescriptor0, []int{27, 0} } func (m *ControllerGetCapabilitiesResponse_Result) GetCapabilities() []*ControllerServiceCapability { @@ -3367,7 +3325,7 @@ type ControllerServiceCapability struct { func (m *ControllerServiceCapability) Reset() { *m = ControllerServiceCapability{} } func (m *ControllerServiceCapability) String() string { return proto.CompactTextString(m) } func (*ControllerServiceCapability) ProtoMessage() {} -func (*ControllerServiceCapability) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{29} } +func (*ControllerServiceCapability) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{28} } type isControllerServiceCapability_Type interface { isControllerServiceCapability_Type() @@ -3456,7 +3414,7 @@ func (m *ControllerServiceCapability_RPC) Reset() { *m = ControllerServi func (m *ControllerServiceCapability_RPC) String() string { return proto.CompactTextString(m) } func (*ControllerServiceCapability_RPC) ProtoMessage() {} func (*ControllerServiceCapability_RPC) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{29, 0} + return fileDescriptor0, []int{28, 0} } func (m *ControllerServiceCapability_RPC) GetType() ControllerServiceCapability_RPC_Type { @@ -3471,8 +3429,8 @@ func (m *ControllerServiceCapability_RPC) GetType() ControllerServiceCapability_ type NodePublishVolumeRequest struct { // The API version assumed by the CO. This is a REQUIRED field. Version *Version `protobuf:"bytes,1,opt,name=version" json:"version,omitempty"` - // The handle of the volume to publish. This field is REQUIRED. - VolumeHandle *VolumeHandle `protobuf:"bytes,2,opt,name=volume_handle,json=volumeHandle" json:"volume_handle,omitempty"` + // The ID of the volume to publish. This field is REQUIRED. + VolumeId string `protobuf:"bytes,2,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"` // The CO SHALL set this field to the value returned by // `ControllerPublishVolume` if the corresponding Controller Plugin // has `PUBLISH_UNPUBLISH_VOLUME` controller capability, and SHALL be @@ -3498,7 +3456,7 @@ type NodePublishVolumeRequest struct { func (m *NodePublishVolumeRequest) Reset() { *m = NodePublishVolumeRequest{} } func (m *NodePublishVolumeRequest) String() string { return proto.CompactTextString(m) } func (*NodePublishVolumeRequest) ProtoMessage() {} -func (*NodePublishVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{30} } +func (*NodePublishVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{29} } func (m *NodePublishVolumeRequest) GetVersion() *Version { if m != nil { @@ -3507,11 +3465,11 @@ func (m *NodePublishVolumeRequest) GetVersion() *Version { return nil } -func (m *NodePublishVolumeRequest) GetVolumeHandle() *VolumeHandle { +func (m *NodePublishVolumeRequest) GetVolumeId() string { if m != nil { - return m.VolumeHandle + return m.VolumeId } - return nil + return "" } func (m *NodePublishVolumeRequest) GetPublishVolumeInfo() map[string]string { @@ -3561,7 +3519,7 @@ type NodePublishVolumeResponse struct { func (m *NodePublishVolumeResponse) Reset() { *m = NodePublishVolumeResponse{} } func (m *NodePublishVolumeResponse) String() string { return proto.CompactTextString(m) } func (*NodePublishVolumeResponse) ProtoMessage() {} -func (*NodePublishVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{31} } +func (*NodePublishVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{30} } type isNodePublishVolumeResponse_Reply interface { isNodePublishVolumeResponse_Reply() @@ -3679,7 +3637,7 @@ func (m *NodePublishVolumeResponse_Result) Reset() { *m = NodePublishVol func (m *NodePublishVolumeResponse_Result) String() string { return proto.CompactTextString(m) } func (*NodePublishVolumeResponse_Result) ProtoMessage() {} func (*NodePublishVolumeResponse_Result) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{31, 0} + return fileDescriptor0, []int{30, 0} } // ////// @@ -3687,8 +3645,8 @@ func (*NodePublishVolumeResponse_Result) Descriptor() ([]byte, []int) { type NodeUnpublishVolumeRequest struct { // The API version assumed by the CO. This is a REQUIRED field. Version *Version `protobuf:"bytes,1,opt,name=version" json:"version,omitempty"` - // The handle of the volume. This field is REQUIRED. - VolumeHandle *VolumeHandle `protobuf:"bytes,2,opt,name=volume_handle,json=volumeHandle" json:"volume_handle,omitempty"` + // The ID of the volume. This field is REQUIRED. + VolumeId string `protobuf:"bytes,2,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"` // The path at which the volume was published. It MUST be an absolute // path in the root filesystem of the process serving this request. // This is a REQUIRED field. @@ -3701,7 +3659,7 @@ type NodeUnpublishVolumeRequest struct { func (m *NodeUnpublishVolumeRequest) Reset() { *m = NodeUnpublishVolumeRequest{} } func (m *NodeUnpublishVolumeRequest) String() string { return proto.CompactTextString(m) } func (*NodeUnpublishVolumeRequest) ProtoMessage() {} -func (*NodeUnpublishVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{32} } +func (*NodeUnpublishVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{31} } func (m *NodeUnpublishVolumeRequest) GetVersion() *Version { if m != nil { @@ -3710,11 +3668,11 @@ func (m *NodeUnpublishVolumeRequest) GetVersion() *Version { return nil } -func (m *NodeUnpublishVolumeRequest) GetVolumeHandle() *VolumeHandle { +func (m *NodeUnpublishVolumeRequest) GetVolumeId() string { if m != nil { - return m.VolumeHandle + return m.VolumeId } - return nil + return "" } func (m *NodeUnpublishVolumeRequest) GetTargetPath() string { @@ -3743,7 +3701,7 @@ type NodeUnpublishVolumeResponse struct { func (m *NodeUnpublishVolumeResponse) Reset() { *m = NodeUnpublishVolumeResponse{} } func (m *NodeUnpublishVolumeResponse) String() string { return proto.CompactTextString(m) } func (*NodeUnpublishVolumeResponse) ProtoMessage() {} -func (*NodeUnpublishVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{33} } +func (*NodeUnpublishVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{32} } type isNodeUnpublishVolumeResponse_Reply interface { isNodeUnpublishVolumeResponse_Reply() @@ -3861,7 +3819,7 @@ func (m *NodeUnpublishVolumeResponse_Result) Reset() { *m = NodeUnpublis func (m *NodeUnpublishVolumeResponse_Result) String() string { return proto.CompactTextString(m) } func (*NodeUnpublishVolumeResponse_Result) ProtoMessage() {} func (*NodeUnpublishVolumeResponse_Result) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{33, 0} + return fileDescriptor0, []int{32, 0} } // ////// @@ -3874,7 +3832,7 @@ type GetNodeIDRequest struct { func (m *GetNodeIDRequest) Reset() { *m = GetNodeIDRequest{} } func (m *GetNodeIDRequest) String() string { return proto.CompactTextString(m) } func (*GetNodeIDRequest) ProtoMessage() {} -func (*GetNodeIDRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{34} } +func (*GetNodeIDRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{33} } func (m *GetNodeIDRequest) GetVersion() *Version { if m != nil { @@ -3895,7 +3853,7 @@ type GetNodeIDResponse struct { func (m *GetNodeIDResponse) Reset() { *m = GetNodeIDResponse{} } func (m *GetNodeIDResponse) String() string { return proto.CompactTextString(m) } func (*GetNodeIDResponse) ProtoMessage() {} -func (*GetNodeIDResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{35} } +func (*GetNodeIDResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{34} } type isGetNodeIDResponse_Reply interface { isGetNodeIDResponse_Reply() @@ -4017,7 +3975,7 @@ type GetNodeIDResponse_Result struct { func (m *GetNodeIDResponse_Result) Reset() { *m = GetNodeIDResponse_Result{} } func (m *GetNodeIDResponse_Result) String() string { return proto.CompactTextString(m) } func (*GetNodeIDResponse_Result) ProtoMessage() {} -func (*GetNodeIDResponse_Result) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{35, 0} } +func (*GetNodeIDResponse_Result) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{34, 0} } func (m *GetNodeIDResponse_Result) GetNodeId() *NodeID { if m != nil { @@ -4036,7 +3994,7 @@ type NodeProbeRequest struct { func (m *NodeProbeRequest) Reset() { *m = NodeProbeRequest{} } func (m *NodeProbeRequest) String() string { return proto.CompactTextString(m) } func (*NodeProbeRequest) ProtoMessage() {} -func (*NodeProbeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{36} } +func (*NodeProbeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{35} } func (m *NodeProbeRequest) GetVersion() *Version { if m != nil { @@ -4057,7 +4015,7 @@ type NodeProbeResponse struct { func (m *NodeProbeResponse) Reset() { *m = NodeProbeResponse{} } func (m *NodeProbeResponse) String() string { return proto.CompactTextString(m) } func (*NodeProbeResponse) ProtoMessage() {} -func (*NodeProbeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{37} } +func (*NodeProbeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{36} } type isNodeProbeResponse_Reply interface { isNodeProbeResponse_Reply() @@ -4174,7 +4132,7 @@ type NodeProbeResponse_Result struct { func (m *NodeProbeResponse_Result) Reset() { *m = NodeProbeResponse_Result{} } func (m *NodeProbeResponse_Result) String() string { return proto.CompactTextString(m) } func (*NodeProbeResponse_Result) ProtoMessage() {} -func (*NodeProbeResponse_Result) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{37, 0} } +func (*NodeProbeResponse_Result) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{36, 0} } // ////// // ////// @@ -4186,7 +4144,7 @@ type NodeGetCapabilitiesRequest struct { func (m *NodeGetCapabilitiesRequest) Reset() { *m = NodeGetCapabilitiesRequest{} } func (m *NodeGetCapabilitiesRequest) String() string { return proto.CompactTextString(m) } func (*NodeGetCapabilitiesRequest) ProtoMessage() {} -func (*NodeGetCapabilitiesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{38} } +func (*NodeGetCapabilitiesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{37} } func (m *NodeGetCapabilitiesRequest) GetVersion() *Version { if m != nil { @@ -4207,7 +4165,7 @@ type NodeGetCapabilitiesResponse struct { func (m *NodeGetCapabilitiesResponse) Reset() { *m = NodeGetCapabilitiesResponse{} } func (m *NodeGetCapabilitiesResponse) String() string { return proto.CompactTextString(m) } func (*NodeGetCapabilitiesResponse) ProtoMessage() {} -func (*NodeGetCapabilitiesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{39} } +func (*NodeGetCapabilitiesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{38} } type isNodeGetCapabilitiesResponse_Reply interface { isNodeGetCapabilitiesResponse_Reply() @@ -4328,7 +4286,7 @@ func (m *NodeGetCapabilitiesResponse_Result) Reset() { *m = NodeGetCapab func (m *NodeGetCapabilitiesResponse_Result) String() string { return proto.CompactTextString(m) } func (*NodeGetCapabilitiesResponse_Result) ProtoMessage() {} func (*NodeGetCapabilitiesResponse_Result) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{39, 0} + return fileDescriptor0, []int{38, 0} } func (m *NodeGetCapabilitiesResponse_Result) GetCapabilities() []*NodeServiceCapability { @@ -4348,7 +4306,7 @@ type NodeServiceCapability struct { func (m *NodeServiceCapability) Reset() { *m = NodeServiceCapability{} } func (m *NodeServiceCapability) String() string { return proto.CompactTextString(m) } func (*NodeServiceCapability) ProtoMessage() {} -func (*NodeServiceCapability) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{40} } +func (*NodeServiceCapability) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{39} } type isNodeServiceCapability_Type interface { isNodeServiceCapability_Type() @@ -4436,7 +4394,7 @@ type NodeServiceCapability_RPC struct { func (m *NodeServiceCapability_RPC) Reset() { *m = NodeServiceCapability_RPC{} } func (m *NodeServiceCapability_RPC) String() string { return proto.CompactTextString(m) } func (*NodeServiceCapability_RPC) ProtoMessage() {} -func (*NodeServiceCapability_RPC) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{40, 0} } +func (*NodeServiceCapability_RPC) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{39, 0} } func (m *NodeServiceCapability_RPC) GetType() NodeServiceCapability_RPC_Type { if m != nil { @@ -4468,7 +4426,7 @@ type Error struct { func (m *Error) Reset() { *m = Error{} } func (m *Error) String() string { return proto.CompactTextString(m) } func (*Error) ProtoMessage() {} -func (*Error) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{41} } +func (*Error) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{40} } type isError_Value interface { isError_Value() @@ -4868,7 +4826,7 @@ type Error_GeneralError struct { func (m *Error_GeneralError) Reset() { *m = Error_GeneralError{} } func (m *Error_GeneralError) String() string { return proto.CompactTextString(m) } func (*Error_GeneralError) ProtoMessage() {} -func (*Error_GeneralError) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{41, 0} } +func (*Error_GeneralError) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{40, 0} } func (m *Error_GeneralError) GetErrorCode() Error_GeneralError_GeneralErrorCode { if m != nil { @@ -4903,7 +4861,7 @@ type Error_CreateVolumeError struct { func (m *Error_CreateVolumeError) Reset() { *m = Error_CreateVolumeError{} } func (m *Error_CreateVolumeError) String() string { return proto.CompactTextString(m) } func (*Error_CreateVolumeError) ProtoMessage() {} -func (*Error_CreateVolumeError) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{41, 1} } +func (*Error_CreateVolumeError) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{40, 1} } func (m *Error_CreateVolumeError) GetErrorCode() Error_CreateVolumeError_CreateVolumeErrorCode { if m != nil { @@ -4931,7 +4889,7 @@ type Error_DeleteVolumeError struct { func (m *Error_DeleteVolumeError) Reset() { *m = Error_DeleteVolumeError{} } func (m *Error_DeleteVolumeError) String() string { return proto.CompactTextString(m) } func (*Error_DeleteVolumeError) ProtoMessage() {} -func (*Error_DeleteVolumeError) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{41, 2} } +func (*Error_DeleteVolumeError) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{40, 2} } func (m *Error_DeleteVolumeError) GetErrorCode() Error_DeleteVolumeError_DeleteVolumeErrorCode { if m != nil { @@ -4964,7 +4922,7 @@ func (m *Error_ControllerPublishVolumeError) Reset() { *m = Error_Contro func (m *Error_ControllerPublishVolumeError) String() string { return proto.CompactTextString(m) } func (*Error_ControllerPublishVolumeError) ProtoMessage() {} func (*Error_ControllerPublishVolumeError) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{41, 3} + return fileDescriptor0, []int{40, 3} } func (m *Error_ControllerPublishVolumeError) GetErrorCode() Error_ControllerPublishVolumeError_ControllerPublishVolumeErrorCode { @@ -4998,7 +4956,7 @@ func (m *Error_ControllerUnpublishVolumeError) Reset() { *m = Error_Cont func (m *Error_ControllerUnpublishVolumeError) String() string { return proto.CompactTextString(m) } func (*Error_ControllerUnpublishVolumeError) ProtoMessage() {} func (*Error_ControllerUnpublishVolumeError) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{41, 4} + return fileDescriptor0, []int{40, 4} } func (m *Error_ControllerUnpublishVolumeError) GetErrorCode() Error_ControllerUnpublishVolumeError_ControllerUnpublishVolumeErrorCode { @@ -5025,7 +4983,7 @@ func (m *Error_ValidateVolumeCapabilitiesError) Reset() { *m = Error_Val func (m *Error_ValidateVolumeCapabilitiesError) String() string { return proto.CompactTextString(m) } func (*Error_ValidateVolumeCapabilitiesError) ProtoMessage() {} func (*Error_ValidateVolumeCapabilitiesError) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{41, 5} + return fileDescriptor0, []int{40, 5} } func (m *Error_ValidateVolumeCapabilitiesError) GetErrorCode() Error_ValidateVolumeCapabilitiesError_ValidateVolumeCapabilitiesErrorCode { @@ -5051,7 +5009,7 @@ type Error_ControllerProbeError struct { func (m *Error_ControllerProbeError) Reset() { *m = Error_ControllerProbeError{} } func (m *Error_ControllerProbeError) String() string { return proto.CompactTextString(m) } func (*Error_ControllerProbeError) ProtoMessage() {} -func (*Error_ControllerProbeError) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{41, 6} } +func (*Error_ControllerProbeError) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{40, 6} } func (m *Error_ControllerProbeError) GetErrorCode() Error_ControllerProbeError_ControllerProbeErrorCode { if m != nil { @@ -5077,7 +5035,7 @@ func (m *Error_NodePublishVolumeError) Reset() { *m = Error_NodePublishV func (m *Error_NodePublishVolumeError) String() string { return proto.CompactTextString(m) } func (*Error_NodePublishVolumeError) ProtoMessage() {} func (*Error_NodePublishVolumeError) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{41, 7} + return fileDescriptor0, []int{40, 7} } func (m *Error_NodePublishVolumeError) GetErrorCode() Error_NodePublishVolumeError_NodePublishVolumeErrorCode { @@ -5104,7 +5062,7 @@ func (m *Error_NodeUnpublishVolumeError) Reset() { *m = Error_NodeUnpubl func (m *Error_NodeUnpublishVolumeError) String() string { return proto.CompactTextString(m) } func (*Error_NodeUnpublishVolumeError) ProtoMessage() {} func (*Error_NodeUnpublishVolumeError) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{41, 8} + return fileDescriptor0, []int{40, 8} } func (m *Error_NodeUnpublishVolumeError) GetErrorCode() Error_NodeUnpublishVolumeError_NodeUnpublishVolumeErrorCode { @@ -5130,7 +5088,7 @@ type Error_NodeProbeError struct { func (m *Error_NodeProbeError) Reset() { *m = Error_NodeProbeError{} } func (m *Error_NodeProbeError) String() string { return proto.CompactTextString(m) } func (*Error_NodeProbeError) ProtoMessage() {} -func (*Error_NodeProbeError) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{41, 9} } +func (*Error_NodeProbeError) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{40, 9} } func (m *Error_NodeProbeError) GetErrorCode() Error_NodeProbeError_NodeProbeErrorCode { if m != nil { @@ -5155,7 +5113,7 @@ type Error_GetNodeIDError struct { func (m *Error_GetNodeIDError) Reset() { *m = Error_GetNodeIDError{} } func (m *Error_GetNodeIDError) String() string { return proto.CompactTextString(m) } func (*Error_GetNodeIDError) ProtoMessage() {} -func (*Error_GetNodeIDError) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{41, 10} } +func (*Error_GetNodeIDError) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{40, 10} } func (m *Error_GetNodeIDError) GetErrorCode() Error_GetNodeIDError_GetNodeIDErrorCode { if m != nil { @@ -5188,7 +5146,6 @@ func init() { proto.RegisterType((*VolumeCapability_AccessMode)(nil), "csi.VolumeCapability.AccessMode") proto.RegisterType((*CapacityRange)(nil), "csi.CapacityRange") proto.RegisterType((*VolumeInfo)(nil), "csi.VolumeInfo") - proto.RegisterType((*VolumeHandle)(nil), "csi.VolumeHandle") proto.RegisterType((*Credentials)(nil), "csi.Credentials") proto.RegisterType((*DeleteVolumeRequest)(nil), "csi.DeleteVolumeRequest") proto.RegisterType((*DeleteVolumeResponse)(nil), "csi.DeleteVolumeResponse") @@ -5895,214 +5852,209 @@ var _Node_serviceDesc = grpc.ServiceDesc{ func init() { proto.RegisterFile("csi.proto", fileDescriptor0) } var fileDescriptor0 = []byte{ - // 3331 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x1b, 0x4b, 0x6c, 0x23, 0x49, - 0xd5, 0xdd, 0xfe, 0x25, 0xcf, 0xf1, 0x4c, 0xa7, 0xf2, 0x73, 0x3a, 0x99, 0x49, 0xa6, 0xe7, 0xb3, - 0x33, 0x2c, 0xeb, 0x85, 0x80, 0x98, 0x9d, 0x99, 0xfd, 0x39, 0x71, 0xc7, 0x31, 0xe3, 0xb4, 0xbd, - 0x6d, 0x67, 0x66, 0x07, 0xc4, 0xb6, 0x7a, 0xec, 0x4e, 0xc6, 0x8c, 0x63, 0x7b, 0xbb, 0x3b, 0xd1, - 0xfa, 0x0a, 0x08, 0x09, 0x84, 0x04, 0x02, 0x89, 0x45, 0x7b, 0x80, 0xc3, 0x22, 0x01, 0x12, 0x27, - 0x10, 0x20, 0xc4, 0x09, 0x10, 0x47, 0x84, 0xb8, 0x00, 0x5a, 0x89, 0x1b, 0x7b, 0x58, 0x4e, 0x5c, - 0xb9, 0xa1, 0xae, 0xaa, 0x6e, 0x77, 0xb7, 0xbb, 0x6d, 0xc7, 0x0e, 0x0c, 0x37, 0xf7, 0x7b, 0xf5, - 0xde, 0xab, 0x7a, 0xef, 0xd5, 0xfb, 0x54, 0x95, 0x61, 0xb6, 0x6e, 0x34, 0xb3, 0x5d, 0xbd, 0x63, - 0x76, 0x50, 0xb4, 0x6e, 0x34, 0x85, 0x4b, 0xb0, 0x56, 0xd0, 0xcc, 0xea, 0x49, 0xb7, 0xdb, 0xd1, - 0x4d, 0xad, 0xf1, 0x40, 0xd3, 0x8d, 0x66, 0xa7, 0x6d, 0xc8, 0xda, 0xdb, 0x27, 0x9a, 0x61, 0x0a, - 0x7f, 0x61, 0x60, 0x3d, 0x18, 0x6f, 0x74, 0x3b, 0x6d, 0x43, 0x43, 0xdb, 0x90, 0xd0, 0x35, 0xe3, - 0xa4, 0x65, 0x66, 0x98, 0x4d, 0xe6, 0x66, 0x6a, 0xeb, 0x66, 0xd6, 0x12, 0x30, 0x8c, 0x24, 0x2b, - 0xe3, 0xf1, 0x7b, 0x11, 0x99, 0x52, 0x22, 0x01, 0xe2, 0x9a, 0xae, 0x77, 0xf4, 0x0c, 0x8b, 0x59, - 0x00, 0x66, 0x21, 0x5a, 0x90, 0xbd, 0x88, 0x4c, 0x50, 0xbc, 0x08, 0x09, 0x42, 0x87, 0xee, 0x01, - 0x32, 0x6c, 0xde, 0xca, 0x29, 0x65, 0x9e, 0x61, 0x36, 0xa3, 0x37, 0x53, 0x5b, 0x73, 0x98, 0x94, - 0x4a, 0x94, 0xe7, 0x0d, 0xff, 0x1c, 0xb6, 0x93, 0x10, 0xd7, 0xb5, 0x6e, 0xab, 0x27, 0xdc, 0x87, - 0x24, 0x05, 0xa2, 0x45, 0x88, 0x1f, 0xab, 0x5f, 0xec, 0xe8, 0x78, 0x05, 0x69, 0x99, 0x7c, 0x60, - 0x68, 0xb3, 0x4d, 0x27, 0x65, 0x41, 0xad, 0x0f, 0x0b, 0xda, 0x55, 0xcd, 0xfa, 0x93, 0x4c, 0x94, - 0x40, 0xf1, 0x87, 0xf0, 0x2a, 0x2c, 0x16, 0x34, 0xb3, 0xd2, 0x3a, 0x39, 0x6a, 0xb6, 0x8b, 0xed, - 0xc3, 0x0e, 0xd5, 0x1e, 0xba, 0x01, 0x49, 0x3a, 0x41, 0xaa, 0x1d, 0xef, 0xfc, 0x6c, 0xa4, 0xf0, - 0x67, 0x16, 0x96, 0x7c, 0x0c, 0xa8, 0x7a, 0xef, 0xf9, 0xd4, 0x7b, 0xc5, 0x56, 0xef, 0xe0, 0xd8, - 0xc9, 0xf4, 0xfa, 0x47, 0xc6, 0x51, 0x2c, 0x82, 0x58, 0x5b, 0x3d, 0xd6, 0xb0, 0xa4, 0x59, 0x19, - 0xff, 0x46, 0xd7, 0xe1, 0xc2, 0xa9, 0xd6, 0x6e, 0x74, 0x74, 0x5b, 0xd3, 0x98, 0xd7, 0xac, 0x9c, - 0x26, 0x50, 0x5b, 0x85, 0xf7, 0x61, 0xe6, 0x58, 0x6d, 0x37, 0x0f, 0x35, 0xc3, 0xcc, 0x44, 0xb1, - 0x25, 0x5e, 0x1c, 0x39, 0xd1, 0xec, 0x3e, 0xa5, 0x10, 0xdb, 0xa6, 0xde, 0x93, 0x1d, 0x06, 0xfc, - 0x3d, 0x48, 0x7b, 0x50, 0x88, 0x83, 0xe8, 0x53, 0xad, 0x47, 0xe7, 0x65, 0xfd, 0xb4, 0xcc, 0x70, - 0xaa, 0xb6, 0x4e, 0x34, 0x3a, 0x1b, 0xf2, 0x71, 0x97, 0x7d, 0x89, 0xe9, 0x1b, 0xf8, 0xbd, 0x28, - 0x2c, 0xec, 0xe8, 0x9a, 0x6a, 0x6a, 0x0f, 0x3a, 0xad, 0x93, 0x63, 0xed, 0x8c, 0x36, 0x71, 0xb4, - 0xc1, 0xba, 0xb4, 0x71, 0x07, 0x2e, 0xd4, 0xd5, 0xae, 0x5a, 0x6f, 0x9a, 0x3d, 0x45, 0x57, 0xdb, - 0x47, 0x1a, 0x76, 0x83, 0xd4, 0x16, 0xc2, 0x2c, 0x76, 0x28, 0x4a, 0xb6, 0x30, 0x72, 0xba, 0xee, - 0xfe, 0x44, 0xbb, 0xb0, 0x70, 0x8a, 0xe7, 0xa1, 0x58, 0xf0, 0xc7, 0xcd, 0x56, 0xd3, 0x6c, 0x6a, - 0x46, 0x26, 0x86, 0x95, 0xb5, 0x44, 0xa6, 0x80, 0xf1, 0x3b, 0x36, 0xba, 0x27, 0xa3, 0x53, 0x2f, - 0xa4, 0xa9, 0x19, 0x68, 0x0f, 0xa0, 0xab, 0xea, 0xea, 0xb1, 0x66, 0x6a, 0xba, 0x91, 0x89, 0x63, - 0x72, 0xb2, 0xe7, 0x02, 0x16, 0x9b, 0xad, 0x38, 0x43, 0x89, 0x92, 0x5d, 0xb4, 0xe8, 0x1e, 0x70, - 0x27, 0x86, 0xa6, 0x2b, 0x75, 0x5d, 0x6b, 0x68, 0x6d, 0xb3, 0xa9, 0xb6, 0x8c, 0x4c, 0x02, 0x2f, - 0x87, 0xb3, 0xf9, 0xd9, 0x70, 0xf9, 0xa2, 0x35, 0xd2, 0x05, 0xe0, 0x5f, 0x81, 0x8b, 0x3e, 0xde, - 0x67, 0xb1, 0x92, 0xf0, 0x1b, 0x06, 0x16, 0xbd, 0xf3, 0xa5, 0xfe, 0x7e, 0xd7, 0xe7, 0xef, 0x9b, - 0x01, 0x4b, 0x9b, 0xc6, 0xdd, 0xef, 0x3a, 0xde, 0xfe, 0x09, 0x48, 0x51, 0x83, 0x34, 0xdb, 0x87, - 0x1d, 0x2a, 0xee, 0xa2, 0xcb, 0x10, 0xd8, 0x65, 0xe1, 0xd4, 0xf9, 0xdd, 0x77, 0xad, 0xef, 0xc7, - 0x80, 0xf3, 0x1b, 0x0b, 0xdd, 0x81, 0xf8, 0xe3, 0x56, 0xa7, 0xfe, 0xd4, 0xb3, 0x51, 0xfd, 0xa3, - 0xb2, 0xdb, 0xd6, 0x10, 0x02, 0xb5, 0x26, 0x85, 0x29, 0x2c, 0xd2, 0xe3, 0xce, 0x49, 0xdb, 0xa4, - 0x13, 0x0f, 0x21, 0xdd, 0xb7, 0x86, 0xf4, 0x49, 0x31, 0x05, 0xca, 0x41, 0x4a, 0xad, 0xd7, 0x35, - 0xc3, 0x50, 0x8e, 0x3b, 0x0d, 0xdb, 0x1d, 0x37, 0x83, 0x19, 0xe4, 0xf0, 0xc0, 0xfd, 0x4e, 0x43, - 0x93, 0x41, 0x75, 0x7e, 0xf3, 0x69, 0x48, 0xb9, 0x66, 0xc5, 0x17, 0x20, 0xe5, 0x92, 0x84, 0x56, - 0x20, 0x79, 0x68, 0x28, 0x66, 0xaf, 0x6b, 0xc7, 0x85, 0xc4, 0xa1, 0x51, 0xeb, 0x75, 0x35, 0xb4, - 0x01, 0x29, 0x3c, 0x05, 0xe5, 0xb0, 0xa5, 0x1e, 0x19, 0x19, 0x76, 0x33, 0x7a, 0x73, 0x56, 0x06, - 0x0c, 0xda, 0xb5, 0x20, 0xfc, 0x47, 0x0c, 0x40, 0x5f, 0x24, 0xba, 0x03, 0x31, 0x3c, 0x45, 0x8b, - 0xcb, 0x85, 0xad, 0xeb, 0xa3, 0xa6, 0x98, 0xc5, 0xf3, 0xc4, 0x24, 0xc2, 0x0f, 0x18, 0x88, 0x61, - 0x1e, 0x29, 0x48, 0x1e, 0x48, 0xf7, 0xa5, 0xf2, 0x43, 0x89, 0x8b, 0xa0, 0x65, 0x40, 0xd5, 0xa2, - 0x54, 0x28, 0x89, 0x8a, 0x54, 0xce, 0x8b, 0xca, 0x43, 0xb9, 0x58, 0x13, 0x65, 0x8e, 0x41, 0x6b, - 0xb0, 0xe2, 0x86, 0xcb, 0x62, 0x2e, 0x2f, 0xca, 0x4a, 0x59, 0x2a, 0x3d, 0xe2, 0x58, 0xc4, 0xc3, - 0xf2, 0xfe, 0x41, 0xa9, 0x56, 0x1c, 0xc4, 0x45, 0xd1, 0x3a, 0x64, 0x5c, 0x38, 0xca, 0x83, 0xb2, - 0x8d, 0x59, 0x6c, 0x5d, 0x58, 0xf2, 0x93, 0x22, 0xe3, 0xdb, 0x69, 0xc7, 0x0c, 0x96, 0xa6, 0x84, - 0x87, 0x90, 0xf6, 0x04, 0x03, 0x2b, 0x8c, 0xea, 0xda, 0xdb, 0x27, 0x4d, 0x5d, 0x6b, 0x28, 0x8f, - 0x7b, 0xa6, 0x66, 0x60, 0x35, 0xc4, 0xe4, 0xb4, 0x0d, 0xdd, 0xb6, 0x80, 0x96, 0x4e, 0x5b, 0xcd, - 0xe3, 0xa6, 0x49, 0xc7, 0xb0, 0x78, 0x0c, 0x60, 0x10, 0x1e, 0x20, 0xbc, 0x05, 0xd0, 0x77, 0x4e, - 0x8b, 0xab, 0x13, 0x8e, 0x3c, 0x5c, 0x6d, 0x28, 0xe1, 0x7a, 0x0b, 0x12, 0x4f, 0xd4, 0x76, 0xa3, - 0xa5, 0x51, 0xff, 0x9a, 0x77, 0xe9, 0x7e, 0x0f, 0x23, 0x64, 0x3a, 0x40, 0xf8, 0x1e, 0x03, 0x73, - 0x6e, 0x04, 0xba, 0x00, 0x6c, 0xb3, 0x41, 0x2d, 0xcf, 0x36, 0x1b, 0xe8, 0x1e, 0xcc, 0x1c, 0x6b, - 0xa6, 0xda, 0x50, 0x4d, 0x15, 0x9b, 0x3c, 0xb5, 0xb5, 0x31, 0xc0, 0x2d, 0xbb, 0x4f, 0x47, 0xd8, - 0x81, 0x9d, 0x7e, 0xe2, 0xc0, 0xee, 0x46, 0x9d, 0x29, 0x64, 0x9c, 0x42, 0xca, 0x15, 0x80, 0x50, - 0x16, 0x62, 0x78, 0x12, 0x24, 0xef, 0xf3, 0xfe, 0x88, 0x95, 0xcd, 0x3b, 0xf2, 0xf1, 0x38, 0xfe, - 0x36, 0xcc, 0xe6, 0x27, 0x92, 0xfb, 0x33, 0x06, 0x16, 0xf2, 0x5a, 0x4b, 0x9b, 0x34, 0x8f, 0x7c, - 0x06, 0xd2, 0x34, 0xce, 0x8c, 0x32, 0xc2, 0xdc, 0xa9, 0x5b, 0xf3, 0x41, 0xe1, 0x39, 0x3a, 0x66, - 0x78, 0x16, 0xbe, 0xc6, 0xc0, 0xa2, 0x77, 0xd2, 0x43, 0xe3, 0x6b, 0xd0, 0xd0, 0xc9, 0xe2, 0xeb, - 0x8c, 0x1d, 0x5f, 0xfb, 0xd1, 0xf2, 0xf7, 0x2c, 0x5c, 0xde, 0xe9, 0xb4, 0x4d, 0xbd, 0xd3, 0x6a, - 0x69, 0x7a, 0xe5, 0xe4, 0x71, 0xab, 0x69, 0x3c, 0xf9, 0xdf, 0xea, 0xf2, 0x1a, 0x24, 0xdb, 0x9d, - 0x86, 0xa6, 0x34, 0x1b, 0x54, 0x85, 0x29, 0x4c, 0x21, 0x75, 0x1a, 0x5a, 0x31, 0x2f, 0x27, 0x2c, - 0x5c, 0xb1, 0x81, 0xb6, 0x61, 0xde, 0x9f, 0xa2, 0x7b, 0x99, 0x18, 0x1e, 0x1f, 0x92, 0xa0, 0xb9, - 0x53, 0x7f, 0x16, 0xe0, 0x61, 0x46, 0xd7, 0xd4, 0x46, 0xa7, 0xdd, 0xea, 0x65, 0xe2, 0x9b, 0xcc, - 0xcd, 0x19, 0xd9, 0xf9, 0x9e, 0x2a, 0xe1, 0x0a, 0x1f, 0xb0, 0xb0, 0x11, 0xaa, 0x45, 0x6a, 0x5c, - 0xd1, 0x67, 0xdc, 0xe7, 0x09, 0xdb, 0xe1, 0x54, 0x93, 0xd9, 0xf9, 0x77, 0xfd, 0xb2, 0x51, 0x87, - 0x85, 0x2e, 0x61, 0xac, 0x78, 0x13, 0xaa, 0xb5, 0x31, 0xb7, 0xcf, 0x30, 0x85, 0xac, 0x07, 0x69, - 0x45, 0x38, 0xb2, 0x81, 0xe7, 0xbb, 0x7e, 0x38, 0x9f, 0x87, 0xe5, 0xe0, 0xc1, 0x93, 0xd5, 0x8a, - 0x26, 0x24, 0x88, 0x2f, 0xa0, 0x17, 0x21, 0x81, 0xf1, 0x76, 0x43, 0xb1, 0xe2, 0x72, 0x94, 0xec, - 0x03, 0x8c, 0x21, 0x93, 0xa2, 0xc3, 0xf8, 0x3b, 0x90, 0x72, 0x81, 0xcf, 0x14, 0x59, 0x3e, 0x64, - 0x60, 0xb3, 0xaf, 0x99, 0x83, 0x76, 0xf7, 0xff, 0x77, 0x6b, 0x04, 0xb9, 0x6e, 0x6c, 0x5c, 0xd7, - 0x7d, 0x9f, 0x81, 0x2b, 0x43, 0xd6, 0x49, 0x9d, 0xb7, 0xe0, 0x73, 0xde, 0x17, 0x7c, 0x9e, 0x13, - 0x42, 0x77, 0x6e, 0x61, 0xea, 0x0f, 0x0c, 0x5c, 0x79, 0xa0, 0xb6, 0x9a, 0x0d, 0xa7, 0xd2, 0x74, - 0xd7, 0xdd, 0x67, 0x35, 0x87, 0xaf, 0xba, 0x64, 0x47, 0x56, 0x97, 0x61, 0x0d, 0x42, 0xf4, 0x8c, - 0x0d, 0x82, 0xf0, 0x77, 0x06, 0x84, 0x61, 0xeb, 0xa0, 0xea, 0xde, 0xf3, 0xa9, 0x3b, 0x4b, 0x24, - 0x8c, 0x24, 0x9c, 0x4c, 0xdf, 0xaf, 0x3b, 0xd1, 0x62, 0x1d, 0x66, 0x9d, 0xae, 0x1c, 0x8b, 0x9e, - 0x91, 0xfb, 0x00, 0x94, 0x81, 0xe4, 0xb1, 0x66, 0x18, 0xea, 0x91, 0xbd, 0x5d, 0xec, 0xcf, 0xbe, - 0x9d, 0xbe, 0xc2, 0x00, 0x2a, 0x35, 0x0d, 0x5a, 0x9f, 0x9e, 0xd9, 0x30, 0x56, 0xd9, 0xaa, 0xbe, - 0xa3, 0x68, 0x6d, 0x53, 0x6f, 0xd2, 0x12, 0x2b, 0x2d, 0xc3, 0xb1, 0xfa, 0x8e, 0x48, 0x20, 0x56, - 0x51, 0x65, 0x98, 0xaa, 0x6e, 0x36, 0xdb, 0x47, 0x8a, 0xd9, 0x79, 0xaa, 0xb5, 0xf1, 0xbe, 0x98, - 0x95, 0xd3, 0x36, 0xb4, 0x66, 0x01, 0x85, 0xf7, 0x59, 0x58, 0xf0, 0x4c, 0x83, 0xea, 0xf5, 0x8e, - 0x4f, 0xaf, 0xa4, 0x3c, 0x0a, 0x18, 0x39, 0x99, 0x22, 0xdf, 0xef, 0xc7, 0xdd, 0xd7, 0x20, 0x69, - 0xaf, 0x82, 0xc4, 0xaa, 0xeb, 0x23, 0x44, 0x65, 0x49, 0xe4, 0xb2, 0xa9, 0xd0, 0x25, 0x80, 0xb6, - 0xf6, 0x8e, 0x49, 0x57, 0x49, 0xf4, 0x3d, 0x6b, 0x41, 0xf0, 0x0a, 0xf9, 0x3b, 0x10, 0x27, 0x31, - 0x6d, 0x8a, 0x4e, 0xe9, 0x1b, 0x2c, 0xa0, 0x82, 0x66, 0x3a, 0xc5, 0xf0, 0x19, 0x8d, 0x15, 0xb2, - 0x27, 0xd8, 0xb3, 0x36, 0xcd, 0x05, 0x4f, 0xd3, 0x4c, 0xb6, 0xd4, 0x73, 0xf6, 0x01, 0x85, 0x6f, - 0x72, 0xc3, 0x7a, 0xe6, 0x69, 0xdb, 0xde, 0x5f, 0x32, 0xb0, 0xe0, 0x91, 0x38, 0xd4, 0x69, 0x02, - 0x46, 0x4e, 0xe6, 0x34, 0xb7, 0x1d, 0x9f, 0x79, 0x01, 0x90, 0x7a, 0xaa, 0x36, 0x5b, 0xea, 0xe3, - 0x16, 0xd1, 0xa9, 0xc5, 0x9c, 0x76, 0x0d, 0xf3, 0x0e, 0xc6, 0x96, 0xda, 0xb7, 0xe3, 0xeb, 0xb0, - 0xec, 0xca, 0xe1, 0x7a, 0xe7, 0xf1, 0x59, 0xf3, 0x93, 0xf0, 0x4d, 0x06, 0x56, 0x06, 0x58, 0xd0, - 0xe5, 0xbf, 0xe2, 0x5b, 0xfe, 0x55, 0x7f, 0xd1, 0xe0, 0x1e, 0x7d, 0x6e, 0x01, 0xff, 0xb3, 0xee, - 0xec, 0x4b, 0x75, 0x3d, 0x61, 0xb8, 0x17, 0x3e, 0xf2, 0xa4, 0xb8, 0x01, 0x66, 0x63, 0xa6, 0xb8, - 0x10, 0xba, 0xc9, 0x56, 0x2c, 0x39, 0x46, 0xcf, 0xc3, 0x5c, 0xc0, 0xf6, 0xd9, 0xf4, 0x09, 0xaf, - 0x6a, 0xfa, 0x69, 0xb3, 0xee, 0xde, 0x49, 0x1e, 0xaa, 0xbe, 0xde, 0xde, 0x65, 0x61, 0x6d, 0x08, - 0x19, 0x7a, 0x09, 0xa2, 0x7a, 0xb7, 0x4e, 0x97, 0x78, 0x6d, 0x94, 0x94, 0xac, 0x5c, 0xd9, 0xd9, - 0x8b, 0xc8, 0x16, 0x09, 0xff, 0x0b, 0x06, 0xa2, 0x72, 0x65, 0x07, 0xbd, 0x02, 0x31, 0xe7, 0xc0, - 0xe1, 0xc2, 0xd6, 0xad, 0x71, 0x58, 0x64, 0x6b, 0xbd, 0xae, 0x26, 0x63, 0x32, 0xa1, 0x03, 0x31, - 0x7c, 0x42, 0xe1, 0x39, 0x2d, 0xc8, 0xc0, 0xe2, 0x8e, 0x2c, 0xe6, 0x6a, 0xa2, 0x92, 0x17, 0x4b, - 0x62, 0x4d, 0x54, 0x1e, 0x94, 0x4b, 0x07, 0xfb, 0x22, 0xc7, 0x58, 0x6d, 0x7f, 0xe5, 0x60, 0xbb, - 0x54, 0xac, 0xee, 0x29, 0x07, 0x92, 0xfd, 0x8b, 0x62, 0x59, 0xc4, 0xc1, 0x5c, 0xa9, 0x58, 0xad, - 0x51, 0x40, 0x95, 0x8b, 0x5a, 0x90, 0x82, 0x58, 0x53, 0x76, 0x72, 0x95, 0xdc, 0x4e, 0xb1, 0xf6, - 0x88, 0x8b, 0x6d, 0x27, 0xc8, 0x7c, 0x85, 0x7f, 0x44, 0x21, 0x63, 0x15, 0x4e, 0xcf, 0xa4, 0xc7, - 0x69, 0x04, 0x97, 0xe1, 0x24, 0xd8, 0x7d, 0xda, 0x29, 0xea, 0x82, 0xe6, 0x36, 0x7e, 0xe1, 0x6d, - 0xa5, 0x4f, 0x53, 0xd5, 0x8f, 0x34, 0x53, 0xe9, 0xaa, 0xe6, 0x13, 0x5c, 0x03, 0xce, 0xca, 0x40, - 0x40, 0x15, 0xd5, 0x7c, 0x12, 0xdc, 0x44, 0xc5, 0x27, 0x6f, 0xa2, 0x12, 0x63, 0x34, 0x51, 0xc9, - 0x71, 0x4f, 0x2d, 0xcf, 0xa5, 0x6d, 0x10, 0xbe, 0xc3, 0xc0, 0x6a, 0x80, 0x2a, 0xe9, 0x26, 0x7f, - 0xcd, 0xb7, 0xc9, 0xaf, 0x87, 0xa9, 0xfe, 0x9c, 0xc3, 0xd9, 0x07, 0x0c, 0xf0, 0x96, 0x94, 0x67, - 0xd4, 0x47, 0xf8, 0x1c, 0x23, 0x3a, 0xe0, 0x18, 0x53, 0xb5, 0x10, 0xef, 0x32, 0xb0, 0x16, 0xb8, - 0x38, 0xaa, 0xf4, 0x9c, 0x4f, 0xe9, 0xcf, 0x39, 0x4a, 0xff, 0x6f, 0xb7, 0x0d, 0x77, 0x81, 0x2b, - 0x68, 0x26, 0x6d, 0x97, 0xce, 0x98, 0x35, 0x7e, 0xc2, 0xc0, 0xbc, 0x8b, 0x98, 0xae, 0xe5, 0xb6, - 0x6f, 0x2d, 0x97, 0xec, 0x62, 0xc0, 0x3b, 0x6e, 0xb2, 0x15, 0x64, 0x9d, 0xac, 0xe0, 0x6a, 0xfc, - 0x98, 0xd0, 0xc6, 0xcf, 0xb3, 0x4e, 0xec, 0xc3, 0x93, 0xe4, 0xfe, 0x2f, 0x33, 0x30, 0xef, 0x22, - 0x1e, 0xba, 0xce, 0x81, 0x71, 0xe7, 0x66, 0xa9, 0x3c, 0xd9, 0x1f, 0x53, 0x66, 0xfa, 0xbf, 0x52, - 0x4f, 0x0c, 0xcb, 0xf1, 0xe1, 0x9e, 0x78, 0xae, 0xd9, 0x7d, 0xcf, 0xb1, 0xe3, 0xab, 0x81, 0xd9, - 0x9d, 0x77, 0xc4, 0x8e, 0x9d, 0xd7, 0x7f, 0xcc, 0xc0, 0x52, 0x20, 0x01, 0xda, 0x72, 0x67, 0xf4, - 0xcb, 0xe1, 0x9c, 0xdd, 0xb9, 0xbc, 0x4a, 0x52, 0xf9, 0x6d, 0x4f, 0x2a, 0xbf, 0x3a, 0x9c, 0xd6, - 0x9d, 0xc4, 0x17, 0x02, 0x92, 0xb8, 0x93, 0x68, 0xdf, 0xbb, 0x01, 0x71, 0xac, 0x10, 0xf4, 0x2a, - 0xa4, 0x8f, 0xb4, 0xb6, 0xa6, 0xab, 0x2d, 0x85, 0xe8, 0x8c, 0x4c, 0x72, 0xa5, 0xaf, 0xb3, 0x6c, - 0x81, 0xe0, 0x6d, 0x05, 0xce, 0x1d, 0xb9, 0xbe, 0x91, 0x04, 0x0b, 0x75, 0x7c, 0xb9, 0x64, 0x27, - 0x4d, 0xb7, 0xe6, 0xd7, 0x5d, 0x5c, 0xdc, 0x57, 0x50, 0x36, 0xab, 0xf9, 0xba, 0x1f, 0x68, 0xf1, - 0x6b, 0xe0, 0xc3, 0x54, 0x2f, 0xbf, 0xe8, 0x00, 0x3f, 0xf7, 0x91, 0xab, 0xc3, 0xaf, 0xe1, 0x07, - 0xa2, 0x2e, 0x6c, 0xd4, 0x9d, 0xca, 0x47, 0xf1, 0x25, 0x78, 0xc2, 0x3b, 0xe6, 0xf2, 0x33, 0x3a, - 0xd7, 0xe0, 0xe3, 0x36, 0x5b, 0xcc, 0x7a, 0x7d, 0x08, 0x1e, 0x9d, 0xc2, 0x15, 0x97, 0xc4, 0x93, - 0x76, 0xa0, 0x4c, 0x92, 0xd0, 0x6f, 0x05, 0xca, 0xf4, 0x45, 0x5c, 0x5b, 0xea, 0xe5, 0xfa, 0xd0, - 0x11, 0xa8, 0x07, 0xc2, 0x29, 0x3d, 0x7d, 0x50, 0x02, 0x9a, 0x3e, 0x2a, 0x98, 0x9c, 0x97, 0x7e, - 0xcc, 0x25, 0x38, 0xfc, 0xc8, 0xc2, 0x96, 0xbc, 0x71, 0x3a, 0x7c, 0x08, 0x7a, 0x08, 0xcb, 0x6e, - 0x25, 0x5b, 0xd1, 0x87, 0x8a, 0x4b, 0xba, 0xda, 0xb1, 0x01, 0xdd, 0x5a, 0xe3, 0x6c, 0x19, 0x8b, - 0xf5, 0x00, 0x38, 0x7a, 0x0b, 0x56, 0x71, 0x8c, 0x0d, 0xd4, 0xe1, 0x8c, 0xeb, 0xb2, 0x8f, 0xf0, - 0x1e, 0x28, 0x12, 0x6c, 0xee, 0xcb, 0xed, 0x40, 0x0c, 0x6a, 0xc0, 0x1a, 0xe6, 0x1f, 0x62, 0xa5, - 0x59, 0x57, 0x37, 0xd5, 0x97, 0x10, 0x62, 0x9f, 0x4c, 0x3b, 0x04, 0x87, 0x44, 0xe0, 0xc8, 0x2a, - 0x5c, 0x8a, 0x01, 0xcc, 0x7a, 0xd5, 0x3f, 0x79, 0xb7, 0x4a, 0x2e, 0xb4, 0x3d, 0x10, 0xb4, 0x0b, - 0xf3, 0x56, 0x79, 0x40, 0x93, 0x0e, 0xe5, 0x93, 0x1a, 0xe0, 0xe3, 0x24, 0x3a, 0x87, 0xcf, 0x11, - 0x85, 0x34, 0x30, 0x84, 0xff, 0x21, 0x0b, 0x73, 0xee, 0x3d, 0x6d, 0x75, 0xf7, 0x98, 0x99, 0x52, - 0xef, 0xdf, 0x2f, 0xde, 0x0c, 0x09, 0x00, 0x9e, 0x8f, 0x9d, 0x4e, 0x43, 0x93, 0x67, 0x35, 0xfb, - 0x27, 0xfa, 0x24, 0x2c, 0xd5, 0x55, 0xec, 0x03, 0xc7, 0x27, 0x86, 0x35, 0x53, 0x53, 0xd1, 0x35, - 0x53, 0xef, 0xe1, 0x70, 0x30, 0x23, 0x23, 0x82, 0xdc, 0x3f, 0x31, 0x4c, 0xa9, 0x63, 0xca, 0x16, - 0x06, 0x3d, 0x0f, 0xf3, 0x44, 0x76, 0x43, 0x33, 0xea, 0x7a, 0xb3, 0x6b, 0x5a, 0x09, 0x84, 0x14, - 0x3f, 0x1c, 0x46, 0xe4, 0xfb, 0x70, 0xe1, 0xa9, 0x55, 0x2b, 0x78, 0xc5, 0x7b, 0x9b, 0x94, 0x34, - 0xcc, 0x1e, 0x48, 0x79, 0x71, 0xb7, 0x28, 0x89, 0x79, 0x8e, 0x41, 0x1b, 0xb0, 0x76, 0x20, 0x55, - 0x0f, 0x2a, 0x95, 0xb2, 0x5c, 0x13, 0xf3, 0x8a, 0x2c, 0xbe, 0x71, 0x20, 0x5a, 0xad, 0x88, 0x28, - 0x57, 0x8b, 0x65, 0x89, 0xde, 0x66, 0x16, 0xab, 0xd5, 0xa2, 0x54, 0xc0, 0xc8, 0xa2, 0x2c, 0xe6, - 0x95, 0xdd, 0xa2, 0x58, 0xca, 0x73, 0x51, 0xfe, 0xab, 0x51, 0x98, 0x1f, 0x08, 0x5a, 0xe8, 0x8d, - 0x00, 0x5d, 0x6d, 0x0d, 0x0b, 0x73, 0x83, 0x10, 0xbf, 0xd6, 0x02, 0x55, 0xc0, 0x86, 0xa8, 0xe0, - 0x5f, 0x0c, 0x2c, 0x05, 0x72, 0x1c, 0xec, 0xd6, 0x72, 0xa5, 0x92, 0x22, 0x95, 0x6b, 0x4a, 0x71, - 0xbf, 0x52, 0x12, 0xf7, 0x45, 0xa9, 0x86, 0x75, 0xb2, 0x09, 0xeb, 0xe5, 0x8a, 0x28, 0xe7, 0x6a, - 0xc5, 0xb2, 0xa4, 0x54, 0x44, 0x29, 0x6f, 0x2d, 0x7e, 0xb7, 0x2c, 0xf7, 0x3b, 0xb6, 0x15, 0x58, - 0x28, 0x4a, 0x0f, 0x72, 0xa5, 0x62, 0x9e, 0xc2, 0x14, 0x29, 0xb7, 0x2f, 0x72, 0x51, 0x74, 0x19, - 0x78, 0xb7, 0x3a, 0xed, 0x06, 0x4e, 0x91, 0x73, 0x52, 0x41, 0xe4, 0x62, 0x68, 0x15, 0x96, 0x28, - 0x41, 0xae, 0x24, 0x8b, 0xb9, 0xfc, 0x23, 0x45, 0x7c, 0xb3, 0x58, 0xad, 0x55, 0xb9, 0x38, 0xba, - 0x04, 0xab, 0x6e, 0xd2, 0x4a, 0x4e, 0xce, 0xed, 0x8b, 0x35, 0x51, 0x56, 0xee, 0x8b, 0x8f, 0xb8, - 0x04, 0x5a, 0x83, 0x15, 0x5b, 0x64, 0x1f, 0xf5, 0x20, 0x57, 0x3a, 0x10, 0xb9, 0x24, 0xff, 0x53, - 0x16, 0xe6, 0x07, 0xa2, 0xfd, 0x48, 0x43, 0x0c, 0x50, 0x0c, 0x42, 0xa6, 0x32, 0xc4, 0x77, 0x19, - 0x58, 0x0a, 0xe4, 0x78, 0x7e, 0x86, 0x58, 0x85, 0x25, 0x9f, 0x21, 0xf6, 0x72, 0x52, 0xbe, 0x64, - 0x99, 0xa2, 0xaf, 0xea, 0x7c, 0x59, 0xac, 0x62, 0xee, 0x58, 0xd7, 0x5c, 0x8c, 0xff, 0x55, 0x0c, - 0xd6, 0x87, 0x25, 0x30, 0x74, 0x14, 0xa0, 0xb9, 0xbd, 0x31, 0xb3, 0xdf, 0x50, 0xe4, 0x34, 0xfa, - 0x44, 0x37, 0x60, 0x86, 0x46, 0x36, 0xfb, 0x80, 0xd1, 0x53, 0x4f, 0x27, 0x49, 0x3d, 0x6d, 0x08, - 0x7f, 0x63, 0xdd, 0xc7, 0x4e, 0xc1, 0x93, 0x78, 0xc6, 0x26, 0x40, 0xeb, 0x90, 0xf1, 0x6d, 0x04, - 0x7a, 0x2c, 0x22, 0xe6, 0xb9, 0xb8, 0xb5, 0xbf, 0xf0, 0x13, 0x08, 0x1f, 0x59, 0x02, 0x2d, 0x03, - 0xda, 0xcf, 0xbd, 0xa9, 0xe4, 0x6a, 0xb5, 0xdc, 0xce, 0x9e, 0x98, 0xc7, 0x0f, 0x25, 0xaa, 0x5c, - 0xd2, 0xda, 0x1d, 0xee, 0xcd, 0xb3, 0x5f, 0x3e, 0x90, 0x6a, 0xca, 0x6e, 0x29, 0x57, 0xa8, 0x72, - 0xb3, 0x7e, 0x24, 0x95, 0x5b, 0x7b, 0x54, 0x11, 0x39, 0xb0, 0x44, 0xb9, 0x91, 0xbb, 0x55, 0x82, - 0x48, 0xa1, 0x05, 0xb8, 0x68, 0xaf, 0x0b, 0xcf, 0xa5, 0x98, 0xe7, 0x66, 0xf8, 0x3f, 0x45, 0xdd, - 0x17, 0xcd, 0x81, 0xa9, 0xec, 0x69, 0x80, 0xef, 0x94, 0xc6, 0xae, 0x62, 0x46, 0xa0, 0xa7, 0xda, - 0x8f, 0xdf, 0x66, 0x41, 0x18, 0xcd, 0xfe, 0x59, 0x7b, 0x46, 0x88, 0xed, 0xe3, 0x41, 0x06, 0x49, - 0xa0, 0x5b, 0x70, 0xdd, 0x8e, 0xc0, 0xe5, 0x5a, 0xdf, 0x2f, 0x6a, 0x65, 0xa5, 0x5a, 0x11, 0x77, - 0x8a, 0xbb, 0x45, 0xea, 0x24, 0x5c, 0x12, 0x2d, 0x02, 0x47, 0xe9, 0x9c, 0x4c, 0xc6, 0xcd, 0xf0, - 0xff, 0x66, 0x61, 0x63, 0x44, 0x7d, 0x87, 0x8e, 0x03, 0x4c, 0x2a, 0x8d, 0x5f, 0x1f, 0x8e, 0xc2, - 0x4f, 0x65, 0xd4, 0x5f, 0x33, 0x70, 0x75, 0x0c, 0xfe, 0x5e, 0xab, 0x86, 0xaa, 0x9f, 0x19, 0xb6, - 0x93, 0xd8, 0x61, 0x3b, 0x29, 0x1a, 0xb6, 0x93, 0x62, 0x01, 0xd9, 0xb2, 0x28, 0xed, 0x96, 0xb9, - 0x38, 0xff, 0x25, 0x16, 0x16, 0x83, 0x8a, 0x5d, 0xf4, 0x30, 0x40, 0xe1, 0x2f, 0x8d, 0xa8, 0x90, - 0x03, 0x81, 0x53, 0xa9, 0xb6, 0x01, 0x99, 0x30, 0x9e, 0x5e, 0x75, 0x2e, 0xc1, 0xfc, 0x76, 0x2e, - 0xaf, 0x54, 0x4a, 0x07, 0x85, 0xa2, 0xa4, 0xec, 0x94, 0xa5, 0xdd, 0x62, 0x81, 0x63, 0xd0, 0x35, - 0xd8, 0x1c, 0x28, 0x9d, 0xf6, 0xca, 0xd5, 0x9a, 0x92, 0x17, 0xad, 0xfd, 0x22, 0x4a, 0x3b, 0x8f, - 0x38, 0x96, 0xff, 0x7a, 0x14, 0x96, 0x83, 0xab, 0x72, 0xf4, 0xf9, 0x00, 0x35, 0xbc, 0x3c, 0xb2, - 0x98, 0x0f, 0x01, 0x4f, 0xa5, 0x8a, 0x0f, 0xe9, 0xc9, 0xdf, 0x38, 0xc9, 0x64, 0x54, 0x60, 0x60, - 0xc2, 0xdd, 0x8f, 0x1d, 0xe6, 0x7e, 0xd1, 0x61, 0xee, 0x17, 0x0b, 0x73, 0xbf, 0x38, 0xba, 0x08, - 0x29, 0xc2, 0x46, 0x94, 0xe5, 0xb2, 0xcc, 0x25, 0xc2, 0xe3, 0x52, 0x92, 0xff, 0x2d, 0x4b, 0x8e, - 0xd7, 0x03, 0x23, 0xbb, 0x12, 0x60, 0x8e, 0xd7, 0xc7, 0xe8, 0x7c, 0x42, 0x11, 0xd3, 0x56, 0x57, - 0xeb, 0xc3, 0x18, 0x9f, 0xa3, 0x51, 0xe6, 0x21, 0x7d, 0x20, 0xb9, 0x75, 0x18, 0x0d, 0xd7, 0x61, - 0x8c, 0xff, 0x27, 0x03, 0x17, 0xbc, 0x9d, 0x1a, 0xba, 0x1f, 0xa0, 0xb9, 0x8f, 0x87, 0x36, 0x76, - 0xbe, 0xcf, 0xa9, 0xb4, 0xf4, 0x16, 0xa0, 0x41, 0x6e, 0xe7, 0xb8, 0x7b, 0xad, 0xc5, 0x7a, 0xdb, - 0xc9, 0x91, 0x8b, 0xf5, 0x0e, 0xf7, 0x7d, 0x4e, 0xbb, 0xd8, 0x41, 0x6e, 0xe7, 0xb7, 0xd8, 0xed, - 0x24, 0xbd, 0xaf, 0xd8, 0xfa, 0x39, 0x03, 0x33, 0x45, 0x7c, 0x72, 0x6e, 0xf6, 0xd0, 0x17, 0xf0, - 0x3f, 0x13, 0x06, 0xfe, 0x8b, 0x81, 0x36, 0x87, 0xfc, 0x4d, 0x03, 0x1f, 0x88, 0xf2, 0x57, 0x46, - 0xfe, 0x91, 0x43, 0x88, 0xa0, 0x3d, 0x48, 0x7b, 0x9e, 0xf8, 0xa3, 0xd5, 0xa0, 0x67, 0xff, 0x84, - 0x21, 0x1f, 0xfe, 0x8f, 0x00, 0x21, 0xb2, 0xf5, 0xa3, 0x04, 0x40, 0x3f, 0xa0, 0x23, 0x11, 0xe6, - 0xdc, 0x6d, 0x22, 0xca, 0x84, 0x3d, 0x71, 0xe7, 0x57, 0x43, 0x5f, 0x88, 0x0b, 0x11, 0x8b, 0x8d, - 0xbb, 0xc9, 0xa1, 0x6c, 0x02, 0x9e, 0x73, 0x52, 0x36, 0x41, 0x0f, 0x21, 0x85, 0x08, 0x3a, 0xf4, - 0xdc, 0x5d, 0xbb, 0x77, 0x34, 0xba, 0x3a, 0xfc, 0x81, 0x1b, 0x61, 0x7e, 0x6d, 0x9c, 0x57, 0x70, - 0x42, 0x04, 0xb5, 0x60, 0x35, 0xb4, 0x06, 0x44, 0xd7, 0x47, 0x3d, 0x88, 0x22, 0xb2, 0x6e, 0x8c, - 0xf7, 0x6e, 0x4a, 0x88, 0xa0, 0x0e, 0xf0, 0xe1, 0xc5, 0x09, 0xba, 0x31, 0xf2, 0x41, 0x10, 0x91, - 0xf7, 0xdc, 0x98, 0x0f, 0x87, 0x84, 0x08, 0xda, 0x86, 0x94, 0xeb, 0x75, 0x0a, 0x5a, 0x19, 0x7c, - 0xaf, 0x42, 0x58, 0x66, 0xc2, 0x1e, 0xb2, 0x10, 0x1e, 0xae, 0x77, 0x11, 0x94, 0xc7, 0xe0, 0x2b, - 0x0e, 0xca, 0x23, 0xe0, 0x09, 0x85, 0x10, 0x41, 0x12, 0x5c, 0xf4, 0xd5, 0x0e, 0x68, 0x2d, 0xf8, - 0xc9, 0x01, 0xe1, 0xb5, 0x3e, 0xec, 0x3d, 0x82, 0xdf, 0x6c, 0xbe, 0x63, 0xfe, 0x01, 0xb3, 0x05, - 0xdf, 0x3f, 0x0c, 0x98, 0x2d, 0xe4, 0xb6, 0x40, 0x88, 0x6c, 0x7d, 0x2b, 0x0a, 0x31, 0x2b, 0x8c, - 0xa0, 0x1a, 0xbd, 0x55, 0xf1, 0x78, 0xc9, 0xa5, 0xa1, 0x37, 0xbd, 0xfc, 0xe5, 0xe1, 0xb7, 0x91, - 0x42, 0x04, 0x7d, 0x0e, 0x16, 0x02, 0x32, 0x17, 0xda, 0x08, 0xbf, 0x51, 0x23, 0x9c, 0x37, 0x47, - 0x5d, 0xb9, 0x09, 0x11, 0xf4, 0x32, 0xcc, 0x3a, 0x31, 0x10, 0x2d, 0xf9, 0xef, 0xb5, 0x08, 0x9f, - 0xe5, 0xe0, 0xeb, 0x2e, 0x42, 0xed, 0xa4, 0x0b, 0x4a, 0xed, 0xbf, 0x92, 0xa2, 0xd4, 0x03, 0x97, - 0x48, 0xfd, 0x75, 0xf9, 0xcd, 0xb3, 0x11, 0x7e, 0x3f, 0xe3, 0x5f, 0x57, 0xa8, 0x49, 0x1e, 0x27, - 0xf0, 0x1f, 0xea, 0x3e, 0xf5, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x2f, 0x8a, 0x89, 0x5d, - 0x37, 0x00, 0x00, + // 3264 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5b, 0x4d, 0x6c, 0x23, 0x49, + 0x15, 0x76, 0xfb, 0x37, 0x7e, 0x9e, 0xcc, 0x74, 0x2a, 0x7f, 0x4e, 0x27, 0x33, 0xc9, 0xf4, 0xfc, + 0xec, 0x2c, 0xcb, 0x7a, 0x21, 0x20, 0xcd, 0xce, 0xcc, 0xfe, 0x39, 0x76, 0xc7, 0x31, 0xe3, 0xb4, + 0xbd, 0x6d, 0x7b, 0x66, 0x07, 0xc4, 0xb6, 0x7a, 0xec, 0x9e, 0x8c, 0x19, 0xc7, 0xf6, 0x76, 0x77, + 0xa2, 0xcd, 0x15, 0xd0, 0x4a, 0x48, 0x08, 0x10, 0x1c, 0x56, 0xe2, 0x00, 0x87, 0x45, 0x62, 0xb9, + 0x21, 0xad, 0x40, 0x42, 0x08, 0x21, 0x71, 0x03, 0xc4, 0x01, 0x09, 0x81, 0x84, 0xc4, 0x81, 0xe3, + 0x72, 0xe2, 0xca, 0x0d, 0xd5, 0x4f, 0xb7, 0xbb, 0xdb, 0xdd, 0xb6, 0x13, 0x67, 0xb4, 0x37, 0xf7, + 0x7b, 0x55, 0xaf, 0xaa, 0xbe, 0xf7, 0xea, 0xfd, 0x54, 0x95, 0x21, 0xdd, 0x32, 0x3b, 0xb9, 0x81, + 0xd1, 0xb7, 0xfa, 0x28, 0xd6, 0x32, 0x3b, 0xe2, 0x65, 0x58, 0x2f, 0xe9, 0x56, 0xfd, 0x68, 0x30, + 0xe8, 0x1b, 0x96, 0xde, 0x7e, 0xa0, 0x1b, 0x66, 0xa7, 0xdf, 0x33, 0x15, 0xfd, 0xbd, 0x23, 0xdd, + 0xb4, 0xc4, 0xbf, 0x73, 0xb0, 0x11, 0xcc, 0x37, 0x07, 0xfd, 0x9e, 0xa9, 0xa3, 0x1d, 0x48, 0x1a, + 0xba, 0x79, 0xd4, 0xb5, 0xb2, 0xdc, 0x16, 0x77, 0x2b, 0xb3, 0x7d, 0x2b, 0x87, 0x07, 0x18, 0xd7, + 0x25, 0xa7, 0x90, 0xf6, 0x7b, 0x11, 0x85, 0xf5, 0x44, 0x22, 0x24, 0x74, 0xc3, 0xe8, 0x1b, 0xd9, + 0x28, 0x11, 0x01, 0x44, 0x84, 0x84, 0x29, 0x7b, 0x11, 0x85, 0xb2, 0x04, 0x09, 0x92, 0xb4, 0x1f, + 0xba, 0x07, 0xc8, 0xb4, 0x65, 0xab, 0xc7, 0x4c, 0x78, 0x96, 0xdb, 0x8a, 0xdd, 0xca, 0x6c, 0x5f, + 0x20, 0x5d, 0xd9, 0x88, 0xca, 0x82, 0xe9, 0x9f, 0xc3, 0x4e, 0x0a, 0x12, 0x86, 0x3e, 0xe8, 0x9e, + 0x88, 0xf7, 0x21, 0xc5, 0x88, 0x68, 0x09, 0x12, 0x87, 0xda, 0x37, 0xfa, 0x06, 0x59, 0xc1, 0xbc, + 0x42, 0x3f, 0x08, 0xb5, 0xd3, 0x63, 0x93, 0xc2, 0x54, 0xfc, 0x81, 0xa9, 0x03, 0xcd, 0x6a, 0x3d, + 0xcd, 0xc6, 0x28, 0x95, 0x7c, 0x88, 0x6f, 0xc0, 0x52, 0x49, 0xb7, 0x6a, 0xdd, 0xa3, 0x83, 0x4e, + 0xaf, 0xdc, 0x7b, 0xd2, 0x67, 0xe8, 0xa1, 0x9b, 0x90, 0x62, 0x13, 0x64, 0xe8, 0x78, 0xe7, 0x67, + 0x33, 0xc5, 0xbf, 0x46, 0x61, 0xd9, 0x27, 0x80, 0xc1, 0x7b, 0xcf, 0x07, 0xef, 0x55, 0x1b, 0xde, + 0xd1, 0xb6, 0x67, 0xc3, 0xf5, 0x2f, 0x9c, 0x03, 0x2c, 0x82, 0x78, 0x4f, 0x3b, 0xd4, 0xc9, 0x48, + 0x69, 0x85, 0xfc, 0x46, 0x37, 0xe0, 0xe2, 0xb1, 0xde, 0x6b, 0xf7, 0x0d, 0x1b, 0x69, 0x22, 0x2b, + 0xad, 0xcc, 0x53, 0xaa, 0x0d, 0xe1, 0x7d, 0x98, 0x3b, 0xd4, 0x7a, 0x9d, 0x27, 0xba, 0x69, 0x65, + 0x63, 0x44, 0x13, 0xaf, 0x4c, 0x9c, 0x68, 0x6e, 0x9f, 0xf5, 0x90, 0x7a, 0x96, 0x71, 0xa2, 0x38, + 0x02, 0x84, 0x7b, 0x30, 0xef, 0x61, 0x21, 0x1e, 0x62, 0xcf, 0xf4, 0x13, 0x36, 0x2f, 0xfc, 0x13, + 0xab, 0xe1, 0x58, 0xeb, 0x1e, 0xe9, 0x6c, 0x36, 0xf4, 0xe3, 0x6e, 0xf4, 0x55, 0x6e, 0xa8, 0xe0, + 0x1f, 0xc7, 0x60, 0xb1, 0x60, 0xe8, 0x9a, 0xa5, 0x3f, 0xe8, 0x77, 0x8f, 0x0e, 0xf5, 0x53, 0xea, + 0xc4, 0x41, 0x23, 0xea, 0x42, 0xe3, 0x0e, 0x5c, 0x6c, 0x69, 0x03, 0xad, 0xd5, 0xb1, 0x4e, 0x54, + 0x43, 0xeb, 0x1d, 0xe8, 0xc4, 0x0c, 0x32, 0xdb, 0x88, 0x88, 0x28, 0x30, 0x96, 0x82, 0x39, 0xca, + 0x7c, 0xcb, 0xfd, 0x89, 0x76, 0x61, 0xf1, 0x98, 0xcc, 0x43, 0xc5, 0xf4, 0xc7, 0x9d, 0x6e, 0xc7, + 0xea, 0xe8, 0x66, 0x36, 0x4e, 0xc0, 0x5a, 0xa6, 0x53, 0x20, 0xfc, 0x82, 0xcd, 0x3e, 0x51, 0xd0, + 0xb1, 0x97, 0xd2, 0xd1, 0x4d, 0xb4, 0x07, 0x30, 0xd0, 0x0c, 0xed, 0x50, 0xb7, 0x74, 0xc3, 0xcc, + 0x26, 0x48, 0x77, 0xba, 0xe7, 0x02, 0x16, 0x9b, 0xab, 0x39, 0x4d, 0x29, 0xc8, 0xae, 0xbe, 0xe8, + 0x1e, 0xf0, 0x47, 0xa6, 0x6e, 0xa8, 0x2d, 0x43, 0x6f, 0xeb, 0x3d, 0xab, 0xa3, 0x75, 0xcd, 0x6c, + 0x92, 0x2c, 0x87, 0xb7, 0xe5, 0xd9, 0x74, 0xe5, 0x12, 0x6e, 0xe9, 0x22, 0x08, 0xaf, 0xc3, 0x25, + 0x9f, 0xec, 0xd3, 0x68, 0x49, 0xfc, 0x2d, 0x07, 0x4b, 0xde, 0xf9, 0x32, 0x7b, 0xbf, 0xeb, 0xb3, + 0xf7, 0xad, 0x80, 0xa5, 0xcd, 0x62, 0xee, 0x77, 0x1d, 0x6b, 0xff, 0x02, 0x64, 0x98, 0x42, 0x3a, + 0xbd, 0x27, 0x7d, 0x36, 0xdc, 0x25, 0x97, 0x22, 0x88, 0xc9, 0xc2, 0xb1, 0xf3, 0x7b, 0x68, 0x5a, + 0x3f, 0x89, 0x03, 0xef, 0x57, 0x16, 0xba, 0x03, 0x89, 0xc7, 0xdd, 0x7e, 0xeb, 0x99, 0x67, 0xa3, + 0xfa, 0x5b, 0xe5, 0x76, 0x70, 0x13, 0x4a, 0xc5, 0x93, 0x22, 0x3d, 0x70, 0xd7, 0xc3, 0xfe, 0x51, + 0xcf, 0x62, 0x13, 0x0f, 0xe9, 0xba, 0x8f, 0x9b, 0x0c, 0xbb, 0x92, 0x1e, 0x28, 0x0f, 0x19, 0xad, + 0xd5, 0xd2, 0x4d, 0x53, 0x3d, 0xec, 0xb7, 0x6d, 0x73, 0xdc, 0x0a, 0x16, 0x90, 0x27, 0x0d, 0xf7, + 0xfb, 0x6d, 0x5d, 0x01, 0xcd, 0xf9, 0x2d, 0xcc, 0x43, 0xc6, 0x35, 0x2b, 0xa1, 0x04, 0x19, 0xd7, + 0x48, 0x68, 0x15, 0x52, 0x4f, 0x4c, 0xd5, 0x3a, 0x19, 0xd8, 0x7e, 0x21, 0xf9, 0xc4, 0x6c, 0x9c, + 0x0c, 0x74, 0xb4, 0x09, 0x19, 0x32, 0x05, 0xf5, 0x49, 0x57, 0x3b, 0x30, 0xb3, 0xd1, 0xad, 0xd8, + 0xad, 0xb4, 0x02, 0x84, 0xb4, 0x8b, 0x29, 0xc2, 0xa7, 0x1c, 0xc0, 0x70, 0x48, 0x74, 0x07, 0xe2, + 0x64, 0x8a, 0x58, 0xca, 0xc5, 0xed, 0x1b, 0x93, 0xa6, 0x98, 0x23, 0xf3, 0x24, 0x5d, 0xc4, 0x9f, + 0x72, 0x10, 0x27, 0x32, 0x32, 0x90, 0x6a, 0xca, 0xf7, 0xe5, 0xea, 0x43, 0x99, 0x8f, 0xa0, 0x15, + 0x40, 0xf5, 0xb2, 0x5c, 0xaa, 0x48, 0xaa, 0x5c, 0x2d, 0x4a, 0xea, 0x43, 0xa5, 0xdc, 0x90, 0x14, + 0x9e, 0x43, 0xeb, 0xb0, 0xea, 0xa6, 0x2b, 0x52, 0xbe, 0x28, 0x29, 0x6a, 0x55, 0xae, 0x3c, 0xe2, + 0xa3, 0x48, 0x80, 0x95, 0xfd, 0x66, 0xa5, 0x51, 0x1e, 0xe5, 0xc5, 0xd0, 0x06, 0x64, 0x5d, 0x3c, + 0x26, 0x83, 0x89, 0x8d, 0x63, 0xb1, 0x2e, 0x2e, 0xfd, 0xc9, 0x98, 0x89, 0x9d, 0x79, 0x47, 0x0d, + 0x18, 0x29, 0xf1, 0x21, 0xcc, 0x7b, 0x9c, 0x01, 0x76, 0xa3, 0x86, 0xfe, 0xde, 0x51, 0xc7, 0xd0, + 0xdb, 0xea, 0xe3, 0x13, 0x4b, 0x37, 0x09, 0x0c, 0x71, 0x65, 0xde, 0xa6, 0xee, 0x60, 0x22, 0xc6, + 0xb4, 0xdb, 0x39, 0xec, 0x58, 0xac, 0x4d, 0x94, 0xb4, 0x01, 0x42, 0x22, 0x0d, 0xc4, 0x02, 0xc0, + 0xd0, 0x38, 0xb1, 0x54, 0xc7, 0x1d, 0x79, 0xa4, 0xda, 0x54, 0x2a, 0xf5, 0x22, 0x44, 0x3b, 0x6d, + 0xb6, 0x07, 0xa3, 0x9d, 0xb6, 0x78, 0x0c, 0x19, 0xd7, 0x56, 0x46, 0x39, 0x88, 0xb7, 0x35, 0x4b, + 0x63, 0x11, 0x54, 0xf0, 0xef, 0xfd, 0x5c, 0x51, 0xb3, 0x34, 0xea, 0x3d, 0x48, 0x3b, 0xe1, 0x36, + 0xa4, 0x1d, 0xd2, 0xa9, 0x36, 0xfd, 0x87, 0x1c, 0x2c, 0x16, 0xf5, 0xae, 0x7e, 0x56, 0x8f, 0xbc, + 0x0e, 0x69, 0x7b, 0xc7, 0xda, 0xcb, 0x99, 0x63, 0xdb, 0xb3, 0x1d, 0xe8, 0xcd, 0x62, 0x53, 0x7a, + 0x33, 0xf1, 0x3b, 0x1c, 0x2c, 0x79, 0x67, 0x36, 0xd6, 0x1d, 0x05, 0x35, 0x3d, 0x9b, 0x3b, 0x9a, + 0xb3, 0xdd, 0xd1, 0xd0, 0xb9, 0x7c, 0x1c, 0x85, 0x2b, 0x85, 0x7e, 0xcf, 0x32, 0xfa, 0xdd, 0xae, + 0x6e, 0xd4, 0x8e, 0x1e, 0x77, 0x3b, 0xe6, 0xd3, 0xe7, 0x00, 0xd8, 0x75, 0x48, 0xf5, 0xfa, 0x6d, + 0xc2, 0xa2, 0x38, 0x65, 0x88, 0x10, 0xb9, 0xdf, 0xd6, 0xcb, 0x45, 0x25, 0x89, 0x79, 0xe5, 0x36, + 0xda, 0x81, 0x05, 0x7f, 0xd8, 0x3a, 0xc9, 0xc6, 0x49, 0xfb, 0x90, 0xa0, 0xc5, 0x1f, 0xfb, 0x3d, + 0xa3, 0x00, 0x73, 0x86, 0xae, 0xb5, 0xfb, 0xbd, 0xee, 0x49, 0x36, 0xb1, 0xc5, 0xdd, 0x9a, 0x53, + 0x9c, 0xef, 0x99, 0x82, 0x90, 0xf8, 0xcf, 0x28, 0x6c, 0x86, 0x42, 0xc5, 0x34, 0x28, 0xf9, 0x34, + 0xf8, 0x12, 0x15, 0x3b, 0xbe, 0xd7, 0xd9, 0x94, 0xf9, 0x87, 0x61, 0x2a, 0x65, 0xc0, 0xe2, 0x80, + 0x0a, 0x56, 0xbd, 0x41, 0x06, 0x6f, 0xb1, 0x9d, 0x53, 0x4c, 0x21, 0xe7, 0x61, 0xe2, 0x5d, 0x4f, + 0xb7, 0xe2, 0xc2, 0xc0, 0x4f, 0x17, 0x8a, 0xb0, 0x12, 0xdc, 0xf8, 0x6c, 0xf9, 0x93, 0x05, 0x49, + 0x6a, 0x0b, 0xe8, 0x15, 0x48, 0x12, 0xbe, 0x9d, 0x64, 0xaf, 0xba, 0x0c, 0x25, 0xf7, 0x80, 0x70, + 0xe8, 0xa4, 0x58, 0x33, 0xe1, 0x0e, 0x64, 0x5c, 0xe4, 0x53, 0xf9, 0x88, 0x3f, 0x71, 0xb0, 0x35, + 0x44, 0xa6, 0xd9, 0x1b, 0x7c, 0xc6, 0xf6, 0x1f, 0x64, 0x9f, 0xf1, 0x69, 0xed, 0xf3, 0x23, 0x0e, + 0xae, 0x8e, 0x59, 0x0c, 0xb3, 0xd0, 0x92, 0xcf, 0x42, 0x5f, 0xf6, 0x99, 0x47, 0x48, 0xbf, 0x73, + 0x73, 0x38, 0xbf, 0xe4, 0xe0, 0xea, 0x03, 0xad, 0xdb, 0x69, 0x3b, 0x29, 0x96, 0x3b, 0xe1, 0x3c, + 0x57, 0xcc, 0x43, 0x92, 0xe0, 0xd8, 0x29, 0x93, 0x60, 0xf1, 0x5f, 0x1c, 0x88, 0xe3, 0xa6, 0xcc, + 0x90, 0xdd, 0xf3, 0x21, 0x9b, 0xa3, 0x23, 0x4c, 0xec, 0x78, 0x36, 0x68, 0xdf, 0x72, 0x76, 0xff, + 0x06, 0xa4, 0x9d, 0xca, 0x93, 0x0c, 0x3d, 0xa7, 0x0c, 0x09, 0x28, 0x0b, 0xa9, 0x43, 0xdd, 0x34, + 0xb5, 0x03, 0xdb, 0xfc, 0xed, 0xcf, 0xa1, 0x4a, 0xbe, 0xcd, 0x01, 0xaa, 0x74, 0x4c, 0x96, 0x83, + 0x9d, 0x5a, 0x07, 0x38, 0x35, 0xd3, 0xde, 0x57, 0xf5, 0x9e, 0x65, 0x74, 0x58, 0x1a, 0x31, 0xaf, + 0xc0, 0xa1, 0xf6, 0xbe, 0x44, 0x29, 0x38, 0x71, 0x30, 0x2d, 0xcd, 0xb0, 0x3a, 0xbd, 0x03, 0xd5, + 0xea, 0x3f, 0xd3, 0x7b, 0x64, 0x0b, 0xa4, 0x95, 0x79, 0x9b, 0xda, 0xc0, 0x44, 0xf1, 0xa3, 0x28, + 0x2c, 0x7a, 0xa6, 0xc1, 0x70, 0xbd, 0xe3, 0xc3, 0x75, 0x93, 0x4c, 0x23, 0xa0, 0xe5, 0xd9, 0x80, + 0xfc, 0x68, 0xe8, 0x47, 0xdf, 0x84, 0x94, 0xbd, 0x0a, 0xea, 0x7b, 0x6e, 0x4c, 0x18, 0x2a, 0x47, + 0x3d, 0x91, 0xdd, 0x0b, 0x5d, 0x06, 0xe8, 0xe9, 0xef, 0x5b, 0x6c, 0x95, 0x14, 0xef, 0x34, 0xa6, + 0x90, 0x15, 0x0a, 0x77, 0x20, 0x41, 0x7d, 0xd4, 0x0c, 0xd5, 0xc0, 0x77, 0xa3, 0x80, 0x4a, 0xba, + 0xe5, 0x24, 0x7c, 0xa7, 0x54, 0x56, 0xc8, 0x9e, 0x88, 0x9e, 0xb6, 0x30, 0x2c, 0x79, 0x0a, 0x43, + 0xba, 0xa5, 0x5e, 0xb0, 0x8b, 0x70, 0xdf, 0xe4, 0xc6, 0xd5, 0x85, 0xb3, 0x96, 0x76, 0xbf, 0xe6, + 0x60, 0xd1, 0x33, 0xe2, 0x58, 0xa3, 0x09, 0x68, 0x79, 0x36, 0xa3, 0xb9, 0xed, 0xd8, 0xcc, 0xcb, + 0x80, 0xb4, 0x63, 0xad, 0xd3, 0xd5, 0x1e, 0x77, 0x29, 0xa6, 0x58, 0x38, 0xcb, 0x8c, 0x17, 0x1c, + 0x8e, 0x3d, 0xea, 0x50, 0x8f, 0x6f, 0xc1, 0x8a, 0x2b, 0x26, 0x1b, 0xfd, 0xc7, 0xa7, 0x8d, 0x37, + 0xe2, 0xf7, 0x39, 0x58, 0x1d, 0x11, 0xc1, 0x96, 0xff, 0xba, 0x6f, 0xf9, 0xd7, 0xfc, 0x49, 0x80, + 0xbb, 0xf5, 0xb9, 0xf9, 0xf6, 0xaf, 0xb8, 0xa3, 0x29, 0xc3, 0xfa, 0x8c, 0x9e, 0x5d, 0xfc, 0xd4, + 0x13, 0xcd, 0x46, 0x84, 0x4d, 0x19, 0xcd, 0x42, 0xfa, 0x9d, 0x6d, 0xc5, 0xb2, 0xa3, 0xf4, 0x22, + 0x5c, 0x08, 0xd8, 0x3e, 0x5b, 0xbe, 0xc1, 0xeb, 0xba, 0x71, 0xdc, 0x69, 0xb9, 0x77, 0x92, 0xa7, + 0xd7, 0x10, 0xb7, 0x0f, 0xa3, 0xb0, 0x3e, 0xa6, 0x1b, 0x7a, 0x15, 0x62, 0xc6, 0xa0, 0xc5, 0x96, + 0x78, 0x7d, 0xd2, 0x28, 0x39, 0xa5, 0x56, 0xd8, 0x8b, 0x28, 0xb8, 0x8b, 0xf0, 0x2b, 0x0e, 0x62, + 0x4a, 0xad, 0x80, 0x5e, 0x87, 0xb8, 0x53, 0x54, 0x5f, 0xdc, 0x7e, 0x71, 0x1a, 0x11, 0x39, 0x5c, + 0x77, 0x2b, 0xa4, 0x9b, 0xd8, 0x87, 0x38, 0xa9, 0xc2, 0x3d, 0x15, 0x71, 0x16, 0x96, 0x0a, 0x8a, + 0x94, 0x6f, 0x48, 0x6a, 0x51, 0xaa, 0x48, 0x0d, 0x49, 0x7d, 0x50, 0xad, 0x34, 0xf7, 0x25, 0x9e, + 0xc3, 0xa5, 0x6d, 0xad, 0xb9, 0x53, 0x29, 0xd7, 0xf7, 0xd4, 0xa6, 0x6c, 0xff, 0x62, 0xdc, 0x28, + 0xe2, 0xe1, 0x42, 0xa5, 0x5c, 0x6f, 0x30, 0x42, 0x9d, 0x8f, 0x61, 0x4a, 0x49, 0x6a, 0xa8, 0x85, + 0x7c, 0x2d, 0x5f, 0x28, 0x37, 0x1e, 0xf1, 0xf1, 0x9d, 0x24, 0x9d, 0xaf, 0xf8, 0xc7, 0x18, 0x64, + 0x71, 0x8e, 0xf4, 0xfc, 0x0a, 0x93, 0x76, 0x70, 0xee, 0x4c, 0x3d, 0xda, 0x97, 0x9d, 0x24, 0x2d, + 0x68, 0x02, 0xd3, 0x67, 0xcb, 0x38, 0x46, 0x5a, 0x9a, 0x71, 0xa0, 0x5b, 0xea, 0x40, 0xb3, 0x9e, + 0x92, 0x9c, 0x2e, 0xad, 0x00, 0x25, 0xd5, 0x34, 0xeb, 0x69, 0x70, 0xe5, 0x93, 0x38, 0x7b, 0xe5, + 0x93, 0x9c, 0xa2, 0xf2, 0x49, 0x4d, 0x7b, 0xfc, 0x76, 0x2e, 0xb9, 0xbe, 0xf8, 0x23, 0x0e, 0xd6, + 0x02, 0xa0, 0x64, 0x3b, 0xf9, 0x4d, 0xdf, 0x4e, 0xbe, 0x11, 0x06, 0xfd, 0x39, 0xfb, 0xac, 0xdf, + 0x73, 0x20, 0xe0, 0x51, 0x9e, 0x67, 0xf2, 0xef, 0xd3, 0x7e, 0x6c, 0x44, 0xfb, 0x33, 0xe5, 0xfd, + 0x1f, 0x72, 0xb0, 0x1e, 0xb8, 0x02, 0x86, 0x6c, 0xde, 0x87, 0xec, 0x0b, 0x0e, 0xb2, 0xcf, 0x3b, + 0xd7, 0xbf, 0x0b, 0x7c, 0x49, 0xb7, 0x58, 0x8d, 0x73, 0x4a, 0xff, 0xff, 0x0b, 0x0e, 0x16, 0x5c, + 0x9d, 0xd9, 0x5a, 0x6e, 0xfb, 0xd6, 0x72, 0xd9, 0x0e, 0xeb, 0xde, 0x76, 0x67, 0x5b, 0x41, 0xce, + 0xf1, 0xef, 0xae, 0x6a, 0x8d, 0x0b, 0xad, 0xd6, 0x3c, 0xeb, 0x24, 0x86, 0x7a, 0x96, 0x28, 0xfe, + 0x2d, 0x0e, 0x16, 0x5c, 0x9d, 0xc7, 0xae, 0x73, 0xa4, 0xdd, 0xb9, 0x69, 0xaa, 0x48, 0x37, 0xc1, + 0x8c, 0x31, 0xfb, 0x1f, 0xcc, 0x12, 0xc3, 0xa2, 0x75, 0xb8, 0x25, 0x9e, 0x6b, 0x9c, 0xde, 0x73, + 0xf4, 0xf8, 0x46, 0x60, 0x9c, 0x16, 0x9c, 0x61, 0xa7, 0x8e, 0xd0, 0x1f, 0x73, 0xb0, 0x1c, 0xd8, + 0x01, 0x6d, 0xbb, 0x63, 0xf3, 0x95, 0x70, 0xc9, 0xee, 0xa8, 0x5c, 0xa7, 0x41, 0xf9, 0xb6, 0x27, + 0x28, 0x5f, 0x1b, 0xdf, 0xd7, 0x1d, 0x8e, 0x17, 0x03, 0xc2, 0xb1, 0x13, 0x32, 0x3f, 0xb8, 0x09, + 0x09, 0x02, 0x08, 0x7a, 0x03, 0xe6, 0x0f, 0xf4, 0x9e, 0x6e, 0x68, 0x5d, 0x95, 0x62, 0x46, 0x27, + 0xb9, 0x3a, 0xc4, 0x2c, 0x57, 0xa2, 0x7c, 0x1b, 0xc0, 0x0b, 0x07, 0xae, 0x6f, 0x24, 0xc3, 0x62, + 0x8b, 0x5c, 0x85, 0xd8, 0x91, 0xd1, 0x8d, 0xfc, 0x86, 0x4b, 0x8a, 0xfb, 0xc2, 0xc4, 0x16, 0xb5, + 0xd0, 0xf2, 0x13, 0xb1, 0xbc, 0x36, 0x39, 0xcb, 0xf4, 0xca, 0x8b, 0x8d, 0xc8, 0x73, 0x9f, 0x78, + 0x3a, 0xf2, 0xda, 0x7e, 0x22, 0x1a, 0xc0, 0x66, 0xcb, 0xc9, 0x61, 0x54, 0x5f, 0x14, 0xa7, 0xb2, + 0xe3, 0x2e, 0x3b, 0x63, 0x73, 0x0d, 0x3e, 0x08, 0xb3, 0x87, 0xd9, 0x68, 0x8d, 0xe1, 0xa3, 0x63, + 0xb8, 0xea, 0x1a, 0xf1, 0xa8, 0x17, 0x38, 0x26, 0x8d, 0xda, 0x2f, 0x06, 0x8e, 0xe9, 0xf3, 0xb8, + 0xf6, 0xa8, 0x57, 0x5a, 0x63, 0x5b, 0xa0, 0x13, 0x10, 0x8f, 0xd9, 0x39, 0x82, 0x1a, 0x50, 0xbe, + 0xb1, 0x81, 0xe9, 0x49, 0xe6, 0xe7, 0x5c, 0x03, 0x87, 0x1f, 0x3e, 0xd8, 0x23, 0x6f, 0x1e, 0x8f, + 0x6f, 0x82, 0x1e, 0xc2, 0x8a, 0x1b, 0x64, 0xec, 0x7d, 0xd8, 0x70, 0x29, 0x57, 0x61, 0x35, 0x82, + 0x2d, 0x6e, 0x67, 0x8f, 0xb1, 0xd4, 0x0a, 0xa0, 0xa3, 0x77, 0x61, 0x8d, 0xf8, 0xd8, 0x40, 0x0c, + 0xe7, 0x5c, 0x57, 0x53, 0x54, 0xf6, 0x48, 0x26, 0x60, 0x4b, 0x5f, 0xe9, 0x05, 0x72, 0x50, 0x1b, + 0xd6, 0x89, 0xfc, 0x10, 0x2d, 0xa5, 0x5d, 0x75, 0xd1, 0x70, 0x84, 0x10, 0xfd, 0x64, 0x7b, 0x21, + 0x3c, 0x24, 0x01, 0x4f, 0x57, 0xe1, 0x02, 0x06, 0x88, 0xe8, 0x35, 0xff, 0xe4, 0xdd, 0x90, 0x5c, + 0xec, 0x79, 0x28, 0x68, 0x17, 0x16, 0x70, 0x7a, 0xc0, 0x82, 0x0e, 0x93, 0x93, 0x19, 0x91, 0xe3, + 0x04, 0x3a, 0x47, 0xce, 0x01, 0xa3, 0xb4, 0x09, 0x45, 0xf8, 0x59, 0x14, 0x2e, 0xb8, 0xf7, 0x34, + 0xae, 0xd3, 0x89, 0x30, 0xb5, 0x35, 0xbc, 0x0d, 0xbb, 0x15, 0xe2, 0x00, 0x3c, 0x1f, 0x85, 0x7e, + 0x5b, 0x57, 0xd2, 0xba, 0xfd, 0x13, 0x7d, 0x11, 0x96, 0x5b, 0x1a, 0xb1, 0x81, 0xc3, 0x23, 0x13, + 0xcf, 0xd4, 0x52, 0x0d, 0xdd, 0x32, 0x4e, 0x88, 0x3b, 0x98, 0x53, 0x10, 0x65, 0xee, 0x1f, 0x99, + 0x96, 0xdc, 0xb7, 0x14, 0xcc, 0x41, 0x2f, 0xc1, 0x02, 0x1d, 0xbb, 0xad, 0x9b, 0x2d, 0xa3, 0x33, + 0xb0, 0x70, 0x00, 0xa1, 0xc9, 0x0f, 0x4f, 0x18, 0xc5, 0x21, 0x5d, 0x7c, 0x86, 0x73, 0x05, 0xef, + 0xf0, 0xde, 0x72, 0x63, 0x1e, 0xd2, 0x4d, 0xb9, 0x28, 0xed, 0x96, 0x65, 0xa9, 0xc8, 0x73, 0x68, + 0x13, 0xd6, 0x9b, 0x72, 0xbd, 0x59, 0xab, 0x55, 0x95, 0x86, 0x54, 0x54, 0x15, 0xe9, 0xed, 0xa6, + 0x84, 0x8b, 0x0a, 0x49, 0xa9, 0x97, 0xab, 0x32, 0xbb, 0x7b, 0x2b, 0xd7, 0xeb, 0x65, 0xb9, 0x44, + 0x98, 0x65, 0x45, 0x2a, 0xaa, 0xbb, 0x65, 0xa9, 0x52, 0xe4, 0x63, 0xc2, 0x07, 0x31, 0x58, 0x18, + 0x71, 0x5a, 0xe8, 0xed, 0x00, 0xac, 0xb6, 0xc7, 0xb9, 0xb9, 0x51, 0x8a, 0x1f, 0xb5, 0x40, 0x08, + 0xa2, 0x21, 0x10, 0xfc, 0x97, 0x83, 0xe5, 0x40, 0x89, 0xa3, 0x75, 0x57, 0xbe, 0x52, 0x51, 0xe5, + 0x6a, 0x43, 0x2d, 0xef, 0xd7, 0x2a, 0xd2, 0xbe, 0x24, 0x37, 0x08, 0x26, 0x5b, 0xb0, 0x51, 0xad, + 0x49, 0x4a, 0xbe, 0x51, 0xae, 0xca, 0x6a, 0x4d, 0x92, 0x8b, 0x78, 0xf1, 0xbb, 0x55, 0x65, 0x58, + 0x7b, 0xad, 0xc2, 0x62, 0x59, 0x7e, 0x90, 0xaf, 0x94, 0x8b, 0x8c, 0xa6, 0xca, 0xf9, 0x7d, 0x89, + 0x8f, 0xa1, 0x2b, 0x20, 0xb8, 0xe1, 0xb4, 0x4b, 0x31, 0x55, 0xc9, 0xcb, 0x25, 0x89, 0x8f, 0xa3, + 0x35, 0x58, 0x66, 0x1d, 0xf2, 0x15, 0x45, 0xca, 0x17, 0x1f, 0xa9, 0xd2, 0x3b, 0xe5, 0x7a, 0xa3, + 0xce, 0x27, 0xd0, 0x65, 0x58, 0x73, 0x77, 0xad, 0xe5, 0x95, 0xfc, 0xbe, 0xd4, 0x90, 0x14, 0xf5, + 0xbe, 0xf4, 0x88, 0x4f, 0xa2, 0x75, 0x58, 0xb5, 0x87, 0x1c, 0xb2, 0x1e, 0xe4, 0x2b, 0x4d, 0x89, + 0x4f, 0x09, 0x1f, 0x47, 0x61, 0x61, 0xc4, 0xdb, 0x4f, 0x54, 0xc4, 0x48, 0x8f, 0x51, 0xca, 0x4c, + 0x8a, 0xf8, 0x21, 0x07, 0xcb, 0x81, 0x12, 0xcf, 0x4f, 0x11, 0xcb, 0xb0, 0xe0, 0x53, 0x44, 0xb9, + 0xc8, 0xc7, 0x5c, 0x30, 0x17, 0xab, 0x52, 0x9d, 0x48, 0x26, 0x38, 0xf3, 0x71, 0xe1, 0x93, 0x38, + 0x6c, 0x8c, 0x0b, 0x5e, 0xe8, 0x20, 0x00, 0xb5, 0xbd, 0x29, 0x23, 0xdf, 0x58, 0xe6, 0x2c, 0x58, + 0xa2, 0x9b, 0x30, 0xc7, 0xbc, 0x9a, 0x7d, 0x4c, 0xe8, 0xc9, 0xa5, 0x53, 0x34, 0x97, 0x36, 0xc5, + 0xbf, 0x45, 0xdd, 0x87, 0x47, 0xc1, 0x93, 0xf8, 0x0c, 0xe1, 0x47, 0x1b, 0x90, 0xf5, 0x6d, 0x00, + 0x76, 0xb0, 0x21, 0x15, 0xf9, 0x04, 0xde, 0x57, 0xe4, 0xa2, 0xde, 0xd7, 0x2d, 0x89, 0x56, 0x00, + 0xed, 0xe7, 0xdf, 0x51, 0xf3, 0x8d, 0x46, 0xbe, 0xb0, 0x27, 0x15, 0xc9, 0x75, 0x7e, 0x9d, 0x4f, + 0xe1, 0x5d, 0xe1, 0xde, 0x34, 0xfb, 0xd5, 0xa6, 0xdc, 0x50, 0x77, 0x2b, 0xf9, 0x52, 0x9d, 0x4f, + 0xfb, 0x99, 0x6c, 0xdc, 0xc6, 0xa3, 0x9a, 0xc4, 0x03, 0x1e, 0xca, 0xcd, 0xdc, 0xad, 0x53, 0x46, + 0x06, 0x2d, 0xc2, 0x25, 0x7b, 0x4d, 0x64, 0x2e, 0xe5, 0x22, 0x3f, 0x27, 0xfc, 0x39, 0xe6, 0xbe, + 0xdf, 0x0d, 0x0c, 0x61, 0xcf, 0x02, 0xec, 0xa6, 0x32, 0x75, 0xf6, 0x32, 0x81, 0x3d, 0xd3, 0x3e, + 0xfc, 0x5e, 0x14, 0xc4, 0xc9, 0xe2, 0x3f, 0x4b, 0xab, 0x08, 0xd1, 0x7b, 0x22, 0x48, 0x19, 0x49, + 0xf4, 0x22, 0xdc, 0xb0, 0xbd, 0x6e, 0xb5, 0x31, 0xb4, 0x89, 0x46, 0x55, 0xad, 0xd7, 0xa4, 0x42, + 0x79, 0xb7, 0xcc, 0x0c, 0x84, 0x4f, 0xa1, 0x25, 0xe0, 0x59, 0x3f, 0x27, 0x7a, 0xf1, 0x73, 0xc2, + 0xff, 0xa2, 0xb0, 0x39, 0x21, 0xa7, 0x43, 0x87, 0x01, 0xea, 0x94, 0xa7, 0xcf, 0x09, 0x27, 0xf1, + 0x67, 0x52, 0xe8, 0x6f, 0x38, 0xb8, 0x36, 0x85, 0x7c, 0xaf, 0x46, 0x43, 0xe1, 0xe7, 0xc6, 0xed, + 0xa2, 0xe8, 0xb8, 0x5d, 0x14, 0x0b, 0xdb, 0x45, 0xf1, 0x80, 0x08, 0x59, 0x96, 0x77, 0xab, 0x7c, + 0x42, 0xf8, 0x66, 0x14, 0x96, 0x82, 0x12, 0x5c, 0xf4, 0x30, 0x00, 0xf0, 0x57, 0x27, 0x64, 0xc5, + 0x81, 0xc4, 0x99, 0xa0, 0x6d, 0x43, 0x36, 0x4c, 0xa6, 0x17, 0xce, 0x65, 0x58, 0xd8, 0xc9, 0x17, + 0xd5, 0x5a, 0xa5, 0x59, 0x2a, 0xcb, 0x6a, 0xa1, 0x2a, 0xef, 0x96, 0x4b, 0x3c, 0x87, 0xae, 0xc3, + 0xd6, 0x48, 0xba, 0xb4, 0x57, 0xad, 0x37, 0xd4, 0xa2, 0x84, 0xf7, 0x8a, 0x24, 0x17, 0x1e, 0xf1, + 0x51, 0x9c, 0x38, 0xad, 0x04, 0x67, 0xe2, 0xe8, 0x6b, 0x01, 0x30, 0xbc, 0x36, 0x31, 0x81, 0x0f, + 0x21, 0xcf, 0x04, 0xc5, 0xbf, 0xd9, 0x91, 0xde, 0x34, 0x41, 0x64, 0x92, 0x53, 0xe0, 0xc2, 0xcd, + 0x2f, 0x3a, 0xce, 0xfc, 0x62, 0xe3, 0xcc, 0x2f, 0x1e, 0x66, 0x7e, 0x09, 0x74, 0x09, 0x32, 0x54, + 0x8c, 0xa4, 0x28, 0x55, 0x85, 0x4f, 0x06, 0xfb, 0xa4, 0x94, 0xf0, 0xbb, 0x28, 0x3d, 0x18, 0x0f, + 0xf4, 0xe8, 0x6a, 0x80, 0x2a, 0xde, 0x9a, 0xa2, 0xd2, 0x09, 0x65, 0xcc, 0x9a, 0x4d, 0x6d, 0x8c, + 0x13, 0x7c, 0x8e, 0x0a, 0x59, 0x80, 0xf9, 0xa6, 0xec, 0xc6, 0x2f, 0x16, 0x8c, 0x5f, 0x5c, 0xf8, + 0x0f, 0x07, 0x17, 0xbd, 0x55, 0x19, 0xba, 0x1f, 0x80, 0xda, 0xe7, 0x43, 0x8b, 0x38, 0xdf, 0xe7, + 0x4c, 0x08, 0xbd, 0x0b, 0x68, 0x54, 0xda, 0x39, 0xee, 0x5a, 0xbc, 0x58, 0x6f, 0xe9, 0x38, 0x71, + 0xb1, 0xde, 0xe6, 0xbe, 0xcf, 0x59, 0x17, 0x3b, 0x2a, 0xed, 0xfc, 0x16, 0xbb, 0x93, 0x62, 0x17, + 0x10, 0xdb, 0x9f, 0x70, 0x30, 0x57, 0x26, 0xa7, 0xe4, 0xd6, 0x09, 0xfa, 0x3a, 0x79, 0x33, 0x3f, + 0xf2, 0x2f, 0x01, 0xb4, 0x35, 0xe6, 0x0f, 0x04, 0xe4, 0xf0, 0x53, 0xb8, 0x3a, 0xf1, 0x2f, 0x06, + 0x62, 0x04, 0xed, 0xc1, 0xbc, 0xe7, 0xf1, 0x39, 0x5a, 0x0b, 0x7a, 0x90, 0x4e, 0x05, 0x0a, 0xe1, + 0x6f, 0xd5, 0xc5, 0xc8, 0xf6, 0xcf, 0x93, 0x00, 0x43, 0x47, 0x8e, 0x24, 0xb8, 0xe0, 0x2e, 0x09, + 0x51, 0x36, 0xec, 0xf1, 0xb5, 0xb0, 0x16, 0xfa, 0x76, 0x59, 0x8c, 0x60, 0x31, 0xee, 0x82, 0x86, + 0x89, 0x09, 0x78, 0x1e, 0xc9, 0xc4, 0x04, 0xbd, 0x39, 0x14, 0x23, 0xe8, 0x89, 0xe7, 0xc6, 0xd9, + 0xbd, 0x9b, 0xd1, 0xb5, 0xf1, 0xcf, 0xcc, 0xa8, 0xf0, 0xeb, 0xd3, 0xbc, 0x45, 0x13, 0x23, 0xa8, + 0x0b, 0x6b, 0xa1, 0x79, 0x1f, 0xba, 0x31, 0xe9, 0xc5, 0x12, 0x1d, 0xeb, 0xe6, 0x74, 0x0f, 0x9b, + 0xc4, 0x08, 0xea, 0x83, 0x10, 0x9e, 0x94, 0xa0, 0x9b, 0x13, 0x9f, 0xf1, 0xd0, 0xf1, 0x5e, 0x98, + 0xf2, 0xb9, 0x8f, 0x18, 0x41, 0x3b, 0x90, 0x71, 0xbd, 0x29, 0x41, 0xab, 0xa3, 0xaf, 0x4c, 0xa8, + 0xc8, 0x6c, 0xd8, 0xf3, 0x13, 0x2a, 0xc3, 0xf5, 0x9a, 0x81, 0xc9, 0x18, 0x7d, 0x7b, 0xc1, 0x64, + 0x04, 0x3c, 0x7c, 0x10, 0x23, 0x48, 0x86, 0x4b, 0xbe, 0x9c, 0x01, 0xad, 0x07, 0x3f, 0x14, 0xa0, + 0xb2, 0x36, 0xc6, 0xbd, 0x22, 0xf0, 0xab, 0xcd, 0x77, 0xa4, 0x3f, 0xa2, 0xb6, 0xe0, 0xbb, 0x86, + 0x11, 0xb5, 0x85, 0xdc, 0x0c, 0x88, 0x91, 0xed, 0x1f, 0xc4, 0x20, 0x8e, 0xdd, 0x08, 0x6a, 0xb0, + 0x1b, 0x14, 0x8f, 0x95, 0x5c, 0x1e, 0x7b, 0x75, 0x2b, 0x5c, 0x19, 0x7f, 0xbd, 0x28, 0x46, 0xd0, + 0x57, 0x61, 0x31, 0x20, 0x6a, 0xa1, 0xcd, 0xf0, 0xdb, 0x33, 0x2a, 0x79, 0x6b, 0xd2, 0xf5, 0x9a, + 0x18, 0x41, 0xaf, 0x41, 0xda, 0xf1, 0x81, 0x68, 0xd9, 0x7f, 0x87, 0x45, 0xe5, 0xac, 0x04, 0x5f, + 0x6d, 0xd1, 0xde, 0x4e, 0xb8, 0x60, 0xbd, 0xfd, 0xd7, 0x4f, 0xac, 0xf7, 0xc8, 0x85, 0xd1, 0x70, + 0x5d, 0x7e, 0xf5, 0x6c, 0x86, 0xdf, 0xc5, 0xf8, 0xd7, 0x15, 0xaa, 0x92, 0xc7, 0x49, 0xf2, 0x57, + 0xaf, 0x2f, 0xfd, 0x3f, 0x00, 0x00, 0xff, 0xff, 0xe1, 0xf5, 0xe1, 0x31, 0xf7, 0x35, 0x00, 0x00, } diff --git a/spec.md b/spec.md index e55558db..0aac7892 100644 --- a/spec.md +++ b/spec.md @@ -543,31 +543,9 @@ message VolumeInfo { // Contains identity information for the created volume. This field is // REQUIRED. The identity information will be used by the CO in - // subsequent calls to refer to the provisioned volume. - VolumeHandle handle = 2; -} - -// VolumeHandle objects are generated by Plugin implementations to -// serve two purposes: first, to efficiently identify a volume known -// to the Plugin implementation; second, to capture additional, opaque, -// possibly sensitive information associated with a volume. It SHALL -// NOT change over the lifetime of the volume and MAY be safely cached -// by the CO. -// Since this object will be passed around by the CO, it is RECOMMENDED -// that each Plugin keeps the information herein as small as possible. -// The total bytes of a serialized VolumeHandle must be less than 1 MiB. -message VolumeHandle { - // ID is the identity of the provisioned volume specified by the - // Plugin. This field is REQUIRED. - // This information SHALL NOT be considered sensitive such that, for - // example, the CO MAY generate log messages that include this data. - string id = 1; - - // Metadata captures additional, possibly sensitive, information about - // a volume in the form of key-value pairs. This field is OPTIONAL. - // Since this field MAY contain sensitive information, the CO MUST NOT - // leak this information to untrusted entities. - map metadata = 2; + // subsequent calls to refer to the provisioned volume. This field + // should not exceed 1MiB. + string id = 2; } // A standard way to encode credential data. The total bytes of the @@ -600,9 +578,9 @@ message DeleteVolumeRequest { // The API version assumed by the CO. This field is REQUIRED. Version version = 1; - // The handle of the volume to be deprovisioned. + // The ID of the volume to be deprovisioned. // This field is REQUIRED. - VolumeHandle volume_handle = 2; + string volume_id = 2; // End user credentials used to authenticate/authorize volume deletion // request. @@ -638,9 +616,9 @@ message ControllerPublishVolumeRequest { // The API version assumed by the CO. This field is REQUIRED. Version version = 1; - // The handle of the volume to be used on a node. + // The ID of the volume to be used on a node. // This field is REQUIRED. - VolumeHandle volume_handle = 2; + string volume_id = 2; // The ID of the node. This field is OPTIONAL. The CO SHALL set (or // clear) this field to match the `NodeID` returned by `GetNodeID`. @@ -704,8 +682,8 @@ message ControllerUnpublishVolumeRequest { // The API version assumed by the CO. This field is REQUIRED. Version version = 1; - // The handle of the volume. This field is REQUIRED. - VolumeHandle volume_handle = 2; + // The ID of the volume. This field is REQUIRED. + string volume_id = 2; // The ID of the node. This field is OPTIONAL. The CO SHALL set (or // clear) this field to match the `NodeID` returned by `GetNodeID`. @@ -747,9 +725,8 @@ message ValidateVolumeCapabilitiesRequest { // The API version assumed by the CO. This is a REQUIRED field. Version version = 1; - // The information about the volume to check. This is a REQUIRED - // field. - VolumeInfo volume_info = 2; + // The ID of the volume to check. This field is REQUIRED. + string volume_id = 2; // The capabilities that the CO wants to check for the volume. This // call SHALL return "supported" only if all the volume capabilities @@ -953,8 +930,8 @@ message NodePublishVolumeRequest { // The API version assumed by the CO. This is a REQUIRED field. Version version = 1; - // The handle of the volume to publish. This field is REQUIRED. - VolumeHandle volume_handle = 2; + // The ID of the volume to publish. This field is REQUIRED. + string volume_id = 2; // The CO SHALL set this field to the value returned by // `ControllerPublishVolume` if the corresponding Controller Plugin @@ -1012,8 +989,8 @@ message NodeUnpublishVolumeRequest { // The API version assumed by the CO. This is a REQUIRED field. Version version = 1; - // The handle of the volume. This field is REQUIRED. - VolumeHandle volume_handle = 2; + // The ID of the volume. This field is REQUIRED. + string volume_id = 2; // The path at which the volume was published. It MUST be an absolute // path in the root filesystem of the process serving this request. @@ -1318,16 +1295,16 @@ message Error { // exponential back off. OPERATION_PENDING_FOR_VOLUME = 2; - // Indicates that the specified `VolumeHandle` is not allowed or + // Indicates that the specified volume ID is not allowed or // understood by the Plugin. More human-readable information MAY // be provided in the `error_description` field. // - // Recovery behavior: Caller MUST fix the `VolumeHandle` before + // Recovery behavior: Caller MUST fix the volume ID before // retrying. - INVALID_VOLUME_HANDLE = 3; + INVALID_VOLUME_ID = 3; // Indicates that a volume corresponding to the specified - // `VolumeHandle` does not exist. + // volume ID does not exist. // // Recovery behavior: Caller SHOULD assume the `DeleteVolume` call // succeeded. @@ -1378,24 +1355,24 @@ message Error { // exponential back off. OPERATION_PENDING_FOR_VOLUME = 2; - // Indicates that the specified `VolumeHandle` is not allowed or + // Indicates that the specified volume ID is not allowed or // understood by the Plugin. More human-readable information MAY // be provided in the `error_description` field. // - // Recovery behavior: Caller MUST fix the `VolumeHandle` before + // Recovery behavior: Caller MUST fix the volume ID before // retrying. - INVALID_VOLUME_HANDLE = 3; + INVALID_VOLUME_ID = 3; // Indicates that a volume corresponding to the specified - // `VolumeHandle` does not exist. + // volume ID does not exist. // - // Recovery behavior: Caller SHOULD verify that the `VolumeHandle` + // Recovery behavior: Caller SHOULD verify that the volume ID // is correct and that the volume is accessible and has not been // deleted before retrying with exponential back off. VOLUME_DOES_NOT_EXIST = 4; // Indicates that a volume corresponding to the specified - // `VolumeHandle` is already attached to another node and does not + // volume ID is already attached to another node and does not // support multi-node attach. If this error code is returned, the // Plugin MUST also specify the `node_id` of the node the volume // is already attached to. @@ -1415,7 +1392,7 @@ message Error { NODE_DOES_NOT_EXIST = 6; // Indicates that a volume corresponding to the specified - // `VolumeHandle` is already attached to the maximum supported + // volume ID is already attached to the maximum supported // number of nodes and therefore this operation can not be // completed until the volume is detached from at least one of the // existing nodes. When this error code is returned, the Plugin @@ -1490,18 +1467,18 @@ message Error { // exponential back off. OPERATION_PENDING_FOR_VOLUME = 2; - // Indicates that the specified `VolumeHandle` is not allowed or + // Indicates that the specified volume ID is not allowed or // understood by the Plugin. More human-readable information MAY // be provided in the `error_description` field. // - // Recovery behavior: Caller MUST fix the `VolumeHandle` before + // Recovery behavior: Caller MUST fix the volume ID before // retrying. - INVALID_VOLUME_HANDLE = 3; + INVALID_VOLUME_ID = 3; // Indicates that a volume corresponding to the specified - // `VolumeHandle` does not exist. + // volume ID does not exist. // - // Recovery behavior: Caller SHOULD verify that the `VolumeHandle` + // Recovery behavior: Caller SHOULD verify that the volume ID // is correct and that the volume is accessible and has not been // deleted before retrying with exponential back off. VOLUME_DOES_NOT_EXIST = 4; @@ -1624,9 +1601,9 @@ message Error { OPERATION_PENDING_FOR_VOLUME = 1; // Indicates that a volume corresponding to the specified - // `VolumeHandle` does not exist. + // volume ID does not exist. // - // Recovery behavior: Caller SHOULD verify that the `VolumeHandle` + // Recovery behavior: Caller SHOULD verify that the volume ID // is correct and that the volume is accessible and has not been // deleted before retrying with exponential back off. VOLUME_DOES_NOT_EXIST = 2; @@ -1636,13 +1613,13 @@ message Error { UNSUPPORTED_FS_TYPE = 5; MOUNT_ERROR = 6; - // Indicates that the specified `VolumeHandle` is not allowed or + // Indicates that the specified volume ID is not allowed or // understood by the Plugin. More human-readable information MAY // be provided in the `error_description` field. // - // Recovery behavior: Caller MUST fix the `VolumeHandle` before + // Recovery behavior: Caller MUST fix the volume ID before // retrying. - INVALID_VOLUME_HANDLE = 7; + INVALID_VOLUME_ID = 7; } NodePublishVolumeErrorCode error_code = 1; @@ -1678,22 +1655,22 @@ message Error { OPERATION_PENDING_FOR_VOLUME = 1; // Indicates that a volume corresponding to the specified - // `VolumeHandle` does not exist. + // volume ID does not exist. // - // Recovery behavior: Caller SHOULD verify that the `VolumeHandle` + // Recovery behavior: Caller SHOULD verify that the volume ID // is correct and that the volume is accessible and has not been // deleted before retrying with exponential back off. VOLUME_DOES_NOT_EXIST = 2; UNMOUNT_ERROR = 3; - // Indicates that the specified `VolumeHandle` is not allowed or + // Indicates that the specified volume ID is not allowed or // understood by the Plugin. More human-readable information MAY // be provided in the `error_description` field. // - // Recovery behavior: Caller MUST fix the `VolumeHandle` before + // Recovery behavior: Caller MUST fix the volume ID before // retrying. - INVALID_VOLUME_HANDLE = 4; + INVALID_VOLUME_ID = 4; } NodeUnpublishVolumeErrorCode error_code = 1; @@ -1860,7 +1837,7 @@ Supervised plugins MAY be isolated and/or resource-bounded. * Logging configuration flags and/or variables, including working sample configurations. * Default log destination(s) (where do the logs go if no configuration is specified?) * Log lifecycle management ownership and related guidance (size limits, rate limits, rolling, archiving, expunging, etc.) applicable to the logging mechanism embedded within the Plugin. -* Plugins SHOULD NOT write potentially sensitive data to logs (e.g. `Credentials`, `VolumeHandle.Metadata`). +* Plugins SHOULD NOT write potentially sensitive data to logs (e.g. `Credentials`). ##### Available Services From 7cb087c775d21a0c8e355d648a3be6d37c554569 Mon Sep 17 00:00:00 2001 From: James DeFelice Date: Thu, 19 Oct 2017 22:09:27 +0000 Subject: [PATCH 2/2] spec: add Attributes to VolumeInfo, and to publish/validation requests. --- csi.proto | 26 ++- lib/go/csi/csi.pb.go | 467 ++++++++++++++++++++++++------------------- spec.md | 26 ++- 3 files changed, 311 insertions(+), 208 deletions(-) diff --git a/csi.proto b/csi.proto index 3fc8acc2..81b3d826 100644 --- a/csi.proto +++ b/csi.proto @@ -160,7 +160,7 @@ message CreateVolumeResponse { message Result { // Contains all attributes of the newly created volume that are // relevant to the CO along with information required by the Plugin - // to uniquely identifying the volume. This field is REQUIRED. + // to uniquely identify the volume. This field is REQUIRED. VolumeInfo volume_info = 1; } @@ -251,6 +251,16 @@ message VolumeInfo { // subsequent calls to refer to the provisioned volume. This field // should not exceed 1MiB. string id = 2; + + // Attributes reflect static properties of a volume and MUST be passed + // to volume validation and publishing calls. + // Attributes SHALL be opaque to a CO. Attributes SHALL NOT be mutable + // and SHALL be safe for the CO to cache. Attributes SHOULD NOT + // contain sensitive information. Attributes MAY NOT uniquely identify + // a volume. A volume uniquely identified by `id` SHALL always report + // the same attributes. This field is OPTIONAL and when present MUST + // be passed to volume validation and publishing calls. + map attributes = 3; } // A standard way to encode credential data. The total bytes of the @@ -320,6 +330,11 @@ message ControllerPublishVolumeRequest { // publish request. // This field is OPTIONAL. Credentials user_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 + // by `volume_id`. + map volume_attributes = 7; } message ControllerPublishVolumeResponse { @@ -392,6 +407,10 @@ message ValidateVolumeCapabilitiesRequest { // call SHALL return "supported" only if all the volume capabilities // specified below are supported. This field is REQUIRED. repeated VolumeCapability volume_capabilities = 3; + + // Attributes of the volume to check. This field is OPTIONAL and MUST + // match the attributes of the VolumeInfo identified by `volume_id`. + map volume_attributes = 4; } message ValidateVolumeCapabilitiesResponse { @@ -579,6 +598,11 @@ message NodePublishVolumeRequest { // End user credentials used to authenticate/authorize node publish // request. This field is OPTIONAL. Credentials user_credentials = 7; + + // Attributes of the volume to publish. This field is OPTIONAL and + // MUST match the attributes of the VolumeInfo identified by + // `volume_id`. + map volume_attributes = 8; } message NodePublishVolumeResponse { diff --git a/lib/go/csi/csi.pb.go b/lib/go/csi/csi.pb.go index 282ef067..0cf9eb27 100644 --- a/lib/go/csi/csi.pb.go +++ b/lib/go/csi/csi.pb.go @@ -1493,7 +1493,7 @@ func _CreateVolumeResponse_OneofSizer(msg proto.Message) (n int) { type CreateVolumeResponse_Result struct { // Contains all attributes of the newly created volume that are // relevant to the CO along with information required by the Plugin - // to uniquely identifying the volume. This field is REQUIRED. + // to uniquely identify the volume. This field is REQUIRED. VolumeInfo *VolumeInfo `protobuf:"bytes,1,opt,name=volume_info,json=volumeInfo" json:"volume_info,omitempty"` } @@ -1740,6 +1740,15 @@ type VolumeInfo struct { // subsequent calls to refer to the provisioned volume. This field // should not exceed 1MiB. Id string `protobuf:"bytes,2,opt,name=id" json:"id,omitempty"` + // Attributes reflect static properties of a volume and MUST be passed + // to volume validation and publishing calls. + // Attributes SHALL be opaque to a CO. Attributes SHALL NOT be mutable + // and SHALL be safe for the CO to cache. Attributes SHOULD NOT + // contain sensitive information. Attributes MAY NOT uniquely identify + // a volume. A volume uniquely identified by `id` SHALL always report + // the same attributes. This field is OPTIONAL and when present MUST + // be passed to volume validation and publishing calls. + Attributes map[string]string `protobuf:"bytes,3,rep,name=attributes" json:"attributes,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` } func (m *VolumeInfo) Reset() { *m = VolumeInfo{} } @@ -1761,6 +1770,13 @@ func (m *VolumeInfo) GetId() string { return "" } +func (m *VolumeInfo) GetAttributes() map[string]string { + if m != nil { + return m.Attributes + } + return nil +} + // A standard way to encode credential data. The total bytes of the // values in the Data field must be less than 1 Mebibyte. type Credentials struct { @@ -1982,6 +1998,10 @@ type ControllerPublishVolumeRequest struct { // publish request. // This field is OPTIONAL. UserCredentials *Credentials `protobuf:"bytes,6,opt,name=user_credentials,json=userCredentials" json:"user_credentials,omitempty"` + // 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`. + VolumeAttributes map[string]string `protobuf:"bytes,7,rep,name=volume_attributes,json=volumeAttributes" json:"volume_attributes,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` } func (m *ControllerPublishVolumeRequest) Reset() { *m = ControllerPublishVolumeRequest{} } @@ -2031,6 +2051,13 @@ func (m *ControllerPublishVolumeRequest) GetUserCredentials() *Credentials { return nil } +func (m *ControllerPublishVolumeRequest) GetVolumeAttributes() map[string]string { + if m != nil { + return m.VolumeAttributes + } + return nil +} + type ControllerPublishVolumeResponse struct { // One of the following fields MUST be specified. // @@ -2405,6 +2432,9 @@ type ValidateVolumeCapabilitiesRequest struct { // call SHALL return "supported" only if all the volume capabilities // specified below are supported. This field is REQUIRED. VolumeCapabilities []*VolumeCapability `protobuf:"bytes,3,rep,name=volume_capabilities,json=volumeCapabilities" json:"volume_capabilities,omitempty"` + // Attributes of the volume to check. This field is OPTIONAL and MUST + // match the attributes of the VolumeInfo identified by `volume_id`. + VolumeAttributes map[string]string `protobuf:"bytes,4,rep,name=volume_attributes,json=volumeAttributes" json:"volume_attributes,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` } func (m *ValidateVolumeCapabilitiesRequest) Reset() { *m = ValidateVolumeCapabilitiesRequest{} } @@ -2435,6 +2465,13 @@ func (m *ValidateVolumeCapabilitiesRequest) GetVolumeCapabilities() []*VolumeCap return nil } +func (m *ValidateVolumeCapabilitiesRequest) GetVolumeAttributes() map[string]string { + if m != nil { + return m.VolumeAttributes + } + return nil +} + type ValidateVolumeCapabilitiesResponse struct { // One of the following fields MUST be specified. // @@ -3451,6 +3488,10 @@ type NodePublishVolumeRequest struct { // End user credentials used to authenticate/authorize node publish // request. This field is OPTIONAL. UserCredentials *Credentials `protobuf:"bytes,7,opt,name=user_credentials,json=userCredentials" json:"user_credentials,omitempty"` + // Attributes of the volume to publish. This field is OPTIONAL and + // MUST match the attributes of the VolumeInfo identified by + // `volume_id`. + VolumeAttributes map[string]string `protobuf:"bytes,8,rep,name=volume_attributes,json=volumeAttributes" json:"volume_attributes,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` } func (m *NodePublishVolumeRequest) Reset() { *m = NodePublishVolumeRequest{} } @@ -3507,6 +3548,13 @@ func (m *NodePublishVolumeRequest) GetUserCredentials() *Credentials { return nil } +func (m *NodePublishVolumeRequest) GetVolumeAttributes() map[string]string { + if m != nil { + return m.VolumeAttributes + } + return nil +} + type NodePublishVolumeResponse struct { // One of the following fields MUST be specified. // @@ -5852,209 +5900,216 @@ var _Node_serviceDesc = grpc.ServiceDesc{ func init() { proto.RegisterFile("csi.proto", fileDescriptor0) } var fileDescriptor0 = []byte{ - // 3264 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5b, 0x4d, 0x6c, 0x23, 0x49, - 0x15, 0x76, 0xfb, 0x37, 0x7e, 0x9e, 0xcc, 0x74, 0x2a, 0x7f, 0x4e, 0x27, 0x33, 0xc9, 0xf4, 0xfc, - 0xec, 0x2c, 0xcb, 0x7a, 0x21, 0x20, 0xcd, 0xce, 0xcc, 0xfe, 0x39, 0x76, 0xc7, 0x31, 0xe3, 0xb4, - 0xbd, 0x6d, 0x7b, 0x66, 0x07, 0xc4, 0xb6, 0x7a, 0xec, 0x9e, 0x8c, 0x19, 0xc7, 0xf6, 0x76, 0x77, - 0xa2, 0xcd, 0x15, 0xd0, 0x4a, 0x48, 0x08, 0x10, 0x1c, 0x56, 0xe2, 0x00, 0x87, 0x45, 0x62, 0xb9, - 0x21, 0xad, 0x40, 0x42, 0x08, 0x21, 0x71, 0x03, 0xc4, 0x01, 0x09, 0x81, 0x84, 0xc4, 0x81, 0xe3, - 0x72, 0xe2, 0xca, 0x0d, 0xd5, 0x4f, 0xb7, 0xbb, 0xdb, 0xdd, 0xb6, 0x13, 0x67, 0xb4, 0x37, 0xf7, - 0x7b, 0x55, 0xaf, 0xaa, 0xbe, 0xf7, 0xea, 0xfd, 0x54, 0x95, 0x21, 0xdd, 0x32, 0x3b, 0xb9, 0x81, - 0xd1, 0xb7, 0xfa, 0x28, 0xd6, 0x32, 0x3b, 0xe2, 0x65, 0x58, 0x2f, 0xe9, 0x56, 0xfd, 0x68, 0x30, - 0xe8, 0x1b, 0x96, 0xde, 0x7e, 0xa0, 0x1b, 0x66, 0xa7, 0xdf, 0x33, 0x15, 0xfd, 0xbd, 0x23, 0xdd, - 0xb4, 0xc4, 0xbf, 0x73, 0xb0, 0x11, 0xcc, 0x37, 0x07, 0xfd, 0x9e, 0xa9, 0xa3, 0x1d, 0x48, 0x1a, - 0xba, 0x79, 0xd4, 0xb5, 0xb2, 0xdc, 0x16, 0x77, 0x2b, 0xb3, 0x7d, 0x2b, 0x87, 0x07, 0x18, 0xd7, - 0x25, 0xa7, 0x90, 0xf6, 0x7b, 0x11, 0x85, 0xf5, 0x44, 0x22, 0x24, 0x74, 0xc3, 0xe8, 0x1b, 0xd9, - 0x28, 0x11, 0x01, 0x44, 0x84, 0x84, 0x29, 0x7b, 0x11, 0x85, 0xb2, 0x04, 0x09, 0x92, 0xb4, 0x1f, - 0xba, 0x07, 0xc8, 0xb4, 0x65, 0xab, 0xc7, 0x4c, 0x78, 0x96, 0xdb, 0x8a, 0xdd, 0xca, 0x6c, 0x5f, - 0x20, 0x5d, 0xd9, 0x88, 0xca, 0x82, 0xe9, 0x9f, 0xc3, 0x4e, 0x0a, 0x12, 0x86, 0x3e, 0xe8, 0x9e, - 0x88, 0xf7, 0x21, 0xc5, 0x88, 0x68, 0x09, 0x12, 0x87, 0xda, 0x37, 0xfa, 0x06, 0x59, 0xc1, 0xbc, - 0x42, 0x3f, 0x08, 0xb5, 0xd3, 0x63, 0x93, 0xc2, 0x54, 0xfc, 0x81, 0xa9, 0x03, 0xcd, 0x6a, 0x3d, - 0xcd, 0xc6, 0x28, 0x95, 0x7c, 0x88, 0x6f, 0xc0, 0x52, 0x49, 0xb7, 0x6a, 0xdd, 0xa3, 0x83, 0x4e, - 0xaf, 0xdc, 0x7b, 0xd2, 0x67, 0xe8, 0xa1, 0x9b, 0x90, 0x62, 0x13, 0x64, 0xe8, 0x78, 0xe7, 0x67, - 0x33, 0xc5, 0xbf, 0x46, 0x61, 0xd9, 0x27, 0x80, 0xc1, 0x7b, 0xcf, 0x07, 0xef, 0x55, 0x1b, 0xde, - 0xd1, 0xb6, 0x67, 0xc3, 0xf5, 0x2f, 0x9c, 0x03, 0x2c, 0x82, 0x78, 0x4f, 0x3b, 0xd4, 0xc9, 0x48, - 0x69, 0x85, 0xfc, 0x46, 0x37, 0xe0, 0xe2, 0xb1, 0xde, 0x6b, 0xf7, 0x0d, 0x1b, 0x69, 0x22, 0x2b, - 0xad, 0xcc, 0x53, 0xaa, 0x0d, 0xe1, 0x7d, 0x98, 0x3b, 0xd4, 0x7a, 0x9d, 0x27, 0xba, 0x69, 0x65, - 0x63, 0x44, 0x13, 0xaf, 0x4c, 0x9c, 0x68, 0x6e, 0x9f, 0xf5, 0x90, 0x7a, 0x96, 0x71, 0xa2, 0x38, - 0x02, 0x84, 0x7b, 0x30, 0xef, 0x61, 0x21, 0x1e, 0x62, 0xcf, 0xf4, 0x13, 0x36, 0x2f, 0xfc, 0x13, - 0xab, 0xe1, 0x58, 0xeb, 0x1e, 0xe9, 0x6c, 0x36, 0xf4, 0xe3, 0x6e, 0xf4, 0x55, 0x6e, 0xa8, 0xe0, - 0x1f, 0xc7, 0x60, 0xb1, 0x60, 0xe8, 0x9a, 0xa5, 0x3f, 0xe8, 0x77, 0x8f, 0x0e, 0xf5, 0x53, 0xea, - 0xc4, 0x41, 0x23, 0xea, 0x42, 0xe3, 0x0e, 0x5c, 0x6c, 0x69, 0x03, 0xad, 0xd5, 0xb1, 0x4e, 0x54, - 0x43, 0xeb, 0x1d, 0xe8, 0xc4, 0x0c, 0x32, 0xdb, 0x88, 0x88, 0x28, 0x30, 0x96, 0x82, 0x39, 0xca, - 0x7c, 0xcb, 0xfd, 0x89, 0x76, 0x61, 0xf1, 0x98, 0xcc, 0x43, 0xc5, 0xf4, 0xc7, 0x9d, 0x6e, 0xc7, - 0xea, 0xe8, 0x66, 0x36, 0x4e, 0xc0, 0x5a, 0xa6, 0x53, 0x20, 0xfc, 0x82, 0xcd, 0x3e, 0x51, 0xd0, - 0xb1, 0x97, 0xd2, 0xd1, 0x4d, 0xb4, 0x07, 0x30, 0xd0, 0x0c, 0xed, 0x50, 0xb7, 0x74, 0xc3, 0xcc, - 0x26, 0x48, 0x77, 0xba, 0xe7, 0x02, 0x16, 0x9b, 0xab, 0x39, 0x4d, 0x29, 0xc8, 0xae, 0xbe, 0xe8, - 0x1e, 0xf0, 0x47, 0xa6, 0x6e, 0xa8, 0x2d, 0x43, 0x6f, 0xeb, 0x3d, 0xab, 0xa3, 0x75, 0xcd, 0x6c, - 0x92, 0x2c, 0x87, 0xb7, 0xe5, 0xd9, 0x74, 0xe5, 0x12, 0x6e, 0xe9, 0x22, 0x08, 0xaf, 0xc3, 0x25, - 0x9f, 0xec, 0xd3, 0x68, 0x49, 0xfc, 0x2d, 0x07, 0x4b, 0xde, 0xf9, 0x32, 0x7b, 0xbf, 0xeb, 0xb3, - 0xf7, 0xad, 0x80, 0xa5, 0xcd, 0x62, 0xee, 0x77, 0x1d, 0x6b, 0xff, 0x02, 0x64, 0x98, 0x42, 0x3a, - 0xbd, 0x27, 0x7d, 0x36, 0xdc, 0x25, 0x97, 0x22, 0x88, 0xc9, 0xc2, 0xb1, 0xf3, 0x7b, 0x68, 0x5a, - 0x3f, 0x89, 0x03, 0xef, 0x57, 0x16, 0xba, 0x03, 0x89, 0xc7, 0xdd, 0x7e, 0xeb, 0x99, 0x67, 0xa3, - 0xfa, 0x5b, 0xe5, 0x76, 0x70, 0x13, 0x4a, 0xc5, 0x93, 0x22, 0x3d, 0x70, 0xd7, 0xc3, 0xfe, 0x51, - 0xcf, 0x62, 0x13, 0x0f, 0xe9, 0xba, 0x8f, 0x9b, 0x0c, 0xbb, 0x92, 0x1e, 0x28, 0x0f, 0x19, 0xad, - 0xd5, 0xd2, 0x4d, 0x53, 0x3d, 0xec, 0xb7, 0x6d, 0x73, 0xdc, 0x0a, 0x16, 0x90, 0x27, 0x0d, 0xf7, - 0xfb, 0x6d, 0x5d, 0x01, 0xcd, 0xf9, 0x2d, 0xcc, 0x43, 0xc6, 0x35, 0x2b, 0xa1, 0x04, 0x19, 0xd7, - 0x48, 0x68, 0x15, 0x52, 0x4f, 0x4c, 0xd5, 0x3a, 0x19, 0xd8, 0x7e, 0x21, 0xf9, 0xc4, 0x6c, 0x9c, - 0x0c, 0x74, 0xb4, 0x09, 0x19, 0x32, 0x05, 0xf5, 0x49, 0x57, 0x3b, 0x30, 0xb3, 0xd1, 0xad, 0xd8, - 0xad, 0xb4, 0x02, 0x84, 0xb4, 0x8b, 0x29, 0xc2, 0xa7, 0x1c, 0xc0, 0x70, 0x48, 0x74, 0x07, 0xe2, - 0x64, 0x8a, 0x58, 0xca, 0xc5, 0xed, 0x1b, 0x93, 0xa6, 0x98, 0x23, 0xf3, 0x24, 0x5d, 0xc4, 0x9f, - 0x72, 0x10, 0x27, 0x32, 0x32, 0x90, 0x6a, 0xca, 0xf7, 0xe5, 0xea, 0x43, 0x99, 0x8f, 0xa0, 0x15, - 0x40, 0xf5, 0xb2, 0x5c, 0xaa, 0x48, 0xaa, 0x5c, 0x2d, 0x4a, 0xea, 0x43, 0xa5, 0xdc, 0x90, 0x14, - 0x9e, 0x43, 0xeb, 0xb0, 0xea, 0xa6, 0x2b, 0x52, 0xbe, 0x28, 0x29, 0x6a, 0x55, 0xae, 0x3c, 0xe2, - 0xa3, 0x48, 0x80, 0x95, 0xfd, 0x66, 0xa5, 0x51, 0x1e, 0xe5, 0xc5, 0xd0, 0x06, 0x64, 0x5d, 0x3c, - 0x26, 0x83, 0x89, 0x8d, 0x63, 0xb1, 0x2e, 0x2e, 0xfd, 0xc9, 0x98, 0x89, 0x9d, 0x79, 0x47, 0x0d, - 0x18, 0x29, 0xf1, 0x21, 0xcc, 0x7b, 0x9c, 0x01, 0x76, 0xa3, 0x86, 0xfe, 0xde, 0x51, 0xc7, 0xd0, - 0xdb, 0xea, 0xe3, 0x13, 0x4b, 0x37, 0x09, 0x0c, 0x71, 0x65, 0xde, 0xa6, 0xee, 0x60, 0x22, 0xc6, - 0xb4, 0xdb, 0x39, 0xec, 0x58, 0xac, 0x4d, 0x94, 0xb4, 0x01, 0x42, 0x22, 0x0d, 0xc4, 0x02, 0xc0, - 0xd0, 0x38, 0xb1, 0x54, 0xc7, 0x1d, 0x79, 0xa4, 0xda, 0x54, 0x2a, 0xf5, 0x22, 0x44, 0x3b, 0x6d, - 0xb6, 0x07, 0xa3, 0x9d, 0xb6, 0x78, 0x0c, 0x19, 0xd7, 0x56, 0x46, 0x39, 0x88, 0xb7, 0x35, 0x4b, - 0x63, 0x11, 0x54, 0xf0, 0xef, 0xfd, 0x5c, 0x51, 0xb3, 0x34, 0xea, 0x3d, 0x48, 0x3b, 0xe1, 0x36, - 0xa4, 0x1d, 0xd2, 0xa9, 0x36, 0xfd, 0x87, 0x1c, 0x2c, 0x16, 0xf5, 0xae, 0x7e, 0x56, 0x8f, 0xbc, - 0x0e, 0x69, 0x7b, 0xc7, 0xda, 0xcb, 0x99, 0x63, 0xdb, 0xb3, 0x1d, 0xe8, 0xcd, 0x62, 0x53, 0x7a, - 0x33, 0xf1, 0x3b, 0x1c, 0x2c, 0x79, 0x67, 0x36, 0xd6, 0x1d, 0x05, 0x35, 0x3d, 0x9b, 0x3b, 0x9a, - 0xb3, 0xdd, 0xd1, 0xd0, 0xb9, 0x7c, 0x1c, 0x85, 0x2b, 0x85, 0x7e, 0xcf, 0x32, 0xfa, 0xdd, 0xae, - 0x6e, 0xd4, 0x8e, 0x1e, 0x77, 0x3b, 0xe6, 0xd3, 0xe7, 0x00, 0xd8, 0x75, 0x48, 0xf5, 0xfa, 0x6d, - 0xc2, 0xa2, 0x38, 0x65, 0x88, 0x10, 0xb9, 0xdf, 0xd6, 0xcb, 0x45, 0x25, 0x89, 0x79, 0xe5, 0x36, - 0xda, 0x81, 0x05, 0x7f, 0xd8, 0x3a, 0xc9, 0xc6, 0x49, 0xfb, 0x90, 0xa0, 0xc5, 0x1f, 0xfb, 0x3d, - 0xa3, 0x00, 0x73, 0x86, 0xae, 0xb5, 0xfb, 0xbd, 0xee, 0x49, 0x36, 0xb1, 0xc5, 0xdd, 0x9a, 0x53, - 0x9c, 0xef, 0x99, 0x82, 0x90, 0xf8, 0xcf, 0x28, 0x6c, 0x86, 0x42, 0xc5, 0x34, 0x28, 0xf9, 0x34, - 0xf8, 0x12, 0x15, 0x3b, 0xbe, 0xd7, 0xd9, 0x94, 0xf9, 0x87, 0x61, 0x2a, 0x65, 0xc0, 0xe2, 0x80, - 0x0a, 0x56, 0xbd, 0x41, 0x06, 0x6f, 0xb1, 0x9d, 0x53, 0x4c, 0x21, 0xe7, 0x61, 0xe2, 0x5d, 0x4f, - 0xb7, 0xe2, 0xc2, 0xc0, 0x4f, 0x17, 0x8a, 0xb0, 0x12, 0xdc, 0xf8, 0x6c, 0xf9, 0x93, 0x05, 0x49, - 0x6a, 0x0b, 0xe8, 0x15, 0x48, 0x12, 0xbe, 0x9d, 0x64, 0xaf, 0xba, 0x0c, 0x25, 0xf7, 0x80, 0x70, - 0xe8, 0xa4, 0x58, 0x33, 0xe1, 0x0e, 0x64, 0x5c, 0xe4, 0x53, 0xf9, 0x88, 0x3f, 0x71, 0xb0, 0x35, - 0x44, 0xa6, 0xd9, 0x1b, 0x7c, 0xc6, 0xf6, 0x1f, 0x64, 0x9f, 0xf1, 0x69, 0xed, 0xf3, 0x23, 0x0e, - 0xae, 0x8e, 0x59, 0x0c, 0xb3, 0xd0, 0x92, 0xcf, 0x42, 0x5f, 0xf6, 0x99, 0x47, 0x48, 0xbf, 0x73, - 0x73, 0x38, 0xbf, 0xe4, 0xe0, 0xea, 0x03, 0xad, 0xdb, 0x69, 0x3b, 0x29, 0x96, 0x3b, 0xe1, 0x3c, - 0x57, 0xcc, 0x43, 0x92, 0xe0, 0xd8, 0x29, 0x93, 0x60, 0xf1, 0x5f, 0x1c, 0x88, 0xe3, 0xa6, 0xcc, - 0x90, 0xdd, 0xf3, 0x21, 0x9b, 0xa3, 0x23, 0x4c, 0xec, 0x78, 0x36, 0x68, 0xdf, 0x72, 0x76, 0xff, - 0x06, 0xa4, 0x9d, 0xca, 0x93, 0x0c, 0x3d, 0xa7, 0x0c, 0x09, 0x28, 0x0b, 0xa9, 0x43, 0xdd, 0x34, - 0xb5, 0x03, 0xdb, 0xfc, 0xed, 0xcf, 0xa1, 0x4a, 0xbe, 0xcd, 0x01, 0xaa, 0x74, 0x4c, 0x96, 0x83, - 0x9d, 0x5a, 0x07, 0x38, 0x35, 0xd3, 0xde, 0x57, 0xf5, 0x9e, 0x65, 0x74, 0x58, 0x1a, 0x31, 0xaf, - 0xc0, 0xa1, 0xf6, 0xbe, 0x44, 0x29, 0x38, 0x71, 0x30, 0x2d, 0xcd, 0xb0, 0x3a, 0xbd, 0x03, 0xd5, - 0xea, 0x3f, 0xd3, 0x7b, 0x64, 0x0b, 0xa4, 0x95, 0x79, 0x9b, 0xda, 0xc0, 0x44, 0xf1, 0xa3, 0x28, - 0x2c, 0x7a, 0xa6, 0xc1, 0x70, 0xbd, 0xe3, 0xc3, 0x75, 0x93, 0x4c, 0x23, 0xa0, 0xe5, 0xd9, 0x80, - 0xfc, 0x68, 0xe8, 0x47, 0xdf, 0x84, 0x94, 0xbd, 0x0a, 0xea, 0x7b, 0x6e, 0x4c, 0x18, 0x2a, 0x47, - 0x3d, 0x91, 0xdd, 0x0b, 0x5d, 0x06, 0xe8, 0xe9, 0xef, 0x5b, 0x6c, 0x95, 0x14, 0xef, 0x34, 0xa6, - 0x90, 0x15, 0x0a, 0x77, 0x20, 0x41, 0x7d, 0xd4, 0x0c, 0xd5, 0xc0, 0x77, 0xa3, 0x80, 0x4a, 0xba, - 0xe5, 0x24, 0x7c, 0xa7, 0x54, 0x56, 0xc8, 0x9e, 0x88, 0x9e, 0xb6, 0x30, 0x2c, 0x79, 0x0a, 0x43, - 0xba, 0xa5, 0x5e, 0xb0, 0x8b, 0x70, 0xdf, 0xe4, 0xc6, 0xd5, 0x85, 0xb3, 0x96, 0x76, 0xbf, 0xe6, - 0x60, 0xd1, 0x33, 0xe2, 0x58, 0xa3, 0x09, 0x68, 0x79, 0x36, 0xa3, 0xb9, 0xed, 0xd8, 0xcc, 0xcb, - 0x80, 0xb4, 0x63, 0xad, 0xd3, 0xd5, 0x1e, 0x77, 0x29, 0xa6, 0x58, 0x38, 0xcb, 0x8c, 0x17, 0x1c, - 0x8e, 0x3d, 0xea, 0x50, 0x8f, 0x6f, 0xc1, 0x8a, 0x2b, 0x26, 0x1b, 0xfd, 0xc7, 0xa7, 0x8d, 0x37, - 0xe2, 0xf7, 0x39, 0x58, 0x1d, 0x11, 0xc1, 0x96, 0xff, 0xba, 0x6f, 0xf9, 0xd7, 0xfc, 0x49, 0x80, - 0xbb, 0xf5, 0xb9, 0xf9, 0xf6, 0xaf, 0xb8, 0xa3, 0x29, 0xc3, 0xfa, 0x8c, 0x9e, 0x5d, 0xfc, 0xd4, - 0x13, 0xcd, 0x46, 0x84, 0x4d, 0x19, 0xcd, 0x42, 0xfa, 0x9d, 0x6d, 0xc5, 0xb2, 0xa3, 0xf4, 0x22, - 0x5c, 0x08, 0xd8, 0x3e, 0x5b, 0xbe, 0xc1, 0xeb, 0xba, 0x71, 0xdc, 0x69, 0xb9, 0x77, 0x92, 0xa7, - 0xd7, 0x10, 0xb7, 0x0f, 0xa3, 0xb0, 0x3e, 0xa6, 0x1b, 0x7a, 0x15, 0x62, 0xc6, 0xa0, 0xc5, 0x96, - 0x78, 0x7d, 0xd2, 0x28, 0x39, 0xa5, 0x56, 0xd8, 0x8b, 0x28, 0xb8, 0x8b, 0xf0, 0x2b, 0x0e, 0x62, - 0x4a, 0xad, 0x80, 0x5e, 0x87, 0xb8, 0x53, 0x54, 0x5f, 0xdc, 0x7e, 0x71, 0x1a, 0x11, 0x39, 0x5c, - 0x77, 0x2b, 0xa4, 0x9b, 0xd8, 0x87, 0x38, 0xa9, 0xc2, 0x3d, 0x15, 0x71, 0x16, 0x96, 0x0a, 0x8a, - 0x94, 0x6f, 0x48, 0x6a, 0x51, 0xaa, 0x48, 0x0d, 0x49, 0x7d, 0x50, 0xad, 0x34, 0xf7, 0x25, 0x9e, - 0xc3, 0xa5, 0x6d, 0xad, 0xb9, 0x53, 0x29, 0xd7, 0xf7, 0xd4, 0xa6, 0x6c, 0xff, 0x62, 0xdc, 0x28, - 0xe2, 0xe1, 0x42, 0xa5, 0x5c, 0x6f, 0x30, 0x42, 0x9d, 0x8f, 0x61, 0x4a, 0x49, 0x6a, 0xa8, 0x85, - 0x7c, 0x2d, 0x5f, 0x28, 0x37, 0x1e, 0xf1, 0xf1, 0x9d, 0x24, 0x9d, 0xaf, 0xf8, 0xc7, 0x18, 0x64, - 0x71, 0x8e, 0xf4, 0xfc, 0x0a, 0x93, 0x76, 0x70, 0xee, 0x4c, 0x3d, 0xda, 0x97, 0x9d, 0x24, 0x2d, - 0x68, 0x02, 0xd3, 0x67, 0xcb, 0x38, 0x46, 0x5a, 0x9a, 0x71, 0xa0, 0x5b, 0xea, 0x40, 0xb3, 0x9e, - 0x92, 0x9c, 0x2e, 0xad, 0x00, 0x25, 0xd5, 0x34, 0xeb, 0x69, 0x70, 0xe5, 0x93, 0x38, 0x7b, 0xe5, - 0x93, 0x9c, 0xa2, 0xf2, 0x49, 0x4d, 0x7b, 0xfc, 0x76, 0x2e, 0xb9, 0xbe, 0xf8, 0x23, 0x0e, 0xd6, - 0x02, 0xa0, 0x64, 0x3b, 0xf9, 0x4d, 0xdf, 0x4e, 0xbe, 0x11, 0x06, 0xfd, 0x39, 0xfb, 0xac, 0xdf, - 0x73, 0x20, 0xe0, 0x51, 0x9e, 0x67, 0xf2, 0xef, 0xd3, 0x7e, 0x6c, 0x44, 0xfb, 0x33, 0xe5, 0xfd, - 0x1f, 0x72, 0xb0, 0x1e, 0xb8, 0x02, 0x86, 0x6c, 0xde, 0x87, 0xec, 0x0b, 0x0e, 0xb2, 0xcf, 0x3b, - 0xd7, 0xbf, 0x0b, 0x7c, 0x49, 0xb7, 0x58, 0x8d, 0x73, 0x4a, 0xff, 0xff, 0x0b, 0x0e, 0x16, 0x5c, - 0x9d, 0xd9, 0x5a, 0x6e, 0xfb, 0xd6, 0x72, 0xd9, 0x0e, 0xeb, 0xde, 0x76, 0x67, 0x5b, 0x41, 0xce, - 0xf1, 0xef, 0xae, 0x6a, 0x8d, 0x0b, 0xad, 0xd6, 0x3c, 0xeb, 0x24, 0x86, 0x7a, 0x96, 0x28, 0xfe, - 0x2d, 0x0e, 0x16, 0x5c, 0x9d, 0xc7, 0xae, 0x73, 0xa4, 0xdd, 0xb9, 0x69, 0xaa, 0x48, 0x37, 0xc1, - 0x8c, 0x31, 0xfb, 0x1f, 0xcc, 0x12, 0xc3, 0xa2, 0x75, 0xb8, 0x25, 0x9e, 0x6b, 0x9c, 0xde, 0x73, - 0xf4, 0xf8, 0x46, 0x60, 0x9c, 0x16, 0x9c, 0x61, 0xa7, 0x8e, 0xd0, 0x1f, 0x73, 0xb0, 0x1c, 0xd8, - 0x01, 0x6d, 0xbb, 0x63, 0xf3, 0x95, 0x70, 0xc9, 0xee, 0xa8, 0x5c, 0xa7, 0x41, 0xf9, 0xb6, 0x27, - 0x28, 0x5f, 0x1b, 0xdf, 0xd7, 0x1d, 0x8e, 0x17, 0x03, 0xc2, 0xb1, 0x13, 0x32, 0x3f, 0xb8, 0x09, - 0x09, 0x02, 0x08, 0x7a, 0x03, 0xe6, 0x0f, 0xf4, 0x9e, 0x6e, 0x68, 0x5d, 0x95, 0x62, 0x46, 0x27, - 0xb9, 0x3a, 0xc4, 0x2c, 0x57, 0xa2, 0x7c, 0x1b, 0xc0, 0x0b, 0x07, 0xae, 0x6f, 0x24, 0xc3, 0x62, - 0x8b, 0x5c, 0x85, 0xd8, 0x91, 0xd1, 0x8d, 0xfc, 0x86, 0x4b, 0x8a, 0xfb, 0xc2, 0xc4, 0x16, 0xb5, - 0xd0, 0xf2, 0x13, 0xb1, 0xbc, 0x36, 0x39, 0xcb, 0xf4, 0xca, 0x8b, 0x8d, 0xc8, 0x73, 0x9f, 0x78, - 0x3a, 0xf2, 0xda, 0x7e, 0x22, 0x1a, 0xc0, 0x66, 0xcb, 0xc9, 0x61, 0x54, 0x5f, 0x14, 0xa7, 0xb2, - 0xe3, 0x2e, 0x3b, 0x63, 0x73, 0x0d, 0x3e, 0x08, 0xb3, 0x87, 0xd9, 0x68, 0x8d, 0xe1, 0xa3, 0x63, - 0xb8, 0xea, 0x1a, 0xf1, 0xa8, 0x17, 0x38, 0x26, 0x8d, 0xda, 0x2f, 0x06, 0x8e, 0xe9, 0xf3, 0xb8, - 0xf6, 0xa8, 0x57, 0x5a, 0x63, 0x5b, 0xa0, 0x13, 0x10, 0x8f, 0xd9, 0x39, 0x82, 0x1a, 0x50, 0xbe, - 0xb1, 0x81, 0xe9, 0x49, 0xe6, 0xe7, 0x5c, 0x03, 0x87, 0x1f, 0x3e, 0xd8, 0x23, 0x6f, 0x1e, 0x8f, - 0x6f, 0x82, 0x1e, 0xc2, 0x8a, 0x1b, 0x64, 0xec, 0x7d, 0xd8, 0x70, 0x29, 0x57, 0x61, 0x35, 0x82, - 0x2d, 0x6e, 0x67, 0x8f, 0xb1, 0xd4, 0x0a, 0xa0, 0xa3, 0x77, 0x61, 0x8d, 0xf8, 0xd8, 0x40, 0x0c, - 0xe7, 0x5c, 0x57, 0x53, 0x54, 0xf6, 0x48, 0x26, 0x60, 0x4b, 0x5f, 0xe9, 0x05, 0x72, 0x50, 0x1b, - 0xd6, 0x89, 0xfc, 0x10, 0x2d, 0xa5, 0x5d, 0x75, 0xd1, 0x70, 0x84, 0x10, 0xfd, 0x64, 0x7b, 0x21, - 0x3c, 0x24, 0x01, 0x4f, 0x57, 0xe1, 0x02, 0x06, 0x88, 0xe8, 0x35, 0xff, 0xe4, 0xdd, 0x90, 0x5c, - 0xec, 0x79, 0x28, 0x68, 0x17, 0x16, 0x70, 0x7a, 0xc0, 0x82, 0x0e, 0x93, 0x93, 0x19, 0x91, 0xe3, - 0x04, 0x3a, 0x47, 0xce, 0x01, 0xa3, 0xb4, 0x09, 0x45, 0xf8, 0x59, 0x14, 0x2e, 0xb8, 0xf7, 0x34, - 0xae, 0xd3, 0x89, 0x30, 0xb5, 0x35, 0xbc, 0x0d, 0xbb, 0x15, 0xe2, 0x00, 0x3c, 0x1f, 0x85, 0x7e, - 0x5b, 0x57, 0xd2, 0xba, 0xfd, 0x13, 0x7d, 0x11, 0x96, 0x5b, 0x1a, 0xb1, 0x81, 0xc3, 0x23, 0x13, - 0xcf, 0xd4, 0x52, 0x0d, 0xdd, 0x32, 0x4e, 0x88, 0x3b, 0x98, 0x53, 0x10, 0x65, 0xee, 0x1f, 0x99, - 0x96, 0xdc, 0xb7, 0x14, 0xcc, 0x41, 0x2f, 0xc1, 0x02, 0x1d, 0xbb, 0xad, 0x9b, 0x2d, 0xa3, 0x33, - 0xb0, 0x70, 0x00, 0xa1, 0xc9, 0x0f, 0x4f, 0x18, 0xc5, 0x21, 0x5d, 0x7c, 0x86, 0x73, 0x05, 0xef, - 0xf0, 0xde, 0x72, 0x63, 0x1e, 0xd2, 0x4d, 0xb9, 0x28, 0xed, 0x96, 0x65, 0xa9, 0xc8, 0x73, 0x68, - 0x13, 0xd6, 0x9b, 0x72, 0xbd, 0x59, 0xab, 0x55, 0x95, 0x86, 0x54, 0x54, 0x15, 0xe9, 0xed, 0xa6, - 0x84, 0x8b, 0x0a, 0x49, 0xa9, 0x97, 0xab, 0x32, 0xbb, 0x7b, 0x2b, 0xd7, 0xeb, 0x65, 0xb9, 0x44, - 0x98, 0x65, 0x45, 0x2a, 0xaa, 0xbb, 0x65, 0xa9, 0x52, 0xe4, 0x63, 0xc2, 0x07, 0x31, 0x58, 0x18, - 0x71, 0x5a, 0xe8, 0xed, 0x00, 0xac, 0xb6, 0xc7, 0xb9, 0xb9, 0x51, 0x8a, 0x1f, 0xb5, 0x40, 0x08, - 0xa2, 0x21, 0x10, 0xfc, 0x97, 0x83, 0xe5, 0x40, 0x89, 0xa3, 0x75, 0x57, 0xbe, 0x52, 0x51, 0xe5, - 0x6a, 0x43, 0x2d, 0xef, 0xd7, 0x2a, 0xd2, 0xbe, 0x24, 0x37, 0x08, 0x26, 0x5b, 0xb0, 0x51, 0xad, - 0x49, 0x4a, 0xbe, 0x51, 0xae, 0xca, 0x6a, 0x4d, 0x92, 0x8b, 0x78, 0xf1, 0xbb, 0x55, 0x65, 0x58, - 0x7b, 0xad, 0xc2, 0x62, 0x59, 0x7e, 0x90, 0xaf, 0x94, 0x8b, 0x8c, 0xa6, 0xca, 0xf9, 0x7d, 0x89, - 0x8f, 0xa1, 0x2b, 0x20, 0xb8, 0xe1, 0xb4, 0x4b, 0x31, 0x55, 0xc9, 0xcb, 0x25, 0x89, 0x8f, 0xa3, - 0x35, 0x58, 0x66, 0x1d, 0xf2, 0x15, 0x45, 0xca, 0x17, 0x1f, 0xa9, 0xd2, 0x3b, 0xe5, 0x7a, 0xa3, - 0xce, 0x27, 0xd0, 0x65, 0x58, 0x73, 0x77, 0xad, 0xe5, 0x95, 0xfc, 0xbe, 0xd4, 0x90, 0x14, 0xf5, - 0xbe, 0xf4, 0x88, 0x4f, 0xa2, 0x75, 0x58, 0xb5, 0x87, 0x1c, 0xb2, 0x1e, 0xe4, 0x2b, 0x4d, 0x89, - 0x4f, 0x09, 0x1f, 0x47, 0x61, 0x61, 0xc4, 0xdb, 0x4f, 0x54, 0xc4, 0x48, 0x8f, 0x51, 0xca, 0x4c, - 0x8a, 0xf8, 0x21, 0x07, 0xcb, 0x81, 0x12, 0xcf, 0x4f, 0x11, 0xcb, 0xb0, 0xe0, 0x53, 0x44, 0xb9, - 0xc8, 0xc7, 0x5c, 0x30, 0x17, 0xab, 0x52, 0x9d, 0x48, 0x26, 0x38, 0xf3, 0x71, 0xe1, 0x93, 0x38, - 0x6c, 0x8c, 0x0b, 0x5e, 0xe8, 0x20, 0x00, 0xb5, 0xbd, 0x29, 0x23, 0xdf, 0x58, 0xe6, 0x2c, 0x58, - 0xa2, 0x9b, 0x30, 0xc7, 0xbc, 0x9a, 0x7d, 0x4c, 0xe8, 0xc9, 0xa5, 0x53, 0x34, 0x97, 0x36, 0xc5, - 0xbf, 0x45, 0xdd, 0x87, 0x47, 0xc1, 0x93, 0xf8, 0x0c, 0xe1, 0x47, 0x1b, 0x90, 0xf5, 0x6d, 0x00, - 0x76, 0xb0, 0x21, 0x15, 0xf9, 0x04, 0xde, 0x57, 0xe4, 0xa2, 0xde, 0xd7, 0x2d, 0x89, 0x56, 0x00, - 0xed, 0xe7, 0xdf, 0x51, 0xf3, 0x8d, 0x46, 0xbe, 0xb0, 0x27, 0x15, 0xc9, 0x75, 0x7e, 0x9d, 0x4f, - 0xe1, 0x5d, 0xe1, 0xde, 0x34, 0xfb, 0xd5, 0xa6, 0xdc, 0x50, 0x77, 0x2b, 0xf9, 0x52, 0x9d, 0x4f, - 0xfb, 0x99, 0x6c, 0xdc, 0xc6, 0xa3, 0x9a, 0xc4, 0x03, 0x1e, 0xca, 0xcd, 0xdc, 0xad, 0x53, 0x46, - 0x06, 0x2d, 0xc2, 0x25, 0x7b, 0x4d, 0x64, 0x2e, 0xe5, 0x22, 0x3f, 0x27, 0xfc, 0x39, 0xe6, 0xbe, - 0xdf, 0x0d, 0x0c, 0x61, 0xcf, 0x02, 0xec, 0xa6, 0x32, 0x75, 0xf6, 0x32, 0x81, 0x3d, 0xd3, 0x3e, - 0xfc, 0x5e, 0x14, 0xc4, 0xc9, 0xe2, 0x3f, 0x4b, 0xab, 0x08, 0xd1, 0x7b, 0x22, 0x48, 0x19, 0x49, - 0xf4, 0x22, 0xdc, 0xb0, 0xbd, 0x6e, 0xb5, 0x31, 0xb4, 0x89, 0x46, 0x55, 0xad, 0xd7, 0xa4, 0x42, - 0x79, 0xb7, 0xcc, 0x0c, 0x84, 0x4f, 0xa1, 0x25, 0xe0, 0x59, 0x3f, 0x27, 0x7a, 0xf1, 0x73, 0xc2, - 0xff, 0xa2, 0xb0, 0x39, 0x21, 0xa7, 0x43, 0x87, 0x01, 0xea, 0x94, 0xa7, 0xcf, 0x09, 0x27, 0xf1, - 0x67, 0x52, 0xe8, 0x6f, 0x38, 0xb8, 0x36, 0x85, 0x7c, 0xaf, 0x46, 0x43, 0xe1, 0xe7, 0xc6, 0xed, - 0xa2, 0xe8, 0xb8, 0x5d, 0x14, 0x0b, 0xdb, 0x45, 0xf1, 0x80, 0x08, 0x59, 0x96, 0x77, 0xab, 0x7c, - 0x42, 0xf8, 0x66, 0x14, 0x96, 0x82, 0x12, 0x5c, 0xf4, 0x30, 0x00, 0xf0, 0x57, 0x27, 0x64, 0xc5, - 0x81, 0xc4, 0x99, 0xa0, 0x6d, 0x43, 0x36, 0x4c, 0xa6, 0x17, 0xce, 0x65, 0x58, 0xd8, 0xc9, 0x17, - 0xd5, 0x5a, 0xa5, 0x59, 0x2a, 0xcb, 0x6a, 0xa1, 0x2a, 0xef, 0x96, 0x4b, 0x3c, 0x87, 0xae, 0xc3, - 0xd6, 0x48, 0xba, 0xb4, 0x57, 0xad, 0x37, 0xd4, 0xa2, 0x84, 0xf7, 0x8a, 0x24, 0x17, 0x1e, 0xf1, - 0x51, 0x9c, 0x38, 0xad, 0x04, 0x67, 0xe2, 0xe8, 0x6b, 0x01, 0x30, 0xbc, 0x36, 0x31, 0x81, 0x0f, - 0x21, 0xcf, 0x04, 0xc5, 0xbf, 0xd9, 0x91, 0xde, 0x34, 0x41, 0x64, 0x92, 0x53, 0xe0, 0xc2, 0xcd, - 0x2f, 0x3a, 0xce, 0xfc, 0x62, 0xe3, 0xcc, 0x2f, 0x1e, 0x66, 0x7e, 0x09, 0x74, 0x09, 0x32, 0x54, - 0x8c, 0xa4, 0x28, 0x55, 0x85, 0x4f, 0x06, 0xfb, 0xa4, 0x94, 0xf0, 0xbb, 0x28, 0x3d, 0x18, 0x0f, - 0xf4, 0xe8, 0x6a, 0x80, 0x2a, 0xde, 0x9a, 0xa2, 0xd2, 0x09, 0x65, 0xcc, 0x9a, 0x4d, 0x6d, 0x8c, - 0x13, 0x7c, 0x8e, 0x0a, 0x59, 0x80, 0xf9, 0xa6, 0xec, 0xc6, 0x2f, 0x16, 0x8c, 0x5f, 0x5c, 0xf8, - 0x0f, 0x07, 0x17, 0xbd, 0x55, 0x19, 0xba, 0x1f, 0x80, 0xda, 0xe7, 0x43, 0x8b, 0x38, 0xdf, 0xe7, - 0x4c, 0x08, 0xbd, 0x0b, 0x68, 0x54, 0xda, 0x39, 0xee, 0x5a, 0xbc, 0x58, 0x6f, 0xe9, 0x38, 0x71, - 0xb1, 0xde, 0xe6, 0xbe, 0xcf, 0x59, 0x17, 0x3b, 0x2a, 0xed, 0xfc, 0x16, 0xbb, 0x93, 0x62, 0x17, - 0x10, 0xdb, 0x9f, 0x70, 0x30, 0x57, 0x26, 0xa7, 0xe4, 0xd6, 0x09, 0xfa, 0x3a, 0x79, 0x33, 0x3f, - 0xf2, 0x2f, 0x01, 0xb4, 0x35, 0xe6, 0x0f, 0x04, 0xe4, 0xf0, 0x53, 0xb8, 0x3a, 0xf1, 0x2f, 0x06, - 0x62, 0x04, 0xed, 0xc1, 0xbc, 0xe7, 0xf1, 0x39, 0x5a, 0x0b, 0x7a, 0x90, 0x4e, 0x05, 0x0a, 0xe1, - 0x6f, 0xd5, 0xc5, 0xc8, 0xf6, 0xcf, 0x93, 0x00, 0x43, 0x47, 0x8e, 0x24, 0xb8, 0xe0, 0x2e, 0x09, - 0x51, 0x36, 0xec, 0xf1, 0xb5, 0xb0, 0x16, 0xfa, 0x76, 0x59, 0x8c, 0x60, 0x31, 0xee, 0x82, 0x86, - 0x89, 0x09, 0x78, 0x1e, 0xc9, 0xc4, 0x04, 0xbd, 0x39, 0x14, 0x23, 0xe8, 0x89, 0xe7, 0xc6, 0xd9, - 0xbd, 0x9b, 0xd1, 0xb5, 0xf1, 0xcf, 0xcc, 0xa8, 0xf0, 0xeb, 0xd3, 0xbc, 0x45, 0x13, 0x23, 0xa8, - 0x0b, 0x6b, 0xa1, 0x79, 0x1f, 0xba, 0x31, 0xe9, 0xc5, 0x12, 0x1d, 0xeb, 0xe6, 0x74, 0x0f, 0x9b, - 0xc4, 0x08, 0xea, 0x83, 0x10, 0x9e, 0x94, 0xa0, 0x9b, 0x13, 0x9f, 0xf1, 0xd0, 0xf1, 0x5e, 0x98, - 0xf2, 0xb9, 0x8f, 0x18, 0x41, 0x3b, 0x90, 0x71, 0xbd, 0x29, 0x41, 0xab, 0xa3, 0xaf, 0x4c, 0xa8, - 0xc8, 0x6c, 0xd8, 0xf3, 0x13, 0x2a, 0xc3, 0xf5, 0x9a, 0x81, 0xc9, 0x18, 0x7d, 0x7b, 0xc1, 0x64, - 0x04, 0x3c, 0x7c, 0x10, 0x23, 0x48, 0x86, 0x4b, 0xbe, 0x9c, 0x01, 0xad, 0x07, 0x3f, 0x14, 0xa0, - 0xb2, 0x36, 0xc6, 0xbd, 0x22, 0xf0, 0xab, 0xcd, 0x77, 0xa4, 0x3f, 0xa2, 0xb6, 0xe0, 0xbb, 0x86, - 0x11, 0xb5, 0x85, 0xdc, 0x0c, 0x88, 0x91, 0xed, 0x1f, 0xc4, 0x20, 0x8e, 0xdd, 0x08, 0x6a, 0xb0, - 0x1b, 0x14, 0x8f, 0x95, 0x5c, 0x1e, 0x7b, 0x75, 0x2b, 0x5c, 0x19, 0x7f, 0xbd, 0x28, 0x46, 0xd0, - 0x57, 0x61, 0x31, 0x20, 0x6a, 0xa1, 0xcd, 0xf0, 0xdb, 0x33, 0x2a, 0x79, 0x6b, 0xd2, 0xf5, 0x9a, - 0x18, 0x41, 0xaf, 0x41, 0xda, 0xf1, 0x81, 0x68, 0xd9, 0x7f, 0x87, 0x45, 0xe5, 0xac, 0x04, 0x5f, - 0x6d, 0xd1, 0xde, 0x4e, 0xb8, 0x60, 0xbd, 0xfd, 0xd7, 0x4f, 0xac, 0xf7, 0xc8, 0x85, 0xd1, 0x70, - 0x5d, 0x7e, 0xf5, 0x6c, 0x86, 0xdf, 0xc5, 0xf8, 0xd7, 0x15, 0xaa, 0x92, 0xc7, 0x49, 0xf2, 0x57, - 0xaf, 0x2f, 0xfd, 0x3f, 0x00, 0x00, 0xff, 0xff, 0xe1, 0xf5, 0xe1, 0x31, 0xf7, 0x35, 0x00, 0x00, + // 3361 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5b, 0x4d, 0x6c, 0x23, 0xc7, + 0x95, 0x66, 0xf3, 0x57, 0x7c, 0x1c, 0xcd, 0xb4, 0x4a, 0x7f, 0x54, 0x4b, 0x33, 0xd2, 0xf4, 0xfc, + 0x78, 0xbc, 0x5e, 0xd3, 0xbb, 0xf2, 0x02, 0xe3, 0x99, 0xf1, 0x1f, 0x45, 0xb6, 0x28, 0xee, 0x50, + 0x4d, 0xba, 0x49, 0xcd, 0x78, 0x76, 0xb1, 0xee, 0x6d, 0x91, 0x2d, 0x0d, 0x33, 0x14, 0x49, 0x77, + 0xb7, 0x04, 0xeb, 0x9a, 0x04, 0x06, 0x02, 0x04, 0x49, 0x90, 0x1c, 0x0c, 0xe4, 0x90, 0x1c, 0x1c, + 0x20, 0xce, 0xd9, 0x48, 0x80, 0x20, 0x08, 0x02, 0x24, 0xb7, 0x04, 0x39, 0x04, 0xc8, 0x0f, 0x10, + 0x20, 0x40, 0x72, 0x74, 0x4e, 0xbe, 0xe6, 0x16, 0x74, 0x55, 0x75, 0xb3, 0xbb, 0x59, 0x4d, 0x52, + 0xa2, 0x26, 0xbe, 0xb1, 0xdf, 0xab, 0xf7, 0xaa, 0xde, 0x57, 0xaf, 0x5e, 0xbd, 0x57, 0x55, 0x84, + 0x74, 0xd3, 0x6c, 0xe7, 0xfa, 0x46, 0xcf, 0xea, 0xa1, 0x58, 0xd3, 0x6c, 0x8b, 0x57, 0x61, 0xb5, + 0xa4, 0x5b, 0xf5, 0xe3, 0x7e, 0xbf, 0x67, 0x58, 0x7a, 0xeb, 0x91, 0x6e, 0x98, 0xed, 0x5e, 0xd7, + 0x54, 0xf4, 0xf7, 0x8f, 0x75, 0xd3, 0x12, 0xff, 0xc8, 0xc1, 0x1a, 0x9b, 0x6f, 0xf6, 0x7b, 0x5d, + 0x53, 0x47, 0x5b, 0x90, 0x34, 0x74, 0xf3, 0xb8, 0x63, 0x65, 0xb9, 0x0d, 0xee, 0x4e, 0x66, 0xf3, + 0x4e, 0xce, 0xee, 0x60, 0x94, 0x48, 0x4e, 0xc1, 0xed, 0x77, 0x22, 0x0a, 0x95, 0x44, 0x22, 0x24, + 0x74, 0xc3, 0xe8, 0x19, 0xd9, 0x28, 0x56, 0x01, 0x58, 0x85, 0x64, 0x53, 0x76, 0x22, 0x0a, 0x61, + 0x09, 0x12, 0x24, 0x89, 0x1c, 0x7a, 0x00, 0xc8, 0x74, 0x74, 0xab, 0x27, 0x54, 0x79, 0x96, 0xdb, + 0x88, 0xdd, 0xc9, 0x6c, 0x5e, 0xc2, 0xa2, 0xb4, 0x47, 0x65, 0xce, 0x0c, 0x8e, 0x61, 0x2b, 0x05, + 0x09, 0x43, 0xef, 0x77, 0x4e, 0xc5, 0x87, 0x90, 0xa2, 0x44, 0xb4, 0x00, 0x89, 0x23, 0xed, 0x4b, + 0x3d, 0x03, 0x5b, 0x30, 0xab, 0x90, 0x0f, 0x4c, 0x6d, 0x77, 0xe9, 0xa0, 0x6c, 0xaa, 0xfd, 0x61, + 0x53, 0xfb, 0x9a, 0xd5, 0x7c, 0x9a, 0x8d, 0x11, 0x2a, 0xfe, 0x10, 0xdf, 0x84, 0x85, 0x92, 0x6e, + 0xd5, 0x3a, 0xc7, 0x87, 0xed, 0x6e, 0xb9, 0x7b, 0xd0, 0xa3, 0xe8, 0xa1, 0xdb, 0x90, 0xa2, 0x03, + 0xa4, 0xe8, 0xf8, 0xc7, 0xe7, 0x30, 0xc5, 0xdf, 0x45, 0x61, 0x31, 0xa0, 0x80, 0xc2, 0xfb, 0x20, + 0x00, 0xef, 0x75, 0x07, 0xde, 0xe1, 0xb6, 0xe7, 0xc3, 0xf5, 0xb7, 0x9c, 0x0b, 0x2c, 0x82, 0x78, + 0x57, 0x3b, 0xd2, 0x71, 0x4f, 0x69, 0x05, 0xff, 0x46, 0xb7, 0xe0, 0xf2, 0x89, 0xde, 0x6d, 0xf5, + 0x0c, 0x07, 0x69, 0xac, 0x2b, 0xad, 0xcc, 0x12, 0xaa, 0x03, 0xe1, 0x43, 0x98, 0x39, 0xd2, 0xba, + 0xed, 0x03, 0xdd, 0xb4, 0xb2, 0x31, 0x3c, 0x13, 0xaf, 0x8c, 0x1d, 0x68, 0x6e, 0x97, 0x4a, 0x48, + 0x5d, 0xcb, 0x38, 0x55, 0x5c, 0x05, 0xc2, 0x03, 0x98, 0xf5, 0xb1, 0x10, 0x0f, 0xb1, 0x67, 0xfa, + 0x29, 0x1d, 0x97, 0xfd, 0xd3, 0x9e, 0x86, 0x13, 0xad, 0x73, 0xac, 0xd3, 0xd1, 0x90, 0x8f, 0xfb, + 0xd1, 0xd7, 0xb8, 0xc1, 0x04, 0x7f, 0x37, 0x06, 0xf3, 0x05, 0x43, 0xd7, 0x2c, 0xfd, 0x51, 0xaf, + 0x73, 0x7c, 0xa4, 0x9f, 0x71, 0x4e, 0x5c, 0x34, 0xa2, 0x1e, 0x34, 0xee, 0xc1, 0xe5, 0xa6, 0xd6, + 0xd7, 0x9a, 0x6d, 0xeb, 0x54, 0x35, 0xb4, 0xee, 0xa1, 0x8e, 0xdd, 0x20, 0xb3, 0x89, 0xb0, 0x8a, + 0x02, 0x65, 0x29, 0x36, 0x47, 0x99, 0x6d, 0x7a, 0x3f, 0xd1, 0x36, 0xcc, 0x9f, 0xe0, 0x71, 0xa8, + 0x36, 0x7d, 0xbf, 0xdd, 0x69, 0x5b, 0x6d, 0xdd, 0xcc, 0xc6, 0x31, 0x58, 0x8b, 0x64, 0x08, 0x98, + 0x5f, 0x70, 0xd8, 0xa7, 0x0a, 0x3a, 0xf1, 0x53, 0xda, 0xba, 0x89, 0x76, 0x00, 0xfa, 0x9a, 0xa1, + 0x1d, 0xe9, 0x96, 0x6e, 0x98, 0xd9, 0x04, 0x16, 0x27, 0x6b, 0x8e, 0x61, 0x6c, 0xae, 0xe6, 0x36, + 0x25, 0x20, 0x7b, 0x64, 0xd1, 0x03, 0xe0, 0x8f, 0x4d, 0xdd, 0x50, 0x9b, 0x86, 0xde, 0xd2, 0xbb, + 0x56, 0x5b, 0xeb, 0x98, 0xd9, 0x24, 0x36, 0x87, 0x77, 0xf4, 0x39, 0x74, 0xe5, 0x8a, 0xdd, 0xd2, + 0x43, 0x10, 0xde, 0x80, 0x2b, 0x01, 0xdd, 0x67, 0x99, 0x25, 0xf1, 0x67, 0x1c, 0x2c, 0xf8, 0xc7, + 0x4b, 0xfd, 0xfd, 0x7e, 0xc0, 0xdf, 0x37, 0x18, 0xa6, 0x4d, 0xe3, 0xee, 0xf7, 0x5d, 0x6f, 0xff, + 0x0f, 0xc8, 0xd0, 0x09, 0x69, 0x77, 0x0f, 0x7a, 0xb4, 0xbb, 0x2b, 0x9e, 0x89, 0xc0, 0x2e, 0x0b, + 0x27, 0xee, 0xef, 0x81, 0x6b, 0x7d, 0x2f, 0x0e, 0x7c, 0x70, 0xb2, 0xd0, 0x3d, 0x48, 0xec, 0x77, + 0x7a, 0xcd, 0x67, 0xbe, 0x85, 0x1a, 0x6c, 0x95, 0xdb, 0xb2, 0x9b, 0x10, 0xaa, 0x3d, 0x28, 0x2c, + 0x61, 0x8b, 0x1e, 0xf5, 0x8e, 0xbb, 0x16, 0x1d, 0x78, 0x88, 0xe8, 0xae, 0xdd, 0x64, 0x20, 0x8a, + 0x25, 0x50, 0x1e, 0x32, 0x5a, 0xb3, 0xa9, 0x9b, 0xa6, 0x7a, 0xd4, 0x6b, 0x39, 0xee, 0xb8, 0xc1, + 0x56, 0x90, 0xc7, 0x0d, 0x77, 0x7b, 0x2d, 0x5d, 0x01, 0xcd, 0xfd, 0x2d, 0xcc, 0x42, 0xc6, 0x33, + 0x2a, 0xa1, 0x04, 0x19, 0x4f, 0x4f, 0x68, 0x19, 0x52, 0x07, 0xa6, 0x6a, 0x9d, 0xf6, 0x9d, 0xb8, + 0x90, 0x3c, 0x30, 0x1b, 0xa7, 0x7d, 0x1d, 0xad, 0x43, 0x06, 0x0f, 0x41, 0x3d, 0xe8, 0x68, 0x87, + 0x66, 0x36, 0xba, 0x11, 0xbb, 0x93, 0x56, 0x00, 0x93, 0xb6, 0x6d, 0x8a, 0xf0, 0x19, 0x07, 0x30, + 0xe8, 0x12, 0xdd, 0x83, 0x38, 0x1e, 0xa2, 0xad, 0xe5, 0xf2, 0xe6, 0xad, 0x71, 0x43, 0xcc, 0xe1, + 0x71, 0x62, 0x11, 0xf1, 0xfb, 0x1c, 0xc4, 0xb1, 0x8e, 0x0c, 0xa4, 0xf6, 0xe4, 0x87, 0x72, 0xf5, + 0xb1, 0xcc, 0x47, 0xd0, 0x12, 0xa0, 0x7a, 0x59, 0x2e, 0x55, 0x24, 0x55, 0xae, 0x16, 0x25, 0xf5, + 0xb1, 0x52, 0x6e, 0x48, 0x0a, 0xcf, 0xa1, 0x55, 0x58, 0xf6, 0xd2, 0x15, 0x29, 0x5f, 0x94, 0x14, + 0xb5, 0x2a, 0x57, 0x9e, 0xf0, 0x51, 0x24, 0xc0, 0xd2, 0xee, 0x5e, 0xa5, 0x51, 0x1e, 0xe6, 0xc5, + 0xd0, 0x1a, 0x64, 0x3d, 0x3c, 0xaa, 0x83, 0xaa, 0x8d, 0xdb, 0x6a, 0x3d, 0x5c, 0xf2, 0x93, 0x32, + 0x13, 0x5b, 0xb3, 0xee, 0x34, 0xd8, 0x48, 0x89, 0x8f, 0x61, 0xd6, 0x17, 0x0c, 0xec, 0x30, 0x6a, + 0xe8, 0xef, 0x1f, 0xb7, 0x0d, 0xbd, 0xa5, 0xee, 0x9f, 0x5a, 0xba, 0x89, 0x61, 0x88, 0x2b, 0xb3, + 0x0e, 0x75, 0xcb, 0x26, 0xda, 0x98, 0x76, 0xda, 0x47, 0x6d, 0x8b, 0xb6, 0x89, 0xe2, 0x36, 0x80, + 0x49, 0xb8, 0x81, 0xf8, 0x2b, 0x0e, 0x60, 0xe0, 0x9d, 0xb6, 0x5a, 0x37, 0x1e, 0xf9, 0xd4, 0x3a, + 0x54, 0xa2, 0xf6, 0x32, 0x44, 0xdb, 0x2d, 0xba, 0x08, 0xa3, 0xed, 0x16, 0x7a, 0x0b, 0x40, 0xb3, + 0x2c, 0xa3, 0xbd, 0x7f, 0x6c, 0x8b, 0x90, 0x78, 0xbd, 0x1e, 0xf0, 0xfc, 0x5c, 0xde, 0x6d, 0x41, + 0x43, 0xc7, 0x40, 0xc4, 0x5e, 0xfd, 0x01, 0xf6, 0x99, 0x56, 0xff, 0x09, 0x64, 0x3c, 0xb1, 0x04, + 0xe5, 0x20, 0xde, 0xd2, 0x2c, 0x8d, 0x6e, 0xe1, 0x42, 0x30, 0xf8, 0xe4, 0x8a, 0x9a, 0xa5, 0x91, + 0x31, 0xe0, 0x76, 0xc2, 0x5d, 0x48, 0xbb, 0xa4, 0x33, 0xf5, 0xfb, 0x11, 0x07, 0xf3, 0x45, 0xbd, + 0xa3, 0x9f, 0x77, 0x4b, 0x58, 0x85, 0xb4, 0x13, 0x32, 0x1c, 0x38, 0x67, 0x68, 0x7c, 0x68, 0x31, + 0xc3, 0x69, 0x6c, 0xc2, 0x70, 0x2a, 0x7e, 0x8d, 0x83, 0x05, 0xff, 0xc8, 0x46, 0xc6, 0x43, 0x56, + 0xd3, 0xf3, 0xc5, 0xc3, 0x19, 0x27, 0x1e, 0x0e, 0xa2, 0xdb, 0x1f, 0x62, 0x70, 0xad, 0xd0, 0xeb, + 0x5a, 0x46, 0xaf, 0xd3, 0xd1, 0x8d, 0xda, 0xf1, 0x7e, 0xa7, 0x6d, 0x3e, 0x7d, 0x0e, 0x80, 0xdd, + 0x84, 0x54, 0xb7, 0xd7, 0xc2, 0x2c, 0x82, 0x53, 0x06, 0x2b, 0x91, 0x7b, 0x2d, 0xbd, 0x5c, 0x54, + 0x92, 0x36, 0xaf, 0xdc, 0x42, 0x5b, 0x30, 0x17, 0xdc, 0x37, 0x4f, 0xb3, 0x71, 0xdc, 0x3e, 0x64, + 0xd7, 0xe4, 0x4f, 0x82, 0xa1, 0x59, 0x80, 0x19, 0x43, 0xd7, 0x5a, 0xbd, 0x6e, 0xe7, 0x34, 0x9b, + 0xd8, 0xe0, 0xee, 0xcc, 0x28, 0xee, 0xf7, 0x54, 0xbb, 0x20, 0x3a, 0x70, 0x07, 0xe7, 0x59, 0x4f, + 0x29, 0xec, 0xc6, 0xf7, 0x88, 0xf4, 0x48, 0x1c, 0xe9, 0xd8, 0x83, 0x2b, 0x8d, 0x1a, 0x30, 0x20, + 0x0b, 0x05, 0x58, 0x64, 0x36, 0x3d, 0x93, 0xf7, 0xff, 0x39, 0x0a, 0xeb, 0xa1, 0xe3, 0xa1, 0xee, + 0x26, 0x05, 0xdc, 0xed, 0xa5, 0xd1, 0x56, 0x4c, 0xe3, 0x79, 0xbf, 0x1c, 0x24, 0x9e, 0x06, 0xcc, + 0xf7, 0x89, 0x62, 0xd5, 0xbf, 0x25, 0xdb, 0x40, 0x6e, 0x9d, 0x61, 0x08, 0x39, 0x1f, 0xd3, 0x0e, + 0x63, 0x04, 0xd1, 0xb9, 0x7e, 0x90, 0x2e, 0x14, 0x61, 0x89, 0xdd, 0xf8, 0x7c, 0xd9, 0xa6, 0x05, + 0x49, 0xe2, 0xb8, 0xe8, 0x15, 0x48, 0x62, 0xbe, 0x53, 0x92, 0x2c, 0x7b, 0xbc, 0x3a, 0xf7, 0x08, + 0x73, 0xc8, 0xa0, 0x68, 0x33, 0xe1, 0x1e, 0x64, 0x3c, 0xe4, 0x33, 0x4d, 0xe9, 0xaf, 0x39, 0xd8, + 0x18, 0x20, 0xb3, 0xd7, 0xed, 0x7f, 0xc1, 0x8b, 0x95, 0xb5, 0x98, 0xe2, 0x93, 0xc6, 0xc0, 0x8f, + 0x39, 0xb8, 0x3e, 0xc2, 0x18, 0xea, 0xa1, 0xa5, 0x80, 0x87, 0xbe, 0x1c, 0x70, 0x8f, 0x10, 0xb9, + 0x0b, 0x8b, 0x8e, 0x7f, 0x8d, 0xc2, 0xf5, 0x47, 0x5a, 0xa7, 0xdd, 0x72, 0x13, 0x52, 0x6f, 0x7a, + 0x7e, 0xa1, 0x98, 0x87, 0x94, 0x0c, 0xb1, 0xb3, 0x96, 0x0c, 0x6d, 0x56, 0x94, 0x22, 0x85, 0xc7, + 0xeb, 0x44, 0xcb, 0x38, 0x7b, 0xfe, 0xb5, 0x81, 0xea, 0x2f, 0x1c, 0x88, 0xa3, 0x86, 0x44, 0x3d, + 0x61, 0x27, 0xe0, 0x09, 0xb9, 0xb1, 0xb6, 0x4c, 0xe3, 0x0a, 0x6f, 0xbb, 0xd1, 0x6a, 0x0d, 0xd2, + 0xee, 0xb9, 0x02, 0xee, 0x7a, 0x46, 0x19, 0x10, 0x50, 0x16, 0x52, 0x47, 0xba, 0x69, 0x6a, 0x87, + 0x8e, 0x61, 0xce, 0xe7, 0xc0, 0x85, 0xbe, 0xca, 0x01, 0xaa, 0xb4, 0x4d, 0x9a, 0x61, 0x9f, 0xd9, + 0x67, 0xec, 0xc4, 0x5b, 0xfb, 0x40, 0xd5, 0xbb, 0x96, 0xd1, 0xa6, 0x49, 0xe2, 0xac, 0x02, 0x47, + 0xda, 0x07, 0x12, 0xa1, 0xd8, 0x59, 0xa1, 0x69, 0x69, 0x86, 0xd5, 0xee, 0x1e, 0xaa, 0x56, 0xef, + 0x99, 0xde, 0xc5, 0x4b, 0x36, 0xad, 0xcc, 0x3a, 0xd4, 0x86, 0x4d, 0x14, 0x3f, 0x8e, 0xc2, 0xbc, + 0x6f, 0x18, 0x14, 0xd7, 0x7b, 0x01, 0x5c, 0x49, 0x66, 0xc8, 0x68, 0x79, 0x3e, 0x20, 0x3f, 0x1e, + 0xc4, 0xfd, 0xb7, 0x20, 0xe5, 0x58, 0x41, 0x62, 0xe5, 0xad, 0x31, 0x5d, 0xe5, 0x88, 0xdf, 0x39, + 0x52, 0xe8, 0x2a, 0x40, 0x57, 0xff, 0xc0, 0xa2, 0x56, 0x12, 0xbc, 0xd3, 0x36, 0x05, 0x5b, 0x28, + 0xdc, 0x83, 0x04, 0xf1, 0xbe, 0x29, 0x6a, 0xbd, 0xaf, 0x47, 0x01, 0x95, 0x74, 0xcb, 0x4d, 0xe7, + 0xcf, 0x38, 0x59, 0x21, 0x6b, 0x38, 0x7a, 0xd6, 0x35, 0x5c, 0xf2, 0x95, 0xfd, 0x24, 0x04, 0xbc, + 0xe0, 0x1c, 0xb1, 0x04, 0x06, 0x37, 0xaa, 0xea, 0x9f, 0xb6, 0x70, 0xff, 0x09, 0x07, 0xf3, 0xbe, + 0x1e, 0x47, 0x3a, 0x0d, 0xa3, 0xe5, 0xf9, 0x9c, 0xe6, 0xae, 0xeb, 0x33, 0x2f, 0x03, 0xd2, 0x4e, + 0xb4, 0x76, 0x47, 0xdb, 0xef, 0x10, 0x4c, 0x6d, 0xe5, 0xb4, 0xec, 0x99, 0x73, 0x39, 0x4e, 0xaf, + 0x83, 0x79, 0x7c, 0x1b, 0x96, 0x3c, 0x39, 0x84, 0xd1, 0xdb, 0x3f, 0xeb, 0xfe, 0x28, 0x7e, 0x93, + 0x83, 0xe5, 0x21, 0x15, 0xd4, 0xfc, 0x37, 0x02, 0xe6, 0xdf, 0x08, 0x26, 0x2d, 0xde, 0xd6, 0x17, + 0xb6, 0x17, 0xfd, 0xb7, 0x77, 0xf7, 0xa7, 0x58, 0x9f, 0x73, 0x27, 0x12, 0x3f, 0xf3, 0xed, 0xbe, + 0x43, 0xca, 0x26, 0xdc, 0x7d, 0x43, 0xe4, 0xce, 0x67, 0xb1, 0xec, 0x4e, 0x7a, 0x11, 0x2e, 0x31, + 0x96, 0xcf, 0x46, 0xa0, 0xf3, 0xba, 0x6e, 0x9c, 0xb4, 0x9b, 0xde, 0x95, 0xe4, 0x93, 0x1a, 0xe0, + 0xf6, 0x51, 0x14, 0x56, 0x47, 0x88, 0xa1, 0xd7, 0x20, 0x66, 0xf4, 0x9b, 0xd4, 0xc4, 0x9b, 0xe3, + 0x7a, 0xc9, 0x29, 0xb5, 0xc2, 0x4e, 0x44, 0xb1, 0x45, 0x84, 0x1f, 0x73, 0x10, 0x53, 0x6a, 0x05, + 0xf4, 0x06, 0xc4, 0xdd, 0x23, 0x93, 0xcb, 0x9b, 0x2f, 0x4e, 0xa2, 0x22, 0xd7, 0x38, 0xed, 0xeb, + 0x0a, 0x16, 0x13, 0x7b, 0x10, 0xc7, 0x67, 0x2c, 0xbe, 0xf3, 0x8e, 0x2c, 0x2c, 0x14, 0x14, 0x29, + 0xdf, 0x90, 0xd4, 0xa2, 0x54, 0x91, 0x1a, 0x92, 0xfa, 0xa8, 0x5a, 0xd9, 0xdb, 0x95, 0x78, 0x0e, + 0xad, 0x41, 0xb6, 0xb6, 0xb7, 0x55, 0x29, 0xd7, 0x77, 0xd4, 0x3d, 0xd9, 0xf9, 0x45, 0xb9, 0x51, + 0xc4, 0xc3, 0xa5, 0x4a, 0xb9, 0xde, 0xa0, 0x84, 0x3a, 0x1f, 0xb3, 0x29, 0x25, 0xa9, 0xa1, 0x16, + 0xf2, 0xb5, 0x7c, 0xa1, 0xdc, 0x78, 0xc2, 0xc7, 0xb7, 0x92, 0x64, 0xbc, 0xe2, 0xe7, 0x71, 0xc8, + 0xda, 0x39, 0xdd, 0xf3, 0xab, 0xfa, 0x5a, 0xec, 0x5c, 0x9f, 0x44, 0xb4, 0xff, 0x72, 0x93, 0x4a, + 0x66, 0xb9, 0x34, 0x71, 0x76, 0x6f, 0xef, 0x91, 0x96, 0x66, 0x1c, 0xea, 0x96, 0xda, 0xd7, 0xac, + 0xa7, 0x38, 0x07, 0x4d, 0x2b, 0x40, 0x48, 0x35, 0xcd, 0x7a, 0xca, 0x2e, 0x2b, 0x13, 0xe7, 0x2f, + 0x2b, 0x93, 0x13, 0x94, 0x95, 0xa9, 0x49, 0xcb, 0xca, 0xff, 0x67, 0x25, 0x6c, 0x33, 0x18, 0xa1, + 0x57, 0x47, 0x23, 0x34, 0x69, 0x9e, 0x76, 0x21, 0xd5, 0xcf, 0xc5, 0x64, 0x7b, 0xdf, 0xe1, 0x60, + 0x85, 0x61, 0x0f, 0x0d, 0x38, 0x6f, 0x05, 0x02, 0xce, 0xad, 0x30, 0xfb, 0x2f, 0x38, 0xb4, 0xfe, + 0x82, 0x03, 0xc1, 0xee, 0xe5, 0x79, 0xd6, 0x54, 0x01, 0x27, 0x8d, 0x0d, 0x39, 0xe9, 0x54, 0xe5, + 0xd4, 0x47, 0x1c, 0xac, 0x32, 0x2d, 0xa0, 0xc8, 0xe6, 0x03, 0xc8, 0xbe, 0xe0, 0x22, 0xfb, 0xbc, + 0x4b, 0xa8, 0xfb, 0xc0, 0x97, 0x74, 0x8b, 0x96, 0x8e, 0x67, 0xdc, 0xa6, 0x7e, 0xc4, 0xc1, 0x9c, + 0x47, 0x98, 0xda, 0x72, 0x37, 0x60, 0xcb, 0x55, 0x27, 0xfb, 0xf0, 0xb7, 0x3b, 0x9f, 0x05, 0x39, + 0x77, 0x1b, 0xf2, 0x14, 0xc1, 0x5c, 0x68, 0x11, 0xec, 0xb3, 0x13, 0x3b, 0xea, 0x79, 0x92, 0x8d, + 0xaf, 0x70, 0x30, 0xe7, 0x11, 0x1e, 0x69, 0xe7, 0x50, 0xbb, 0x0b, 0x9b, 0xa9, 0x22, 0x59, 0x04, + 0x53, 0xa6, 0x16, 0x7f, 0xa2, 0x9e, 0x18, 0x96, 0x54, 0x84, 0x7b, 0xe2, 0x85, 0xa6, 0x13, 0x3b, + 0xee, 0x3c, 0xbe, 0xc9, 0x4c, 0x27, 0x04, 0xb7, 0xdb, 0x89, 0x13, 0x89, 0x4f, 0x38, 0x58, 0x64, + 0x0a, 0xa0, 0x4d, 0x6f, 0x0a, 0x71, 0x2d, 0x5c, 0xb3, 0x37, 0x79, 0xa8, 0x93, 0xdc, 0xe1, 0xae, + 0x2f, 0x77, 0xb8, 0x31, 0x5a, 0xd6, 0x9b, 0x35, 0xcc, 0x33, 0xb2, 0x06, 0x77, 0x67, 0xff, 0xf0, + 0x36, 0x24, 0x30, 0x20, 0xe8, 0x4d, 0x98, 0x3d, 0xd4, 0xbb, 0xba, 0xa1, 0x75, 0x54, 0x82, 0x19, + 0x19, 0xe4, 0xf2, 0x00, 0xb3, 0x5c, 0x89, 0xf0, 0x1d, 0x00, 0x2f, 0x1d, 0x7a, 0xbe, 0x91, 0x0c, + 0xf3, 0x4d, 0x7c, 0x1f, 0xe7, 0x6c, 0xe0, 0x5e, 0xe4, 0xd7, 0x3c, 0x5a, 0xbc, 0xb7, 0x76, 0x8e, + 0xaa, 0xb9, 0x66, 0x90, 0x68, 0xeb, 0x6b, 0xe1, 0xf3, 0x6c, 0xbf, 0xbe, 0xd8, 0x90, 0x3e, 0xef, + 0xa9, 0xb7, 0xab, 0xaf, 0x15, 0x24, 0xa2, 0x3e, 0xac, 0x37, 0xdd, 0x54, 0x4b, 0x0d, 0x24, 0x1b, + 0x44, 0x77, 0xdc, 0xe3, 0x67, 0x74, 0xac, 0xec, 0xf3, 0x45, 0xa7, 0x9b, 0xb5, 0xe6, 0x08, 0x3e, + 0x3a, 0x81, 0xeb, 0x9e, 0x1e, 0x8f, 0xbb, 0xcc, 0x3e, 0x49, 0x72, 0xf1, 0x22, 0xb3, 0xcf, 0x40, + 0xc4, 0x75, 0x7a, 0xbd, 0xd6, 0x1c, 0xd9, 0x02, 0x9d, 0x82, 0x78, 0x42, 0x8f, 0x3b, 0x54, 0x46, + 0x95, 0x49, 0x3b, 0x26, 0xa7, 0xd9, 0xff, 0xe6, 0xe9, 0x38, 0xfc, 0x8c, 0xc4, 0xe9, 0x79, 0xfd, + 0x64, 0x74, 0x13, 0xf4, 0x18, 0x96, 0xbc, 0x20, 0xdb, 0xd1, 0x87, 0x76, 0x97, 0xf2, 0xd4, 0x7f, + 0x43, 0xd8, 0xda, 0xed, 0x9c, 0x3e, 0x16, 0x9a, 0x0c, 0x3a, 0x7a, 0x0f, 0x56, 0x70, 0x8c, 0x65, + 0x62, 0x38, 0xe3, 0xb9, 0x1f, 0x25, 0xba, 0x87, 0x32, 0x01, 0x47, 0xfb, 0x52, 0x97, 0xc9, 0x41, + 0x2d, 0x58, 0xc5, 0xfa, 0x43, 0x66, 0x29, 0xed, 0x29, 0xdf, 0x06, 0x3d, 0x84, 0xcc, 0x4f, 0xb6, + 0x1b, 0xc2, 0x43, 0x12, 0xf0, 0xc4, 0x0a, 0x0f, 0x30, 0x80, 0x55, 0xaf, 0x04, 0x07, 0xef, 0x85, + 0xe4, 0x72, 0xd7, 0x47, 0x41, 0xdb, 0x30, 0x67, 0xa7, 0x07, 0x74, 0xd3, 0xa1, 0x7a, 0x32, 0x43, + 0x7a, 0xdc, 0x8d, 0xce, 0xd5, 0x73, 0x48, 0x29, 0x2d, 0x4c, 0x11, 0x7e, 0x10, 0x85, 0x4b, 0xde, + 0x35, 0x8d, 0x4a, 0x00, 0x58, 0x99, 0xda, 0x1c, 0x5c, 0xc9, 0xde, 0x09, 0x09, 0x00, 0xbe, 0x8f, + 0x42, 0xaf, 0xa5, 0x2b, 0x69, 0xdd, 0xf9, 0x89, 0xfe, 0x13, 0x16, 0x9b, 0x1a, 0xf6, 0x81, 0xa3, + 0x63, 0xd3, 0x1e, 0xa9, 0xa5, 0x1a, 0xba, 0x65, 0x9c, 0xe2, 0x70, 0x30, 0xa3, 0x20, 0xc2, 0xdc, + 0x3d, 0x36, 0x2d, 0xb9, 0x67, 0x29, 0x36, 0x07, 0xbd, 0x04, 0x73, 0xa4, 0xef, 0x96, 0x6e, 0x36, + 0x8d, 0x76, 0xdf, 0xb2, 0x37, 0x10, 0x92, 0xfc, 0xf0, 0x98, 0x51, 0x1c, 0xd0, 0xc5, 0x67, 0x76, + 0xae, 0xe0, 0xef, 0xde, 0x5f, 0x15, 0xcd, 0x42, 0x7a, 0x4f, 0x2e, 0x4a, 0xdb, 0x65, 0x59, 0x2a, + 0xf2, 0x1c, 0x5a, 0x87, 0xd5, 0x3d, 0xb9, 0xbe, 0x57, 0xab, 0x55, 0x95, 0x86, 0x54, 0x54, 0x15, + 0xe9, 0x9d, 0x3d, 0xc9, 0xae, 0x7d, 0x24, 0xa5, 0x5e, 0xae, 0xca, 0xf4, 0x02, 0xb8, 0x5c, 0xaf, + 0x97, 0xe5, 0x12, 0x66, 0x96, 0x15, 0xa9, 0xa8, 0x6e, 0x97, 0xa5, 0x4a, 0x91, 0x8f, 0x09, 0x1f, + 0xc6, 0x60, 0x6e, 0x28, 0x68, 0xa1, 0x77, 0x18, 0x58, 0x6d, 0x8e, 0x0a, 0x73, 0xc3, 0x94, 0x20, + 0x6a, 0x4c, 0x08, 0xa2, 0x21, 0x10, 0x7c, 0xce, 0xc1, 0x22, 0x53, 0xe3, 0x70, 0x79, 0x98, 0xaf, + 0x54, 0x54, 0xb9, 0xda, 0x50, 0xcb, 0xbb, 0xb5, 0x8a, 0xb4, 0x2b, 0xc9, 0x0d, 0x8c, 0xc9, 0x06, + 0xac, 0x55, 0x6b, 0x92, 0x92, 0x6f, 0x94, 0xab, 0xb2, 0x5a, 0x93, 0xe4, 0xa2, 0x6d, 0xfc, 0x76, + 0x55, 0x19, 0x94, 0x88, 0xcb, 0x30, 0x5f, 0x96, 0x1f, 0xe5, 0x2b, 0xe5, 0x22, 0xa5, 0xa9, 0x72, + 0x7e, 0x57, 0xe2, 0x63, 0xe8, 0x1a, 0x08, 0x5e, 0x38, 0x9d, 0x8a, 0x51, 0x55, 0xf2, 0x72, 0x49, + 0xe2, 0xe3, 0x68, 0x05, 0x16, 0xa9, 0x40, 0xbe, 0xa2, 0x48, 0xf9, 0xe2, 0x13, 0x55, 0x7a, 0xb7, + 0x5c, 0x6f, 0xd4, 0xf9, 0x04, 0xba, 0x0a, 0x2b, 0x5e, 0xd1, 0x5a, 0x5e, 0xc9, 0xef, 0x4a, 0x0d, + 0x49, 0x51, 0x1f, 0x4a, 0x4f, 0xf8, 0x24, 0x5a, 0x85, 0x65, 0xa7, 0xcb, 0x01, 0xeb, 0x51, 0xbe, + 0xb2, 0x27, 0xf1, 0x29, 0xe1, 0x93, 0x28, 0xcc, 0x0d, 0x45, 0xfb, 0xb1, 0x13, 0x31, 0x24, 0x31, + 0x4c, 0x99, 0x6a, 0x22, 0xbe, 0xcd, 0xc1, 0x22, 0x53, 0xe3, 0xc5, 0x4d, 0xc4, 0x22, 0xcc, 0x05, + 0x26, 0xa2, 0x5c, 0xe4, 0x63, 0x1e, 0x98, 0x8b, 0x55, 0xa9, 0x8e, 0x35, 0x63, 0x9c, 0xf9, 0xb8, + 0xf0, 0x69, 0x1c, 0xd6, 0x46, 0x6d, 0x5e, 0xe8, 0x90, 0x81, 0xda, 0xce, 0x84, 0x3b, 0xdf, 0x48, + 0xe6, 0x34, 0x58, 0xa2, 0xdb, 0x30, 0x43, 0xa3, 0x9a, 0x73, 0x9a, 0xe9, 0xcb, 0xa5, 0x53, 0x24, + 0x97, 0x36, 0xc5, 0xdf, 0x47, 0xbd, 0x67, 0x5c, 0xec, 0x41, 0x7c, 0x81, 0xf0, 0xa3, 0x35, 0xc8, + 0x06, 0x16, 0x00, 0x3d, 0x7f, 0x91, 0x8a, 0x7c, 0xc2, 0x5e, 0x57, 0xf8, 0xb5, 0x48, 0x40, 0x2c, + 0x89, 0x96, 0x00, 0xed, 0xe6, 0xdf, 0x55, 0xf3, 0x8d, 0x46, 0xbe, 0xb0, 0x23, 0x15, 0xf1, 0x9b, + 0x92, 0x3a, 0x9f, 0xb2, 0x57, 0x85, 0x77, 0xd1, 0xec, 0x56, 0xf7, 0xe4, 0x86, 0xba, 0x5d, 0xc9, + 0x97, 0xea, 0x7c, 0x3a, 0xc8, 0xa4, 0xfd, 0x36, 0x9e, 0xd4, 0x24, 0x1e, 0xec, 0xae, 0xbc, 0xcc, + 0xed, 0x3a, 0x61, 0x64, 0xd0, 0x3c, 0x5c, 0x71, 0x6c, 0xc2, 0x63, 0x29, 0x17, 0xf9, 0x19, 0xe1, + 0x37, 0xbe, 0x3b, 0x7e, 0xe6, 0x16, 0xf6, 0x8c, 0xe1, 0x37, 0x95, 0x89, 0xb3, 0x97, 0x31, 0xec, + 0xa9, 0xd6, 0xe1, 0x37, 0xa2, 0x20, 0x8e, 0x57, 0xff, 0x45, 0x7a, 0x45, 0xc8, 0xbc, 0x27, 0x58, + 0x93, 0x91, 0x44, 0x2f, 0xc2, 0x2d, 0x27, 0xea, 0x56, 0x1b, 0x03, 0x9f, 0x68, 0x54, 0xd5, 0x7a, + 0x4d, 0x2a, 0x94, 0xb7, 0xcb, 0xd4, 0x41, 0xf8, 0x14, 0x5a, 0x00, 0x9e, 0xca, 0xb9, 0xbb, 0x17, + 0x3f, 0x23, 0xfc, 0x23, 0x0a, 0xeb, 0x63, 0x72, 0x3a, 0x74, 0xc4, 0x98, 0x4e, 0x79, 0xf2, 0x9c, + 0x70, 0x1c, 0x7f, 0xaa, 0x09, 0xfd, 0x29, 0x07, 0x37, 0x26, 0xd0, 0xef, 0x9f, 0xd1, 0x50, 0xf8, + 0xb9, 0x51, 0xab, 0x28, 0x3a, 0x6a, 0x15, 0xc5, 0xc2, 0x56, 0x51, 0x9c, 0xb1, 0x43, 0x96, 0xe5, + 0xed, 0x2a, 0x9f, 0x10, 0xbe, 0x1c, 0x85, 0x05, 0x56, 0x82, 0x8b, 0x1e, 0x33, 0x00, 0x7f, 0x6d, + 0x4c, 0x56, 0xcc, 0x24, 0x4e, 0x05, 0x6d, 0x0b, 0xb2, 0x61, 0x3a, 0xfd, 0x70, 0x2e, 0xc2, 0xdc, + 0x56, 0xbe, 0xa8, 0xd6, 0x2a, 0x7b, 0xa5, 0xb2, 0xac, 0x16, 0xaa, 0xf2, 0x76, 0xb9, 0xc4, 0x73, + 0xe8, 0x26, 0x6c, 0x0c, 0xa5, 0x4b, 0x3b, 0xd5, 0x7a, 0x43, 0x2d, 0x4a, 0xf6, 0x5a, 0x91, 0xe4, + 0xc2, 0x13, 0x3e, 0x6a, 0x27, 0x4e, 0x4b, 0xec, 0x4c, 0x1c, 0xfd, 0x2f, 0x03, 0x86, 0xd7, 0xc7, + 0x26, 0xf0, 0x21, 0xe4, 0xa9, 0xa0, 0xf8, 0x1b, 0x3d, 0xd2, 0x9b, 0x64, 0x13, 0x19, 0x17, 0x14, + 0xb8, 0x70, 0xf7, 0x8b, 0x8e, 0x72, 0xbf, 0xd8, 0x28, 0xf7, 0x8b, 0x87, 0xb9, 0x5f, 0x02, 0x5d, + 0x81, 0x0c, 0x51, 0x23, 0x29, 0x4a, 0x55, 0xe1, 0x93, 0xec, 0x98, 0x94, 0x12, 0x7e, 0x1e, 0x25, + 0xe7, 0xf7, 0xcc, 0x88, 0xae, 0x32, 0xa6, 0xe2, 0xed, 0x09, 0x2a, 0x9d, 0x50, 0xc6, 0xb4, 0xd9, + 0xd4, 0xda, 0x28, 0xc5, 0x17, 0x38, 0x21, 0x73, 0x30, 0xbb, 0x27, 0x7b, 0xf1, 0x8b, 0xb1, 0xf1, + 0x8b, 0x0b, 0x7f, 0xe7, 0xe0, 0xb2, 0xbf, 0x2a, 0x43, 0x0f, 0x19, 0xa8, 0xfd, 0x7b, 0x68, 0x11, + 0x17, 0xf8, 0x9c, 0x0a, 0xa1, 0xf7, 0x00, 0x0d, 0x6b, 0xbb, 0xc0, 0x55, 0x6b, 0x1b, 0xeb, 0x2f, + 0x1d, 0xc7, 0x1a, 0xeb, 0x6f, 0x1e, 0xf8, 0x9c, 0xd6, 0xd8, 0x61, 0x6d, 0x17, 0x67, 0xec, 0x56, + 0x8a, 0x5e, 0x40, 0x6c, 0x7e, 0xca, 0xc1, 0x4c, 0x19, 0x9f, 0x92, 0x5b, 0xa7, 0xe8, 0xff, 0xf0, + 0x1f, 0x37, 0x86, 0xfe, 0xaa, 0x82, 0x36, 0x46, 0xfc, 0x8b, 0x05, 0x1f, 0x7e, 0x0a, 0xd7, 0xc7, + 0xfe, 0xcf, 0x45, 0x8c, 0xa0, 0x1d, 0x98, 0xf5, 0xfd, 0x03, 0x02, 0xad, 0xb0, 0xfe, 0x15, 0x41, + 0x14, 0x0a, 0xe1, 0x7f, 0x98, 0x10, 0x23, 0x9b, 0x3f, 0x4c, 0x02, 0x0c, 0x02, 0x39, 0x92, 0xe0, + 0x92, 0xb7, 0x24, 0x44, 0xd9, 0xb0, 0x7f, 0x00, 0x08, 0x2b, 0xa1, 0x0f, 0xe8, 0xc5, 0x88, 0xad, + 0xc6, 0x5b, 0xd0, 0x50, 0x35, 0x8c, 0x27, 0xb2, 0x54, 0x0d, 0xeb, 0xdd, 0xa9, 0x18, 0x41, 0x07, + 0xbe, 0x8b, 0x71, 0xef, 0x6a, 0x46, 0x37, 0x26, 0x78, 0x06, 0x29, 0xdc, 0x9c, 0xe4, 0x89, 0x9f, + 0x18, 0x41, 0x1d, 0x58, 0x09, 0xcd, 0xfb, 0xd0, 0xad, 0x71, 0x0f, 0xc1, 0x48, 0x5f, 0xb7, 0x27, + 0x7b, 0x2f, 0x26, 0x46, 0x50, 0x0f, 0x84, 0xf0, 0xa4, 0x04, 0xdd, 0x9e, 0xec, 0xe5, 0x94, 0xf0, + 0xc2, 0x84, 0xaf, 0x92, 0xc4, 0x08, 0xda, 0x82, 0x8c, 0xe7, 0xe9, 0x0b, 0x5a, 0x1e, 0x7e, 0x0c, + 0x43, 0x54, 0x66, 0xc3, 0x5e, 0xc9, 0x10, 0x1d, 0x9e, 0x47, 0x17, 0x54, 0xc7, 0xf0, 0x13, 0x11, + 0xaa, 0x83, 0xf1, 0x3e, 0x43, 0x8c, 0x20, 0x19, 0xae, 0x04, 0x72, 0x06, 0xb4, 0xca, 0x7e, 0xcf, + 0x40, 0x74, 0xad, 0x8d, 0x7a, 0xec, 0x10, 0x9c, 0xb6, 0xc0, 0x91, 0xfe, 0xd0, 0xb4, 0xb1, 0xef, + 0x1a, 0x86, 0xa6, 0x2d, 0xe4, 0x66, 0x40, 0x8c, 0x6c, 0x7e, 0x2b, 0x06, 0x71, 0x3b, 0x8c, 0xa0, + 0x06, 0xbd, 0x41, 0xf1, 0x79, 0xc9, 0xd5, 0x91, 0xf7, 0xa7, 0xc2, 0xb5, 0xd1, 0xd7, 0x8b, 0x62, + 0x04, 0xfd, 0x0f, 0xcc, 0x33, 0x76, 0x2d, 0xb4, 0x1e, 0x7e, 0x7b, 0x46, 0x34, 0x6f, 0x8c, 0xbb, + 0x5e, 0x13, 0x23, 0xe8, 0x75, 0x48, 0xbb, 0x31, 0x10, 0x2d, 0x06, 0xef, 0xb0, 0x88, 0x9e, 0x25, + 0xf6, 0xd5, 0x16, 0x91, 0x76, 0xb7, 0x0b, 0x2a, 0x1d, 0xbc, 0x7e, 0xa2, 0xd2, 0x43, 0x17, 0x46, + 0x03, 0xbb, 0x82, 0xd3, 0xb3, 0x1e, 0x7e, 0x17, 0x13, 0xb4, 0x2b, 0x74, 0x4a, 0xf6, 0x93, 0xf8, + 0xff, 0x86, 0xaf, 0xfe, 0x33, 0x00, 0x00, 0xff, 0xff, 0xe1, 0x4d, 0x41, 0x3b, 0x7c, 0x38, 0x00, + 0x00, } diff --git a/spec.md b/spec.md index 0aac7892..cd9cfb86 100644 --- a/spec.md +++ b/spec.md @@ -455,7 +455,7 @@ message CreateVolumeResponse { message Result { // Contains all attributes of the newly created volume that are // relevant to the CO along with information required by the Plugin - // to uniquely identifying the volume. This field is REQUIRED. + // to uniquely identify the volume. This field is REQUIRED. VolumeInfo volume_info = 1; } @@ -546,6 +546,16 @@ message VolumeInfo { // subsequent calls to refer to the provisioned volume. This field // should not exceed 1MiB. string id = 2; + + // Attributes reflect static properties of a volume and MUST be passed + // to volume validation and publishing calls. + // Attributes SHALL be opaque to a CO. Attributes SHALL NOT be mutable + // and SHALL be safe for the CO to cache. Attributes SHOULD NOT + // contain sensitive information. Attributes MAY NOT uniquely identify + // a volume. A volume uniquely identified by `id` SHALL always report + // the same attributes. This field is OPTIONAL and when present MUST + // be passed to volume validation and publishing calls. + map attributes = 3; } // A standard way to encode credential data. The total bytes of the @@ -638,6 +648,11 @@ message ControllerPublishVolumeRequest { // publish request. // This field is OPTIONAL. Credentials user_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 + // by `volume_id`. + map volume_attributes = 7; } message ControllerPublishVolumeResponse { @@ -732,6 +747,10 @@ message ValidateVolumeCapabilitiesRequest { // call SHALL return "supported" only if all the volume capabilities // specified below are supported. This field is REQUIRED. repeated VolumeCapability volume_capabilities = 3; + + // Attributes of the volume to check. This field is OPTIONAL and MUST + // match the attributes of the VolumeInfo identified by `volume_id`. + map volume_attributes = 4; } message ValidateVolumeCapabilitiesResponse { @@ -957,6 +976,11 @@ message NodePublishVolumeRequest { // End user credentials used to authenticate/authorize node publish // request. This field is OPTIONAL. Credentials user_credentials = 7; + + // Attributes of the volume to publish. This field is OPTIONAL and + // MUST match the attributes of the VolumeInfo identified by + // `volume_id`. + map volume_attributes = 8; } message NodePublishVolumeResponse {