From d1c0a085a83367e06e55b34fa009557442c4978f Mon Sep 17 00:00:00 2001 From: xing-yang Date: Mon, 21 Nov 2022 00:20:00 +0000 Subject: [PATCH] Renamed capability for ModifyVolumeGroupMembership Addressed review comments --- csi.proto | 67 +- lib/go/csi/csi.pb.go | 2797 ++++++++++++++++++++++++++++++++++-------- spec.md | 128 +- 3 files changed, 2395 insertions(+), 597 deletions(-) diff --git a/csi.proto b/csi.proto index 87e56ede..123dcc16 100644 --- a/csi.proto +++ b/csi.proto @@ -111,8 +111,8 @@ service Controller { option (alpha_method) = true; } - rpc ModifyVolumeGroup(ModifyVolumeGroupRequest) - returns (ModifyVolumeGroupResponse) { + rpc ModifyVolumeGroupMembership(ModifyVolumeGroupMembershipRequest) + returns (ModifyVolumeGroupMembershipResponse) { option (alpha_method) = true; } @@ -390,9 +390,11 @@ message CreateVolumeRequest { // choose where the provisioned volume is accessible from. TopologyRequirement accessibility_requirements = 7; - // The ID of the volume group where the volume will be added to. + // The IDs of the volume groups where the volume will be added to. + // Note that it is possible for a volume to be placed in one or more + // groups on the storage backend even if this field is not specified. // This field is OPTIONAL. - string volume_group_id = 8; + repeated string volume_group_id = 8 [(alpha_field) = true]; } // Specifies what source the volume will be created from. One of the @@ -594,9 +596,11 @@ message Volume { // in the "region" "R1". repeated Topology accessible_topology = 5; - // The ID of the volume group where the volume belongs to. + // The IDs of the volume groups where the volume belongs to. + // Note that it is possible for a volume to be placed in one or more + // groups on the storage backend even if this field is not specified. // This field is OPTIONAL. - string volume_group_id = 6; + repeated string volume_group_id = 6 [(alpha_field) = true]; } message TopologyRequirement { @@ -1101,14 +1105,14 @@ message VolumeGroup { // Underlying volumes in this group. The same definition in CSI // Volume. - // This field is REQUIRED. + // This field is OPTIONAL. // To support the creation of an empty group, this list can be empty. // However, this field is not empty in the following cases: // - Response from ListVolumeGroups or ControllerGetVolumeGroup if the // VolumeGroup is not empty. - // - Response from ModifyVolumeGroup if the VolumeGroup is not - // empty after modification. - repeated .csi.v1.Volume volumes = 3; + // - Response from ModifyVolumeGroupMembership if the + // VolumeGroup is not empty after modification. + repeated Volume volumes = 3; } message DeleteVolumeGroupRequest { option (alpha_message) = true; @@ -1117,8 +1121,8 @@ message DeleteVolumeGroupRequest { // This field is REQUIRED. string volume_group_id = 1; - // Secrets required by plugin to complete volume group deletion - // request. + // Secrets required by plugin to complete volume group + // deletion request. // This field is OPTIONAL. Refer to the `Secrets Requirements` // section on how to use this field. map secrets = 2 [(csi_secret) = true]; @@ -1128,7 +1132,7 @@ message DeleteVolumeGroupResponse { option (alpha_message) = true; // Intentionally empty. } -message ModifyVolumeGroupRequest { +message ModifyVolumeGroupMembershipRequest { option (alpha_message) = true; // The ID of the volume group to be modified. @@ -1151,7 +1155,7 @@ message ModifyVolumeGroupRequest { map secrets = 3 [(csi_secret) = true]; } -message ModifyVolumeGroupResponse { +message ModifyVolumeGroupMembershipResponse { option (alpha_message) = true; // Contains all attributes of the modified volume group. @@ -1240,14 +1244,17 @@ message CreateVolumeGroupSnapshotRequest { // take a group snapshot repeated string volume_ids = 3; - // secrets required for snapshot creation (pulled from - // VolumeSnapshotClass) - // This field is OPTIONAL. + // Secrets required by plugin to complete volume group snapshot + // creation request. + // This field is OPTIONAL. Refer to the `Secrets Requirements` + // section on how to use this field. map secrets = 4 [(.csi.v1.csi_secret) = true]; - // params passed from VolumeSnapshotClass - // This field is OPTIONAL. + // Plugin specific parameters passed in as opaque key-value pairs. + // This field is OPTIONAL. The Plugin is responsible for parsing and + // validating these parameters. COs will treat these as opaque. map parameters = 5; + } message CreateVolumeGroupSnapshotResponse { @@ -1268,7 +1275,7 @@ message VolumeGroupSnapshot { // A list of snapshots created. Snapshot is the same // definition as Snapshot definition used in CSI. // This field is OPTIONAL. - repeated .csi.v1.Snapshot snapshots = 2; + repeated Snapshot snapshots = 2; // Identity information for the source volume group. Currently, only // support the case that source is volume group. This field is @@ -1279,8 +1286,7 @@ message VolumeGroupSnapshot { // This field is REQUIRED. bool ready_to_use = 4; - // Timestamp when the point-in-time consistency group snapshot is - // taken. + // Timestamp when the volume group snapshot is taken. // This field is REQUIRED. .google.protobuf.Timestamp creation_time = 5; @@ -1458,30 +1464,35 @@ message ControllerServiceCapability { // Indicates that the controller plugin supports adding an // existing volume to a volume group and removing a volume from // a volume group without deleting it. - VOLUME_GROUP_ADD_REMOVE_EXISTING_VOLUME = 15 + MODIFY_VOLUME_GROUP_MEMBERSHIP = 15 + [(alpha_enum_value) = true]; + + // Indicates that the controller plugin supports creating and + // deleting a volume group snapshot. + CREATE_DELETE_VOLUME_GROUP_SNAPSHOT = 16 [(alpha_enum_value) = true]; // Indicates whether the controller plugin supports creating a // volume from an individual volume snapshot if the volume // snapshot is part of a VolumeGroupSnapshot. // Use cases: selective restore, advanced recovery, etc. - INDIVIDUAL_SNAPSHOT_RESTORE = 16 [(alpha_enum_value) = true]; + INDIVIDUAL_SNAPSHOT_RESTORE = 17 [(alpha_enum_value) = true]; // Indicates that the controller plugin supports getting details // of a volume group. - GET_VOLUME_GROUP = 17 [(alpha_enum_value) = true]; + GET_VOLUME_GROUP = 18 [(alpha_enum_value) = true]; // Indicates that the controller plugin supports getting details // of a volume group snapshot. - GET_VOLUME_GROUP_SNAPSHOT = 18 [(alpha_enum_value) = true]; + GET_VOLUME_GROUP_SNAPSHOT = 19 [(alpha_enum_value) = true]; // Indicates that the controller plugin supports getting details // of a list of volume groups. - LIST_VOLUME_GROUPS = 19 [(alpha_enum_value) = true]; + LIST_VOLUME_GROUPS = 20 [(alpha_enum_value) = true]; // Indicates that the controller plugin supports getting details // of a list of volume group snapshots. - LIST_VOLUME_GROUP_SNAPSHOTS = 20 [(alpha_enum_value) = true]; + LIST_VOLUME_GROUP_SNAPSHOTS = 21 [(alpha_enum_value) = true]; } Type type = 1; diff --git a/lib/go/csi/csi.pb.go b/lib/go/csi/csi.pb.go index d889edb2..c08d8094 100644 --- a/lib/go/csi/csi.pb.go +++ b/lib/go/csi/csi.pb.go @@ -85,17 +85,20 @@ const ( // expansion of node-published volume via NodeExpandVolume. // // Example 1: Given a shared filesystem volume (e.g. GlusterFs), - // the Plugin may set the ONLINE volume expansion capability and - // implement ControllerExpandVolume but not NodeExpandVolume. + // + // the Plugin may set the ONLINE volume expansion capability and + // implement ControllerExpandVolume but not NodeExpandVolume. // // Example 2: Given a block storage volume type (e.g. EBS), the - // Plugin may set the ONLINE volume expansion capability and - // implement both ControllerExpandVolume and NodeExpandVolume. + // + // Plugin may set the ONLINE volume expansion capability and + // implement both ControllerExpandVolume and NodeExpandVolume. // // Example 3: Given a Plugin that supports volume expansion only - // upon a node, the Plugin may set the ONLINE volume - // expansion capability and implement NodeExpandVolume but not - // ControllerExpandVolume. + // + // upon a node, the Plugin may set the ONLINE volume + // expansion capability and implement NodeExpandVolume but not + // ControllerExpandVolume. PluginCapability_VolumeExpansion_ONLINE PluginCapability_VolumeExpansion_Type = 1 // OFFLINE indicates that volumes currently published and // available on a node SHALL NOT be expanded via @@ -105,10 +108,11 @@ const ( // the EXPAND_VOLUME node capability. // // Example 1: Given a block storage volume type (e.g. Azure Disk) - // that does not support expansion of "node-attached" (i.e. - // controller-published) volumes, the Plugin may indicate - // OFFLINE volume expansion support and implement both - // ControllerExpandVolume and NodeExpandVolume. + // + // that does not support expansion of "node-attached" (i.e. + // controller-published) volumes, the Plugin may indicate + // OFFLINE volume expansion support and implement both + // ControllerExpandVolume and NodeExpandVolume. PluginCapability_VolumeExpansion_OFFLINE PluginCapability_VolumeExpansion_Type = 2 ) @@ -246,6 +250,33 @@ const ( // SINGLE_NODE_SINGLE_WRITER and/or SINGLE_NODE_MULTI_WRITER are // supported, in order to permit older COs to continue working. ControllerServiceCapability_RPC_SINGLE_NODE_MULTI_WRITER ControllerServiceCapability_RPC_Type = 13 + // Indicates that the controller plugin supports creating and + // deleting a volume group. + ControllerServiceCapability_RPC_CREATE_DELETE_VOLUME_GROUP ControllerServiceCapability_RPC_Type = 14 + // Indicates that the controller plugin supports adding an + // existing volume to a volume group and removing a volume from + // a volume group without deleting it. + ControllerServiceCapability_RPC_MODIFY_VOLUME_GROUP_MEMBERSHIP ControllerServiceCapability_RPC_Type = 15 + // Indicates that the controller plugin supports creating and + // deleting a volume group snapshot. + ControllerServiceCapability_RPC_CREATE_DELETE_VOLUME_GROUP_SNAPSHOT ControllerServiceCapability_RPC_Type = 16 + // Indicates whether the controller plugin supports creating a + // volume from an individual volume snapshot if the volume + // snapshot is part of a VolumeGroupSnapshot. + // Use cases: selective restore, advanced recovery, etc. + ControllerServiceCapability_RPC_INDIVIDUAL_SNAPSHOT_RESTORE ControllerServiceCapability_RPC_Type = 17 + // Indicates that the controller plugin supports getting details + // of a volume group. + ControllerServiceCapability_RPC_GET_VOLUME_GROUP ControllerServiceCapability_RPC_Type = 18 + // Indicates that the controller plugin supports getting details + // of a volume group snapshot. + ControllerServiceCapability_RPC_GET_VOLUME_GROUP_SNAPSHOT ControllerServiceCapability_RPC_Type = 19 + // Indicates that the controller plugin supports getting details + // of a list of volume groups. + ControllerServiceCapability_RPC_LIST_VOLUME_GROUPS ControllerServiceCapability_RPC_Type = 20 + // Indicates that the controller plugin supports getting details + // of a list of volume group snapshots. + ControllerServiceCapability_RPC_LIST_VOLUME_GROUP_SNAPSHOTS ControllerServiceCapability_RPC_Type = 21 ) var ControllerServiceCapability_RPC_Type_name = map[int32]string{ @@ -263,23 +294,39 @@ var ControllerServiceCapability_RPC_Type_name = map[int32]string{ 11: "VOLUME_CONDITION", 12: "GET_VOLUME", 13: "SINGLE_NODE_MULTI_WRITER", + 14: "CREATE_DELETE_VOLUME_GROUP", + 15: "MODIFY_VOLUME_GROUP_MEMBERSHIP", + 16: "CREATE_DELETE_VOLUME_GROUP_SNAPSHOT", + 17: "INDIVIDUAL_SNAPSHOT_RESTORE", + 18: "GET_VOLUME_GROUP", + 19: "GET_VOLUME_GROUP_SNAPSHOT", + 20: "LIST_VOLUME_GROUPS", + 21: "LIST_VOLUME_GROUP_SNAPSHOTS", } var ControllerServiceCapability_RPC_Type_value = map[string]int32{ - "UNKNOWN": 0, - "CREATE_DELETE_VOLUME": 1, - "PUBLISH_UNPUBLISH_VOLUME": 2, - "LIST_VOLUMES": 3, - "GET_CAPACITY": 4, - "CREATE_DELETE_SNAPSHOT": 5, - "LIST_SNAPSHOTS": 6, - "CLONE_VOLUME": 7, - "PUBLISH_READONLY": 8, - "EXPAND_VOLUME": 9, - "LIST_VOLUMES_PUBLISHED_NODES": 10, - "VOLUME_CONDITION": 11, - "GET_VOLUME": 12, - "SINGLE_NODE_MULTI_WRITER": 13, + "UNKNOWN": 0, + "CREATE_DELETE_VOLUME": 1, + "PUBLISH_UNPUBLISH_VOLUME": 2, + "LIST_VOLUMES": 3, + "GET_CAPACITY": 4, + "CREATE_DELETE_SNAPSHOT": 5, + "LIST_SNAPSHOTS": 6, + "CLONE_VOLUME": 7, + "PUBLISH_READONLY": 8, + "EXPAND_VOLUME": 9, + "LIST_VOLUMES_PUBLISHED_NODES": 10, + "VOLUME_CONDITION": 11, + "GET_VOLUME": 12, + "SINGLE_NODE_MULTI_WRITER": 13, + "CREATE_DELETE_VOLUME_GROUP": 14, + "MODIFY_VOLUME_GROUP_MEMBERSHIP": 15, + "CREATE_DELETE_VOLUME_GROUP_SNAPSHOT": 16, + "INDIVIDUAL_SNAPSHOT_RESTORE": 17, + "GET_VOLUME_GROUP": 18, + "GET_VOLUME_GROUP_SNAPSHOT": 19, + "LIST_VOLUME_GROUPS": 20, + "LIST_VOLUME_GROUP_SNAPSHOTS": 21, } func (x ControllerServiceCapability_RPC_Type) String() string { @@ -287,7 +334,7 @@ func (x ControllerServiceCapability_RPC_Type) String() string { } func (ControllerServiceCapability_RPC_Type) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{31, 0, 0} + return fileDescriptor_9cdb00adce470e01, []int{51, 0, 0} } type VolumeUsage_Unit int32 @@ -315,7 +362,7 @@ func (x VolumeUsage_Unit) String() string { } func (VolumeUsage_Unit) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{51, 0} + return fileDescriptor_9cdb00adce470e01, []int{71, 0} } type NodeServiceCapability_RPC_Type int32 @@ -382,7 +429,7 @@ func (x NodeServiceCapability_RPC_Type) String() string { } func (NodeServiceCapability_RPC_Type) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{55, 0, 0} + return fileDescriptor_9cdb00adce470e01, []int{75, 0, 0} } type GetPluginInfoRequest struct { @@ -555,6 +602,7 @@ func (m *GetPluginCapabilitiesResponse) GetCapabilities() []*PluginCapability { // Specifies a capability of the plugin. type PluginCapability struct { // Types that are valid to be assigned to Type: + // // *PluginCapability_Service_ // *PluginCapability_VolumeExpansion_ Type isPluginCapability_Type `protobuf_oneof:"type"` @@ -748,16 +796,16 @@ type ProbeResponse struct { // and it is important for a CO to distinguish between the following // cases: // - // 1) The plugin is in an unhealthy state and MAY need restarting. In - // this case a gRPC error code SHALL be returned. - // 2) The plugin is still initializing, but is otherwise perfectly - // healthy. In this case a successful response SHALL be returned - // with a readiness value of `false`. Calls to the plugin's - // Controller and/or Node services MAY fail due to an incomplete - // initialization state. - // 3) The plugin has finished initializing and is ready to service - // calls to its Controller and/or Node services. A successful - // response is returned with a readiness value of `true`. + // 1. The plugin is in an unhealthy state and MAY need restarting. In + // this case a gRPC error code SHALL be returned. + // 2. The plugin is still initializing, but is otherwise perfectly + // healthy. In this case a successful response SHALL be returned + // with a readiness value of `false`. Calls to the plugin's + // Controller and/or Node services MAY fail due to an incomplete + // initialization state. + // 3. The plugin has finished initializing and is ready to service + // calls to its Controller and/or Node services. A successful + // response is returned with a readiness value of `true`. // // This field is OPTIONAL. If not present, the caller SHALL assume // that the plugin is in a ready state and is accepting calls to its @@ -804,26 +852,27 @@ func (m *ProbeResponse) GetReady() *wrappers.BoolValue { type CreateVolumeRequest struct { // The suggested name for the storage space. This field is REQUIRED. // It serves two purposes: - // 1) Idempotency - This name is generated by the CO to achieve - // idempotency. The Plugin SHOULD ensure that multiple - // `CreateVolume` calls for the same name do not result in more - // than one piece of storage provisioned corresponding to that - // name. If a Plugin is unable to enforce idempotency, the CO's - // error recovery logic could result in multiple (unused) volumes - // being provisioned. - // In the case of error, the CO MUST handle the gRPC error codes - // per the recovery behavior defined in the "CreateVolume Errors" - // section below. - // The CO is responsible for cleaning up volumes it provisioned - // that it no longer needs. If the CO is uncertain whether a volume - // was provisioned or not when a `CreateVolume` call fails, the CO - // MAY call `CreateVolume` again, with the same name, to ensure the - // volume exists and to retrieve the volume's `volume_id` (unless - // otherwise prohibited by "CreateVolume Errors"). - // 2) Suggested name - Some storage systems allow callers to specify - // an identifier by which to refer to the newly provisioned - // storage. If a storage system supports this, it can optionally - // use this name as the identifier for the new volume. + // 1. Idempotency - This name is generated by the CO to achieve + // idempotency. The Plugin SHOULD ensure that multiple + // `CreateVolume` calls for the same name do not result in more + // than one piece of storage provisioned corresponding to that + // name. If a Plugin is unable to enforce idempotency, the CO's + // error recovery logic could result in multiple (unused) volumes + // being provisioned. + // In the case of error, the CO MUST handle the gRPC error codes + // per the recovery behavior defined in the "CreateVolume Errors" + // section below. + // The CO is responsible for cleaning up volumes it provisioned + // that it no longer needs. If the CO is uncertain whether a volume + // was provisioned or not when a `CreateVolume` call fails, the CO + // MAY call `CreateVolume` again, with the same name, to ensure the + // volume exists and to retrieve the volume's `volume_id` (unless + // otherwise prohibited by "CreateVolume Errors"). + // 2. Suggested name - Some storage systems allow callers to specify + // an identifier by which to refer to the newly provisioned + // storage. If a storage system supports this, it can optionally + // use this name as the identifier for the new volume. + // // Any Unicode string that conforms to the length limit is allowed // except those containing the following banned characters: // U+0000-U+0008, U+000B, U+000C, U+000E-U+001F, U+007F-U+009F. @@ -874,9 +923,14 @@ type CreateVolumeRequest struct { // VOLUME_ACCESSIBILITY_CONSTRAINTS plugin capability, the SP MAY // choose where the provisioned volume is accessible from. AccessibilityRequirements *TopologyRequirement `protobuf:"bytes,7,opt,name=accessibility_requirements,json=accessibilityRequirements,proto3" json:"accessibility_requirements,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + // The IDs of the volume groups where the volume will be added to. + // Note that it is possible for a volume to be placed in one or more + // groups on the storage backend even if this field is not specified. + // This field is OPTIONAL. + VolumeGroupId []string `protobuf:"bytes,8,rep,name=volume_group_id,json=volumeGroupId,proto3" json:"volume_group_id,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *CreateVolumeRequest) Reset() { *m = CreateVolumeRequest{} } @@ -953,10 +1007,18 @@ func (m *CreateVolumeRequest) GetAccessibilityRequirements() *TopologyRequiremen return nil } +func (m *CreateVolumeRequest) GetVolumeGroupId() []string { + if m != nil { + return m.VolumeGroupId + } + return nil +} + // Specifies what source the volume will be created from. One of the // type fields MUST be specified. type VolumeContentSource struct { // Types that are valid to be assigned to Type: + // // *VolumeContentSource_Snapshot // *VolumeContentSource_Volume Type isVolumeContentSource_Type `protobuf_oneof:"type"` @@ -1168,6 +1230,7 @@ type VolumeCapability struct { // following fields MUST be specified. // // Types that are valid to be assigned to AccessType: + // // *VolumeCapability_Block // *VolumeCapability_Mount AccessType isVolumeCapability_AccessType `protobuf_oneof:"access_type"` @@ -1509,20 +1572,29 @@ type Volume struct { // node. // // Example 1: - // accessible_topology = {"region": "R1", "zone": "Z2"} + // + // accessible_topology = {"region": "R1", "zone": "Z2"} + // // Indicates a volume accessible only from the "region" "R1" and the // "zone" "Z2". // // Example 2: - // accessible_topology = - // {"region": "R1", "zone": "Z2"}, - // {"region": "R1", "zone": "Z3"} + // + // accessible_topology = + // {"region": "R1", "zone": "Z2"}, + // {"region": "R1", "zone": "Z3"} + // // Indicates a volume accessible from both "zone" "Z2" and "zone" "Z3" // in the "region" "R1". - AccessibleTopology []*Topology `protobuf:"bytes,5,rep,name=accessible_topology,json=accessibleTopology,proto3" json:"accessible_topology,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + AccessibleTopology []*Topology `protobuf:"bytes,5,rep,name=accessible_topology,json=accessibleTopology,proto3" json:"accessible_topology,omitempty"` + // The IDs of the volume groups where the volume belongs to. + // Note that it is possible for a volume to be placed in one or more + // groups on the storage backend even if this field is not specified. + // This field is OPTIONAL. + VolumeGroupId []string `protobuf:"bytes,6,rep,name=volume_group_id,json=volumeGroupId,proto3" json:"volume_group_id,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *Volume) Reset() { *m = Volume{} } @@ -1585,6 +1657,13 @@ func (m *Volume) GetAccessibleTopology() []*Topology { return nil } +func (m *Volume) GetVolumeGroupId() []string { + if m != nil { + return m.VolumeGroupId + } + return nil +} + type TopologyRequirement struct { // Specifies the list of topologies the provisioned volume MUST be // accessible from. @@ -1595,21 +1674,27 @@ type TopologyRequirement struct { // accessible from at least one of the requisite topologies. // // Given - // x = number of topologies provisioned volume is accessible from - // n = number of requisite topologies + // + // x = number of topologies provisioned volume is accessible from + // n = number of requisite topologies + // // The CO MUST ensure n >= 1. The SP MUST ensure x >= 1 // If x==n, then the SP MUST make the provisioned volume available to // all topologies from the list of requisite topologies. If it is // unable to do so, the SP MUST fail the CreateVolume call. // For example, if a volume should be accessible from a single zone, // and requisite = - // {"region": "R1", "zone": "Z2"} + // + // {"region": "R1", "zone": "Z2"} + // // then the provisioned volume MUST be accessible from the "region" // "R1" and the "zone" "Z2". // Similarly, if a volume should be accessible from two zones, and // requisite = - // {"region": "R1", "zone": "Z2"}, - // {"region": "R1", "zone": "Z3"} + // + // {"region": "R1", "zone": "Z2"}, + // {"region": "R1", "zone": "Z3"} + // // then the provisioned volume MUST be accessible from the "region" // "R1" and both "zone" "Z2" and "zone" "Z3". // @@ -1618,18 +1703,23 @@ type TopologyRequirement struct { // the CreateVolume call. // For example, if a volume should be accessible from a single zone, // and requisite = - // {"region": "R1", "zone": "Z2"}, - // {"region": "R1", "zone": "Z3"} + // + // {"region": "R1", "zone": "Z2"}, + // {"region": "R1", "zone": "Z3"} + // // then the SP may choose to make the provisioned volume available in // either the "zone" "Z2" or the "zone" "Z3" in the "region" "R1". // Similarly, if a volume should be accessible from two zones, and // requisite = - // {"region": "R1", "zone": "Z2"}, - // {"region": "R1", "zone": "Z3"}, - // {"region": "R1", "zone": "Z4"} + // + // {"region": "R1", "zone": "Z2"}, + // {"region": "R1", "zone": "Z3"}, + // {"region": "R1", "zone": "Z4"} + // // then the provisioned volume MUST be accessible from any combination // of two unique topologies: e.g. "R1/Z2" and "R1/Z3", or "R1/Z2" and - // "R1/Z4", or "R1/Z3" and "R1/Z4". + // + // "R1/Z4", or "R1/Z3" and "R1/Z4". // // If x>n, then the SP MUST make the provisioned volume available from // all topologies from the list of requisite topologies and MAY choose @@ -1638,7 +1728,9 @@ type TopologyRequirement struct { // CreateVolume call. // For example, if a volume should be accessible from two zones, and // requisite = - // {"region": "R1", "zone": "Z2"} + // + // {"region": "R1", "zone": "Z2"} + // // then the provisioned volume MUST be accessible from the "region" // "R1" and the "zone" "Z2" and the SP may select the second zone // independently, e.g. "R1/Z4". @@ -1667,10 +1759,14 @@ type TopologyRequirement struct { // Example 1: // Given a volume should be accessible from a single zone, and // requisite = - // {"region": "R1", "zone": "Z2"}, - // {"region": "R1", "zone": "Z3"} + // + // {"region": "R1", "zone": "Z2"}, + // {"region": "R1", "zone": "Z3"} + // // preferred = - // {"region": "R1", "zone": "Z3"} + // + // {"region": "R1", "zone": "Z3"} + // // then the SP SHOULD first attempt to make the provisioned volume // available from "zone" "Z3" in the "region" "R1" and fall back to // "zone" "Z2" in the "region" "R1" if that is not possible. @@ -1678,13 +1774,17 @@ type TopologyRequirement struct { // Example 2: // Given a volume should be accessible from a single zone, and // requisite = - // {"region": "R1", "zone": "Z2"}, - // {"region": "R1", "zone": "Z3"}, - // {"region": "R1", "zone": "Z4"}, - // {"region": "R1", "zone": "Z5"} + // + // {"region": "R1", "zone": "Z2"}, + // {"region": "R1", "zone": "Z3"}, + // {"region": "R1", "zone": "Z4"}, + // {"region": "R1", "zone": "Z5"} + // // preferred = - // {"region": "R1", "zone": "Z4"}, - // {"region": "R1", "zone": "Z2"} + // + // {"region": "R1", "zone": "Z4"}, + // {"region": "R1", "zone": "Z2"} + // // then the SP SHOULD first attempt to make the provisioned volume // accessible from "zone" "Z4" in the "region" "R1" and fall back to // "zone" "Z2" in the "region" "R1" if that is not possible. If that @@ -1697,13 +1797,17 @@ type TopologyRequirement struct { // the volume is accessible from two zones, aka synchronously // replicated), and // requisite = - // {"region": "R1", "zone": "Z2"}, - // {"region": "R1", "zone": "Z3"}, - // {"region": "R1", "zone": "Z4"}, - // {"region": "R1", "zone": "Z5"} + // + // {"region": "R1", "zone": "Z2"}, + // {"region": "R1", "zone": "Z3"}, + // {"region": "R1", "zone": "Z4"}, + // {"region": "R1", "zone": "Z5"} + // // preferred = - // {"region": "R1", "zone": "Z5"}, - // {"region": "R1", "zone": "Z3"} + // + // {"region": "R1", "zone": "Z5"}, + // {"region": "R1", "zone": "Z3"} + // // then the SP SHOULD first attempt to make the provisioned volume // accessible from the combination of the two "zones" "Z5" and "Z3" in // the "region" "R1". If that's not possible, it should fall back to @@ -2897,247 +3001,1453 @@ func (m *GetCapacityResponse) GetMinimumVolumeSize() *wrappers.Int64Value { return nil } -type ControllerGetCapabilitiesRequest struct { - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` +type CreateVolumeGroupRequest struct { + // suggested name for volume group (required for idempotency) + // This field is REQUIRED. + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + // params passed from VolumeGroupClass + // This field is OPTIONAL. + Parameters map[string]string `protobuf:"bytes,2,rep,name=parameters,proto3" json:"parameters,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + // Secrets required by plugin to complete volume group creation + // request. + // This field is OPTIONAL. Refer to the `Secrets Requirements` + // section on how to use this field. + Secrets map[string]string `protobuf:"bytes,3,rep,name=secrets,proto3" json:"secrets,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ControllerGetCapabilitiesRequest) Reset() { *m = ControllerGetCapabilitiesRequest{} } -func (m *ControllerGetCapabilitiesRequest) String() string { return proto.CompactTextString(m) } -func (*ControllerGetCapabilitiesRequest) ProtoMessage() {} -func (*ControllerGetCapabilitiesRequest) Descriptor() ([]byte, []int) { +func (m *CreateVolumeGroupRequest) Reset() { *m = CreateVolumeGroupRequest{} } +func (m *CreateVolumeGroupRequest) String() string { return proto.CompactTextString(m) } +func (*CreateVolumeGroupRequest) ProtoMessage() {} +func (*CreateVolumeGroupRequest) Descriptor() ([]byte, []int) { return fileDescriptor_9cdb00adce470e01, []int{29} } -func (m *ControllerGetCapabilitiesRequest) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_ControllerGetCapabilitiesRequest.Unmarshal(m, b) +func (m *CreateVolumeGroupRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CreateVolumeGroupRequest.Unmarshal(m, b) } -func (m *ControllerGetCapabilitiesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_ControllerGetCapabilitiesRequest.Marshal(b, m, deterministic) +func (m *CreateVolumeGroupRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CreateVolumeGroupRequest.Marshal(b, m, deterministic) } -func (m *ControllerGetCapabilitiesRequest) XXX_Merge(src proto.Message) { - xxx_messageInfo_ControllerGetCapabilitiesRequest.Merge(m, src) +func (m *CreateVolumeGroupRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_CreateVolumeGroupRequest.Merge(m, src) } -func (m *ControllerGetCapabilitiesRequest) XXX_Size() int { - return xxx_messageInfo_ControllerGetCapabilitiesRequest.Size(m) +func (m *CreateVolumeGroupRequest) XXX_Size() int { + return xxx_messageInfo_CreateVolumeGroupRequest.Size(m) } -func (m *ControllerGetCapabilitiesRequest) XXX_DiscardUnknown() { - xxx_messageInfo_ControllerGetCapabilitiesRequest.DiscardUnknown(m) +func (m *CreateVolumeGroupRequest) XXX_DiscardUnknown() { + xxx_messageInfo_CreateVolumeGroupRequest.DiscardUnknown(m) } -var xxx_messageInfo_ControllerGetCapabilitiesRequest proto.InternalMessageInfo - -type ControllerGetCapabilitiesResponse struct { - // All the capabilities that the controller service supports. This - // field is OPTIONAL. - Capabilities []*ControllerServiceCapability `protobuf:"bytes,1,rep,name=capabilities,proto3" json:"capabilities,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` -} +var xxx_messageInfo_CreateVolumeGroupRequest proto.InternalMessageInfo -func (m *ControllerGetCapabilitiesResponse) Reset() { *m = ControllerGetCapabilitiesResponse{} } -func (m *ControllerGetCapabilitiesResponse) String() string { return proto.CompactTextString(m) } -func (*ControllerGetCapabilitiesResponse) ProtoMessage() {} -func (*ControllerGetCapabilitiesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{30} +func (m *CreateVolumeGroupRequest) GetName() string { + if m != nil { + return m.Name + } + return "" } -func (m *ControllerGetCapabilitiesResponse) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_ControllerGetCapabilitiesResponse.Unmarshal(m, b) -} -func (m *ControllerGetCapabilitiesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_ControllerGetCapabilitiesResponse.Marshal(b, m, deterministic) -} -func (m *ControllerGetCapabilitiesResponse) XXX_Merge(src proto.Message) { - xxx_messageInfo_ControllerGetCapabilitiesResponse.Merge(m, src) -} -func (m *ControllerGetCapabilitiesResponse) XXX_Size() int { - return xxx_messageInfo_ControllerGetCapabilitiesResponse.Size(m) -} -func (m *ControllerGetCapabilitiesResponse) XXX_DiscardUnknown() { - xxx_messageInfo_ControllerGetCapabilitiesResponse.DiscardUnknown(m) +func (m *CreateVolumeGroupRequest) GetParameters() map[string]string { + if m != nil { + return m.Parameters + } + return nil } -var xxx_messageInfo_ControllerGetCapabilitiesResponse proto.InternalMessageInfo - -func (m *ControllerGetCapabilitiesResponse) GetCapabilities() []*ControllerServiceCapability { +func (m *CreateVolumeGroupRequest) GetSecrets() map[string]string { if m != nil { - return m.Capabilities + return m.Secrets } return nil } -// Specifies a capability of the controller service. -type ControllerServiceCapability struct { - // Types that are valid to be assigned to Type: - // *ControllerServiceCapability_Rpc - Type isControllerServiceCapability_Type `protobuf_oneof:"type"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` +type CreateVolumeGroupResponse struct { + // Contains all attributes of the newly created volume group. + // This field is REQUIRED. + VolumeGroup *VolumeGroup `protobuf:"bytes,1,opt,name=volume_group,json=volumeGroup,proto3" json:"volume_group,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ControllerServiceCapability) Reset() { *m = ControllerServiceCapability{} } -func (m *ControllerServiceCapability) String() string { return proto.CompactTextString(m) } -func (*ControllerServiceCapability) ProtoMessage() {} -func (*ControllerServiceCapability) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{31} +func (m *CreateVolumeGroupResponse) Reset() { *m = CreateVolumeGroupResponse{} } +func (m *CreateVolumeGroupResponse) String() string { return proto.CompactTextString(m) } +func (*CreateVolumeGroupResponse) ProtoMessage() {} +func (*CreateVolumeGroupResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{30} } -func (m *ControllerServiceCapability) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_ControllerServiceCapability.Unmarshal(m, b) -} -func (m *ControllerServiceCapability) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_ControllerServiceCapability.Marshal(b, m, deterministic) -} -func (m *ControllerServiceCapability) XXX_Merge(src proto.Message) { - xxx_messageInfo_ControllerServiceCapability.Merge(m, src) +func (m *CreateVolumeGroupResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CreateVolumeGroupResponse.Unmarshal(m, b) } -func (m *ControllerServiceCapability) XXX_Size() int { - return xxx_messageInfo_ControllerServiceCapability.Size(m) +func (m *CreateVolumeGroupResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CreateVolumeGroupResponse.Marshal(b, m, deterministic) } -func (m *ControllerServiceCapability) XXX_DiscardUnknown() { - xxx_messageInfo_ControllerServiceCapability.DiscardUnknown(m) +func (m *CreateVolumeGroupResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_CreateVolumeGroupResponse.Merge(m, src) } - -var xxx_messageInfo_ControllerServiceCapability proto.InternalMessageInfo - -type isControllerServiceCapability_Type interface { - isControllerServiceCapability_Type() +func (m *CreateVolumeGroupResponse) XXX_Size() int { + return xxx_messageInfo_CreateVolumeGroupResponse.Size(m) } - -type ControllerServiceCapability_Rpc struct { - Rpc *ControllerServiceCapability_RPC `protobuf:"bytes,1,opt,name=rpc,proto3,oneof"` +func (m *CreateVolumeGroupResponse) XXX_DiscardUnknown() { + xxx_messageInfo_CreateVolumeGroupResponse.DiscardUnknown(m) } -func (*ControllerServiceCapability_Rpc) isControllerServiceCapability_Type() {} +var xxx_messageInfo_CreateVolumeGroupResponse proto.InternalMessageInfo -func (m *ControllerServiceCapability) GetType() isControllerServiceCapability_Type { +func (m *CreateVolumeGroupResponse) GetVolumeGroup() *VolumeGroup { if m != nil { - return m.Type - } - return nil -} - -func (m *ControllerServiceCapability) GetRpc() *ControllerServiceCapability_RPC { - if x, ok := m.GetType().(*ControllerServiceCapability_Rpc); ok { - return x.Rpc + return m.VolumeGroup } return nil } -// XXX_OneofWrappers is for the internal use of the proto package. -func (*ControllerServiceCapability) XXX_OneofWrappers() []interface{} { - return []interface{}{ - (*ControllerServiceCapability_Rpc)(nil), - } +type VolumeGroup struct { + // The identifier for this volume group, generated by the plugin. + // This field is REQUIRED. + VolumeGroupId string `protobuf:"bytes,1,opt,name=volume_group_id,json=volumeGroupId,proto3" json:"volume_group_id,omitempty"` + // Opaque static properties of the volume group. + // This field is OPTIONAL. + VolumeGroupContext map[string]string `protobuf:"bytes,2,rep,name=volume_group_context,json=volumeGroupContext,proto3" json:"volume_group_context,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + // Underlying volumes in this group. The same definition in CSI + // Volume. + // This field is OPTIONAL. + // To support the creation of an empty group, this list can be empty. + // However, this field is not empty in the following cases: + // - Response from ListVolumeGroups or ControllerGetVolumeGroup if the + // VolumeGroup is not empty. + // - Response from ModifyVolumeGroupMembership if the + // VolumeGroup is not empty after modification. + Volumes []*Volume `protobuf:"bytes,3,rep,name=volumes,proto3" json:"volumes,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -type ControllerServiceCapability_RPC struct { - Type ControllerServiceCapability_RPC_Type `protobuf:"varint,1,opt,name=type,proto3,enum=csi.v1.ControllerServiceCapability_RPC_Type" json:"type,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` +func (m *VolumeGroup) Reset() { *m = VolumeGroup{} } +func (m *VolumeGroup) String() string { return proto.CompactTextString(m) } +func (*VolumeGroup) ProtoMessage() {} +func (*VolumeGroup) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{31} } -func (m *ControllerServiceCapability_RPC) Reset() { *m = ControllerServiceCapability_RPC{} } -func (m *ControllerServiceCapability_RPC) String() string { return proto.CompactTextString(m) } -func (*ControllerServiceCapability_RPC) ProtoMessage() {} -func (*ControllerServiceCapability_RPC) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{31, 0} +func (m *VolumeGroup) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_VolumeGroup.Unmarshal(m, b) } - -func (m *ControllerServiceCapability_RPC) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_ControllerServiceCapability_RPC.Unmarshal(m, b) +func (m *VolumeGroup) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_VolumeGroup.Marshal(b, m, deterministic) } -func (m *ControllerServiceCapability_RPC) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_ControllerServiceCapability_RPC.Marshal(b, m, deterministic) +func (m *VolumeGroup) XXX_Merge(src proto.Message) { + xxx_messageInfo_VolumeGroup.Merge(m, src) } -func (m *ControllerServiceCapability_RPC) XXX_Merge(src proto.Message) { - xxx_messageInfo_ControllerServiceCapability_RPC.Merge(m, src) +func (m *VolumeGroup) XXX_Size() int { + return xxx_messageInfo_VolumeGroup.Size(m) } -func (m *ControllerServiceCapability_RPC) XXX_Size() int { - return xxx_messageInfo_ControllerServiceCapability_RPC.Size(m) +func (m *VolumeGroup) XXX_DiscardUnknown() { + xxx_messageInfo_VolumeGroup.DiscardUnknown(m) } -func (m *ControllerServiceCapability_RPC) XXX_DiscardUnknown() { - xxx_messageInfo_ControllerServiceCapability_RPC.DiscardUnknown(m) + +var xxx_messageInfo_VolumeGroup proto.InternalMessageInfo + +func (m *VolumeGroup) GetVolumeGroupId() string { + if m != nil { + return m.VolumeGroupId + } + return "" } -var xxx_messageInfo_ControllerServiceCapability_RPC proto.InternalMessageInfo +func (m *VolumeGroup) GetVolumeGroupContext() map[string]string { + if m != nil { + return m.VolumeGroupContext + } + return nil +} -func (m *ControllerServiceCapability_RPC) GetType() ControllerServiceCapability_RPC_Type { +func (m *VolumeGroup) GetVolumes() []*Volume { if m != nil { - return m.Type + return m.Volumes } - return ControllerServiceCapability_RPC_UNKNOWN + return nil } -type CreateSnapshotRequest struct { - // The ID of the source volume to be snapshotted. +type DeleteVolumeGroupRequest struct { + // The ID of the volume group to be deleted. // This field is REQUIRED. - SourceVolumeId string `protobuf:"bytes,1,opt,name=source_volume_id,json=sourceVolumeId,proto3" json:"source_volume_id,omitempty"` - // The suggested name for the snapshot. This field is REQUIRED for - // idempotency. - // Any Unicode string that conforms to the length limit is allowed - // except those containing the following banned characters: - // U+0000-U+0008, U+000B, U+000C, U+000E-U+001F, U+007F-U+009F. - // (These are control characters other than commonly used whitespace.) - Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` - // Secrets required by plugin to complete snapshot creation request. + VolumeGroupId string `protobuf:"bytes,1,opt,name=volume_group_id,json=volumeGroupId,proto3" json:"volume_group_id,omitempty"` + // Secrets required by plugin to complete volume group + // deletion request. // This field is OPTIONAL. Refer to the `Secrets Requirements` // section on how to use this field. - Secrets map[string]string `protobuf:"bytes,3,rep,name=secrets,proto3" json:"secrets,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` - // Plugin specific parameters passed in as opaque key-value pairs. - // This field is OPTIONAL. The Plugin is responsible for parsing and - // validating these parameters. COs will treat these as opaque. - // Use cases for opaque parameters: - // - Specify a policy to automatically clean up the snapshot. - // - Specify an expiration date for the snapshot. - // - Specify whether the snapshot is readonly or read/write. - // - Specify if the snapshot should be replicated to some place. - // - Specify primary or secondary for replication systems that - // support snapshotting only on primary. - Parameters map[string]string `protobuf:"bytes,4,rep,name=parameters,proto3" json:"parameters,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + Secrets map[string]string `protobuf:"bytes,2,rep,name=secrets,proto3" json:"secrets,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } -func (m *CreateSnapshotRequest) Reset() { *m = CreateSnapshotRequest{} } -func (m *CreateSnapshotRequest) String() string { return proto.CompactTextString(m) } -func (*CreateSnapshotRequest) ProtoMessage() {} -func (*CreateSnapshotRequest) Descriptor() ([]byte, []int) { +func (m *DeleteVolumeGroupRequest) Reset() { *m = DeleteVolumeGroupRequest{} } +func (m *DeleteVolumeGroupRequest) String() string { return proto.CompactTextString(m) } +func (*DeleteVolumeGroupRequest) ProtoMessage() {} +func (*DeleteVolumeGroupRequest) Descriptor() ([]byte, []int) { return fileDescriptor_9cdb00adce470e01, []int{32} } -func (m *CreateSnapshotRequest) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_CreateSnapshotRequest.Unmarshal(m, b) +func (m *DeleteVolumeGroupRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_DeleteVolumeGroupRequest.Unmarshal(m, b) } -func (m *CreateSnapshotRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_CreateSnapshotRequest.Marshal(b, m, deterministic) +func (m *DeleteVolumeGroupRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_DeleteVolumeGroupRequest.Marshal(b, m, deterministic) } -func (m *CreateSnapshotRequest) XXX_Merge(src proto.Message) { - xxx_messageInfo_CreateSnapshotRequest.Merge(m, src) +func (m *DeleteVolumeGroupRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_DeleteVolumeGroupRequest.Merge(m, src) } -func (m *CreateSnapshotRequest) XXX_Size() int { - return xxx_messageInfo_CreateSnapshotRequest.Size(m) +func (m *DeleteVolumeGroupRequest) XXX_Size() int { + return xxx_messageInfo_DeleteVolumeGroupRequest.Size(m) } -func (m *CreateSnapshotRequest) XXX_DiscardUnknown() { - xxx_messageInfo_CreateSnapshotRequest.DiscardUnknown(m) +func (m *DeleteVolumeGroupRequest) XXX_DiscardUnknown() { + xxx_messageInfo_DeleteVolumeGroupRequest.DiscardUnknown(m) } -var xxx_messageInfo_CreateSnapshotRequest proto.InternalMessageInfo +var xxx_messageInfo_DeleteVolumeGroupRequest proto.InternalMessageInfo -func (m *CreateSnapshotRequest) GetSourceVolumeId() string { +func (m *DeleteVolumeGroupRequest) GetVolumeGroupId() string { if m != nil { - return m.SourceVolumeId + return m.VolumeGroupId } return "" } -func (m *CreateSnapshotRequest) GetName() string { +func (m *DeleteVolumeGroupRequest) GetSecrets() map[string]string { + if m != nil { + return m.Secrets + } + return nil +} + +type DeleteVolumeGroupResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *DeleteVolumeGroupResponse) Reset() { *m = DeleteVolumeGroupResponse{} } +func (m *DeleteVolumeGroupResponse) String() string { return proto.CompactTextString(m) } +func (*DeleteVolumeGroupResponse) ProtoMessage() {} +func (*DeleteVolumeGroupResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{33} +} + +func (m *DeleteVolumeGroupResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_DeleteVolumeGroupResponse.Unmarshal(m, b) +} +func (m *DeleteVolumeGroupResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_DeleteVolumeGroupResponse.Marshal(b, m, deterministic) +} +func (m *DeleteVolumeGroupResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_DeleteVolumeGroupResponse.Merge(m, src) +} +func (m *DeleteVolumeGroupResponse) XXX_Size() int { + return xxx_messageInfo_DeleteVolumeGroupResponse.Size(m) +} +func (m *DeleteVolumeGroupResponse) XXX_DiscardUnknown() { + xxx_messageInfo_DeleteVolumeGroupResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_DeleteVolumeGroupResponse proto.InternalMessageInfo + +type ModifyVolumeGroupMembershipRequest struct { + // The ID of the volume group to be modified. + // This field is REQUIRED. + VolumeGroupId string `protobuf:"bytes,1,opt,name=volume_group_id,json=volumeGroupId,proto3" json:"volume_group_id,omitempty"` + // Specify volume_ids that will be in the modified volume group. + // This list will be compared with the volume_ids in the existing + // group. + // New ones will be added and missing ones will be removed. + // If no volume_ids are provided, all existing volumes will + // be removed from the group. + // This field is OPTIONAL. + VolumeIds []string `protobuf:"bytes,2,rep,name=volume_ids,json=volumeIds,proto3" json:"volume_ids,omitempty"` + // Secrets required by plugin to complete volume group + // modification request. + // This field is OPTIONAL. Refer to the `Secrets Requirements` + // section on how to use this field. + Secrets map[string]string `protobuf:"bytes,3,rep,name=secrets,proto3" json:"secrets,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ModifyVolumeGroupMembershipRequest) Reset() { *m = ModifyVolumeGroupMembershipRequest{} } +func (m *ModifyVolumeGroupMembershipRequest) String() string { return proto.CompactTextString(m) } +func (*ModifyVolumeGroupMembershipRequest) ProtoMessage() {} +func (*ModifyVolumeGroupMembershipRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{34} +} + +func (m *ModifyVolumeGroupMembershipRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ModifyVolumeGroupMembershipRequest.Unmarshal(m, b) +} +func (m *ModifyVolumeGroupMembershipRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ModifyVolumeGroupMembershipRequest.Marshal(b, m, deterministic) +} +func (m *ModifyVolumeGroupMembershipRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ModifyVolumeGroupMembershipRequest.Merge(m, src) +} +func (m *ModifyVolumeGroupMembershipRequest) XXX_Size() int { + return xxx_messageInfo_ModifyVolumeGroupMembershipRequest.Size(m) +} +func (m *ModifyVolumeGroupMembershipRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ModifyVolumeGroupMembershipRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ModifyVolumeGroupMembershipRequest proto.InternalMessageInfo + +func (m *ModifyVolumeGroupMembershipRequest) GetVolumeGroupId() string { + if m != nil { + return m.VolumeGroupId + } + return "" +} + +func (m *ModifyVolumeGroupMembershipRequest) GetVolumeIds() []string { + if m != nil { + return m.VolumeIds + } + return nil +} + +func (m *ModifyVolumeGroupMembershipRequest) GetSecrets() map[string]string { + if m != nil { + return m.Secrets + } + return nil +} + +type ModifyVolumeGroupMembershipResponse struct { + // Contains all attributes of the modified volume group. + // This field is REQUIRED. + VolumeGroup *VolumeGroup `protobuf:"bytes,1,opt,name=volume_group,json=volumeGroup,proto3" json:"volume_group,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ModifyVolumeGroupMembershipResponse) Reset() { *m = ModifyVolumeGroupMembershipResponse{} } +func (m *ModifyVolumeGroupMembershipResponse) String() string { return proto.CompactTextString(m) } +func (*ModifyVolumeGroupMembershipResponse) ProtoMessage() {} +func (*ModifyVolumeGroupMembershipResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{35} +} + +func (m *ModifyVolumeGroupMembershipResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ModifyVolumeGroupMembershipResponse.Unmarshal(m, b) +} +func (m *ModifyVolumeGroupMembershipResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ModifyVolumeGroupMembershipResponse.Marshal(b, m, deterministic) +} +func (m *ModifyVolumeGroupMembershipResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ModifyVolumeGroupMembershipResponse.Merge(m, src) +} +func (m *ModifyVolumeGroupMembershipResponse) XXX_Size() int { + return xxx_messageInfo_ModifyVolumeGroupMembershipResponse.Size(m) +} +func (m *ModifyVolumeGroupMembershipResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ModifyVolumeGroupMembershipResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ModifyVolumeGroupMembershipResponse proto.InternalMessageInfo + +func (m *ModifyVolumeGroupMembershipResponse) GetVolumeGroup() *VolumeGroup { + if m != nil { + return m.VolumeGroup + } + return nil +} + +type ControllerGetVolumeGroupRequest struct { + // The ID of the volume group to fetch current volume group + // information for. + // This field is REQUIRED. + VolumeGroupId string `protobuf:"bytes,1,opt,name=volume_group_id,json=volumeGroupId,proto3" json:"volume_group_id,omitempty"` + // Secrets required by plugin to complete ControllerGetVolumeGroup + // request. + // This field is OPTIONAL. Refer to the `Secrets Requirements` + // section on how to use this field. + Secrets map[string]string `protobuf:"bytes,2,rep,name=secrets,proto3" json:"secrets,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ControllerGetVolumeGroupRequest) Reset() { *m = ControllerGetVolumeGroupRequest{} } +func (m *ControllerGetVolumeGroupRequest) String() string { return proto.CompactTextString(m) } +func (*ControllerGetVolumeGroupRequest) ProtoMessage() {} +func (*ControllerGetVolumeGroupRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{36} +} + +func (m *ControllerGetVolumeGroupRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ControllerGetVolumeGroupRequest.Unmarshal(m, b) +} +func (m *ControllerGetVolumeGroupRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ControllerGetVolumeGroupRequest.Marshal(b, m, deterministic) +} +func (m *ControllerGetVolumeGroupRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ControllerGetVolumeGroupRequest.Merge(m, src) +} +func (m *ControllerGetVolumeGroupRequest) XXX_Size() int { + return xxx_messageInfo_ControllerGetVolumeGroupRequest.Size(m) +} +func (m *ControllerGetVolumeGroupRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ControllerGetVolumeGroupRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ControllerGetVolumeGroupRequest proto.InternalMessageInfo + +func (m *ControllerGetVolumeGroupRequest) GetVolumeGroupId() string { + if m != nil { + return m.VolumeGroupId + } + return "" +} + +func (m *ControllerGetVolumeGroupRequest) GetSecrets() map[string]string { + if m != nil { + return m.Secrets + } + return nil +} + +type ControllerGetVolumeGroupResponse struct { + // This field is REQUIRED + VolumeGroup *VolumeGroup `protobuf:"bytes,1,opt,name=volume_group,json=volumeGroup,proto3" json:"volume_group,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ControllerGetVolumeGroupResponse) Reset() { *m = ControllerGetVolumeGroupResponse{} } +func (m *ControllerGetVolumeGroupResponse) String() string { return proto.CompactTextString(m) } +func (*ControllerGetVolumeGroupResponse) ProtoMessage() {} +func (*ControllerGetVolumeGroupResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{37} +} + +func (m *ControllerGetVolumeGroupResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ControllerGetVolumeGroupResponse.Unmarshal(m, b) +} +func (m *ControllerGetVolumeGroupResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ControllerGetVolumeGroupResponse.Marshal(b, m, deterministic) +} +func (m *ControllerGetVolumeGroupResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ControllerGetVolumeGroupResponse.Merge(m, src) +} +func (m *ControllerGetVolumeGroupResponse) XXX_Size() int { + return xxx_messageInfo_ControllerGetVolumeGroupResponse.Size(m) +} +func (m *ControllerGetVolumeGroupResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ControllerGetVolumeGroupResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ControllerGetVolumeGroupResponse proto.InternalMessageInfo + +func (m *ControllerGetVolumeGroupResponse) GetVolumeGroup() *VolumeGroup { + if m != nil { + return m.VolumeGroup + } + return nil +} + +type ListVolumeGroupsRequest struct { + // If specified (non-zero value), the Plugin MUST NOT return more + // entries than this number in the response. If the actual number of + // entries is more than this number, the Plugin MUST set `next_token` + // in the response which can be used to get the next page of entries + // in the subsequent `ListVolumeGroups` call. This field is OPTIONAL. + // If not specified (zero value), it means there is no restriction on + // the number of entries that can be returned. + // The value of this field MUST NOT be negative. + MaxEntries int32 `protobuf:"varint,1,opt,name=max_entries,json=maxEntries,proto3" json:"max_entries,omitempty"` + // A token to specify where to start paginating. Set this field to + // `next_token` returned by a previous `ListVolumeGroups` call to get + // the next page of entries. This field is OPTIONAL. + // An empty string is equal to an unspecified field value. + StartingToken string `protobuf:"bytes,2,opt,name=starting_token,json=startingToken,proto3" json:"starting_token,omitempty"` + // Secrets required by plugin to complete ListVolumeGroup request. + // This field is OPTIONAL. Refer to the `Secrets Requirements` + // section on how to use this field. + Secrets map[string]string `protobuf:"bytes,3,rep,name=secrets,proto3" json:"secrets,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ListVolumeGroupsRequest) Reset() { *m = ListVolumeGroupsRequest{} } +func (m *ListVolumeGroupsRequest) String() string { return proto.CompactTextString(m) } +func (*ListVolumeGroupsRequest) ProtoMessage() {} +func (*ListVolumeGroupsRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{38} +} + +func (m *ListVolumeGroupsRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ListVolumeGroupsRequest.Unmarshal(m, b) +} +func (m *ListVolumeGroupsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ListVolumeGroupsRequest.Marshal(b, m, deterministic) +} +func (m *ListVolumeGroupsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ListVolumeGroupsRequest.Merge(m, src) +} +func (m *ListVolumeGroupsRequest) XXX_Size() int { + return xxx_messageInfo_ListVolumeGroupsRequest.Size(m) +} +func (m *ListVolumeGroupsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ListVolumeGroupsRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ListVolumeGroupsRequest proto.InternalMessageInfo + +func (m *ListVolumeGroupsRequest) GetMaxEntries() int32 { + if m != nil { + return m.MaxEntries + } + return 0 +} + +func (m *ListVolumeGroupsRequest) GetStartingToken() string { + if m != nil { + return m.StartingToken + } + return "" +} + +func (m *ListVolumeGroupsRequest) GetSecrets() map[string]string { + if m != nil { + return m.Secrets + } + return nil +} + +type ListVolumeGroupsResponse struct { + Entries []*ListVolumeGroupsResponse_Entry `protobuf:"bytes,1,rep,name=entries,proto3" json:"entries,omitempty"` + // This token allows you to get the next page of entries for + // `ListVolumeGroups` request. If the number of entries is larger than + // `max_entries`, use the `next_token` as a value for the + // `starting_token` field in the next `ListVolumeGroups` request. This + // field is OPTIONAL. + // An empty string is equal to an unspecified field value. + NextToken string `protobuf:"bytes,2,opt,name=next_token,json=nextToken,proto3" json:"next_token,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ListVolumeGroupsResponse) Reset() { *m = ListVolumeGroupsResponse{} } +func (m *ListVolumeGroupsResponse) String() string { return proto.CompactTextString(m) } +func (*ListVolumeGroupsResponse) ProtoMessage() {} +func (*ListVolumeGroupsResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{39} +} + +func (m *ListVolumeGroupsResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ListVolumeGroupsResponse.Unmarshal(m, b) +} +func (m *ListVolumeGroupsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ListVolumeGroupsResponse.Marshal(b, m, deterministic) +} +func (m *ListVolumeGroupsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ListVolumeGroupsResponse.Merge(m, src) +} +func (m *ListVolumeGroupsResponse) XXX_Size() int { + return xxx_messageInfo_ListVolumeGroupsResponse.Size(m) +} +func (m *ListVolumeGroupsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ListVolumeGroupsResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ListVolumeGroupsResponse proto.InternalMessageInfo + +func (m *ListVolumeGroupsResponse) GetEntries() []*ListVolumeGroupsResponse_Entry { + if m != nil { + return m.Entries + } + return nil +} + +func (m *ListVolumeGroupsResponse) GetNextToken() string { + if m != nil { + return m.NextToken + } + return "" +} + +type ListVolumeGroupsResponse_Entry struct { + // This field is REQUIRED + VolumeGroup *VolumeGroup `protobuf:"bytes,1,opt,name=volume_group,json=volumeGroup,proto3" json:"volume_group,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ListVolumeGroupsResponse_Entry) Reset() { *m = ListVolumeGroupsResponse_Entry{} } +func (m *ListVolumeGroupsResponse_Entry) String() string { return proto.CompactTextString(m) } +func (*ListVolumeGroupsResponse_Entry) ProtoMessage() {} +func (*ListVolumeGroupsResponse_Entry) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{39, 0} +} + +func (m *ListVolumeGroupsResponse_Entry) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ListVolumeGroupsResponse_Entry.Unmarshal(m, b) +} +func (m *ListVolumeGroupsResponse_Entry) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ListVolumeGroupsResponse_Entry.Marshal(b, m, deterministic) +} +func (m *ListVolumeGroupsResponse_Entry) XXX_Merge(src proto.Message) { + xxx_messageInfo_ListVolumeGroupsResponse_Entry.Merge(m, src) +} +func (m *ListVolumeGroupsResponse_Entry) XXX_Size() int { + return xxx_messageInfo_ListVolumeGroupsResponse_Entry.Size(m) +} +func (m *ListVolumeGroupsResponse_Entry) XXX_DiscardUnknown() { + xxx_messageInfo_ListVolumeGroupsResponse_Entry.DiscardUnknown(m) +} + +var xxx_messageInfo_ListVolumeGroupsResponse_Entry proto.InternalMessageInfo + +func (m *ListVolumeGroupsResponse_Entry) GetVolumeGroup() *VolumeGroup { + if m != nil { + return m.VolumeGroup + } + return nil +} + +type CreateVolumeGroupSnapshotRequest struct { + // suggested name for a group snapshot (required for idempotent) + // This field is REQUIRED. + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + // identifier indicates which volume group is used to take + // group snapshot + // This field is REQUIRED. + SourceVolumeGroupId string `protobuf:"bytes,2,opt,name=source_volume_group_id,json=sourceVolumeGroupId,proto3" json:"source_volume_group_id,omitempty"` + // volume ids of the volumes in the source group. This field is + // REQUIRED. This is needed because some storage systems does not + // have a group persisted on the storage system until the time to + // take a group snapshot + VolumeIds []string `protobuf:"bytes,3,rep,name=volume_ids,json=volumeIds,proto3" json:"volume_ids,omitempty"` + // Secrets required by plugin to complete volume group snapshot + // creation request. + // This field is OPTIONAL. Refer to the `Secrets Requirements` + // section on how to use this field. + Secrets map[string]string `protobuf:"bytes,4,rep,name=secrets,proto3" json:"secrets,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + // Plugin specific parameters passed in as opaque key-value pairs. + // This field is OPTIONAL. The Plugin is responsible for parsing and + // validating these parameters. COs will treat these as opaque. + Parameters map[string]string `protobuf:"bytes,5,rep,name=parameters,proto3" json:"parameters,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CreateVolumeGroupSnapshotRequest) Reset() { *m = CreateVolumeGroupSnapshotRequest{} } +func (m *CreateVolumeGroupSnapshotRequest) String() string { return proto.CompactTextString(m) } +func (*CreateVolumeGroupSnapshotRequest) ProtoMessage() {} +func (*CreateVolumeGroupSnapshotRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{40} +} + +func (m *CreateVolumeGroupSnapshotRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CreateVolumeGroupSnapshotRequest.Unmarshal(m, b) +} +func (m *CreateVolumeGroupSnapshotRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CreateVolumeGroupSnapshotRequest.Marshal(b, m, deterministic) +} +func (m *CreateVolumeGroupSnapshotRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_CreateVolumeGroupSnapshotRequest.Merge(m, src) +} +func (m *CreateVolumeGroupSnapshotRequest) XXX_Size() int { + return xxx_messageInfo_CreateVolumeGroupSnapshotRequest.Size(m) +} +func (m *CreateVolumeGroupSnapshotRequest) XXX_DiscardUnknown() { + xxx_messageInfo_CreateVolumeGroupSnapshotRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_CreateVolumeGroupSnapshotRequest proto.InternalMessageInfo + +func (m *CreateVolumeGroupSnapshotRequest) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *CreateVolumeGroupSnapshotRequest) GetSourceVolumeGroupId() string { + if m != nil { + return m.SourceVolumeGroupId + } + return "" +} + +func (m *CreateVolumeGroupSnapshotRequest) GetVolumeIds() []string { + if m != nil { + return m.VolumeIds + } + return nil +} + +func (m *CreateVolumeGroupSnapshotRequest) GetSecrets() map[string]string { + if m != nil { + return m.Secrets + } + return nil +} + +func (m *CreateVolumeGroupSnapshotRequest) GetParameters() map[string]string { + if m != nil { + return m.Parameters + } + return nil +} + +type CreateVolumeGroupSnapshotResponse struct { + // Contains all attributes of the newly created group snapshot. + // This field is REQUIRED. + GroupSnapshot *VolumeGroupSnapshot `protobuf:"bytes,1,opt,name=group_snapshot,json=groupSnapshot,proto3" json:"group_snapshot,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CreateVolumeGroupSnapshotResponse) Reset() { *m = CreateVolumeGroupSnapshotResponse{} } +func (m *CreateVolumeGroupSnapshotResponse) String() string { return proto.CompactTextString(m) } +func (*CreateVolumeGroupSnapshotResponse) ProtoMessage() {} +func (*CreateVolumeGroupSnapshotResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{41} +} + +func (m *CreateVolumeGroupSnapshotResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CreateVolumeGroupSnapshotResponse.Unmarshal(m, b) +} +func (m *CreateVolumeGroupSnapshotResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CreateVolumeGroupSnapshotResponse.Marshal(b, m, deterministic) +} +func (m *CreateVolumeGroupSnapshotResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_CreateVolumeGroupSnapshotResponse.Merge(m, src) +} +func (m *CreateVolumeGroupSnapshotResponse) XXX_Size() int { + return xxx_messageInfo_CreateVolumeGroupSnapshotResponse.Size(m) +} +func (m *CreateVolumeGroupSnapshotResponse) XXX_DiscardUnknown() { + xxx_messageInfo_CreateVolumeGroupSnapshotResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_CreateVolumeGroupSnapshotResponse proto.InternalMessageInfo + +func (m *CreateVolumeGroupSnapshotResponse) GetGroupSnapshot() *VolumeGroupSnapshot { + if m != nil { + return m.GroupSnapshot + } + return nil +} + +type VolumeGroupSnapshot struct { + // The identifier for this group snapshot, generated by the plugin. + // This field is REQUIRED. + GroupSnapshotId string `protobuf:"bytes,1,opt,name=group_snapshot_id,json=groupSnapshotId,proto3" json:"group_snapshot_id,omitempty"` + // A list of snapshots created. Snapshot is the same + // definition as Snapshot definition used in CSI. + // This field is OPTIONAL. + Snapshots []*Snapshot `protobuf:"bytes,2,rep,name=snapshots,proto3" json:"snapshots,omitempty"` + // Identity information for the source volume group. Currently, only + // support the case that source is volume group. This field is + // REQUIRED. + SourceVolumeGroupId string `protobuf:"bytes,3,opt,name=source_volume_group_id,json=sourceVolumeGroupId,proto3" json:"source_volume_group_id,omitempty"` + // Indicates if a list of group snapshots are ready. + // This field is REQUIRED. + ReadyToUse bool `protobuf:"varint,4,opt,name=ready_to_use,json=readyToUse,proto3" json:"ready_to_use,omitempty"` + // Timestamp when the volume group snapshot is taken. + // This field is REQUIRED. + CreationTime *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_time,json=creationTime,proto3" json:"creation_time,omitempty"` + // Complete total size of the snapshots in group in bytes. The purpose + // of this field is to give CO guidance on how much space is needed to + // restore volumes from all snapshots in group. + // This field is OPTIONAL. + SizeBytes int64 `protobuf:"varint,6,opt,name=size_bytes,json=sizeBytes,proto3" json:"size_bytes,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *VolumeGroupSnapshot) Reset() { *m = VolumeGroupSnapshot{} } +func (m *VolumeGroupSnapshot) String() string { return proto.CompactTextString(m) } +func (*VolumeGroupSnapshot) ProtoMessage() {} +func (*VolumeGroupSnapshot) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{42} +} + +func (m *VolumeGroupSnapshot) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_VolumeGroupSnapshot.Unmarshal(m, b) +} +func (m *VolumeGroupSnapshot) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_VolumeGroupSnapshot.Marshal(b, m, deterministic) +} +func (m *VolumeGroupSnapshot) XXX_Merge(src proto.Message) { + xxx_messageInfo_VolumeGroupSnapshot.Merge(m, src) +} +func (m *VolumeGroupSnapshot) XXX_Size() int { + return xxx_messageInfo_VolumeGroupSnapshot.Size(m) +} +func (m *VolumeGroupSnapshot) XXX_DiscardUnknown() { + xxx_messageInfo_VolumeGroupSnapshot.DiscardUnknown(m) +} + +var xxx_messageInfo_VolumeGroupSnapshot proto.InternalMessageInfo + +func (m *VolumeGroupSnapshot) GetGroupSnapshotId() string { + if m != nil { + return m.GroupSnapshotId + } + return "" +} + +func (m *VolumeGroupSnapshot) GetSnapshots() []*Snapshot { + if m != nil { + return m.Snapshots + } + return nil +} + +func (m *VolumeGroupSnapshot) GetSourceVolumeGroupId() string { + if m != nil { + return m.SourceVolumeGroupId + } + return "" +} + +func (m *VolumeGroupSnapshot) GetReadyToUse() bool { + if m != nil { + return m.ReadyToUse + } + return false +} + +func (m *VolumeGroupSnapshot) GetCreationTime() *timestamp.Timestamp { + if m != nil { + return m.CreationTime + } + return nil +} + +func (m *VolumeGroupSnapshot) GetSizeBytes() int64 { + if m != nil { + return m.SizeBytes + } + return 0 +} + +type DeleteVolumeGroupSnapshotRequest struct { + // The ID of the group snapshot to be deleted. + // This field is REQUIRED. + GroupSnapshotId string `protobuf:"bytes,1,opt,name=group_snapshot_id,json=groupSnapshotId,proto3" json:"group_snapshot_id,omitempty"` + // Secrets required by plugin to complete group snapshot deletion + // request. + // This field is OPTIONAL. Refer to the `Secrets Requirements` + // section on how to use this field. + Secrets map[string]string `protobuf:"bytes,2,rep,name=secrets,proto3" json:"secrets,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *DeleteVolumeGroupSnapshotRequest) Reset() { *m = DeleteVolumeGroupSnapshotRequest{} } +func (m *DeleteVolumeGroupSnapshotRequest) String() string { return proto.CompactTextString(m) } +func (*DeleteVolumeGroupSnapshotRequest) ProtoMessage() {} +func (*DeleteVolumeGroupSnapshotRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{43} +} + +func (m *DeleteVolumeGroupSnapshotRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_DeleteVolumeGroupSnapshotRequest.Unmarshal(m, b) +} +func (m *DeleteVolumeGroupSnapshotRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_DeleteVolumeGroupSnapshotRequest.Marshal(b, m, deterministic) +} +func (m *DeleteVolumeGroupSnapshotRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_DeleteVolumeGroupSnapshotRequest.Merge(m, src) +} +func (m *DeleteVolumeGroupSnapshotRequest) XXX_Size() int { + return xxx_messageInfo_DeleteVolumeGroupSnapshotRequest.Size(m) +} +func (m *DeleteVolumeGroupSnapshotRequest) XXX_DiscardUnknown() { + xxx_messageInfo_DeleteVolumeGroupSnapshotRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_DeleteVolumeGroupSnapshotRequest proto.InternalMessageInfo + +func (m *DeleteVolumeGroupSnapshotRequest) GetGroupSnapshotId() string { + if m != nil { + return m.GroupSnapshotId + } + return "" +} + +func (m *DeleteVolumeGroupSnapshotRequest) GetSecrets() map[string]string { + if m != nil { + return m.Secrets + } + return nil +} + +type DeleteVolumeGroupSnapshotResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *DeleteVolumeGroupSnapshotResponse) Reset() { *m = DeleteVolumeGroupSnapshotResponse{} } +func (m *DeleteVolumeGroupSnapshotResponse) String() string { return proto.CompactTextString(m) } +func (*DeleteVolumeGroupSnapshotResponse) ProtoMessage() {} +func (*DeleteVolumeGroupSnapshotResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{44} +} + +func (m *DeleteVolumeGroupSnapshotResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_DeleteVolumeGroupSnapshotResponse.Unmarshal(m, b) +} +func (m *DeleteVolumeGroupSnapshotResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_DeleteVolumeGroupSnapshotResponse.Marshal(b, m, deterministic) +} +func (m *DeleteVolumeGroupSnapshotResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_DeleteVolumeGroupSnapshotResponse.Merge(m, src) +} +func (m *DeleteVolumeGroupSnapshotResponse) XXX_Size() int { + return xxx_messageInfo_DeleteVolumeGroupSnapshotResponse.Size(m) +} +func (m *DeleteVolumeGroupSnapshotResponse) XXX_DiscardUnknown() { + xxx_messageInfo_DeleteVolumeGroupSnapshotResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_DeleteVolumeGroupSnapshotResponse proto.InternalMessageInfo + +type ControllerGetVolumeGroupSnapshotRequest struct { + // The ID of the group snapshot to fetch current group snapshot + // information for. + // This field is REQUIRED. + GroupSnapshotId string `protobuf:"bytes,1,opt,name=group_snapshot_id,json=groupSnapshotId,proto3" json:"group_snapshot_id,omitempty"` + // Secrets required by plugin to complete + // ControllerGetVolumeGroupSnapshot request. + // This field is OPTIONAL. Refer to the `Secrets Requirements` + // section on how to use this field. + Secrets map[string]string `protobuf:"bytes,2,rep,name=secrets,proto3" json:"secrets,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ControllerGetVolumeGroupSnapshotRequest) Reset() { + *m = ControllerGetVolumeGroupSnapshotRequest{} +} +func (m *ControllerGetVolumeGroupSnapshotRequest) String() string { return proto.CompactTextString(m) } +func (*ControllerGetVolumeGroupSnapshotRequest) ProtoMessage() {} +func (*ControllerGetVolumeGroupSnapshotRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{45} +} + +func (m *ControllerGetVolumeGroupSnapshotRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ControllerGetVolumeGroupSnapshotRequest.Unmarshal(m, b) +} +func (m *ControllerGetVolumeGroupSnapshotRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ControllerGetVolumeGroupSnapshotRequest.Marshal(b, m, deterministic) +} +func (m *ControllerGetVolumeGroupSnapshotRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ControllerGetVolumeGroupSnapshotRequest.Merge(m, src) +} +func (m *ControllerGetVolumeGroupSnapshotRequest) XXX_Size() int { + return xxx_messageInfo_ControllerGetVolumeGroupSnapshotRequest.Size(m) +} +func (m *ControllerGetVolumeGroupSnapshotRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ControllerGetVolumeGroupSnapshotRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ControllerGetVolumeGroupSnapshotRequest proto.InternalMessageInfo + +func (m *ControllerGetVolumeGroupSnapshotRequest) GetGroupSnapshotId() string { + if m != nil { + return m.GroupSnapshotId + } + return "" +} + +func (m *ControllerGetVolumeGroupSnapshotRequest) GetSecrets() map[string]string { + if m != nil { + return m.Secrets + } + return nil +} + +type ControllerGetVolumeGroupSnapshotResponse struct { + // This field is REQUIRED + GroupSnapshot *VolumeGroupSnapshot `protobuf:"bytes,1,opt,name=group_snapshot,json=groupSnapshot,proto3" json:"group_snapshot,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ControllerGetVolumeGroupSnapshotResponse) Reset() { + *m = ControllerGetVolumeGroupSnapshotResponse{} +} +func (m *ControllerGetVolumeGroupSnapshotResponse) String() string { return proto.CompactTextString(m) } +func (*ControllerGetVolumeGroupSnapshotResponse) ProtoMessage() {} +func (*ControllerGetVolumeGroupSnapshotResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{46} +} + +func (m *ControllerGetVolumeGroupSnapshotResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ControllerGetVolumeGroupSnapshotResponse.Unmarshal(m, b) +} +func (m *ControllerGetVolumeGroupSnapshotResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ControllerGetVolumeGroupSnapshotResponse.Marshal(b, m, deterministic) +} +func (m *ControllerGetVolumeGroupSnapshotResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ControllerGetVolumeGroupSnapshotResponse.Merge(m, src) +} +func (m *ControllerGetVolumeGroupSnapshotResponse) XXX_Size() int { + return xxx_messageInfo_ControllerGetVolumeGroupSnapshotResponse.Size(m) +} +func (m *ControllerGetVolumeGroupSnapshotResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ControllerGetVolumeGroupSnapshotResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ControllerGetVolumeGroupSnapshotResponse proto.InternalMessageInfo + +func (m *ControllerGetVolumeGroupSnapshotResponse) GetGroupSnapshot() *VolumeGroupSnapshot { + if m != nil { + return m.GroupSnapshot + } + return nil +} + +type ListVolumeGroupSnapshotsRequest struct { + // If specified (non-zero value), the Plugin MUST NOT return more + // entries than this number in the response. If the actual number of + // entries is more than this number, the Plugin MUST set `next_token` + // in the response which can be used to get the next page of entries + // in the subsequent `ListVolumeGroupSnapshots` call. + // This field is OPTIONAL. If not specified (zero value), it means + // there is no restriction on the number of entries that can be + // returned. The value of this field MUST NOT be negative. + MaxEntries int32 `protobuf:"varint,1,opt,name=max_entries,json=maxEntries,proto3" json:"max_entries,omitempty"` + // A token to specify where to start paginating. Set this field to + // `next_token` returned by a previous `ListVolumeGroupSnapshots` + // call to get the next page of entries. This field is OPTIONAL. + // An empty string is equal to an unspecified field value. + StartingToken string `protobuf:"bytes,2,opt,name=starting_token,json=startingToken,proto3" json:"starting_token,omitempty"` + // Identity information for the source volume group. + // This field is OPTIONAL. + // It can be used to list group snapshots by volume group. + SourceVolumeGroupId string `protobuf:"bytes,3,opt,name=source_volume_group_id,json=sourceVolumeGroupId,proto3" json:"source_volume_group_id,omitempty"` + // Secrets required by plugin to complete ListVolumeGroupSnapshot + // request. + // This field is OPTIONAL. Refer to the `Secrets Requirements` + // section on how to use this field. + Secrets map[string]string `protobuf:"bytes,4,rep,name=secrets,proto3" json:"secrets,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ListVolumeGroupSnapshotsRequest) Reset() { *m = ListVolumeGroupSnapshotsRequest{} } +func (m *ListVolumeGroupSnapshotsRequest) String() string { return proto.CompactTextString(m) } +func (*ListVolumeGroupSnapshotsRequest) ProtoMessage() {} +func (*ListVolumeGroupSnapshotsRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{47} +} + +func (m *ListVolumeGroupSnapshotsRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ListVolumeGroupSnapshotsRequest.Unmarshal(m, b) +} +func (m *ListVolumeGroupSnapshotsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ListVolumeGroupSnapshotsRequest.Marshal(b, m, deterministic) +} +func (m *ListVolumeGroupSnapshotsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ListVolumeGroupSnapshotsRequest.Merge(m, src) +} +func (m *ListVolumeGroupSnapshotsRequest) XXX_Size() int { + return xxx_messageInfo_ListVolumeGroupSnapshotsRequest.Size(m) +} +func (m *ListVolumeGroupSnapshotsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ListVolumeGroupSnapshotsRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ListVolumeGroupSnapshotsRequest proto.InternalMessageInfo + +func (m *ListVolumeGroupSnapshotsRequest) GetMaxEntries() int32 { + if m != nil { + return m.MaxEntries + } + return 0 +} + +func (m *ListVolumeGroupSnapshotsRequest) GetStartingToken() string { + if m != nil { + return m.StartingToken + } + return "" +} + +func (m *ListVolumeGroupSnapshotsRequest) GetSourceVolumeGroupId() string { + if m != nil { + return m.SourceVolumeGroupId + } + return "" +} + +func (m *ListVolumeGroupSnapshotsRequest) GetSecrets() map[string]string { + if m != nil { + return m.Secrets + } + return nil +} + +type ListVolumeGroupSnapshotsResponse struct { + Entries []*ListVolumeGroupSnapshotsResponse_Entry `protobuf:"bytes,1,rep,name=entries,proto3" json:"entries,omitempty"` + // This token allows you to get the next page of entries for + // `ListVolumeGroupSnapshots` request. If the number of entries is + // larger than `max_entries`, use the `next_token` as a value for the + // `starting_token` field in the next `ListVolumeGroupSnapshots` + // request. + // This field is OPTIONAL. + // An empty string is equal to an unspecified field value. + NextToken string `protobuf:"bytes,2,opt,name=next_token,json=nextToken,proto3" json:"next_token,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ListVolumeGroupSnapshotsResponse) Reset() { *m = ListVolumeGroupSnapshotsResponse{} } +func (m *ListVolumeGroupSnapshotsResponse) String() string { return proto.CompactTextString(m) } +func (*ListVolumeGroupSnapshotsResponse) ProtoMessage() {} +func (*ListVolumeGroupSnapshotsResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{48} +} + +func (m *ListVolumeGroupSnapshotsResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ListVolumeGroupSnapshotsResponse.Unmarshal(m, b) +} +func (m *ListVolumeGroupSnapshotsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ListVolumeGroupSnapshotsResponse.Marshal(b, m, deterministic) +} +func (m *ListVolumeGroupSnapshotsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ListVolumeGroupSnapshotsResponse.Merge(m, src) +} +func (m *ListVolumeGroupSnapshotsResponse) XXX_Size() int { + return xxx_messageInfo_ListVolumeGroupSnapshotsResponse.Size(m) +} +func (m *ListVolumeGroupSnapshotsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ListVolumeGroupSnapshotsResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ListVolumeGroupSnapshotsResponse proto.InternalMessageInfo + +func (m *ListVolumeGroupSnapshotsResponse) GetEntries() []*ListVolumeGroupSnapshotsResponse_Entry { + if m != nil { + return m.Entries + } + return nil +} + +func (m *ListVolumeGroupSnapshotsResponse) GetNextToken() string { + if m != nil { + return m.NextToken + } + return "" +} + +type ListVolumeGroupSnapshotsResponse_Entry struct { + // This field is REQUIRED + GroupSnapshot *VolumeGroupSnapshot `protobuf:"bytes,1,opt,name=group_snapshot,json=groupSnapshot,proto3" json:"group_snapshot,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ListVolumeGroupSnapshotsResponse_Entry) Reset() { + *m = ListVolumeGroupSnapshotsResponse_Entry{} +} +func (m *ListVolumeGroupSnapshotsResponse_Entry) String() string { return proto.CompactTextString(m) } +func (*ListVolumeGroupSnapshotsResponse_Entry) ProtoMessage() {} +func (*ListVolumeGroupSnapshotsResponse_Entry) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{48, 0} +} + +func (m *ListVolumeGroupSnapshotsResponse_Entry) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ListVolumeGroupSnapshotsResponse_Entry.Unmarshal(m, b) +} +func (m *ListVolumeGroupSnapshotsResponse_Entry) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ListVolumeGroupSnapshotsResponse_Entry.Marshal(b, m, deterministic) +} +func (m *ListVolumeGroupSnapshotsResponse_Entry) XXX_Merge(src proto.Message) { + xxx_messageInfo_ListVolumeGroupSnapshotsResponse_Entry.Merge(m, src) +} +func (m *ListVolumeGroupSnapshotsResponse_Entry) XXX_Size() int { + return xxx_messageInfo_ListVolumeGroupSnapshotsResponse_Entry.Size(m) +} +func (m *ListVolumeGroupSnapshotsResponse_Entry) XXX_DiscardUnknown() { + xxx_messageInfo_ListVolumeGroupSnapshotsResponse_Entry.DiscardUnknown(m) +} + +var xxx_messageInfo_ListVolumeGroupSnapshotsResponse_Entry proto.InternalMessageInfo + +func (m *ListVolumeGroupSnapshotsResponse_Entry) GetGroupSnapshot() *VolumeGroupSnapshot { + if m != nil { + return m.GroupSnapshot + } + return nil +} + +type ControllerGetCapabilitiesRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ControllerGetCapabilitiesRequest) Reset() { *m = ControllerGetCapabilitiesRequest{} } +func (m *ControllerGetCapabilitiesRequest) String() string { return proto.CompactTextString(m) } +func (*ControllerGetCapabilitiesRequest) ProtoMessage() {} +func (*ControllerGetCapabilitiesRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{49} +} + +func (m *ControllerGetCapabilitiesRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ControllerGetCapabilitiesRequest.Unmarshal(m, b) +} +func (m *ControllerGetCapabilitiesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ControllerGetCapabilitiesRequest.Marshal(b, m, deterministic) +} +func (m *ControllerGetCapabilitiesRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ControllerGetCapabilitiesRequest.Merge(m, src) +} +func (m *ControllerGetCapabilitiesRequest) XXX_Size() int { + return xxx_messageInfo_ControllerGetCapabilitiesRequest.Size(m) +} +func (m *ControllerGetCapabilitiesRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ControllerGetCapabilitiesRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ControllerGetCapabilitiesRequest proto.InternalMessageInfo + +type ControllerGetCapabilitiesResponse struct { + // All the capabilities that the controller service supports. This + // field is OPTIONAL. + Capabilities []*ControllerServiceCapability `protobuf:"bytes,1,rep,name=capabilities,proto3" json:"capabilities,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ControllerGetCapabilitiesResponse) Reset() { *m = ControllerGetCapabilitiesResponse{} } +func (m *ControllerGetCapabilitiesResponse) String() string { return proto.CompactTextString(m) } +func (*ControllerGetCapabilitiesResponse) ProtoMessage() {} +func (*ControllerGetCapabilitiesResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{50} +} + +func (m *ControllerGetCapabilitiesResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ControllerGetCapabilitiesResponse.Unmarshal(m, b) +} +func (m *ControllerGetCapabilitiesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ControllerGetCapabilitiesResponse.Marshal(b, m, deterministic) +} +func (m *ControllerGetCapabilitiesResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ControllerGetCapabilitiesResponse.Merge(m, src) +} +func (m *ControllerGetCapabilitiesResponse) XXX_Size() int { + return xxx_messageInfo_ControllerGetCapabilitiesResponse.Size(m) +} +func (m *ControllerGetCapabilitiesResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ControllerGetCapabilitiesResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ControllerGetCapabilitiesResponse proto.InternalMessageInfo + +func (m *ControllerGetCapabilitiesResponse) GetCapabilities() []*ControllerServiceCapability { + if m != nil { + return m.Capabilities + } + return nil +} + +// Specifies a capability of the controller service. +type ControllerServiceCapability struct { + // Types that are valid to be assigned to Type: + // + // *ControllerServiceCapability_Rpc + Type isControllerServiceCapability_Type `protobuf_oneof:"type"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ControllerServiceCapability) Reset() { *m = ControllerServiceCapability{} } +func (m *ControllerServiceCapability) String() string { return proto.CompactTextString(m) } +func (*ControllerServiceCapability) ProtoMessage() {} +func (*ControllerServiceCapability) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{51} +} + +func (m *ControllerServiceCapability) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ControllerServiceCapability.Unmarshal(m, b) +} +func (m *ControllerServiceCapability) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ControllerServiceCapability.Marshal(b, m, deterministic) +} +func (m *ControllerServiceCapability) XXX_Merge(src proto.Message) { + xxx_messageInfo_ControllerServiceCapability.Merge(m, src) +} +func (m *ControllerServiceCapability) XXX_Size() int { + return xxx_messageInfo_ControllerServiceCapability.Size(m) +} +func (m *ControllerServiceCapability) XXX_DiscardUnknown() { + xxx_messageInfo_ControllerServiceCapability.DiscardUnknown(m) +} + +var xxx_messageInfo_ControllerServiceCapability proto.InternalMessageInfo + +type isControllerServiceCapability_Type interface { + isControllerServiceCapability_Type() +} + +type ControllerServiceCapability_Rpc struct { + Rpc *ControllerServiceCapability_RPC `protobuf:"bytes,1,opt,name=rpc,proto3,oneof"` +} + +func (*ControllerServiceCapability_Rpc) isControllerServiceCapability_Type() {} + +func (m *ControllerServiceCapability) GetType() isControllerServiceCapability_Type { + if m != nil { + return m.Type + } + return nil +} + +func (m *ControllerServiceCapability) GetRpc() *ControllerServiceCapability_RPC { + if x, ok := m.GetType().(*ControllerServiceCapability_Rpc); ok { + return x.Rpc + } + return nil +} + +// XXX_OneofWrappers is for the internal use of the proto package. +func (*ControllerServiceCapability) XXX_OneofWrappers() []interface{} { + return []interface{}{ + (*ControllerServiceCapability_Rpc)(nil), + } +} + +type ControllerServiceCapability_RPC struct { + Type ControllerServiceCapability_RPC_Type `protobuf:"varint,1,opt,name=type,proto3,enum=csi.v1.ControllerServiceCapability_RPC_Type" json:"type,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ControllerServiceCapability_RPC) Reset() { *m = ControllerServiceCapability_RPC{} } +func (m *ControllerServiceCapability_RPC) String() string { return proto.CompactTextString(m) } +func (*ControllerServiceCapability_RPC) ProtoMessage() {} +func (*ControllerServiceCapability_RPC) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{51, 0} +} + +func (m *ControllerServiceCapability_RPC) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ControllerServiceCapability_RPC.Unmarshal(m, b) +} +func (m *ControllerServiceCapability_RPC) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ControllerServiceCapability_RPC.Marshal(b, m, deterministic) +} +func (m *ControllerServiceCapability_RPC) XXX_Merge(src proto.Message) { + xxx_messageInfo_ControllerServiceCapability_RPC.Merge(m, src) +} +func (m *ControllerServiceCapability_RPC) XXX_Size() int { + return xxx_messageInfo_ControllerServiceCapability_RPC.Size(m) +} +func (m *ControllerServiceCapability_RPC) XXX_DiscardUnknown() { + xxx_messageInfo_ControllerServiceCapability_RPC.DiscardUnknown(m) +} + +var xxx_messageInfo_ControllerServiceCapability_RPC proto.InternalMessageInfo + +func (m *ControllerServiceCapability_RPC) GetType() ControllerServiceCapability_RPC_Type { + if m != nil { + return m.Type + } + return ControllerServiceCapability_RPC_UNKNOWN +} + +type CreateSnapshotRequest struct { + // The ID of the source volume to be snapshotted. + // This field is REQUIRED. + SourceVolumeId string `protobuf:"bytes,1,opt,name=source_volume_id,json=sourceVolumeId,proto3" json:"source_volume_id,omitempty"` + // The suggested name for the snapshot. This field is REQUIRED for + // idempotency. + // Any Unicode string that conforms to the length limit is allowed + // except those containing the following banned characters: + // U+0000-U+0008, U+000B, U+000C, U+000E-U+001F, U+007F-U+009F. + // (These are control characters other than commonly used whitespace.) + Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` + // Secrets required by plugin to complete snapshot creation request. + // This field is OPTIONAL. Refer to the `Secrets Requirements` + // section on how to use this field. + Secrets map[string]string `protobuf:"bytes,3,rep,name=secrets,proto3" json:"secrets,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + // Plugin specific parameters passed in as opaque key-value pairs. + // This field is OPTIONAL. The Plugin is responsible for parsing and + // validating these parameters. COs will treat these as opaque. + // Use cases for opaque parameters: + // - Specify a policy to automatically clean up the snapshot. + // - Specify an expiration date for the snapshot. + // - Specify whether the snapshot is readonly or read/write. + // - Specify if the snapshot should be replicated to some place. + // - Specify primary or secondary for replication systems that + // support snapshotting only on primary. + Parameters map[string]string `protobuf:"bytes,4,rep,name=parameters,proto3" json:"parameters,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CreateSnapshotRequest) Reset() { *m = CreateSnapshotRequest{} } +func (m *CreateSnapshotRequest) String() string { return proto.CompactTextString(m) } +func (*CreateSnapshotRequest) ProtoMessage() {} +func (*CreateSnapshotRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{52} +} + +func (m *CreateSnapshotRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CreateSnapshotRequest.Unmarshal(m, b) +} +func (m *CreateSnapshotRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CreateSnapshotRequest.Marshal(b, m, deterministic) +} +func (m *CreateSnapshotRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_CreateSnapshotRequest.Merge(m, src) +} +func (m *CreateSnapshotRequest) XXX_Size() int { + return xxx_messageInfo_CreateSnapshotRequest.Size(m) +} +func (m *CreateSnapshotRequest) XXX_DiscardUnknown() { + xxx_messageInfo_CreateSnapshotRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_CreateSnapshotRequest proto.InternalMessageInfo + +func (m *CreateSnapshotRequest) GetSourceVolumeId() string { + if m != nil { + return m.SourceVolumeId + } + return "" +} + +func (m *CreateSnapshotRequest) GetName() string { if m != nil { return m.Name } @@ -3172,7 +4482,7 @@ func (m *CreateSnapshotResponse) Reset() { *m = CreateSnapshotResponse{} func (m *CreateSnapshotResponse) String() string { return proto.CompactTextString(m) } func (*CreateSnapshotResponse) ProtoMessage() {} func (*CreateSnapshotResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{33} + return fileDescriptor_9cdb00adce470e01, []int{53} } func (m *CreateSnapshotResponse) XXX_Unmarshal(b []byte) error { @@ -3230,7 +4540,10 @@ type Snapshot struct { // Indicates if a snapshot is ready to use as a // `volume_content_source` in a `CreateVolumeRequest`. The default // value is false. This field is REQUIRED. - ReadyToUse bool `protobuf:"varint,5,opt,name=ready_to_use,json=readyToUse,proto3" json:"ready_to_use,omitempty"` + ReadyToUse bool `protobuf:"varint,5,opt,name=ready_to_use,json=readyToUse,proto3" json:"ready_to_use,omitempty"` + // The ID of the volume group snapshot that this snapshot is part of. + // This field is OPTIONAL. + GroupSnapshotId string `protobuf:"bytes,6,opt,name=group_snapshot_id,json=groupSnapshotId,proto3" json:"group_snapshot_id,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -3240,7 +4553,7 @@ func (m *Snapshot) Reset() { *m = Snapshot{} } func (m *Snapshot) String() string { return proto.CompactTextString(m) } func (*Snapshot) ProtoMessage() {} func (*Snapshot) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{34} + return fileDescriptor_9cdb00adce470e01, []int{54} } func (m *Snapshot) XXX_Unmarshal(b []byte) error { @@ -3296,6 +4609,13 @@ func (m *Snapshot) GetReadyToUse() bool { return false } +func (m *Snapshot) GetGroupSnapshotId() string { + if m != nil { + return m.GroupSnapshotId + } + return "" +} + type DeleteSnapshotRequest struct { // The ID of the snapshot to be deleted. // This field is REQUIRED. @@ -3313,7 +4633,7 @@ func (m *DeleteSnapshotRequest) Reset() { *m = DeleteSnapshotRequest{} } func (m *DeleteSnapshotRequest) String() string { return proto.CompactTextString(m) } func (*DeleteSnapshotRequest) ProtoMessage() {} func (*DeleteSnapshotRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{35} + return fileDescriptor_9cdb00adce470e01, []int{55} } func (m *DeleteSnapshotRequest) XXX_Unmarshal(b []byte) error { @@ -3358,7 +4678,7 @@ func (m *DeleteSnapshotResponse) Reset() { *m = DeleteSnapshotResponse{} func (m *DeleteSnapshotResponse) String() string { return proto.CompactTextString(m) } func (*DeleteSnapshotResponse) ProtoMessage() {} func (*DeleteSnapshotResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{36} + return fileDescriptor_9cdb00adce470e01, []int{56} } func (m *DeleteSnapshotResponse) XXX_Unmarshal(b []byte) error { @@ -3418,7 +4738,7 @@ func (m *ListSnapshotsRequest) Reset() { *m = ListSnapshotsRequest{} } func (m *ListSnapshotsRequest) String() string { return proto.CompactTextString(m) } func (*ListSnapshotsRequest) ProtoMessage() {} func (*ListSnapshotsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{37} + return fileDescriptor_9cdb00adce470e01, []int{57} } func (m *ListSnapshotsRequest) XXX_Unmarshal(b []byte) error { @@ -3492,7 +4812,7 @@ func (m *ListSnapshotsResponse) Reset() { *m = ListSnapshotsResponse{} } func (m *ListSnapshotsResponse) String() string { return proto.CompactTextString(m) } func (*ListSnapshotsResponse) ProtoMessage() {} func (*ListSnapshotsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{38} + return fileDescriptor_9cdb00adce470e01, []int{58} } func (m *ListSnapshotsResponse) XXX_Unmarshal(b []byte) error { @@ -3538,7 +4858,7 @@ func (m *ListSnapshotsResponse_Entry) Reset() { *m = ListSnapshotsRespon func (m *ListSnapshotsResponse_Entry) String() string { return proto.CompactTextString(m) } func (*ListSnapshotsResponse_Entry) ProtoMessage() {} func (*ListSnapshotsResponse_Entry) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{38, 0} + return fileDescriptor_9cdb00adce470e01, []int{58, 0} } func (m *ListSnapshotsResponse_Entry) XXX_Unmarshal(b []byte) error { @@ -3592,7 +4912,7 @@ func (m *ControllerExpandVolumeRequest) Reset() { *m = ControllerExpandV func (m *ControllerExpandVolumeRequest) String() string { return proto.CompactTextString(m) } func (*ControllerExpandVolumeRequest) ProtoMessage() {} func (*ControllerExpandVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{39} + return fileDescriptor_9cdb00adce470e01, []int{59} } func (m *ControllerExpandVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -3657,7 +4977,7 @@ func (m *ControllerExpandVolumeResponse) Reset() { *m = ControllerExpand func (m *ControllerExpandVolumeResponse) String() string { return proto.CompactTextString(m) } func (*ControllerExpandVolumeResponse) ProtoMessage() {} func (*ControllerExpandVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{40} + return fileDescriptor_9cdb00adce470e01, []int{60} } func (m *ControllerExpandVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -3738,7 +5058,7 @@ func (m *NodeStageVolumeRequest) Reset() { *m = NodeStageVolumeRequest{} func (m *NodeStageVolumeRequest) String() string { return proto.CompactTextString(m) } func (*NodeStageVolumeRequest) ProtoMessage() {} func (*NodeStageVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{41} + return fileDescriptor_9cdb00adce470e01, []int{61} } func (m *NodeStageVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -3811,7 +5131,7 @@ func (m *NodeStageVolumeResponse) Reset() { *m = NodeStageVolumeResponse func (m *NodeStageVolumeResponse) String() string { return proto.CompactTextString(m) } func (*NodeStageVolumeResponse) ProtoMessage() {} func (*NodeStageVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{42} + return fileDescriptor_9cdb00adce470e01, []int{62} } func (m *NodeStageVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -3852,7 +5172,7 @@ func (m *NodeUnstageVolumeRequest) Reset() { *m = NodeUnstageVolumeReque func (m *NodeUnstageVolumeRequest) String() string { return proto.CompactTextString(m) } func (*NodeUnstageVolumeRequest) ProtoMessage() {} func (*NodeUnstageVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{43} + return fileDescriptor_9cdb00adce470e01, []int{63} } func (m *NodeUnstageVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -3897,7 +5217,7 @@ func (m *NodeUnstageVolumeResponse) Reset() { *m = NodeUnstageVolumeResp func (m *NodeUnstageVolumeResponse) String() string { return proto.CompactTextString(m) } func (*NodeUnstageVolumeResponse) ProtoMessage() {} func (*NodeUnstageVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{44} + return fileDescriptor_9cdb00adce470e01, []int{64} } func (m *NodeUnstageVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -3981,7 +5301,7 @@ func (m *NodePublishVolumeRequest) Reset() { *m = NodePublishVolumeReque func (m *NodePublishVolumeRequest) String() string { return proto.CompactTextString(m) } func (*NodePublishVolumeRequest) ProtoMessage() {} func (*NodePublishVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{45} + return fileDescriptor_9cdb00adce470e01, []int{65} } func (m *NodePublishVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -4068,7 +5388,7 @@ func (m *NodePublishVolumeResponse) Reset() { *m = NodePublishVolumeResp func (m *NodePublishVolumeResponse) String() string { return proto.CompactTextString(m) } func (*NodePublishVolumeResponse) ProtoMessage() {} func (*NodePublishVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{46} + return fileDescriptor_9cdb00adce470e01, []int{66} } func (m *NodePublishVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -4110,7 +5430,7 @@ func (m *NodeUnpublishVolumeRequest) Reset() { *m = NodeUnpublishVolumeR func (m *NodeUnpublishVolumeRequest) String() string { return proto.CompactTextString(m) } func (*NodeUnpublishVolumeRequest) ProtoMessage() {} func (*NodeUnpublishVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{47} + return fileDescriptor_9cdb00adce470e01, []int{67} } func (m *NodeUnpublishVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -4155,7 +5475,7 @@ func (m *NodeUnpublishVolumeResponse) Reset() { *m = NodeUnpublishVolume func (m *NodeUnpublishVolumeResponse) String() string { return proto.CompactTextString(m) } func (*NodeUnpublishVolumeResponse) ProtoMessage() {} func (*NodeUnpublishVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{48} + return fileDescriptor_9cdb00adce470e01, []int{68} } func (m *NodeUnpublishVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -4208,7 +5528,7 @@ func (m *NodeGetVolumeStatsRequest) Reset() { *m = NodeGetVolumeStatsReq func (m *NodeGetVolumeStatsRequest) String() string { return proto.CompactTextString(m) } func (*NodeGetVolumeStatsRequest) ProtoMessage() {} func (*NodeGetVolumeStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{49} + return fileDescriptor_9cdb00adce470e01, []int{69} } func (m *NodeGetVolumeStatsRequest) XXX_Unmarshal(b []byte) error { @@ -4267,7 +5587,7 @@ func (m *NodeGetVolumeStatsResponse) Reset() { *m = NodeGetVolumeStatsRe func (m *NodeGetVolumeStatsResponse) String() string { return proto.CompactTextString(m) } func (*NodeGetVolumeStatsResponse) ProtoMessage() {} func (*NodeGetVolumeStatsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{50} + return fileDescriptor_9cdb00adce470e01, []int{70} } func (m *NodeGetVolumeStatsResponse) XXX_Unmarshal(b []byte) error { @@ -4323,7 +5643,7 @@ func (m *VolumeUsage) Reset() { *m = VolumeUsage{} } func (m *VolumeUsage) String() string { return proto.CompactTextString(m) } func (*VolumeUsage) ProtoMessage() {} func (*VolumeUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{51} + return fileDescriptor_9cdb00adce470e01, []int{71} } func (m *VolumeUsage) XXX_Unmarshal(b []byte) error { @@ -4390,7 +5710,7 @@ func (m *VolumeCondition) Reset() { *m = VolumeCondition{} } func (m *VolumeCondition) String() string { return proto.CompactTextString(m) } func (*VolumeCondition) ProtoMessage() {} func (*VolumeCondition) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{52} + return fileDescriptor_9cdb00adce470e01, []int{72} } func (m *VolumeCondition) XXX_Unmarshal(b []byte) error { @@ -4435,7 +5755,7 @@ func (m *NodeGetCapabilitiesRequest) Reset() { *m = NodeGetCapabilitiesR func (m *NodeGetCapabilitiesRequest) String() string { return proto.CompactTextString(m) } func (*NodeGetCapabilitiesRequest) ProtoMessage() {} func (*NodeGetCapabilitiesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{53} + return fileDescriptor_9cdb00adce470e01, []int{73} } func (m *NodeGetCapabilitiesRequest) XXX_Unmarshal(b []byte) error { @@ -4469,7 +5789,7 @@ func (m *NodeGetCapabilitiesResponse) Reset() { *m = NodeGetCapabilities func (m *NodeGetCapabilitiesResponse) String() string { return proto.CompactTextString(m) } func (*NodeGetCapabilitiesResponse) ProtoMessage() {} func (*NodeGetCapabilitiesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{54} + return fileDescriptor_9cdb00adce470e01, []int{74} } func (m *NodeGetCapabilitiesResponse) XXX_Unmarshal(b []byte) error { @@ -4500,6 +5820,7 @@ func (m *NodeGetCapabilitiesResponse) GetCapabilities() []*NodeServiceCapability // Specifies a capability of the node service. type NodeServiceCapability struct { // Types that are valid to be assigned to Type: + // // *NodeServiceCapability_Rpc Type isNodeServiceCapability_Type `protobuf_oneof:"type"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -4511,7 +5832,7 @@ func (m *NodeServiceCapability) Reset() { *m = NodeServiceCapability{} } func (m *NodeServiceCapability) String() string { return proto.CompactTextString(m) } func (*NodeServiceCapability) ProtoMessage() {} func (*NodeServiceCapability) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{55} + return fileDescriptor_9cdb00adce470e01, []int{75} } func (m *NodeServiceCapability) XXX_Unmarshal(b []byte) error { @@ -4574,7 +5895,7 @@ func (m *NodeServiceCapability_RPC) Reset() { *m = NodeServiceCapability func (m *NodeServiceCapability_RPC) String() string { return proto.CompactTextString(m) } func (*NodeServiceCapability_RPC) ProtoMessage() {} func (*NodeServiceCapability_RPC) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{55, 0} + return fileDescriptor_9cdb00adce470e01, []int{75, 0} } func (m *NodeServiceCapability_RPC) XXX_Unmarshal(b []byte) error { @@ -4612,7 +5933,7 @@ func (m *NodeGetInfoRequest) Reset() { *m = NodeGetInfoRequest{} } func (m *NodeGetInfoRequest) String() string { return proto.CompactTextString(m) } func (*NodeGetInfoRequest) ProtoMessage() {} func (*NodeGetInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{56} + return fileDescriptor_9cdb00adce470e01, []int{76} } func (m *NodeGetInfoRequest) XXX_Unmarshal(b []byte) error { @@ -4666,8 +5987,10 @@ type NodeGetInfoResponse struct { // no topological constraints declared for V. // // Example 1: - // accessible_topology = - // {"region": "R1", "zone": "Z2"} + // + // accessible_topology = + // {"region": "R1", "zone": "Z2"} + // // Indicates the node exists within the "region" "R1" and the "zone" // "Z2". AccessibleTopology *Topology `protobuf:"bytes,3,opt,name=accessible_topology,json=accessibleTopology,proto3" json:"accessible_topology,omitempty"` @@ -4680,7 +6003,7 @@ func (m *NodeGetInfoResponse) Reset() { *m = NodeGetInfoResponse{} } func (m *NodeGetInfoResponse) String() string { return proto.CompactTextString(m) } func (*NodeGetInfoResponse) ProtoMessage() {} func (*NodeGetInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{57} + return fileDescriptor_9cdb00adce470e01, []int{77} } func (m *NodeGetInfoResponse) XXX_Unmarshal(b []byte) error { @@ -4771,7 +6094,7 @@ func (m *NodeExpandVolumeRequest) Reset() { *m = NodeExpandVolumeRequest func (m *NodeExpandVolumeRequest) String() string { return proto.CompactTextString(m) } func (*NodeExpandVolumeRequest) ProtoMessage() {} func (*NodeExpandVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{58} + return fileDescriptor_9cdb00adce470e01, []int{78} } func (m *NodeExpandVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -4846,7 +6169,7 @@ func (m *NodeExpandVolumeResponse) Reset() { *m = NodeExpandVolumeRespon func (m *NodeExpandVolumeResponse) String() string { return proto.CompactTextString(m) } func (*NodeExpandVolumeResponse) ProtoMessage() {} func (*NodeExpandVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{59} + return fileDescriptor_9cdb00adce470e01, []int{79} } func (m *NodeExpandVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -5000,6 +6323,40 @@ func init() { proto.RegisterType((*GetCapacityRequest)(nil), "csi.v1.GetCapacityRequest") proto.RegisterMapType((map[string]string)(nil), "csi.v1.GetCapacityRequest.ParametersEntry") proto.RegisterType((*GetCapacityResponse)(nil), "csi.v1.GetCapacityResponse") + proto.RegisterType((*CreateVolumeGroupRequest)(nil), "csi.v1.CreateVolumeGroupRequest") + proto.RegisterMapType((map[string]string)(nil), "csi.v1.CreateVolumeGroupRequest.ParametersEntry") + proto.RegisterMapType((map[string]string)(nil), "csi.v1.CreateVolumeGroupRequest.SecretsEntry") + proto.RegisterType((*CreateVolumeGroupResponse)(nil), "csi.v1.CreateVolumeGroupResponse") + proto.RegisterType((*VolumeGroup)(nil), "csi.v1.VolumeGroup") + proto.RegisterMapType((map[string]string)(nil), "csi.v1.VolumeGroup.VolumeGroupContextEntry") + proto.RegisterType((*DeleteVolumeGroupRequest)(nil), "csi.v1.DeleteVolumeGroupRequest") + proto.RegisterMapType((map[string]string)(nil), "csi.v1.DeleteVolumeGroupRequest.SecretsEntry") + proto.RegisterType((*DeleteVolumeGroupResponse)(nil), "csi.v1.DeleteVolumeGroupResponse") + proto.RegisterType((*ModifyVolumeGroupMembershipRequest)(nil), "csi.v1.ModifyVolumeGroupMembershipRequest") + proto.RegisterMapType((map[string]string)(nil), "csi.v1.ModifyVolumeGroupMembershipRequest.SecretsEntry") + proto.RegisterType((*ModifyVolumeGroupMembershipResponse)(nil), "csi.v1.ModifyVolumeGroupMembershipResponse") + proto.RegisterType((*ControllerGetVolumeGroupRequest)(nil), "csi.v1.ControllerGetVolumeGroupRequest") + proto.RegisterMapType((map[string]string)(nil), "csi.v1.ControllerGetVolumeGroupRequest.SecretsEntry") + proto.RegisterType((*ControllerGetVolumeGroupResponse)(nil), "csi.v1.ControllerGetVolumeGroupResponse") + proto.RegisterType((*ListVolumeGroupsRequest)(nil), "csi.v1.ListVolumeGroupsRequest") + proto.RegisterMapType((map[string]string)(nil), "csi.v1.ListVolumeGroupsRequest.SecretsEntry") + proto.RegisterType((*ListVolumeGroupsResponse)(nil), "csi.v1.ListVolumeGroupsResponse") + proto.RegisterType((*ListVolumeGroupsResponse_Entry)(nil), "csi.v1.ListVolumeGroupsResponse.Entry") + proto.RegisterType((*CreateVolumeGroupSnapshotRequest)(nil), "csi.v1.CreateVolumeGroupSnapshotRequest") + proto.RegisterMapType((map[string]string)(nil), "csi.v1.CreateVolumeGroupSnapshotRequest.ParametersEntry") + proto.RegisterMapType((map[string]string)(nil), "csi.v1.CreateVolumeGroupSnapshotRequest.SecretsEntry") + proto.RegisterType((*CreateVolumeGroupSnapshotResponse)(nil), "csi.v1.CreateVolumeGroupSnapshotResponse") + proto.RegisterType((*VolumeGroupSnapshot)(nil), "csi.v1.VolumeGroupSnapshot") + proto.RegisterType((*DeleteVolumeGroupSnapshotRequest)(nil), "csi.v1.DeleteVolumeGroupSnapshotRequest") + proto.RegisterMapType((map[string]string)(nil), "csi.v1.DeleteVolumeGroupSnapshotRequest.SecretsEntry") + proto.RegisterType((*DeleteVolumeGroupSnapshotResponse)(nil), "csi.v1.DeleteVolumeGroupSnapshotResponse") + proto.RegisterType((*ControllerGetVolumeGroupSnapshotRequest)(nil), "csi.v1.ControllerGetVolumeGroupSnapshotRequest") + proto.RegisterMapType((map[string]string)(nil), "csi.v1.ControllerGetVolumeGroupSnapshotRequest.SecretsEntry") + proto.RegisterType((*ControllerGetVolumeGroupSnapshotResponse)(nil), "csi.v1.ControllerGetVolumeGroupSnapshotResponse") + proto.RegisterType((*ListVolumeGroupSnapshotsRequest)(nil), "csi.v1.ListVolumeGroupSnapshotsRequest") + proto.RegisterMapType((map[string]string)(nil), "csi.v1.ListVolumeGroupSnapshotsRequest.SecretsEntry") + proto.RegisterType((*ListVolumeGroupSnapshotsResponse)(nil), "csi.v1.ListVolumeGroupSnapshotsResponse") + proto.RegisterType((*ListVolumeGroupSnapshotsResponse_Entry)(nil), "csi.v1.ListVolumeGroupSnapshotsResponse.Entry") proto.RegisterType((*ControllerGetCapabilitiesRequest)(nil), "csi.v1.ControllerGetCapabilitiesRequest") proto.RegisterType((*ControllerGetCapabilitiesResponse)(nil), "csi.v1.ControllerGetCapabilitiesResponse") proto.RegisterType((*ControllerServiceCapability)(nil), "csi.v1.ControllerServiceCapability") @@ -5060,245 +6417,297 @@ func init() { } var fileDescriptor_9cdb00adce470e01 = []byte{ - // 3796 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3b, 0x4b, 0x6c, 0x23, 0x47, - 0x76, 0x6a, 0xfe, 0x24, 0x3d, 0x4a, 0x1a, 0xaa, 0x28, 0x69, 0x38, 0x2d, 0x69, 0xa4, 0xe9, 0xf1, - 0x78, 0xe5, 0xf1, 0x0c, 0x67, 0xad, 0xb5, 0x8d, 0x58, 0x1e, 0xef, 0x9a, 0xa4, 0x38, 0x12, 0x77, - 0x28, 0x52, 0x6e, 0x52, 0x33, 0x3b, 0x93, 0x18, 0xed, 0x16, 0x59, 0xe2, 0x34, 0x4c, 0x76, 0xd3, - 0xdd, 0x4d, 0x45, 0xda, 0x4b, 0x82, 0x04, 0x39, 0x04, 0xb9, 0xe4, 0xb6, 0xce, 0x29, 0x8b, 0x24, - 0xc7, 0x5d, 0xec, 0x21, 0x08, 0x72, 0x0c, 0x90, 0x5b, 0x02, 0xe4, 0x73, 0x4b, 0x90, 0xcb, 0x1e, - 0x02, 0xe4, 0x60, 0x24, 0x80, 0xcf, 0x39, 0x04, 0x41, 0x57, 0x55, 0x37, 0xfb, 0xcb, 0xcf, 0x48, - 0x03, 0x1f, 0xf6, 0x24, 0xf6, 0xab, 0xf7, 0x5e, 0xbd, 0xaa, 0x7a, 0xef, 0xd5, 0xfb, 0x94, 0xe0, - 0x83, 0x8e, 0x62, 0xbe, 0x1a, 0x9c, 0xe6, 0x5b, 0x5a, 0xef, 0x51, 0x4b, 0x53, 0x4d, 0x59, 0x51, - 0xb1, 0xfe, 0xd0, 0x30, 0x35, 0x5d, 0xee, 0xe0, 0x87, 0x8a, 0x6a, 0x62, 0xfd, 0x4c, 0x6e, 0xe1, - 0x47, 0x46, 0x1f, 0xb7, 0x1e, 0xb5, 0x0c, 0x25, 0xdf, 0xd7, 0x35, 0x53, 0x43, 0x29, 0xeb, 0xe7, - 0xf9, 0x7b, 0xfc, 0x76, 0x47, 0xd3, 0x3a, 0x5d, 0xfc, 0x88, 0x40, 0x4f, 0x07, 0x67, 0x8f, 0xda, - 0xd8, 0x68, 0xe9, 0x4a, 0xdf, 0xd4, 0x74, 0x8a, 0xc9, 0x6f, 0xf9, 0x31, 0x4c, 0xa5, 0x87, 0x0d, - 0x53, 0xee, 0xf5, 0x19, 0xc2, 0x6d, 0x3f, 0xc2, 0xef, 0xea, 0x72, 0xbf, 0x8f, 0x75, 0x83, 0x8e, - 0x0b, 0x6b, 0xb0, 0x72, 0x80, 0xcd, 0xe3, 0xee, 0xa0, 0xa3, 0xa8, 0x15, 0xf5, 0x4c, 0x13, 0xf1, - 0x57, 0x03, 0x6c, 0x98, 0xc2, 0xbf, 0x73, 0xb0, 0xea, 0x1b, 0x30, 0xfa, 0x9a, 0x6a, 0x60, 0x84, - 0x20, 0xa1, 0xca, 0x3d, 0x9c, 0xe3, 0xb6, 0xb9, 0x9d, 0x79, 0x91, 0xfc, 0x46, 0xf7, 0x60, 0xe9, - 0x1c, 0xab, 0x6d, 0x4d, 0x97, 0xce, 0xb1, 0x6e, 0x28, 0x9a, 0x9a, 0x8b, 0x91, 0xd1, 0x45, 0x0a, - 0x7d, 0x46, 0x81, 0xe8, 0x00, 0xe6, 0x7a, 0xb2, 0xaa, 0x9c, 0x61, 0xc3, 0xcc, 0xc5, 0xb7, 0xe3, - 0x3b, 0xe9, 0xdd, 0x77, 0xf3, 0x74, 0xa9, 0xf9, 0xd0, 0xb9, 0xf2, 0x47, 0x0c, 0xbb, 0xac, 0x9a, - 0xfa, 0xa5, 0xe8, 0x10, 0xf3, 0x1f, 0xc3, 0xa2, 0x67, 0x08, 0x65, 0x20, 0xfe, 0x25, 0xbe, 0x64, - 0x32, 0x59, 0x3f, 0xd1, 0x0a, 0x24, 0xcf, 0xe5, 0xee, 0x00, 0x33, 0x49, 0xe8, 0xc7, 0x5e, 0xec, - 0xb7, 0x38, 0xe1, 0x36, 0x6c, 0x38, 0xb3, 0x95, 0xe4, 0xbe, 0x7c, 0xaa, 0x74, 0x15, 0x53, 0xc1, - 0x86, 0xbd, 0xf4, 0xcf, 0x61, 0x33, 0x62, 0x9c, 0xed, 0xc0, 0x63, 0x58, 0x68, 0xb9, 0xe0, 0x39, - 0x8e, 0x2c, 0x25, 0x67, 0x2f, 0xc5, 0x47, 0x79, 0x29, 0x7a, 0xb0, 0x85, 0x7f, 0x8e, 0x43, 0xc6, - 0x8f, 0x82, 0x1e, 0xc3, 0xac, 0x81, 0xf5, 0x73, 0xa5, 0x45, 0xf7, 0x35, 0xbd, 0xbb, 0x1d, 0xc5, - 0x2d, 0xdf, 0xa0, 0x78, 0x87, 0x33, 0xa2, 0x4d, 0x82, 0x4e, 0x20, 0x73, 0xae, 0x75, 0x07, 0x3d, - 0x2c, 0xe1, 0x8b, 0xbe, 0xac, 0x3a, 0x07, 0x90, 0xde, 0xdd, 0x89, 0x64, 0xf3, 0x8c, 0x10, 0x94, - 0x6d, 0xfc, 0xc3, 0x19, 0xf1, 0xc6, 0xb9, 0x17, 0xc4, 0xff, 0x8c, 0x83, 0x59, 0x36, 0x1b, 0xfa, - 0x08, 0x12, 0xe6, 0x65, 0x9f, 0x4a, 0xb7, 0xb4, 0x7b, 0x6f, 0x9c, 0x74, 0xf9, 0xe6, 0x65, 0x1f, - 0x8b, 0x84, 0x44, 0xf8, 0x0c, 0x12, 0xd6, 0x17, 0x4a, 0xc3, 0xec, 0x49, 0xed, 0x69, 0xad, 0xfe, - 0xbc, 0x96, 0x99, 0x41, 0x6b, 0x80, 0x4a, 0xf5, 0x5a, 0x53, 0xac, 0x57, 0xab, 0x65, 0x51, 0x6a, - 0x94, 0xc5, 0x67, 0x95, 0x52, 0x39, 0xc3, 0xa1, 0xb7, 0x60, 0xfb, 0x59, 0xbd, 0x7a, 0x72, 0x54, - 0x96, 0x0a, 0xa5, 0x52, 0xb9, 0xd1, 0xa8, 0x14, 0x2b, 0xd5, 0x4a, 0xf3, 0x85, 0x54, 0xaa, 0xd7, - 0x1a, 0x4d, 0xb1, 0x50, 0xa9, 0x35, 0x1b, 0x99, 0x18, 0xff, 0x07, 0x1c, 0xdc, 0xf0, 0x2d, 0x00, - 0x15, 0x3c, 0x12, 0x3e, 0x9c, 0x74, 0xe1, 0x6e, 0x49, 0x1f, 0x84, 0x49, 0x0a, 0x90, 0xaa, 0xd7, - 0xaa, 0x95, 0x9a, 0x25, 0x5d, 0x1a, 0x66, 0xeb, 0x4f, 0x9e, 0x90, 0x8f, 0x58, 0x31, 0x45, 0x27, - 0x14, 0x96, 0x60, 0xe1, 0x58, 0xd7, 0x4e, 0xb1, 0xad, 0x3f, 0x05, 0x58, 0x64, 0xdf, 0x4c, 0x5f, - 0xbe, 0x0f, 0x49, 0x1d, 0xcb, 0xed, 0x4b, 0x76, 0xb4, 0x7c, 0x9e, 0xda, 0x64, 0xde, 0xb6, 0xc9, - 0x7c, 0x51, 0xd3, 0xba, 0xcf, 0x2c, 0xfd, 0x14, 0x29, 0xa2, 0xf0, 0x6d, 0x02, 0xb2, 0x25, 0x1d, - 0xcb, 0x26, 0xa6, 0xd2, 0x32, 0xd6, 0xa1, 0xb6, 0xf7, 0x18, 0x96, 0x2c, 0xfd, 0x6a, 0x29, 0xe6, - 0xa5, 0xa4, 0xcb, 0x6a, 0x07, 0xb3, 0xa3, 0x5f, 0xb5, 0x77, 0xa0, 0xc4, 0x46, 0x45, 0x6b, 0x50, - 0x5c, 0x6c, 0xb9, 0x3f, 0x51, 0x05, 0xb2, 0x4c, 0x75, 0x3c, 0x2a, 0x1d, 0xf7, 0xaa, 0x34, 0x95, - 0xc2, 0xa5, 0xd2, 0xe8, 0xdc, 0x0b, 0x51, 0xb0, 0x81, 0x9e, 0x02, 0xf4, 0x65, 0x5d, 0xee, 0x61, - 0x13, 0xeb, 0x46, 0x2e, 0xe1, 0xb5, 0xef, 0x90, 0xd5, 0xe4, 0x8f, 0x1d, 0x6c, 0x6a, 0xdf, 0x2e, - 0x72, 0x74, 0x60, 0x19, 0x44, 0x4b, 0xc7, 0xa6, 0x91, 0x4b, 0x12, 0x4e, 0x3b, 0xa3, 0x38, 0x35, - 0x28, 0x2a, 0x61, 0x53, 0x8c, 0x7f, 0x5d, 0xe4, 0x44, 0x9b, 0x1a, 0xd5, 0x61, 0xd5, 0x5e, 0xa0, - 0xa6, 0x9a, 0x58, 0x35, 0x25, 0x43, 0x1b, 0xe8, 0x2d, 0x9c, 0x4b, 0x91, 0x5d, 0x5a, 0xf7, 0x2d, - 0x91, 0xe2, 0x34, 0x08, 0x8a, 0xc8, 0xb6, 0xc6, 0x03, 0x44, 0x2f, 0x81, 0x97, 0x5b, 0x2d, 0x6c, - 0x18, 0x0a, 0xdd, 0x0b, 0x49, 0xc7, 0x5f, 0x0d, 0x14, 0x1d, 0xf7, 0xb0, 0x6a, 0x1a, 0xb9, 0x59, - 0x2f, 0xd7, 0xa6, 0xd6, 0xd7, 0xba, 0x5a, 0xe7, 0x52, 0x1c, 0xe2, 0x88, 0xb7, 0x3c, 0xe4, 0xae, - 0x11, 0x83, 0xff, 0x04, 0x6e, 0xf8, 0x36, 0x65, 0x1a, 0xcf, 0xc6, 0xef, 0xc1, 0x82, 0x7b, 0x27, - 0xa6, 0xf2, 0x8a, 0x7f, 0x12, 0x83, 0x6c, 0xc8, 0x1e, 0xa0, 0x43, 0x98, 0x33, 0x54, 0xb9, 0x6f, - 0xbc, 0xd2, 0x4c, 0xa6, 0xbf, 0xf7, 0x47, 0x6c, 0x59, 0xbe, 0xc1, 0x70, 0xe9, 0xe7, 0xe1, 0x8c, - 0xe8, 0x50, 0xa3, 0x22, 0xa4, 0xe8, 0x7e, 0xfa, 0x7d, 0x53, 0x18, 0x1f, 0x0a, 0x73, 0xb8, 0x30, - 0x4a, 0xfe, 0x3d, 0x58, 0xf2, 0xce, 0x80, 0xb6, 0x20, 0x6d, 0xcf, 0x20, 0x29, 0x6d, 0xb6, 0x56, - 0xb0, 0x41, 0x95, 0x36, 0xff, 0x2e, 0x2c, 0xb8, 0x99, 0xa1, 0x75, 0x98, 0x67, 0x0a, 0xe1, 0xa0, - 0xcf, 0x51, 0x40, 0xa5, 0xed, 0xd8, 0xf4, 0x0f, 0x61, 0xc5, 0xab, 0x67, 0xcc, 0x94, 0xdf, 0x76, - 0xd6, 0x40, 0xf7, 0x62, 0xc9, 0xbb, 0x06, 0x5b, 0x4e, 0xe1, 0xcf, 0x93, 0x90, 0xf1, 0x1b, 0x0d, - 0x7a, 0x0c, 0xc9, 0xd3, 0xae, 0xd6, 0xfa, 0x92, 0xd1, 0xbe, 0x15, 0x65, 0x5d, 0xf9, 0xa2, 0x85, - 0x45, 0xa1, 0x87, 0x33, 0x22, 0x25, 0xb2, 0xa8, 0x7b, 0xda, 0x40, 0x35, 0xd9, 0xee, 0x45, 0x53, - 0x1f, 0x59, 0x58, 0x43, 0x6a, 0x42, 0x84, 0xf6, 0x21, 0x4d, 0xd5, 0x4e, 0xea, 0x69, 0x6d, 0x9c, - 0x8b, 0x13, 0x1e, 0x77, 0x23, 0x79, 0x14, 0x08, 0xee, 0x91, 0xd6, 0xc6, 0x22, 0xc8, 0xce, 0x6f, - 0x7e, 0x11, 0xd2, 0x2e, 0xd9, 0xf8, 0x01, 0xa4, 0x5d, 0x93, 0xa1, 0x9b, 0x30, 0x7b, 0x66, 0x48, - 0x8e, 0x13, 0x9e, 0x17, 0x53, 0x67, 0x06, 0xf1, 0xa7, 0x5b, 0x90, 0x26, 0x52, 0x48, 0x67, 0x5d, - 0xb9, 0x63, 0xe4, 0x62, 0xdb, 0x71, 0xeb, 0x8c, 0x08, 0xe8, 0x89, 0x05, 0x41, 0x0f, 0x80, 0x39, - 0x14, 0x89, 0xe2, 0x75, 0x74, 0x6d, 0xd0, 0x27, 0x42, 0xce, 0x8b, 0xec, 0x6a, 0x23, 0x13, 0x1d, - 0x58, 0x70, 0xfe, 0xaf, 0x63, 0x00, 0x43, 0x01, 0xd1, 0x63, 0x48, 0x90, 0x35, 0x51, 0xc7, 0xbf, - 0x33, 0xc1, 0x9a, 0xf2, 0x64, 0x61, 0x84, 0x4a, 0xf8, 0x2f, 0x0e, 0x12, 0x84, 0x8d, 0xff, 0x7a, - 0x6a, 0x54, 0x6a, 0x07, 0xd5, 0xb2, 0x54, 0xab, 0xef, 0x97, 0xa5, 0xe7, 0x62, 0xa5, 0x59, 0x16, - 0x33, 0x1c, 0x5a, 0x87, 0x9b, 0x6e, 0xb8, 0x58, 0x2e, 0xec, 0x97, 0x45, 0xa9, 0x5e, 0xab, 0xbe, - 0xc8, 0xc4, 0x10, 0x0f, 0x6b, 0x47, 0x27, 0xd5, 0x66, 0x25, 0x38, 0x16, 0x47, 0x1b, 0x90, 0x73, - 0x8d, 0x31, 0x1e, 0x8c, 0x6d, 0xc2, 0x62, 0xeb, 0x1a, 0xa5, 0x3f, 0xd9, 0x60, 0x12, 0x09, 0x70, - 0xcb, 0x3d, 0xa7, 0x97, 0x36, 0xc5, 0xc7, 0x7f, 0x5e, 0xe4, 0xd0, 0x1d, 0xc8, 0xb9, 0x71, 0x3c, - 0x1c, 0x66, 0x09, 0x4a, 0x71, 0xd1, 0xd1, 0x00, 0xa2, 0xe1, 0xcf, 0x61, 0xd1, 0x73, 0x31, 0x58, - 0x31, 0x1c, 0xf3, 0x64, 0x6d, 0xe9, 0xf4, 0xd2, 0x24, 0x71, 0x0d, 0xb7, 0x13, 0x17, 0x17, 0x6d, - 0x68, 0xd1, 0x02, 0x5a, 0x67, 0xd9, 0x55, 0x7a, 0x8a, 0xc9, 0x70, 0x62, 0x04, 0x07, 0x08, 0x88, - 0x20, 0x08, 0xbf, 0x8e, 0x41, 0x8a, 0x29, 0xc4, 0x3d, 0xd7, 0xd5, 0xe4, 0x61, 0x69, 0x43, 0x29, - 0x4b, 0x8f, 0x45, 0xc6, 0xbc, 0x16, 0x89, 0x0e, 0x61, 0xc9, 0xed, 0xbf, 0x2f, 0xec, 0xc8, 0xf1, - 0x8e, 0xf7, 0x9c, 0xdd, 0x4e, 0xe4, 0x82, 0xc5, 0x8b, 0x8b, 0xe7, 0x6e, 0x18, 0x2a, 0xc2, 0x92, - 0xef, 0x0a, 0x48, 0x8c, 0xbf, 0x02, 0x16, 0x5b, 0x1e, 0x6f, 0x58, 0x80, 0xac, 0xed, 0xbd, 0xbb, - 0x58, 0x32, 0x99, 0x77, 0x67, 0x57, 0x54, 0x26, 0xe0, 0xf5, 0xd1, 0x10, 0xd9, 0x86, 0xf1, 0x9f, - 0x02, 0x0a, 0xca, 0x3a, 0x95, 0xab, 0x1e, 0x40, 0x36, 0xe4, 0x5e, 0x41, 0x79, 0x98, 0x27, 0x47, - 0x65, 0x28, 0x26, 0x66, 0x31, 0x69, 0x50, 0xa2, 0x21, 0x8a, 0x85, 0xdf, 0xd7, 0xf1, 0x19, 0xd6, - 0x75, 0xdc, 0x26, 0x36, 0x19, 0x8a, 0xef, 0xa0, 0x08, 0x7f, 0xc8, 0xc1, 0x9c, 0x0d, 0x47, 0x7b, - 0x30, 0x67, 0xe0, 0x0e, 0xbd, 0xf3, 0xe8, 0x5c, 0xb7, 0xfd, 0xb4, 0xf9, 0x06, 0x43, 0x60, 0xd1, - 0xbb, 0x8d, 0x6f, 0x45, 0xef, 0x9e, 0xa1, 0xa9, 0x16, 0xff, 0xb7, 0x1c, 0x64, 0xf7, 0x71, 0x17, - 0xfb, 0x43, 0xa3, 0x51, 0x6e, 0xdd, 0x1d, 0x4d, 0xc4, 0xbc, 0xd1, 0x44, 0x08, 0xab, 0x11, 0xd1, - 0xc4, 0x95, 0x6e, 0xd8, 0x35, 0x58, 0xf1, 0xce, 0x46, 0xef, 0x14, 0xe1, 0x7f, 0xe2, 0x70, 0xdb, - 0xd2, 0x05, 0x5d, 0xeb, 0x76, 0xb1, 0x7e, 0x3c, 0x38, 0xed, 0x2a, 0xc6, 0xab, 0x29, 0x16, 0x77, - 0x13, 0x66, 0x55, 0xad, 0xed, 0x32, 0x9e, 0x94, 0xf5, 0x59, 0x69, 0xa3, 0x32, 0x2c, 0xfb, 0x63, - 0xbb, 0x4b, 0xe6, 0xf9, 0xa3, 0x23, 0xbb, 0xcc, 0xb9, 0xff, 0xda, 0xe2, 0x61, 0xce, 0x8a, 0x4a, - 0x35, 0xb5, 0x7b, 0x49, 0x2c, 0x66, 0x4e, 0x74, 0xbe, 0x91, 0xe8, 0x0f, 0xd3, 0x7e, 0xe0, 0x84, - 0x69, 0x23, 0x57, 0x34, 0x2a, 0x62, 0xfb, 0x22, 0x60, 0xf1, 0x29, 0xc2, 0xfa, 0xa3, 0x09, 0x59, - 0x8f, 0xf5, 0x04, 0x57, 0x39, 0xc5, 0x6b, 0x30, 0xdf, 0x7f, 0xe4, 0x60, 0x2b, 0x72, 0x09, 0x2c, - 0xce, 0x68, 0xc3, 0x8d, 0x3e, 0x1d, 0x70, 0x36, 0x81, 0x5a, 0xd9, 0xc7, 0x63, 0x37, 0x81, 0xa5, - 0xce, 0x0c, 0xea, 0xd9, 0x86, 0xa5, 0xbe, 0x07, 0xc8, 0x17, 0x20, 0x1b, 0x82, 0x36, 0xd5, 0x62, - 0xbe, 0xe1, 0x60, 0x7b, 0x28, 0xca, 0x89, 0xda, 0xbf, 0x3e, 0xf5, 0x6d, 0x0e, 0x75, 0x8b, 0xba, - 0xfc, 0x0f, 0x82, 0x6b, 0x0f, 0x9f, 0xf0, 0x4d, 0x59, 0xf0, 0x5d, 0xb8, 0x33, 0x62, 0x6a, 0x66, - 0xce, 0xbf, 0x4e, 0xc0, 0x9d, 0x67, 0x72, 0x57, 0x69, 0x3b, 0xd1, 0x63, 0x48, 0x91, 0x61, 0xf4, - 0x96, 0xb4, 0x02, 0x16, 0x40, 0xbd, 0xd6, 0x63, 0xc7, 0x6a, 0xc7, 0xf1, 0x9f, 0xe0, 0x3a, 0xbc, - 0xc6, 0xcc, 0xef, 0x45, 0x48, 0xe6, 0xf7, 0xd1, 0xe4, 0xb2, 0x8e, 0xca, 0x03, 0x4f, 0xfc, 0x0e, - 0xe6, 0xc3, 0xc9, 0xf9, 0x8e, 0xd0, 0x82, 0x2b, 0x5b, 0xf1, 0x77, 0x99, 0xaa, 0xfd, 0x7d, 0x02, - 0x84, 0x51, 0xab, 0x67, 0x3e, 0x44, 0x84, 0xf9, 0x96, 0xa6, 0x9e, 0x29, 0x7a, 0x0f, 0xb7, 0x59, - 0xca, 0xf1, 0xfe, 0x24, 0x9b, 0xc7, 0x1c, 0x48, 0xc9, 0xa6, 0x15, 0x87, 0x6c, 0x50, 0x0e, 0x66, - 0x7b, 0xd8, 0x30, 0xe4, 0x8e, 0x2d, 0x96, 0xfd, 0xc9, 0xff, 0x32, 0x0e, 0xf3, 0x0e, 0x09, 0x52, - 0x03, 0x1a, 0x4c, 0xdd, 0xd7, 0xc1, 0xeb, 0x08, 0xf0, 0xfa, 0xca, 0x1c, 0x7b, 0x0d, 0x65, 0x6e, - 0x7b, 0x94, 0x99, 0x9a, 0xc3, 0xfe, 0x6b, 0x89, 0x3d, 0x42, 0xaf, 0xbf, 0x73, 0x05, 0x14, 0x7e, - 0x07, 0x50, 0x55, 0x31, 0x58, 0xea, 0xe6, 0xb8, 0x25, 0x2b, 0x53, 0x93, 0x2f, 0x24, 0xac, 0x9a, - 0xba, 0xc2, 0xc2, 0xf5, 0xa4, 0x08, 0x3d, 0xf9, 0xa2, 0x4c, 0x21, 0x56, 0x48, 0x6f, 0x98, 0xb2, - 0x6e, 0x2a, 0x6a, 0x47, 0x32, 0xb5, 0x2f, 0xb1, 0x53, 0xe9, 0xb5, 0xa1, 0x4d, 0x0b, 0x28, 0xfc, - 0x77, 0x0c, 0xb2, 0x1e, 0xf6, 0x4c, 0x27, 0x3f, 0x86, 0xd9, 0x21, 0x6f, 0x4f, 0x18, 0x1f, 0x82, - 0x9d, 0xa7, 0xdb, 0x66, 0x53, 0xa0, 0x4d, 0x00, 0x15, 0x5f, 0x98, 0x9e, 0x79, 0xe7, 0x2d, 0x08, - 0x99, 0x93, 0xff, 0x23, 0xce, 0xc9, 0xf4, 0x4d, 0xd9, 0x1c, 0x90, 0xac, 0x92, 0xb9, 0x68, 0xdc, - 0x96, 0xd8, 0x1d, 0x43, 0xe7, 0x9d, 0x17, 0x33, 0xce, 0x48, 0x8d, 0xdc, 0x36, 0x06, 0x3a, 0x70, - 0x8a, 0xa8, 0x2d, 0x4d, 0x6d, 0x2b, 0xe6, 0xb0, 0x88, 0x7a, 0x33, 0x90, 0x20, 0xd0, 0xe1, 0xa2, - 0x95, 0x57, 0xd9, 0x65, 0x53, 0x07, 0xca, 0x7f, 0x05, 0x49, 0x7a, 0x1c, 0x13, 0x16, 0x0b, 0xd0, - 0xa7, 0x90, 0x32, 0x88, 0xc4, 0xfe, 0xc2, 0x48, 0xd8, 0x9e, 0xb8, 0x57, 0x28, 0x32, 0x3a, 0xe1, - 0x87, 0xc0, 0x0f, 0x2f, 0xa6, 0x03, 0x6c, 0x4e, 0x7e, 0xfd, 0xee, 0x59, 0x6b, 0x10, 0x7e, 0x16, - 0x83, 0xf5, 0x50, 0x06, 0xd3, 0x95, 0x3d, 0xd0, 0xa1, 0x6f, 0x25, 0xdf, 0x0f, 0xde, 0xd8, 0x01, - 0xe6, 0xa1, 0x2b, 0xe2, 0x7f, 0xff, 0x6a, 0x87, 0x59, 0x9c, 0xfa, 0x30, 0x03, 0xe7, 0x48, 0x77, - 0xe6, 0x97, 0x31, 0x40, 0x07, 0xd8, 0x74, 0x52, 0x65, 0xb6, 0xa5, 0x11, 0xfe, 0x86, 0x7b, 0x0d, - 0x7f, 0xf3, 0x63, 0x8f, 0xbf, 0xa1, 0x1e, 0xeb, 0xbe, 0xab, 0x2d, 0xe2, 0x9b, 0x7a, 0xe4, 0x6d, - 0x19, 0x91, 0x9e, 0xd2, 0x98, 0x7f, 0xb2, 0xf4, 0xf4, 0x8a, 0x6e, 0xe5, 0x3f, 0x39, 0xc8, 0x7a, - 0x84, 0x66, 0x1a, 0xf4, 0x10, 0x90, 0x7c, 0x2e, 0x2b, 0x5d, 0xd9, 0x12, 0xcc, 0x4e, 0xff, 0x59, - 0x39, 0x60, 0xd9, 0x19, 0xb1, 0xc9, 0xd0, 0x53, 0xc8, 0xf6, 0xe4, 0x0b, 0xa5, 0x37, 0xe8, 0x49, - 0x6c, 0x9f, 0x0d, 0xe5, 0xa7, 0x76, 0xe1, 0x70, 0x3d, 0x50, 0x40, 0xaf, 0xa8, 0xe6, 0x87, 0xef, - 0xd3, 0x0a, 0xfa, 0x32, 0xa3, 0x63, 0xca, 0xa3, 0xfc, 0x14, 0xa3, 0x63, 0xc8, 0xf6, 0x14, 0x35, - 0xc0, 0x2c, 0x3e, 0x96, 0x19, 0x35, 0xf0, 0x65, 0x46, 0x3c, 0xe4, 0x28, 0x08, 0xee, 0xa0, 0x97, - 0x2d, 0xd7, 0xdf, 0x46, 0xea, 0xba, 0x83, 0xc5, 0x00, 0x0e, 0xdb, 0x96, 0x83, 0xd0, 0x56, 0xd2, - 0xdd, 0xa0, 0xd9, 0xb0, 0xbe, 0x4a, 0x64, 0x57, 0xe9, 0xff, 0xe2, 0x6e, 0x0b, 0x0e, 0x60, 0xa3, - 0x8f, 0x21, 0xae, 0xf7, 0x5b, 0xcc, 0x7c, 0xbf, 0x37, 0x01, 0xff, 0xbc, 0x78, 0x5c, 0x3a, 0x9c, - 0x11, 0x2d, 0x2a, 0xfe, 0xcf, 0xe2, 0x10, 0x17, 0x8f, 0x4b, 0xe8, 0x53, 0x4f, 0x8b, 0xe5, 0xc1, - 0x84, 0x5c, 0xdc, 0x1d, 0x96, 0x7f, 0x89, 0x85, 0xb5, 0x58, 0x72, 0xb0, 0x52, 0x12, 0xcb, 0x85, - 0x66, 0x59, 0xda, 0x2f, 0x57, 0xcb, 0xcd, 0xb2, 0x44, 0x5b, 0x40, 0x19, 0x0e, 0x6d, 0x40, 0xee, - 0xf8, 0xa4, 0x58, 0xad, 0x34, 0x0e, 0xa5, 0x93, 0x9a, 0xfd, 0x8b, 0x8d, 0xc6, 0x50, 0x06, 0x16, - 0xaa, 0x95, 0x46, 0x93, 0x01, 0x1a, 0x99, 0xb8, 0x05, 0x39, 0x28, 0x37, 0xa5, 0x52, 0xe1, 0xb8, - 0x50, 0xaa, 0x34, 0x5f, 0x64, 0x12, 0x88, 0x87, 0x35, 0x2f, 0xef, 0x46, 0xad, 0x70, 0xdc, 0x38, - 0xac, 0x37, 0x33, 0x49, 0x84, 0x60, 0x89, 0xd0, 0xdb, 0xa0, 0x46, 0x26, 0x65, 0x71, 0x28, 0x55, - 0xeb, 0x35, 0x47, 0x86, 0x59, 0xb4, 0x02, 0x19, 0x7b, 0x66, 0xb1, 0x5c, 0xd8, 0x27, 0x05, 0xbd, - 0x39, 0xb4, 0x0c, 0x8b, 0xe5, 0x9f, 0x1c, 0x17, 0x6a, 0xfb, 0x36, 0xe2, 0x3c, 0xda, 0x86, 0x0d, - 0xb7, 0x38, 0x12, 0xa3, 0x2a, 0xef, 0x93, 0xa2, 0x5c, 0x23, 0x03, 0xe8, 0x16, 0x64, 0x58, 0x77, - 0xab, 0x54, 0xaf, 0xed, 0x57, 0x9a, 0x95, 0x7a, 0x2d, 0x93, 0xa6, 0x15, 0xbc, 0x2c, 0x80, 0x25, - 0x39, 0x63, 0xb6, 0x30, 0xbe, 0xac, 0xb7, 0x48, 0xcb, 0x7a, 0x76, 0xc5, 0xfa, 0x9b, 0x18, 0xac, - 0xd2, 0x92, 0xb5, 0x5d, 0x20, 0xb7, 0x7d, 0xd5, 0x0e, 0x64, 0x68, 0xbd, 0x4b, 0xf2, 0xdf, 0x02, - 0x4b, 0x14, 0xfe, 0xcc, 0xce, 0x3b, 0xec, 0xf6, 0x52, 0xcc, 0xd5, 0x5e, 0xaa, 0xf8, 0xb3, 0xb0, - 0xfb, 0xde, 0x46, 0x8c, 0x6f, 0xb6, 0x51, 0x89, 0xfd, 0x51, 0x48, 0x9a, 0xf0, 0x70, 0x34, 0xb7, - 0x51, 0x21, 0xd4, 0x55, 0xb2, 0xf8, 0x2b, 0x7a, 0xb9, 0x27, 0xb0, 0xe6, 0x97, 0x97, 0x19, 0xf4, - 0x83, 0x40, 0xbb, 0xc4, 0x71, 0xbb, 0x0e, 0xae, 0x83, 0x21, 0xfc, 0x1b, 0x07, 0x73, 0x36, 0xd8, - 0x0a, 0x6f, 0x2c, 0xbf, 0xe4, 0xa9, 0x94, 0xce, 0x5b, 0x10, 0xa7, 0xf0, 0xea, 0x6e, 0x74, 0xc4, - 0xfc, 0x8d, 0x8e, 0xd0, 0x73, 0x8e, 0x87, 0x9e, 0xf3, 0x8f, 0x60, 0xb1, 0x65, 0x89, 0xaf, 0x68, - 0xaa, 0x64, 0x2a, 0x3d, 0xbb, 0x10, 0x1a, 0x6c, 0x4c, 0x36, 0xed, 0xd7, 0x04, 0xe2, 0x82, 0x4d, - 0x60, 0x81, 0xd0, 0x36, 0x2c, 0x90, 0x46, 0xa5, 0x64, 0x6a, 0xd2, 0xc0, 0xc0, 0xb9, 0x24, 0x29, - 0x0b, 0x01, 0x81, 0x35, 0xb5, 0x13, 0x03, 0x0b, 0x7f, 0xc7, 0xc1, 0x2a, 0xad, 0x76, 0xf9, 0xd5, - 0x71, 0x5c, 0xc3, 0xc6, 0xad, 0x71, 0xbe, 0xdb, 0x30, 0x94, 0xe1, 0x9b, 0x4a, 0xf6, 0x73, 0xb0, - 0xe6, 0x9f, 0x8f, 0x65, 0xf8, 0xbf, 0x8a, 0xc1, 0x8a, 0x15, 0x9a, 0xd9, 0x03, 0xd7, 0x1d, 0x3d, - 0x4f, 0x71, 0x92, 0xbe, 0xcd, 0x4c, 0x04, 0x36, 0xf3, 0xd0, 0x9f, 0x3f, 0xbf, 0xe3, 0x0e, 0x2e, - 0xfd, 0x2b, 0x78, 0x53, 0x7b, 0xf9, 0x0b, 0x0e, 0x56, 0x7d, 0xf3, 0x31, 0x7b, 0xf9, 0xc4, 0x9f, - 0x10, 0xdc, 0x8d, 0x90, 0xef, 0xb5, 0x52, 0x82, 0x0f, 0xec, 0x50, 0x7c, 0x3a, 0xb3, 0xfc, 0xd7, - 0x18, 0x6c, 0x0e, 0x2f, 0x35, 0xf2, 0x54, 0xa0, 0x3d, 0x45, 0x45, 0xeb, 0x6a, 0x1d, 0xf9, 0xcf, - 0xfc, 0x0e, 0x77, 0x37, 0x78, 0xcf, 0x86, 0x88, 0x34, 0xca, 0xf1, 0x86, 0x16, 0x82, 0x13, 0xd3, - 0x16, 0x82, 0xaf, 0xa4, 0x01, 0xbf, 0xe7, 0xae, 0x71, 0x7b, 0xc5, 0x67, 0x9a, 0x30, 0x61, 0xb3, - 0xe8, 0x43, 0xb8, 0x49, 0xa2, 0x7f, 0xe7, 0xa5, 0x8b, 0xdd, 0x7f, 0xa7, 0x2e, 0x71, 0x4e, 0x5c, - 0xb5, 0x86, 0x9d, 0xe7, 0x1d, 0xac, 0x41, 0xd2, 0x16, 0xbe, 0x4d, 0xc0, 0x9a, 0x95, 0x1d, 0x34, - 0x4c, 0xb9, 0x33, 0x4d, 0xeb, 0xe0, 0xb7, 0x83, 0x95, 0xd8, 0x98, 0xf7, 0x58, 0xc2, 0xb9, 0x4e, - 0x52, 0x80, 0x45, 0x79, 0xc8, 0x1a, 0xa6, 0xdc, 0x21, 0xee, 0x40, 0xd6, 0x3b, 0xd8, 0x94, 0xfa, - 0xb2, 0xf9, 0x8a, 0xd9, 0xfa, 0x32, 0x1b, 0x6a, 0x92, 0x91, 0x63, 0xd9, 0x7c, 0x75, 0x4d, 0x07, - 0x89, 0x7e, 0xec, 0x77, 0x0a, 0xef, 0x8e, 0x59, 0xcb, 0x08, 0xdd, 0xfa, 0x49, 0x44, 0xb5, 0xfe, - 0xbd, 0x31, 0x2c, 0xc7, 0x57, 0xe9, 0xaf, 0x5e, 0x9d, 0xfe, 0x8e, 0x0b, 0xfd, 0xb7, 0xe0, 0x66, - 0x60, 0xf1, 0xec, 0x0a, 0xe9, 0x40, 0xce, 0x1a, 0x3a, 0x51, 0x8d, 0x29, 0xd5, 0x31, 0x42, 0x63, - 0x62, 0x11, 0x1a, 0x23, 0xac, 0xc3, 0xad, 0x90, 0x89, 0x98, 0x14, 0x7f, 0x93, 0xa4, 0x62, 0x4c, - 0xdf, 0x73, 0xfa, 0x3c, 0xca, 0x2a, 0xde, 0x77, 0x1f, 0x7b, 0x68, 0x7b, 0xe6, 0x4d, 0xd8, 0xc5, - 0x16, 0xa4, 0xdd, 0x78, 0xec, 0x1a, 0x34, 0xc7, 0x18, 0x4e, 0xf2, 0x4a, 0xad, 0xb0, 0x94, 0xaf, - 0x15, 0x56, 0x1d, 0x1a, 0xd5, 0xac, 0x37, 0xb4, 0x8d, 0xdc, 0x8a, 0x11, 0x66, 0xf5, 0x32, 0x60, - 0x56, 0x73, 0xde, 0xfe, 0x5a, 0x24, 0xd3, 0xdf, 0x00, 0xc3, 0x62, 0x4a, 0x1d, 0xda, 0xf8, 0x12, - 0x5e, 0x02, 0x4f, 0x35, 0x7e, 0xfa, 0x56, 0x94, 0x4f, 0x8d, 0x62, 0x7e, 0x35, 0x12, 0x36, 0x61, - 0x3d, 0x94, 0x37, 0x9b, 0xfa, 0x8f, 0x39, 0x2a, 0x98, 0x53, 0xe3, 0x6a, 0x98, 0xb2, 0x69, 0x4c, - 0x3a, 0x35, 0x1b, 0x74, 0x4f, 0x4d, 0x41, 0x44, 0x83, 0xa7, 0x34, 0x09, 0xe1, 0x4f, 0x39, 0xba, - 0x0f, 0x7e, 0x59, 0xd8, 0x6d, 0xfb, 0x0e, 0x24, 0x07, 0xa4, 0x8c, 0x4f, 0xa3, 0xae, 0xac, 0xd7, - 0x08, 0x4e, 0xac, 0x21, 0x91, 0x62, 0x5c, 0x5b, 0x61, 0x54, 0xf8, 0x15, 0x07, 0x69, 0x17, 0x7f, - 0xb4, 0x01, 0xf3, 0x4e, 0xe5, 0xc7, 0xce, 0x77, 0x1c, 0x80, 0x75, 0xfc, 0xa6, 0x66, 0xca, 0x5d, - 0xf6, 0xc4, 0x84, 0x7e, 0x58, 0x29, 0xea, 0xc0, 0xc0, 0x34, 0x1c, 0x8e, 0x8b, 0xe4, 0x37, 0x7a, - 0x00, 0x89, 0x81, 0xaa, 0x98, 0xc4, 0xec, 0x97, 0xfc, 0xf6, 0x4c, 0xa6, 0xca, 0x9f, 0xa8, 0x8a, - 0x29, 0x12, 0x2c, 0xe1, 0x3e, 0x24, 0xac, 0x2f, 0x6f, 0x05, 0x62, 0x1e, 0x92, 0xc5, 0x17, 0xcd, - 0x72, 0x23, 0xc3, 0x21, 0x80, 0x54, 0x85, 0xe6, 0xeb, 0x31, 0xa1, 0x6a, 0x3f, 0x33, 0x75, 0x16, - 0x61, 0xb9, 0x00, 0xf9, 0x54, 0xd5, 0xf4, 0x9e, 0xdc, 0x25, 0x32, 0xcf, 0x89, 0xce, 0x77, 0x74, - 0x77, 0x84, 0xd6, 0x12, 0x37, 0x9c, 0x13, 0x09, 0xab, 0x17, 0x7d, 0x41, 0x75, 0x2b, 0xaa, 0x52, - 0x54, 0x08, 0xad, 0x14, 0x6d, 0x7a, 0x6e, 0xd9, 0x31, 0x35, 0xa2, 0x7f, 0x88, 0xc1, 0x6a, 0x28, - 0x1e, 0xfa, 0xc0, 0x5d, 0x1d, 0xba, 0x33, 0x92, 0xa7, 0xbb, 0x2e, 0xf4, 0x2d, 0x47, 0xeb, 0x42, - 0x7b, 0x9e, 0xba, 0xd0, 0xdb, 0x63, 0xe9, 0xdd, 0x15, 0xa1, 0x5f, 0x70, 0x11, 0x15, 0xa1, 0x46, - 0xb3, 0x70, 0x50, 0x96, 0x4e, 0x6a, 0xf4, 0xaf, 0x53, 0x11, 0x5a, 0x81, 0xcc, 0xb0, 0x4e, 0x22, - 0x35, 0x9a, 0x85, 0x66, 0x23, 0x13, 0x0b, 0x56, 0x63, 0xe2, 0xa1, 0xb5, 0x96, 0xc4, 0xf8, 0xb2, - 0x4a, 0x92, 0xa2, 0xac, 0x01, 0x62, 0xd4, 0x47, 0xf5, 0x93, 0x5a, 0x53, 0x3a, 0x10, 0xeb, 0x27, - 0xc7, 0x99, 0x94, 0x53, 0x6e, 0x59, 0x01, 0xc4, 0x4e, 0xcb, 0xfd, 0x6a, 0xfe, 0x2f, 0x38, 0xc8, - 0x7a, 0xc0, 0xec, 0xf0, 0x5c, 0x3d, 0x6e, 0xce, 0xd3, 0xe3, 0x7e, 0x04, 0x2b, 0x56, 0xc6, 0x48, - 0x2d, 0xc5, 0x90, 0xfa, 0x58, 0x27, 0xb5, 0x6d, 0xa6, 0xf3, 0xcb, 0x3d, 0xf9, 0x82, 0xd5, 0xff, - 0x8f, 0xb1, 0x6e, 0x31, 0xbe, 0x86, 0x0a, 0xaf, 0xf0, 0x75, 0x9c, 0xc6, 0x25, 0x53, 0xe7, 0x35, - 0x63, 0x7d, 0x54, 0x30, 0xf1, 0x89, 0x4f, 0x91, 0xf8, 0x44, 0x78, 0xb8, 0xc4, 0x54, 0xc1, 0xf0, - 0xf4, 0x77, 0x7a, 0x6d, 0x78, 0x6f, 0xd3, 0xc8, 0xf5, 0x81, 0x5b, 0x7f, 0xc7, 0x66, 0x5a, 0xa9, - 0xaf, 0x8b, 0xdc, 0xcf, 0xaf, 0x2b, 0x4f, 0x2e, 0xd0, 0x78, 0xec, 0x0a, 0xf9, 0xd1, 0xee, 0xff, - 0x72, 0x30, 0x57, 0x69, 0x63, 0xd5, 0xa4, 0x6b, 0x5b, 0xf4, 0xfc, 0x63, 0x05, 0xda, 0x88, 0xf8, - 0x7f, 0x0b, 0xb2, 0x30, 0x7e, 0x73, 0xe4, 0x7f, 0x63, 0x08, 0x33, 0xe8, 0xcc, 0xf5, 0x4f, 0x21, - 0x9e, 0x26, 0xc6, 0x5b, 0x01, 0xca, 0x10, 0x17, 0xc7, 0xdf, 0x1b, 0x83, 0xe5, 0xcc, 0xf3, 0x21, - 0x24, 0xc9, 0x13, 0x7a, 0xb4, 0xe2, 0x3c, 0xe3, 0x77, 0xbd, 0xb0, 0xe7, 0x57, 0x7d, 0x50, 0x9b, - 0x6e, 0xf7, 0x9f, 0xe6, 0x01, 0x86, 0x69, 0x26, 0x7a, 0x0a, 0x0b, 0xee, 0x57, 0xbc, 0x68, 0x7d, - 0xc4, 0x1b, 0x72, 0x7e, 0x23, 0x7c, 0xd0, 0x91, 0xe9, 0x29, 0x2c, 0xb8, 0x9f, 0x6f, 0x0d, 0x99, - 0x85, 0x3c, 0x21, 0x1b, 0x32, 0x0b, 0x7d, 0xf1, 0x35, 0x83, 0xba, 0x70, 0x33, 0xe2, 0x01, 0x0f, - 0x7a, 0x7b, 0xb2, 0x67, 0x4e, 0xfc, 0xf7, 0x26, 0x7c, 0x09, 0x24, 0xcc, 0x20, 0x1d, 0x6e, 0x45, - 0xbe, 0x5b, 0x41, 0x3b, 0x93, 0xbe, 0xaa, 0xe1, 0xdf, 0x99, 0x00, 0xd3, 0x99, 0x73, 0x00, 0x7c, - 0x74, 0xb3, 0x1c, 0xbd, 0x33, 0xf1, 0x2b, 0x0e, 0xfe, 0xfe, 0xe4, 0xbd, 0x77, 0x61, 0x06, 0x1d, - 0x42, 0xda, 0xd5, 0x35, 0x45, 0x7c, 0x68, 0x2b, 0x95, 0x32, 0x5e, 0x1f, 0xd1, 0x66, 0xa5, 0x9c, - 0x5c, 0x8d, 0xac, 0x21, 0xa7, 0x60, 0x4b, 0x6e, 0xc8, 0x29, 0xa4, 0xf3, 0xe5, 0xdf, 0x7e, 0xdf, - 0xfd, 0x1e, 0xb6, 0xfd, 0xe1, 0x01, 0x42, 0xd8, 0xf6, 0x47, 0x04, 0x0b, 0xc2, 0x0c, 0xfa, 0x0c, - 0x96, 0xbc, 0x15, 0x6a, 0xb4, 0x39, 0xb2, 0xd2, 0xce, 0xdf, 0x8e, 0x1a, 0x76, 0xb3, 0xf4, 0x16, - 0x44, 0x87, 0x2c, 0x43, 0x0b, 0xb3, 0x43, 0x96, 0x11, 0x75, 0xd4, 0x19, 0xcb, 0x3f, 0x79, 0xca, - 0x7c, 0x43, 0xff, 0x14, 0x56, 0x9d, 0x1c, 0xfa, 0xa7, 0xd0, 0xda, 0xa0, 0x30, 0x83, 0x14, 0x58, - 0x0b, 0xaf, 0x32, 0xa1, 0x7b, 0x13, 0x15, 0xd1, 0xf8, 0xb7, 0xc7, 0xa1, 0x39, 0x53, 0xb5, 0x20, - 0x1b, 0xd2, 0xd4, 0x46, 0xc2, 0xc8, 0x8e, 0x37, 0x9d, 0xe4, 0xee, 0x04, 0x5d, 0x71, 0xc1, 0x8a, - 0x42, 0x76, 0xff, 0x23, 0x09, 0x09, 0x72, 0xed, 0x37, 0xe1, 0x86, 0xaf, 0x94, 0x80, 0x6e, 0x8f, - 0x2e, 0xb0, 0xf0, 0x5b, 0x91, 0xe3, 0xce, 0x1a, 0x5e, 0xc2, 0x72, 0xa0, 0x38, 0x80, 0xb6, 0xdd, - 0x74, 0x61, 0x05, 0x0a, 0xfe, 0xce, 0x08, 0x0c, 0x3f, 0x6f, 0xaf, 0x6f, 0xdb, 0x1e, 0x97, 0xbd, - 0x7a, 0x79, 0x47, 0xf9, 0xb3, 0x2f, 0x68, 0x94, 0xe5, 0xf7, 0x64, 0x82, 0x57, 0xae, 0x50, 0x1f, - 0x76, 0x77, 0x24, 0x8e, 0x33, 0xc3, 0xe7, 0x4e, 0x78, 0xe7, 0x4a, 0x9e, 0x90, 0x47, 0xb8, 0xd0, - 0x24, 0x8f, 0x17, 0x46, 0xa1, 0x38, 0xec, 0x9f, 0x43, 0xc6, 0x7f, 0xcf, 0xa3, 0xad, 0x31, 0x61, - 0x07, 0xbf, 0x1d, 0x8d, 0xe0, 0xdf, 0x19, 0xbf, 0x93, 0xf1, 0x4b, 0x15, 0xe6, 0x5e, 0xee, 0x8e, - 0xc4, 0x71, 0xbb, 0x45, 0x57, 0x84, 0x3b, 0x74, 0x8b, 0xc1, 0x68, 0x78, 0xe8, 0x16, 0x43, 0x42, - 0x62, 0x61, 0x66, 0xef, 0x31, 0x80, 0xdc, 0xed, 0xbf, 0x92, 0x25, 0xac, 0x0e, 0x7a, 0x68, 0x23, - 0xd0, 0x7c, 0x2a, 0xab, 0x83, 0x5e, 0xbd, 0x6f, 0x25, 0x5d, 0x46, 0xee, 0xaf, 0xe6, 0x48, 0xaa, - 0x35, 0x4f, 0x08, 0xac, 0x81, 0xbd, 0x2a, 0x64, 0x86, 0xd4, 0x12, 0x09, 0xa1, 0xd0, 0x9d, 0x50, - 0x1e, 0xa4, 0x95, 0xef, 0x63, 0xb4, 0xe4, 0x30, 0x22, 0xa3, 0x7b, 0x9f, 0x00, 0xb4, 0x0c, 0x45, - 0xa2, 0x31, 0x1c, 0xda, 0x0c, 0xf0, 0x79, 0xa2, 0xe0, 0x6e, 0xdb, 0xe6, 0xf1, 0x97, 0x4c, 0x98, - 0x96, 0xa1, 0xd0, 0x48, 0x6f, 0xef, 0x47, 0x90, 0xa6, 0xc2, 0x9c, 0x59, 0x78, 0xe3, 0xe8, 0x99, - 0x0c, 0x74, 0xf5, 0x64, 0x64, 0xaf, 0x0c, 0x8b, 0x94, 0x01, 0x4b, 0x18, 0xd1, 0x56, 0x80, 0xc5, - 0x11, 0x1d, 0xf1, 0x31, 0x59, 0x20, 0x64, 0x6c, 0x6c, 0xaf, 0x08, 0x0b, 0x36, 0x1b, 0xf3, 0x95, - 0xd6, 0x46, 0xb7, 0x43, 0xb8, 0x58, 0x03, 0x3e, 0x26, 0x69, 0xc6, 0xc4, 0x1a, 0x1a, 0x8a, 0x62, - 0xff, 0x77, 0x69, 0x50, 0x14, 0x96, 0xd4, 0x85, 0x8a, 0xc2, 0xc6, 0x8a, 0xc9, 0x97, 0xf1, 0x96, - 0xa1, 0x9c, 0xa6, 0x08, 0xd1, 0x0f, 0xfe, 0x3f, 0x00, 0x00, 0xff, 0xff, 0x6f, 0x0a, 0xad, 0x10, - 0x0a, 0x3d, 0x00, 0x00, + // 4633 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3c, 0x4b, 0x6c, 0x1b, 0x49, + 0x76, 0x6a, 0xfe, 0x24, 0x3d, 0x7d, 0x4c, 0x15, 0x25, 0x99, 0x6a, 0xd9, 0x96, 0xd4, 0x9a, 0xb1, + 0x35, 0xfe, 0xd0, 0x33, 0x1e, 0xdb, 0xd9, 0xd1, 0x78, 0x76, 0x86, 0x94, 0x68, 0x89, 0x6b, 0x8a, + 0xd4, 0x34, 0x29, 0xcf, 0xd8, 0x1b, 0xa3, 0xa7, 0x45, 0xb6, 0xe4, 0xc6, 0x90, 0xdd, 0x9c, 0xee, + 0xa6, 0x62, 0x6d, 0x0e, 0x09, 0xb2, 0xc9, 0x21, 0x9b, 0x1c, 0x72, 0xdb, 0xb9, 0x04, 0x59, 0x6c, + 0x72, 0xdc, 0xc5, 0x1e, 0x92, 0x20, 0x40, 0x80, 0x20, 0x48, 0x2e, 0x41, 0x72, 0x58, 0x24, 0xb7, + 0x20, 0x40, 0xb0, 0x87, 0x20, 0x39, 0x2c, 0x12, 0x64, 0x81, 0xbd, 0xe5, 0x14, 0x74, 0x57, 0xf5, + 0xaf, 0xfa, 0x43, 0x52, 0x92, 0x67, 0x02, 0xe4, 0x24, 0x75, 0xbd, 0x57, 0xaf, 0x5e, 0xbd, 0x7a, + 0xbf, 0x7a, 0xfd, 0x9a, 0xf0, 0xe0, 0x58, 0x36, 0x5e, 0xf6, 0x0f, 0x0b, 0x2d, 0xb5, 0x7b, 0xb7, + 0xa5, 0x2a, 0x86, 0x28, 0x2b, 0x92, 0x76, 0x47, 0x37, 0x54, 0x4d, 0x3c, 0x96, 0xee, 0xc8, 0x8a, + 0x21, 0x69, 0x47, 0x62, 0x4b, 0xba, 0xab, 0xf7, 0xa4, 0xd6, 0xdd, 0x96, 0x2e, 0x17, 0x7a, 0x9a, + 0x6a, 0xa8, 0x28, 0x63, 0xfe, 0x7b, 0xf2, 0x0e, 0xbb, 0x7a, 0xac, 0xaa, 0xc7, 0x1d, 0xe9, 0xae, + 0x35, 0x7a, 0xd8, 0x3f, 0xba, 0xdb, 0x96, 0xf4, 0x96, 0x26, 0xf7, 0x0c, 0x55, 0xc3, 0x98, 0xec, + 0x0a, 0x8d, 0x61, 0xc8, 0x5d, 0x49, 0x37, 0xc4, 0x6e, 0x8f, 0x20, 0x5c, 0xa3, 0x11, 0x7e, 0x4d, + 0x13, 0x7b, 0x3d, 0x49, 0xd3, 0x31, 0x9c, 0x5b, 0x84, 0xf9, 0x1d, 0xc9, 0xd8, 0xef, 0xf4, 0x8f, + 0x65, 0xa5, 0xa2, 0x1c, 0xa9, 0xbc, 0xf4, 0x45, 0x5f, 0xd2, 0x0d, 0xee, 0x9f, 0x19, 0x58, 0xa0, + 0x00, 0x7a, 0x4f, 0x55, 0x74, 0x09, 0x21, 0x48, 0x29, 0x62, 0x57, 0xca, 0x33, 0xab, 0xcc, 0xc6, + 0x24, 0x6f, 0xfd, 0x8f, 0xde, 0x84, 0xd9, 0x13, 0x49, 0x69, 0xab, 0x9a, 0x70, 0x22, 0x69, 0xba, + 0xac, 0x2a, 0xf9, 0x84, 0x05, 0x9d, 0xc1, 0xa3, 0x4f, 0xf1, 0x20, 0xda, 0x81, 0x89, 0xae, 0xa8, + 0xc8, 0x47, 0x92, 0x6e, 0xe4, 0x93, 0xab, 0xc9, 0x8d, 0xa9, 0x7b, 0xb7, 0x0a, 0x78, 0xab, 0x85, + 0xd0, 0xb5, 0x0a, 0x7b, 0x04, 0xbb, 0xac, 0x18, 0xda, 0x29, 0xef, 0x4c, 0x66, 0xdf, 0x87, 0x19, + 0x1f, 0x08, 0x65, 0x21, 0xf9, 0xb9, 0x74, 0x4a, 0x78, 0x32, 0xff, 0x45, 0xf3, 0x90, 0x3e, 0x11, + 0x3b, 0x7d, 0x89, 0x70, 0x82, 0x1f, 0x36, 0x13, 0xdf, 0x60, 0xb8, 0x6b, 0x70, 0xc5, 0x59, 0x6d, + 0x4b, 0xec, 0x89, 0x87, 0x72, 0x47, 0x36, 0x64, 0x49, 0xb7, 0xb7, 0xfe, 0x02, 0xae, 0x46, 0xc0, + 0x89, 0x04, 0x1e, 0xc1, 0x74, 0xcb, 0x33, 0x9e, 0x67, 0xac, 0xad, 0xe4, 0xed, 0xad, 0x50, 0x33, + 0x4f, 0x79, 0x1f, 0x36, 0xf7, 0xd3, 0x24, 0x64, 0x69, 0x14, 0xf4, 0x08, 0xc6, 0x75, 0x49, 0x3b, + 0x91, 0x5b, 0x58, 0xae, 0x53, 0xf7, 0x56, 0xa3, 0xa8, 0x15, 0x1a, 0x18, 0x6f, 0x77, 0x8c, 0xb7, + 0xa7, 0xa0, 0x03, 0xc8, 0x9e, 0xa8, 0x9d, 0x7e, 0x57, 0x12, 0xa4, 0x57, 0x3d, 0x51, 0x71, 0x0e, + 0x60, 0xea, 0xde, 0x46, 0x24, 0x99, 0xa7, 0xd6, 0x84, 0xb2, 0x8d, 0xbf, 0x3b, 0xc6, 0x5f, 0x3a, + 0xf1, 0x0f, 0xb1, 0xdf, 0x67, 0x60, 0x9c, 0xac, 0x86, 0xde, 0x83, 0x94, 0x71, 0xda, 0xc3, 0xdc, + 0xcd, 0xde, 0x7b, 0x73, 0x10, 0x77, 0x85, 0xe6, 0x69, 0x4f, 0xe2, 0xad, 0x29, 0xdc, 0xc7, 0x90, + 0x32, 0x9f, 0xd0, 0x14, 0x8c, 0x1f, 0xd4, 0x9e, 0xd4, 0xea, 0x9f, 0xd4, 0xb2, 0x63, 0x68, 0x11, + 0xd0, 0x56, 0xbd, 0xd6, 0xe4, 0xeb, 0xd5, 0x6a, 0x99, 0x17, 0x1a, 0x65, 0xfe, 0x69, 0x65, 0xab, + 0x9c, 0x65, 0xd0, 0x1b, 0xb0, 0xfa, 0xb4, 0x5e, 0x3d, 0xd8, 0x2b, 0x0b, 0xc5, 0xad, 0xad, 0x72, + 0xa3, 0x51, 0x29, 0x55, 0xaa, 0x95, 0xe6, 0x33, 0x61, 0xab, 0x5e, 0x6b, 0x34, 0xf9, 0x62, 0xa5, + 0xd6, 0x6c, 0x64, 0x13, 0xec, 0x6f, 0x31, 0x70, 0x89, 0xda, 0x00, 0x2a, 0xfa, 0x38, 0xbc, 0x33, + 0xec, 0xc6, 0xbd, 0x9c, 0xde, 0x0e, 0xe3, 0x14, 0x20, 0x53, 0xaf, 0x55, 0x2b, 0x35, 0x93, 0xbb, + 0x29, 0x18, 0xaf, 0x3f, 0x7e, 0x6c, 0x3d, 0x24, 0x4a, 0x19, 0xbc, 0x20, 0x37, 0x0b, 0xd3, 0xfb, + 0x9a, 0x7a, 0x28, 0xd9, 0xfa, 0x53, 0x84, 0x19, 0xf2, 0x4c, 0xf4, 0xe5, 0x6d, 0x48, 0x6b, 0x92, + 0xd8, 0x3e, 0x25, 0x47, 0xcb, 0x16, 0xb0, 0x4d, 0x16, 0x6c, 0x9b, 0x2c, 0x94, 0x54, 0xb5, 0xf3, + 0xd4, 0xd4, 0x4f, 0x1e, 0x23, 0x72, 0x7f, 0x98, 0x86, 0xdc, 0x96, 0x26, 0x89, 0x86, 0x84, 0xb9, + 0x25, 0xa4, 0x43, 0x6d, 0xef, 0x11, 0xcc, 0x9a, 0xfa, 0xd5, 0x92, 0x8d, 0x53, 0x41, 0x13, 0x95, + 0x63, 0x89, 0x1c, 0xfd, 0x82, 0x2d, 0x81, 0x2d, 0x02, 0xe5, 0x4d, 0x20, 0x3f, 0xd3, 0xf2, 0x3e, + 0xa2, 0x0a, 0xe4, 0x88, 0xea, 0xf8, 0x54, 0x3a, 0xe9, 0x57, 0x69, 0xcc, 0x85, 0x47, 0xa5, 0xd1, + 0x89, 0x7f, 0x44, 0x96, 0x74, 0xf4, 0x04, 0xa0, 0x27, 0x6a, 0x62, 0x57, 0x32, 0x24, 0x4d, 0xcf, + 0xa7, 0xfc, 0xf6, 0x1d, 0xb2, 0x9b, 0xc2, 0xbe, 0x83, 0x8d, 0xed, 0xdb, 0x33, 0x1d, 0xed, 0x98, + 0x06, 0xd1, 0xd2, 0x24, 0x43, 0xcf, 0xa7, 0x2d, 0x4a, 0x1b, 0x71, 0x94, 0x1a, 0x18, 0xd5, 0x22, + 0x53, 0x4a, 0x7e, 0x59, 0x62, 0x78, 0x7b, 0x36, 0xaa, 0xc3, 0x82, 0xbd, 0x41, 0x55, 0x31, 0x24, + 0xc5, 0x10, 0x74, 0xb5, 0xaf, 0xb5, 0xa4, 0x7c, 0xc6, 0x92, 0xd2, 0x32, 0xb5, 0x45, 0x8c, 0xd3, + 0xb0, 0x50, 0x78, 0x22, 0x1a, 0xdf, 0x20, 0x7a, 0x0e, 0xac, 0xd8, 0x6a, 0x49, 0xba, 0x2e, 0x63, + 0x59, 0x08, 0x9a, 0xf4, 0x45, 0x5f, 0xd6, 0xa4, 0xae, 0xa4, 0x18, 0x7a, 0x7e, 0xdc, 0x4f, 0xb5, + 0xa9, 0xf6, 0xd4, 0x8e, 0x7a, 0x7c, 0xca, 0xbb, 0x38, 0xfc, 0x92, 0x6f, 0xba, 0x07, 0xa2, 0xa3, + 0x5b, 0x40, 0x8c, 0x50, 0x38, 0xd6, 0xd4, 0x7e, 0x4f, 0x90, 0xdb, 0xf9, 0x89, 0xd5, 0xe4, 0xc6, + 0x64, 0x29, 0xf9, 0x83, 0x12, 0xc3, 0xcf, 0x60, 0xd8, 0x8e, 0x09, 0xaa, 0xb4, 0xd9, 0x0f, 0xe0, + 0x12, 0x25, 0xc1, 0x51, 0xdc, 0x20, 0xbb, 0x09, 0xd3, 0x5e, 0xb1, 0x8d, 0xe4, 0x42, 0x7f, 0x2f, + 0x01, 0xb9, 0x10, 0x81, 0xa1, 0x5d, 0x98, 0xd0, 0x15, 0xb1, 0xa7, 0xbf, 0x54, 0x0d, 0xa2, 0xec, + 0x37, 0x63, 0xe4, 0x5b, 0x68, 0x10, 0x5c, 0xfc, 0xb8, 0x3b, 0xc6, 0x3b, 0xb3, 0x51, 0x09, 0x32, + 0x78, 0xb7, 0xb4, 0x23, 0x0b, 0xa3, 0x83, 0xc7, 0x1c, 0x2a, 0x64, 0x26, 0xfb, 0x0e, 0xcc, 0xfa, + 0x57, 0x40, 0x2b, 0x30, 0x65, 0xaf, 0x60, 0xca, 0x16, 0xef, 0x15, 0xec, 0xa1, 0x4a, 0x9b, 0xbd, + 0x05, 0xd3, 0x5e, 0x62, 0x68, 0x19, 0x26, 0xc9, 0x81, 0x38, 0xe8, 0x13, 0x78, 0xa0, 0xd2, 0x76, + 0x1c, 0xc0, 0x37, 0x61, 0xde, 0xaf, 0x94, 0xc4, 0xee, 0xaf, 0x3b, 0x7b, 0xc0, 0xb2, 0x98, 0xf5, + 0xef, 0xc1, 0xe6, 0x93, 0xfb, 0xa3, 0x34, 0x64, 0x69, 0x0b, 0x43, 0x8f, 0x20, 0x7d, 0xd8, 0x51, + 0x5b, 0x9f, 0x93, 0xb9, 0x6f, 0x44, 0x99, 0x62, 0xa1, 0x64, 0x62, 0xe1, 0xd1, 0xdd, 0x31, 0x1e, + 0x4f, 0x32, 0x67, 0x77, 0xd5, 0xbe, 0x62, 0x10, 0xe9, 0x45, 0xcf, 0xde, 0x33, 0xb1, 0xdc, 0xd9, + 0xd6, 0x24, 0xb4, 0x0d, 0x53, 0x58, 0x47, 0x85, 0xae, 0xda, 0x96, 0xf2, 0x49, 0x8b, 0xc6, 0x7a, + 0x24, 0x8d, 0xa2, 0x85, 0xbb, 0xa7, 0xb6, 0x25, 0x1e, 0x44, 0xe7, 0x7f, 0x76, 0x06, 0xa6, 0x3c, + 0xbc, 0xb1, 0x7d, 0x98, 0xf2, 0x2c, 0x86, 0x2e, 0xc3, 0xf8, 0x91, 0x2e, 0x38, 0x1e, 0x7b, 0x92, + 0xcf, 0x1c, 0xe9, 0x96, 0xf3, 0x5d, 0x81, 0x29, 0x8b, 0x0b, 0xe1, 0xa8, 0x23, 0x1e, 0xeb, 0xf9, + 0x84, 0xa9, 0xff, 0x3c, 0x58, 0x43, 0x8f, 0xcd, 0x11, 0x74, 0x1b, 0x88, 0xf7, 0x11, 0x30, 0x9e, + 0x65, 0x2a, 0x16, 0x93, 0x93, 0x3c, 0x89, 0x83, 0xd6, 0x42, 0x96, 0x9d, 0xb0, 0x7f, 0x9a, 0x00, + 0x70, 0x19, 0x44, 0x8f, 0x20, 0x65, 0xed, 0x09, 0x47, 0x89, 0x8d, 0x21, 0xf6, 0x54, 0xb0, 0x36, + 0x66, 0xcd, 0xe2, 0xfe, 0x83, 0x81, 0x94, 0x45, 0x86, 0x8e, 0x65, 0x8d, 0x4a, 0x6d, 0xa7, 0x5a, + 0x16, 0x6a, 0xf5, 0xed, 0xb2, 0xf0, 0x09, 0x5f, 0x69, 0x96, 0xf9, 0x2c, 0x83, 0x96, 0xe1, 0xb2, + 0x77, 0x9c, 0x2f, 0x17, 0xb7, 0xcb, 0xbc, 0x50, 0xaf, 0x55, 0x9f, 0x65, 0x13, 0x88, 0x85, 0xc5, + 0xbd, 0x83, 0x6a, 0xb3, 0x12, 0x84, 0x25, 0xd1, 0x15, 0xc8, 0x7b, 0x60, 0x84, 0x06, 0x21, 0x9b, + 0x32, 0xc9, 0x7a, 0xa0, 0xf8, 0x5f, 0x02, 0x4c, 0x23, 0x0e, 0x96, 0xbc, 0x6b, 0xfa, 0xe7, 0x66, + 0x58, 0xd3, 0x8f, 0xa0, 0x35, 0xc8, 0x7b, 0x71, 0x7c, 0x14, 0xc6, 0x2d, 0x94, 0xd2, 0x8c, 0xa3, + 0x01, 0x96, 0x86, 0x7f, 0x02, 0x33, 0xbe, 0x28, 0x62, 0x26, 0x7c, 0xc4, 0xed, 0xb5, 0x85, 0xc3, + 0x53, 0xc3, 0x4a, 0x82, 0x98, 0x8d, 0x24, 0x3f, 0x63, 0x8f, 0x96, 0xcc, 0x41, 0xf3, 0x2c, 0x3b, + 0x72, 0x57, 0x36, 0x08, 0x4e, 0xc2, 0xc2, 0x01, 0x6b, 0xc8, 0x42, 0xe0, 0x7e, 0x3f, 0x09, 0x19, + 0xa2, 0x10, 0x6f, 0x7a, 0xe2, 0x98, 0x8f, 0xa4, 0x3d, 0x8a, 0x49, 0xfa, 0x2c, 0x32, 0xe1, 0xb7, + 0x48, 0xb4, 0x0b, 0xb3, 0x5e, 0x67, 0xff, 0xca, 0x4e, 0x33, 0xd7, 0xfc, 0xe7, 0xec, 0x75, 0x22, + 0xaf, 0x48, 0x72, 0x39, 0x73, 0xe2, 0x1d, 0x43, 0x25, 0x98, 0xa5, 0xe2, 0x45, 0x6a, 0x70, 0xbc, + 0x98, 0x69, 0xf9, 0xbc, 0x61, 0x11, 0x72, 0xb6, 0xab, 0xef, 0x48, 0x82, 0x41, 0x42, 0x01, 0x89, + 0x67, 0xd9, 0x40, 0x88, 0x40, 0x2e, 0xb2, 0x3d, 0x16, 0x16, 0x10, 0x32, 0x91, 0x01, 0xe1, 0x23, + 0x40, 0xc1, 0x8d, 0x8d, 0xe4, 0xd7, 0xfb, 0x90, 0x0b, 0x89, 0x58, 0xa8, 0x00, 0x93, 0xd6, 0xb9, + 0xea, 0xb2, 0x21, 0x91, 0x6c, 0x37, 0xc8, 0xbe, 0x8b, 0x62, 0xe2, 0xf7, 0x34, 0xe9, 0x48, 0xd2, + 0x34, 0xa9, 0x6d, 0x19, 0x70, 0x28, 0xbe, 0x83, 0xc2, 0x7d, 0x97, 0x81, 0x09, 0x67, 0xcb, 0x9b, + 0x30, 0xa1, 0x4b, 0xc7, 0x38, 0x9a, 0xe2, 0xb5, 0xae, 0xd1, 0x73, 0x0b, 0x0d, 0x82, 0x40, 0xee, + 0x05, 0x36, 0xbe, 0x79, 0x2f, 0xf0, 0x81, 0x46, 0xda, 0xfc, 0x5f, 0x30, 0x90, 0xdb, 0x96, 0x3a, + 0x12, 0x9d, 0x74, 0xc5, 0xc5, 0x00, 0x6f, 0x9e, 0x92, 0xf0, 0xe7, 0x29, 0x21, 0xa4, 0x62, 0xf2, + 0x94, 0x73, 0x85, 0xe3, 0x45, 0x98, 0xf7, 0xaf, 0x86, 0x03, 0x10, 0xf7, 0x5f, 0x49, 0xb8, 0x66, + 0xea, 0x82, 0xa6, 0x76, 0x3a, 0x92, 0xb6, 0xdf, 0x3f, 0xec, 0xc8, 0xfa, 0xcb, 0x11, 0x36, 0x77, + 0x19, 0xc6, 0x15, 0xb5, 0xed, 0xb1, 0xb4, 0x8c, 0xf9, 0x58, 0x69, 0xa3, 0x32, 0xcc, 0xd1, 0x59, + 0xe3, 0x29, 0x09, 0x13, 0xd1, 0x39, 0x63, 0xf6, 0x84, 0x8e, 0x71, 0x2c, 0x4c, 0x98, 0xf9, 0xae, + 0xaa, 0x74, 0x4e, 0x2d, 0xf3, 0x9a, 0xe0, 0x9d, 0x67, 0xc4, 0xd3, 0x09, 0xe0, 0xbb, 0x4e, 0x02, + 0x18, 0xbb, 0xa3, 0xb8, 0x5c, 0xf0, 0xb3, 0x80, 0x7b, 0xc8, 0x58, 0xa4, 0xdf, 0x1b, 0x92, 0xf4, + 0x40, 0xb7, 0x71, 0x9e, 0x53, 0xbc, 0x00, 0xf3, 0xfd, 0x07, 0x06, 0x56, 0x22, 0xb7, 0x40, 0x92, + 0x92, 0x36, 0x5c, 0xea, 0x61, 0x80, 0x23, 0x04, 0x6c, 0x65, 0xef, 0x0f, 0x14, 0x02, 0xb9, 0x94, + 0x93, 0x51, 0x9f, 0x18, 0x66, 0x7b, 0xbe, 0x41, 0xb6, 0x08, 0xb9, 0x10, 0xb4, 0x91, 0x36, 0xf3, + 0x73, 0x06, 0x56, 0x5d, 0x56, 0x0e, 0x94, 0xde, 0xc5, 0xa9, 0x6f, 0xd3, 0xd5, 0x2d, 0x1c, 0x1f, + 0x1e, 0x04, 0xf7, 0x1e, 0xbe, 0xe0, 0xeb, 0xb2, 0xe0, 0x75, 0x58, 0x8b, 0x59, 0x9a, 0x98, 0xf3, + 0xcf, 0x52, 0xb0, 0xf6, 0x54, 0xec, 0xc8, 0x6d, 0x27, 0xd5, 0x0c, 0x29, 0x5f, 0xc4, 0x8b, 0xa4, + 0x15, 0xb0, 0x00, 0xec, 0xb5, 0x1e, 0x39, 0x56, 0x3b, 0x88, 0xfe, 0x10, 0xb1, 0xf3, 0x02, 0xef, + 0x94, 0xcf, 0x42, 0xee, 0x94, 0xef, 0x0d, 0xcf, 0x6b, 0xdc, 0x0d, 0xf3, 0x80, 0x76, 0x30, 0x0f, + 0x87, 0xa7, 0x1b, 0xa3, 0x05, 0xe7, 0xb6, 0xe2, 0xaf, 0xf3, 0x5e, 0xf7, 0xb7, 0x29, 0xe0, 0xe2, + 0x76, 0x4f, 0x7c, 0x08, 0x0f, 0x93, 0x2d, 0x55, 0x39, 0x92, 0xb5, 0xae, 0xd4, 0x26, 0xf7, 0x93, + 0xfb, 0xc3, 0x08, 0x8f, 0x38, 0x90, 0x2d, 0x7b, 0x2e, 0xef, 0x92, 0x41, 0x79, 0x18, 0xef, 0x4a, + 0xba, 0x2e, 0x1e, 0xdb, 0x6c, 0xd9, 0x8f, 0xec, 0x8f, 0x93, 0x30, 0xe9, 0x4c, 0x41, 0x4a, 0x40, + 0x83, 0xb1, 0xfb, 0xda, 0x39, 0x0b, 0x03, 0x67, 0x57, 0xe6, 0xc4, 0x19, 0x94, 0xb9, 0xed, 0x53, + 0x66, 0x6c, 0x0e, 0xdb, 0x67, 0x62, 0x3b, 0x46, 0xaf, 0xbf, 0x76, 0x05, 0xe4, 0x7e, 0x15, 0x50, + 0x55, 0xd6, 0xc9, 0x3d, 0xcf, 0x71, 0x4b, 0xe6, 0xb5, 0x4e, 0x7c, 0x25, 0x48, 0x8a, 0xa1, 0xc9, + 0x24, 0xb7, 0x4f, 0xf3, 0xd0, 0x15, 0x5f, 0x95, 0xf1, 0x88, 0x99, 0xff, 0xeb, 0x86, 0xa8, 0x19, + 0xb2, 0x72, 0x2c, 0x18, 0xea, 0xe7, 0x92, 0x53, 0x43, 0xb6, 0x47, 0x9b, 0xe6, 0x20, 0xf7, 0x9f, + 0x09, 0xc8, 0xf9, 0xc8, 0x13, 0x9d, 0x7c, 0x1f, 0xc6, 0x5d, 0xda, 0xbe, 0x9c, 0x3f, 0x04, 0xbb, + 0x80, 0xc5, 0x66, 0xcf, 0x40, 0x57, 0x01, 0x14, 0xe9, 0x95, 0xe1, 0x5b, 0x77, 0xd2, 0x1c, 0xb1, + 0xd6, 0x64, 0x7f, 0x87, 0x71, 0xca, 0x02, 0x86, 0x68, 0xf4, 0xad, 0x2b, 0x28, 0x71, 0xd1, 0x52, + 0x5b, 0x20, 0x31, 0x06, 0xaf, 0x3b, 0xc9, 0x67, 0x1d, 0x48, 0xcd, 0x8a, 0x36, 0x3a, 0xda, 0x71, + 0xca, 0xb3, 0x2d, 0x55, 0x69, 0xcb, 0x86, 0x5b, 0x9e, 0xbd, 0x1c, 0xb8, 0x4d, 0x60, 0x30, 0x4e, + 0xef, 0x2f, 0x9d, 0xf8, 0x47, 0xd9, 0x2f, 0x20, 0x8d, 0x8f, 0x63, 0xc8, 0xca, 0x02, 0xfa, 0x08, + 0x32, 0xba, 0xc5, 0x31, 0x5d, 0x45, 0x09, 0x93, 0x89, 0x77, 0x87, 0x3c, 0x99, 0xc7, 0x7d, 0x13, + 0x58, 0x37, 0x30, 0xed, 0x48, 0xc6, 0xf0, 0xe1, 0x77, 0xd3, 0xdc, 0x03, 0xf7, 0xfd, 0x04, 0x2c, + 0x87, 0x12, 0x18, 0xad, 0x46, 0x82, 0x76, 0xa9, 0x9d, 0xbc, 0x1d, 0x8c, 0xd8, 0x01, 0xe2, 0xa1, + 0x3b, 0x62, 0x7f, 0xf3, 0x7c, 0x87, 0x59, 0x1a, 0xf9, 0x30, 0x03, 0xe7, 0x88, 0x25, 0xf3, 0xe3, + 0x04, 0xa0, 0x1d, 0xc9, 0x70, 0xee, 0xd5, 0x44, 0xa4, 0x11, 0xfe, 0x86, 0x39, 0x83, 0xbf, 0xf9, + 0x96, 0xcf, 0xdf, 0x60, 0x8f, 0x75, 0xd3, 0xf3, 0xc2, 0x85, 0x5a, 0x3a, 0x36, 0x5a, 0x46, 0xdc, + 0x65, 0x71, 0xce, 0x3f, 0xd4, 0x5d, 0xf6, 0xbc, 0x6e, 0xe5, 0xdf, 0x18, 0xc8, 0xf9, 0x98, 0x26, + 0x1a, 0x74, 0x07, 0x90, 0x78, 0x22, 0xca, 0x1d, 0xd1, 0x64, 0xcc, 0xae, 0x15, 0x90, 0xda, 0xc1, + 0x9c, 0x03, 0xb1, 0xa7, 0xa1, 0x27, 0x90, 0xeb, 0x8a, 0xaf, 0xe4, 0x6e, 0xbf, 0x2b, 0x10, 0x39, + 0xeb, 0xf2, 0x77, 0xec, 0x2a, 0xe3, 0x72, 0xa0, 0x34, 0x5f, 0x51, 0x8c, 0x87, 0xf7, 0x71, 0x6d, + 0x7e, 0x8e, 0xcc, 0x23, 0xca, 0x23, 0x7f, 0x47, 0x42, 0xfb, 0x90, 0xeb, 0xca, 0x4a, 0x80, 0x58, + 0x72, 0x20, 0x31, 0x6c, 0xe0, 0x73, 0x64, 0xb2, 0x4b, 0x91, 0xfb, 0x69, 0x02, 0xf2, 0xde, 0x62, + 0xa2, 0x75, 0xb7, 0x8f, 0x2b, 0xff, 0xef, 0x87, 0x1c, 0xf2, 0xdb, 0x61, 0xb5, 0x72, 0x2f, 0xa5, + 0xd8, 0xa3, 0xae, 0xd2, 0xd9, 0xf1, 0x9d, 0x81, 0xe4, 0x62, 0xf2, 0xa1, 0xaf, 0x2f, 0x9b, 0xc1, + 0x66, 0xf6, 0x29, 0x2c, 0x85, 0xb0, 0x4d, 0x74, 0xe7, 0x21, 0x4c, 0x7b, 0xcb, 0x2b, 0xc4, 0x07, + 0xe5, 0xfc, 0x56, 0x86, 0xa7, 0x4c, 0x79, 0x6a, 0x2d, 0x98, 0xf2, 0xf7, 0x12, 0x30, 0xe5, 0xc1, + 0x40, 0xd7, 0x83, 0xb5, 0x1a, 0x86, 0xbc, 0x05, 0xf5, 0x96, 0x69, 0xd0, 0x0b, 0x98, 0xf7, 0xe1, + 0xf9, 0x33, 0xf1, 0x5b, 0x21, 0x8b, 0x7b, 0xff, 0xf7, 0xe5, 0x2a, 0xe8, 0x24, 0x00, 0x40, 0x1b, + 0x30, 0x8e, 0x47, 0xed, 0xe3, 0xa3, 0x5d, 0xaa, 0x0d, 0x66, 0xcb, 0x70, 0x39, 0x82, 0xf0, 0xe8, + 0x62, 0xfe, 0x27, 0x06, 0xf2, 0xde, 0x1a, 0x84, 0x4f, 0x6f, 0x87, 0x95, 0x4c, 0x95, 0x2e, 0xa6, + 0xdc, 0x09, 0x2b, 0xa6, 0x0c, 0xab, 0x79, 0xe7, 0x56, 0x9d, 0x55, 0x58, 0x0a, 0x59, 0x17, 0xab, + 0x0e, 0xc6, 0xf8, 0xed, 0x04, 0x70, 0x7b, 0x6a, 0x5b, 0x3e, 0x3a, 0xf5, 0xa0, 0xec, 0x49, 0xdd, + 0x43, 0x49, 0xd3, 0x5f, 0xca, 0x23, 0xef, 0xff, 0x2a, 0x80, 0x13, 0x4e, 0xed, 0xca, 0xf7, 0xa4, + 0x1d, 0x4f, 0x75, 0xf4, 0x94, 0x36, 0xcc, 0x5f, 0xb1, 0xc5, 0x33, 0x98, 0x87, 0xd7, 0x2a, 0xa8, + 0x43, 0x58, 0x8f, 0xe5, 0xe0, 0x22, 0xac, 0xed, 0x67, 0xbe, 0xda, 0x86, 0x13, 0xeb, 0xcf, 0xa4, + 0x67, 0x0d, 0x5a, 0xcf, 0xee, 0xc7, 0x64, 0x13, 0x5f, 0x99, 0xba, 0x09, 0xde, 0x7a, 0x07, 0xbd, + 0xfc, 0x45, 0x88, 0xf0, 0xbf, 0x19, 0xb8, 0xec, 0x26, 0x7e, 0x16, 0xe0, 0xa2, 0xd3, 0x73, 0xf4, + 0x84, 0xd6, 0xd1, 0xdb, 0xc1, 0x94, 0xd3, 0xb7, 0xf2, 0x6b, 0x15, 0xe9, 0xdf, 0x30, 0x90, 0x0f, + 0xae, 0x4b, 0x64, 0xf9, 0x11, 0x7d, 0x63, 0xb8, 0x1e, 0xcd, 0xea, 0x99, 0xae, 0x0d, 0x1f, 0xda, + 0xe9, 0xfa, 0xb9, 0x4e, 0xed, 0x2f, 0x93, 0xb0, 0x1a, 0x88, 0x60, 0xf6, 0x7b, 0xcd, 0xb8, 0xcc, + 0xe0, 0x5d, 0x58, 0xc4, 0xaf, 0x2e, 0x04, 0xda, 0x28, 0x30, 0xa7, 0x39, 0x0c, 0x7d, 0x1a, 0xe3, + 0x82, 0x92, 0xb4, 0x0b, 0xf2, 0x54, 0xce, 0x52, 0x54, 0xe5, 0x6c, 0x00, 0x8b, 0x71, 0x75, 0xd9, + 0x4f, 0x7d, 0x39, 0x0c, 0xae, 0xc6, 0x7c, 0x63, 0x68, 0xc2, 0x71, 0x97, 0xe1, 0xf3, 0xd4, 0x63, + 0xcf, 0x97, 0xb9, 0xe0, 0xc3, 0xeb, 0xc0, 0x5a, 0x0c, 0xff, 0x44, 0x11, 0x4b, 0x30, 0x8b, 0x8f, + 0x86, 0x7a, 0x77, 0xbe, 0x1c, 0xa2, 0x20, 0xce, 0xe4, 0x99, 0x63, 0xef, 0xa3, 0x73, 0xa5, 0xc8, + 0x85, 0xe0, 0xa2, 0x9b, 0x30, 0xe7, 0x5f, 0xc0, 0xf5, 0x8c, 0x97, 0x7c, 0x64, 0x2a, 0x6d, 0x54, + 0x80, 0x49, 0x1b, 0x4b, 0xa7, 0xdf, 0xdd, 0x38, 0x8b, 0xbb, 0x28, 0x31, 0x5a, 0x96, 0x8c, 0xd6, + 0xb2, 0x55, 0x98, 0xb6, 0x1a, 0x5d, 0x04, 0x43, 0x15, 0xfa, 0xba, 0x44, 0x8a, 0xff, 0x60, 0x8d, + 0x35, 0xd5, 0x03, 0x5d, 0x42, 0x1f, 0xc2, 0x4c, 0xcb, 0x14, 0x9c, 0xac, 0x2a, 0x82, 0x21, 0x77, + 0xa5, 0x7c, 0x3a, 0xa2, 0x77, 0xa6, 0x69, 0x37, 0xbc, 0xf1, 0xd3, 0xf6, 0x04, 0x73, 0xc8, 0x54, + 0x64, 0x33, 0x17, 0x27, 0xaf, 0x12, 0x33, 0xd6, 0x75, 0x60, 0xd2, 0x1c, 0xb1, 0x5e, 0x23, 0x62, + 0x79, 0xfd, 0x3b, 0x03, 0xab, 0x81, 0x08, 0x4f, 0x9b, 0xd6, 0x28, 0xc2, 0x6b, 0xd2, 0x81, 0xe5, + 0x41, 0x64, 0x02, 0x33, 0xbc, 0x79, 0x9c, 0xdf, 0x0d, 0xae, 0xc3, 0x5a, 0xcc, 0xfa, 0xa4, 0xba, + 0xfc, 0x4b, 0x06, 0x6e, 0x44, 0xc5, 0x9f, 0xf3, 0xc8, 0xe4, 0xdb, 0xb4, 0x4c, 0x1e, 0x0d, 0x0a, + 0xb6, 0x5f, 0xa5, 0x68, 0x74, 0xd8, 0x18, 0xcc, 0xc6, 0x45, 0xdb, 0xe9, 0x9f, 0x25, 0x60, 0x85, + 0x8a, 0x31, 0x36, 0xc2, 0x85, 0x07, 0xe4, 0x33, 0xd9, 0x67, 0x83, 0x76, 0xf3, 0xf7, 0x23, 0x42, + 0x23, 0xcd, 0xf6, 0x6b, 0x3d, 0xab, 0x7f, 0x65, 0x60, 0x35, 0x7a, 0x7d, 0x72, 0x48, 0xbb, 0x74, + 0x54, 0x2f, 0x0c, 0x66, 0xfd, 0x4c, 0xd1, 0xfd, 0x89, 0x1d, 0xdd, 0x2f, 0x4c, 0x2d, 0x38, 0x2a, + 0x01, 0x0c, 0x6b, 0x4e, 0xed, 0x78, 0x5f, 0x14, 0x05, 0x70, 0x88, 0x0c, 0x76, 0x42, 0x1b, 0x54, + 0xd7, 0x83, 0x76, 0x47, 0xba, 0x35, 0x23, 0x7b, 0x55, 0x7f, 0x98, 0xf1, 0x56, 0xef, 0x02, 0xd8, + 0xe8, 0x7d, 0x48, 0x6a, 0xbd, 0x16, 0xd9, 0xef, 0x8d, 0x21, 0xe8, 0x17, 0xf8, 0xfd, 0xad, 0xdd, + 0x31, 0xde, 0x9c, 0xc5, 0xfe, 0x55, 0x1a, 0x92, 0xfc, 0xfe, 0x16, 0xfa, 0xc8, 0xd7, 0xb8, 0x79, + 0x7b, 0x48, 0x2a, 0xde, 0xbe, 0xcd, 0x5f, 0xa6, 0xc2, 0x1a, 0x37, 0xf3, 0x30, 0xbf, 0xc5, 0x97, + 0x8b, 0xcd, 0xb2, 0xb0, 0x5d, 0xae, 0x96, 0x9b, 0x65, 0x01, 0x37, 0x96, 0x66, 0x19, 0x74, 0x05, + 0xf2, 0xfb, 0x07, 0xa5, 0x6a, 0xa5, 0xb1, 0x2b, 0x1c, 0xd4, 0xec, 0xff, 0x08, 0x34, 0x81, 0xb2, + 0x30, 0x5d, 0xad, 0x34, 0x9a, 0x64, 0xa0, 0x91, 0x4d, 0x9a, 0x23, 0x3b, 0xe5, 0xa6, 0xb0, 0x55, + 0xdc, 0x2f, 0x6e, 0x55, 0x9a, 0xcf, 0xb2, 0x29, 0xc4, 0xc2, 0xa2, 0x9f, 0x76, 0xa3, 0x56, 0xdc, + 0x6f, 0xec, 0xd6, 0x9b, 0xd9, 0x34, 0x42, 0x30, 0x6b, 0xcd, 0xb7, 0x87, 0x1a, 0xd9, 0x8c, 0x49, + 0x61, 0xab, 0x5a, 0xaf, 0x39, 0x3c, 0x8c, 0xa3, 0x79, 0xc8, 0xda, 0x2b, 0xf3, 0xe5, 0xe2, 0xb6, + 0xd5, 0xf9, 0x33, 0x81, 0xe6, 0x60, 0xa6, 0xfc, 0xe9, 0x7e, 0xb1, 0xb6, 0x6d, 0x23, 0x4e, 0xa2, + 0x55, 0xb8, 0xe2, 0x65, 0x47, 0x20, 0xb3, 0xca, 0xdb, 0x56, 0xf7, 0x4e, 0x23, 0x0b, 0x68, 0x09, + 0xb2, 0xa4, 0x67, 0x76, 0xab, 0x5e, 0xdb, 0xae, 0x34, 0x2b, 0xf5, 0x5a, 0x76, 0x0a, 0xb7, 0xfa, + 0xe4, 0x00, 0x4c, 0xce, 0x09, 0xb1, 0xe9, 0xc1, 0xfd, 0x3f, 0x33, 0x18, 0x65, 0x1d, 0xd8, 0x30, + 0xd9, 0x09, 0x3b, 0x7c, 0xfd, 0x60, 0x3f, 0x3b, 0x8b, 0x91, 0x6e, 0xc0, 0xb5, 0xbd, 0xfa, 0x76, + 0xe5, 0xf1, 0x33, 0x1f, 0x54, 0xd8, 0x2b, 0xef, 0x95, 0xca, 0x7c, 0x63, 0xb7, 0xb2, 0x9f, 0xbd, + 0x84, 0x11, 0x6f, 0xc3, 0x7a, 0x34, 0x35, 0x57, 0x74, 0x59, 0x8c, 0xfd, 0x06, 0x2c, 0x57, 0x6a, + 0xdb, 0x95, 0xa7, 0x95, 0xed, 0x83, 0x62, 0xd5, 0x81, 0x0a, 0x7c, 0xb9, 0xd1, 0xac, 0xf3, 0xe5, + 0xec, 0x1c, 0xc6, 0x5a, 0x82, 0xac, 0xbb, 0x33, 0xc2, 0x17, 0xc2, 0x20, 0x0e, 0x96, 0x68, 0x90, + 0xbb, 0x48, 0x0e, 0xe3, 0x2c, 0x03, 0xf2, 0x48, 0x15, 0x23, 0x35, 0xb2, 0xf3, 0x0e, 0x07, 0x01, + 0xa0, 0xe7, 0x38, 0x17, 0x70, 0x8f, 0x94, 0xdd, 0xfe, 0xf7, 0xf3, 0x04, 0x2c, 0xe0, 0x24, 0x8f, + 0x0e, 0x93, 0x1b, 0x90, 0xf5, 0xfb, 0x5e, 0x27, 0x4a, 0xce, 0x7a, 0xbd, 0x6e, 0xa5, 0xed, 0xe4, + 0xef, 0x09, 0x4f, 0xfe, 0x5e, 0xa1, 0xaf, 0x52, 0x37, 0xfd, 0x29, 0xf1, 0x08, 0x09, 0xf6, 0x5e, + 0xc8, 0x6b, 0xd4, 0x3b, 0xf1, 0xd4, 0xfe, 0x6f, 0x66, 0xd5, 0xdc, 0x63, 0x58, 0xa4, 0xf9, 0x25, + 0x4e, 0xef, 0x76, 0xa0, 0xf7, 0x34, 0x98, 0xb7, 0x3a, 0x18, 0xdc, 0x77, 0x13, 0x30, 0xe1, 0xe4, + 0xc7, 0xfe, 0x5c, 0x91, 0xa1, 0x72, 0x45, 0xba, 0x6b, 0x34, 0x41, 0x77, 0x8d, 0x86, 0x9e, 0x73, + 0x32, 0xf4, 0x9c, 0x03, 0x69, 0x6d, 0x6a, 0xc4, 0xb4, 0x96, 0xce, 0x9c, 0xd3, 0x81, 0xcc, 0x39, + 0x34, 0x37, 0xcb, 0x84, 0xe6, 0x66, 0xdc, 0x5f, 0x33, 0xb0, 0x80, 0x33, 0x43, 0x5a, 0x75, 0x07, + 0x75, 0xca, 0x7a, 0xb5, 0x93, 0x7a, 0xb3, 0x10, 0x4a, 0xf0, 0x75, 0x35, 0x4e, 0xe4, 0x61, 0x91, + 0x5e, 0x8f, 0xe4, 0xb3, 0x3f, 0x49, 0xc0, 0xbc, 0x19, 0xf2, 0x5f, 0x5b, 0x66, 0x35, 0xfc, 0xa9, + 0x53, 0xc2, 0x4c, 0x05, 0x84, 0xb9, 0x4b, 0xf7, 0x22, 0xbc, 0xe5, 0x4d, 0x5a, 0xbe, 0xa2, 0x24, + 0x8b, 0xfb, 0x11, 0x03, 0x0b, 0xd4, 0x7a, 0xc4, 0xb6, 0x3e, 0xa0, 0x93, 0xaa, 0xf5, 0x08, 0xfe, + 0xce, 0x94, 0x49, 0x3d, 0xb0, 0x33, 0xa9, 0xd1, 0x4c, 0xf8, 0x1f, 0x13, 0x70, 0xd5, 0x4d, 0x12, + 0xac, 0x0f, 0x3a, 0xda, 0x23, 0x74, 0x07, 0x9d, 0xef, 0xbb, 0x89, 0x8f, 0x69, 0xe7, 0x7c, 0x2f, + 0x98, 0xb7, 0x84, 0xb0, 0x14, 0xe7, 0xa4, 0x43, 0x9b, 0xea, 0x52, 0xa3, 0x36, 0xd5, 0x9d, 0x4b, + 0x03, 0x7e, 0xc3, 0xdb, 0x2f, 0xe8, 0x67, 0x9f, 0x68, 0xc2, 0x90, 0x5d, 0xba, 0x0f, 0xe1, 0xb2, + 0xf5, 0x26, 0xd5, 0xf9, 0x1e, 0xc9, 0xfe, 0x4a, 0x02, 0xbb, 0xcf, 0x09, 0x7e, 0xc1, 0x04, 0x3b, + 0x1f, 0xe1, 0x90, 0x66, 0xd3, 0x36, 0xf7, 0x8b, 0x14, 0x2c, 0xd6, 0xd4, 0xb6, 0xd4, 0x30, 0xc4, + 0xe3, 0x51, 0xda, 0x30, 0xbf, 0x1d, 0xec, 0x6a, 0x4b, 0xf8, 0x8f, 0x25, 0x9c, 0xea, 0x30, 0xcd, + 0x6c, 0xa8, 0x00, 0x39, 0xdd, 0x10, 0x8f, 0x2d, 0x77, 0x20, 0x6a, 0xc7, 0x92, 0x21, 0xf4, 0x44, + 0xe3, 0x25, 0xb1, 0xf5, 0x39, 0x02, 0x6a, 0x5a, 0x90, 0x7d, 0xd1, 0x78, 0x79, 0x41, 0x07, 0x89, + 0xbe, 0x45, 0x3b, 0x85, 0x5b, 0x03, 0xf6, 0x12, 0x5b, 0x61, 0x0b, 0xef, 0x7c, 0x7c, 0x67, 0x00, + 0xc9, 0xc1, 0x1d, 0x8f, 0xe7, 0xef, 0xf4, 0xfb, 0x9a, 0x9b, 0x26, 0x97, 0xe0, 0x72, 0x60, 0xf3, + 0x24, 0x84, 0x1c, 0x43, 0xde, 0x04, 0x1d, 0x28, 0xfa, 0x88, 0xea, 0x18, 0xa1, 0x31, 0x89, 0x08, + 0x8d, 0xe1, 0x96, 0x61, 0x29, 0x64, 0x21, 0xc2, 0xc5, 0x9f, 0xa7, 0x31, 0x1b, 0xa3, 0xf7, 0xef, + 0xbe, 0x88, 0xb2, 0x8a, 0xfb, 0xde, 0x63, 0x0f, 0x6d, 0x75, 0x7d, 0x1d, 0x76, 0xb1, 0x02, 0x53, + 0x5e, 0x3c, 0x12, 0x06, 0x8d, 0x01, 0x86, 0x93, 0x3e, 0x57, 0x5b, 0x71, 0x86, 0x6a, 0x2b, 0xf6, + 0xbc, 0x62, 0x1c, 0xf7, 0xa7, 0xc1, 0x91, 0xa2, 0x88, 0x31, 0xab, 0xe7, 0x01, 0xb3, 0x9a, 0xf0, + 0xf7, 0x2a, 0x47, 0x12, 0xfd, 0x7f, 0x60, 0x58, 0x44, 0xa9, 0x43, 0x9b, 0x88, 0xb9, 0xe7, 0xc0, + 0x62, 0x8d, 0x1f, 0xbd, 0xad, 0x97, 0x52, 0xa3, 0x04, 0xad, 0x46, 0xdc, 0x55, 0x58, 0x0e, 0xa5, + 0x4d, 0x96, 0xfe, 0x5d, 0x06, 0x33, 0xe6, 0x54, 0xfb, 0x1a, 0x86, 0x68, 0xe8, 0xc3, 0x2e, 0x4d, + 0x80, 0xde, 0xa5, 0xf1, 0x90, 0xa5, 0xc1, 0x23, 0x9a, 0x04, 0xf7, 0x07, 0x0c, 0x96, 0x03, 0xcd, + 0x0b, 0x89, 0xb6, 0x6f, 0x41, 0xba, 0x6f, 0xb5, 0x44, 0xe2, 0xac, 0x8b, 0x7a, 0x63, 0x74, 0x60, + 0x82, 0x78, 0x8c, 0x71, 0x61, 0x4d, 0x66, 0xdc, 0x4f, 0x18, 0xbb, 0xad, 0xc1, 0xa2, 0x8f, 0xae, + 0xc0, 0xa4, 0xd3, 0x45, 0x63, 0xdf, 0x8d, 0x9c, 0x01, 0xf3, 0xf8, 0x0d, 0xd5, 0x10, 0x3b, 0xe4, + 0xdb, 0x1e, 0xfc, 0x60, 0x5e, 0x67, 0xfb, 0xba, 0x84, 0xd3, 0xe1, 0x24, 0x6f, 0xfd, 0x8f, 0x6e, + 0x43, 0xaa, 0xaf, 0xc8, 0x86, 0x65, 0xf6, 0xb3, 0xb4, 0x3d, 0x5b, 0x4b, 0x15, 0x0e, 0x14, 0xd9, + 0xe0, 0x2d, 0x2c, 0xee, 0x26, 0xa4, 0xcc, 0x27, 0x7f, 0x45, 0x67, 0x12, 0xd2, 0xa5, 0x67, 0xcd, + 0x72, 0x23, 0xcb, 0x20, 0x80, 0x4c, 0x05, 0xd7, 0x3f, 0x12, 0x5c, 0xd5, 0xfe, 0x18, 0xd8, 0xd9, + 0x84, 0xe9, 0x02, 0xc4, 0x43, 0x45, 0xd5, 0xba, 0x62, 0xc7, 0xe2, 0x79, 0x82, 0x77, 0x9e, 0xa3, + 0x3b, 0x4d, 0x71, 0x15, 0xee, 0x8a, 0x73, 0x22, 0x61, 0xf5, 0xb7, 0xcf, 0xb0, 0x6e, 0x45, 0x55, + 0xde, 0x8a, 0xa1, 0x95, 0xb7, 0xab, 0xbe, 0x28, 0x3b, 0xa0, 0xe6, 0xf6, 0xf7, 0x09, 0x58, 0x08, + 0xc5, 0x43, 0x0f, 0xbc, 0xd5, 0xb6, 0xb5, 0x58, 0x9a, 0xde, 0x3a, 0xdb, 0x2f, 0x18, 0x5c, 0x67, + 0xdb, 0xf4, 0xd5, 0xd9, 0xae, 0x0f, 0x9c, 0xef, 0xad, 0xb0, 0xfd, 0x88, 0x89, 0xa8, 0xb0, 0x35, + 0x9a, 0xc5, 0x9d, 0xb2, 0x70, 0x50, 0xc3, 0x7f, 0x9d, 0x0a, 0xdb, 0xbc, 0xaf, 0x3a, 0xd3, 0x68, + 0x16, 0x9b, 0x8d, 0x6c, 0x22, 0x58, 0xdd, 0x4a, 0x86, 0xd6, 0xae, 0x52, 0x83, 0xcb, 0x54, 0x69, + 0x8c, 0xb2, 0x08, 0x88, 0xcc, 0xde, 0xab, 0x1f, 0xd4, 0x9a, 0xa4, 0x0c, 0x94, 0x71, 0x4a, 0x33, + 0xf3, 0x80, 0xc8, 0x69, 0x79, 0x7f, 0xdb, 0xe0, 0x87, 0x0c, 0xe4, 0x7c, 0xc3, 0xe4, 0xf0, 0x3c, + 0xdf, 0x0b, 0x30, 0xbe, 0xef, 0x05, 0xee, 0xc2, 0xbc, 0x79, 0x63, 0x24, 0x7d, 0x33, 0x42, 0x4f, + 0xd2, 0xac, 0x3e, 0x41, 0xa2, 0xf3, 0x73, 0x5d, 0xf1, 0x15, 0xe9, 0xa5, 0xdc, 0x97, 0x34, 0x93, + 0xf0, 0x05, 0x74, 0xcb, 0x71, 0x5f, 0x26, 0x71, 0x5e, 0x32, 0xf2, 0xbd, 0x66, 0xa0, 0x8f, 0x0a, + 0x5e, 0x7c, 0x92, 0x23, 0x5c, 0x7c, 0x22, 0x3c, 0x5c, 0x6a, 0xa4, 0x64, 0x78, 0xf4, 0x98, 0x5e, + 0x73, 0xe3, 0x76, 0xc6, 0xdf, 0x57, 0x10, 0x21, 0x24, 0x7f, 0xd8, 0xce, 0x7c, 0x59, 0x62, 0x7e, + 0x70, 0x51, 0xf7, 0xe4, 0x22, 0xce, 0xc7, 0xce, 0x71, 0x3f, 0xba, 0xf7, 0x3f, 0x0c, 0x4c, 0x54, + 0xda, 0x92, 0x62, 0xe0, 0xbd, 0xcd, 0xf8, 0x7e, 0xfe, 0x02, 0x5d, 0x89, 0xf8, 0x55, 0x0c, 0x6b, + 0x63, 0xec, 0xd5, 0xd8, 0xdf, 0xcc, 0xe0, 0xc6, 0xd0, 0x91, 0xe7, 0xa7, 0x3b, 0x7c, 0x0d, 0xa1, + 0x6f, 0x04, 0x66, 0x86, 0xb8, 0x38, 0xf6, 0xcd, 0x01, 0x58, 0xce, 0x3a, 0x0f, 0x21, 0x6d, 0xfd, + 0xd0, 0x01, 0x9a, 0x77, 0x7e, 0x6c, 0xc1, 0xf3, 0x3b, 0x08, 0xec, 0x02, 0x35, 0x6a, 0xcf, 0xbb, + 0xf7, 0x77, 0x73, 0x00, 0xee, 0x35, 0x13, 0x3d, 0x81, 0x69, 0xef, 0x3b, 0x72, 0xb4, 0x1c, 0xf3, + 0xa5, 0x3f, 0x7b, 0x25, 0x1c, 0xe8, 0xf0, 0xf4, 0x04, 0xa6, 0xbd, 0xaf, 0x3a, 0x5d, 0x62, 0x21, + 0x9f, 0xe3, 0xb9, 0xc4, 0x42, 0xbf, 0x9e, 0x1b, 0x43, 0x1d, 0xb8, 0x1c, 0xf1, 0x31, 0x14, 0xba, + 0x3e, 0xdc, 0x27, 0x63, 0xec, 0x8d, 0x21, 0xbf, 0xaa, 0xe2, 0xc6, 0x90, 0x06, 0x4b, 0x91, 0xdf, + 0x00, 0xa1, 0x8d, 0x61, 0xbf, 0x50, 0x62, 0xdf, 0x1a, 0x02, 0xd3, 0x59, 0xb3, 0x0f, 0x6c, 0xf4, + 0x87, 0x07, 0xe8, 0xad, 0xa1, 0xbf, 0x88, 0x61, 0x6f, 0x0e, 0xff, 0x1d, 0x03, 0x37, 0x86, 0x76, + 0x61, 0xca, 0xd3, 0x81, 0x8e, 0xd8, 0xd0, 0xb6, 0x74, 0x4c, 0x78, 0x39, 0xa6, 0x65, 0x1d, 0x53, + 0xf2, 0x34, 0x05, 0xbb, 0x94, 0x82, 0xed, 0xcd, 0x2e, 0xa5, 0x90, 0x2e, 0x62, 0x5a, 0xfc, 0x54, + 0x7c, 0x0f, 0x13, 0x7f, 0x78, 0x82, 0x10, 0x26, 0xfe, 0x88, 0x64, 0x81, 0x1b, 0x43, 0x1f, 0xc3, + 0xac, 0xbf, 0x9a, 0x8d, 0xae, 0xc6, 0x56, 0xe5, 0xd9, 0x6b, 0x51, 0x60, 0x2f, 0x49, 0x7f, 0x41, + 0xd4, 0x25, 0x19, 0x5a, 0x98, 0x75, 0x49, 0x46, 0xd4, 0x51, 0xc7, 0x4c, 0xff, 0xe4, 0x2b, 0xf3, + 0xb9, 0xfe, 0x29, 0xac, 0x3a, 0xe9, 0xfa, 0xa7, 0xd0, 0xda, 0x20, 0x37, 0x86, 0x64, 0x58, 0x0c, + 0xaf, 0x32, 0xa1, 0x37, 0x87, 0x2a, 0xa2, 0xb1, 0xd7, 0x07, 0xa1, 0x39, 0x4b, 0xb5, 0x20, 0x17, + 0xf2, 0x7a, 0x1f, 0x71, 0xb1, 0x5f, 0x0f, 0xe0, 0x45, 0xd6, 0x87, 0xf8, 0xc2, 0x80, 0xb3, 0xb2, + 0x90, 0x17, 0x30, 0x17, 0x68, 0xf2, 0x41, 0xab, 0x83, 0x9a, 0xa6, 0xd9, 0xb5, 0x18, 0x0c, 0x2f, + 0xf9, 0x7e, 0x48, 0x07, 0xb3, 0x73, 0xb8, 0x1b, 0xc3, 0xb6, 0x49, 0x79, 0x14, 0x73, 0x50, 0x43, + 0x12, 0x5e, 0xf6, 0xd7, 0x61, 0x39, 0xa6, 0xa9, 0x13, 0xdd, 0x1c, 0xbe, 0xf7, 0x94, 0xbd, 0x35, + 0x14, 0x2e, 0x25, 0xd2, 0x40, 0xc7, 0x8a, 0x2b, 0xd2, 0xa8, 0x6e, 0x60, 0x57, 0xa4, 0x91, 0x7d, + 0xbb, 0x8e, 0x48, 0x23, 0x1b, 0x62, 0xd0, 0xc6, 0xb0, 0x3d, 0x3b, 0xae, 0x48, 0x07, 0x77, 0xd7, + 0x58, 0xcb, 0x3e, 0x87, 0x2c, 0xdd, 0x5a, 0x88, 0x56, 0x06, 0xf4, 0x47, 0xb2, 0xab, 0x83, 0xba, + 0x12, 0x31, 0x6d, 0x2d, 0xd0, 0xe9, 0xe8, 0xda, 0xeb, 0x8d, 0x21, 0xbb, 0x37, 0xd8, 0x8d, 0x61, + 0x7b, 0x25, 0x9c, 0x35, 0xa3, 0x9a, 0x67, 0xd0, 0x8d, 0x21, 0x5b, 0x6a, 0xd9, 0x8d, 0xc1, 0x88, + 0xde, 0x35, 0xbf, 0xc7, 0x44, 0xb7, 0xc9, 0x3a, 0x47, 0x78, 0x77, 0xc4, 0x16, 0x23, 0xf6, 0xed, + 0xe1, 0x27, 0x78, 0x98, 0xb9, 0xf7, 0x2f, 0x69, 0x48, 0x59, 0x09, 0x7f, 0x13, 0x2e, 0x51, 0x45, + 0x44, 0x74, 0x2d, 0xbe, 0xb4, 0xca, 0xae, 0x44, 0xc2, 0x1d, 0xef, 0xf5, 0x1c, 0xe6, 0x02, 0x65, + 0x41, 0xd7, 0x0a, 0xa2, 0x4a, 0x93, 0xec, 0x5a, 0x0c, 0x06, 0x4d, 0xdb, 0x9f, 0xd5, 0xac, 0x0e, + 0xaa, 0x5b, 0xf9, 0x69, 0x47, 0x65, 0x32, 0x9f, 0xe1, 0xfb, 0x15, 0x9d, 0xc3, 0x70, 0x7e, 0xbe, + 0x42, 0xb3, 0x97, 0xf5, 0x58, 0x1c, 0x67, 0x85, 0x17, 0xce, 0xc5, 0xce, 0x53, 0x36, 0x41, 0x3e, + 0xe6, 0x42, 0xcb, 0x3b, 0x2c, 0x17, 0x87, 0xe2, 0x90, 0xff, 0x04, 0xb2, 0x74, 0x86, 0x8f, 0x56, + 0x06, 0x5c, 0x38, 0xd8, 0xd5, 0x68, 0x04, 0x5a, 0x32, 0x74, 0x7a, 0x41, 0x73, 0x15, 0x96, 0x58, + 0xac, 0xc7, 0xe2, 0x78, 0x13, 0x22, 0xcf, 0xdd, 0xd6, 0x4d, 0x88, 0x82, 0xf7, 0x60, 0x37, 0x21, + 0x0a, 0xb9, 0x0c, 0x73, 0x63, 0x9b, 0x8f, 0x00, 0xc4, 0x4e, 0xef, 0xa5, 0x28, 0x48, 0x4a, 0xbf, + 0x8b, 0xae, 0x04, 0x5e, 0x51, 0x97, 0x95, 0x7e, 0xb7, 0xde, 0x33, 0x64, 0x55, 0xd1, 0xf3, 0x7f, + 0x32, 0x61, 0x15, 0x59, 0x26, 0xad, 0x09, 0x26, 0x60, 0xb3, 0x0a, 0x59, 0x77, 0xb6, 0x60, 0x5d, + 0x9e, 0xd0, 0x5a, 0x28, 0x0d, 0xeb, 0x83, 0x28, 0x8a, 0xd0, 0xac, 0x43, 0xc8, 0x82, 0x6e, 0x7e, + 0x00, 0xd0, 0xd2, 0x65, 0x01, 0xdf, 0xde, 0xd0, 0xd5, 0x00, 0x9d, 0xc7, 0xb2, 0xd4, 0x69, 0xdb, + 0x34, 0xfe, 0x98, 0x30, 0xd3, 0xd2, 0x65, 0x7c, 0xc7, 0xdb, 0xfc, 0x10, 0xa6, 0x30, 0x33, 0x47, + 0x26, 0xde, 0xa0, 0xf9, 0x84, 0x07, 0xbc, 0x7b, 0x0b, 0xb2, 0x59, 0x86, 0x19, 0x4c, 0x80, 0x94, + 0x8a, 0xd0, 0x4a, 0x80, 0xc4, 0x1e, 0x86, 0x50, 0x44, 0xa6, 0xad, 0x69, 0x04, 0xb6, 0x59, 0x82, + 0x69, 0x9b, 0x8c, 0xf1, 0x52, 0x6d, 0xa3, 0x6b, 0x21, 0x54, 0x4c, 0x00, 0x45, 0x64, 0x8a, 0x10, + 0x31, 0x41, 0x2e, 0x2b, 0xf6, 0xaf, 0xff, 0x05, 0x59, 0x21, 0xe5, 0x9c, 0x50, 0x56, 0x08, 0xac, + 0x94, 0x7e, 0x9e, 0x6c, 0xe9, 0xf2, 0x61, 0xc6, 0x9a, 0xf4, 0xee, 0xff, 0x06, 0x00, 0x00, 0xff, + 0xff, 0x6e, 0x7f, 0xff, 0xd3, 0xaa, 0x52, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -5470,6 +6879,15 @@ type ControllerClient interface { ListSnapshots(ctx context.Context, in *ListSnapshotsRequest, opts ...grpc.CallOption) (*ListSnapshotsResponse, error) ControllerExpandVolume(ctx context.Context, in *ControllerExpandVolumeRequest, opts ...grpc.CallOption) (*ControllerExpandVolumeResponse, error) ControllerGetVolume(ctx context.Context, in *ControllerGetVolumeRequest, opts ...grpc.CallOption) (*ControllerGetVolumeResponse, error) + CreateVolumeGroup(ctx context.Context, in *CreateVolumeGroupRequest, opts ...grpc.CallOption) (*CreateVolumeGroupResponse, error) + CreateVolumeGroupSnapshot(ctx context.Context, in *CreateVolumeGroupSnapshotRequest, opts ...grpc.CallOption) (*CreateVolumeGroupSnapshotResponse, error) + ModifyVolumeGroupMembership(ctx context.Context, in *ModifyVolumeGroupMembershipRequest, opts ...grpc.CallOption) (*ModifyVolumeGroupMembershipResponse, error) + DeleteVolumeGroup(ctx context.Context, in *DeleteVolumeGroupRequest, opts ...grpc.CallOption) (*DeleteVolumeGroupResponse, error) + DeleteVolumeGroupSnapshot(ctx context.Context, in *DeleteVolumeGroupSnapshotRequest, opts ...grpc.CallOption) (*DeleteVolumeGroupSnapshotResponse, error) + ListVolumeGroups(ctx context.Context, in *ListVolumeGroupsRequest, opts ...grpc.CallOption) (*ListVolumeGroupsResponse, error) + ListVolumeGroupSnapshots(ctx context.Context, in *ListVolumeGroupSnapshotsRequest, opts ...grpc.CallOption) (*ListVolumeGroupSnapshotsResponse, error) + ControllerGetVolumeGroup(ctx context.Context, in *ControllerGetVolumeGroupRequest, opts ...grpc.CallOption) (*ControllerGetVolumeGroupResponse, error) + ControllerGetVolumeGroupSnapshot(ctx context.Context, in *ControllerGetVolumeGroupSnapshotRequest, opts ...grpc.CallOption) (*ControllerGetVolumeGroupSnapshotResponse, error) } type controllerClient struct { @@ -5597,6 +7015,87 @@ func (c *controllerClient) ControllerGetVolume(ctx context.Context, in *Controll return out, nil } +func (c *controllerClient) CreateVolumeGroup(ctx context.Context, in *CreateVolumeGroupRequest, opts ...grpc.CallOption) (*CreateVolumeGroupResponse, error) { + out := new(CreateVolumeGroupResponse) + err := c.cc.Invoke(ctx, "/csi.v1.Controller/CreateVolumeGroup", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *controllerClient) CreateVolumeGroupSnapshot(ctx context.Context, in *CreateVolumeGroupSnapshotRequest, opts ...grpc.CallOption) (*CreateVolumeGroupSnapshotResponse, error) { + out := new(CreateVolumeGroupSnapshotResponse) + err := c.cc.Invoke(ctx, "/csi.v1.Controller/CreateVolumeGroupSnapshot", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *controllerClient) ModifyVolumeGroupMembership(ctx context.Context, in *ModifyVolumeGroupMembershipRequest, opts ...grpc.CallOption) (*ModifyVolumeGroupMembershipResponse, error) { + out := new(ModifyVolumeGroupMembershipResponse) + err := c.cc.Invoke(ctx, "/csi.v1.Controller/ModifyVolumeGroupMembership", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *controllerClient) DeleteVolumeGroup(ctx context.Context, in *DeleteVolumeGroupRequest, opts ...grpc.CallOption) (*DeleteVolumeGroupResponse, error) { + out := new(DeleteVolumeGroupResponse) + err := c.cc.Invoke(ctx, "/csi.v1.Controller/DeleteVolumeGroup", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *controllerClient) DeleteVolumeGroupSnapshot(ctx context.Context, in *DeleteVolumeGroupSnapshotRequest, opts ...grpc.CallOption) (*DeleteVolumeGroupSnapshotResponse, error) { + out := new(DeleteVolumeGroupSnapshotResponse) + err := c.cc.Invoke(ctx, "/csi.v1.Controller/DeleteVolumeGroupSnapshot", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *controllerClient) ListVolumeGroups(ctx context.Context, in *ListVolumeGroupsRequest, opts ...grpc.CallOption) (*ListVolumeGroupsResponse, error) { + out := new(ListVolumeGroupsResponse) + err := c.cc.Invoke(ctx, "/csi.v1.Controller/ListVolumeGroups", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *controllerClient) ListVolumeGroupSnapshots(ctx context.Context, in *ListVolumeGroupSnapshotsRequest, opts ...grpc.CallOption) (*ListVolumeGroupSnapshotsResponse, error) { + out := new(ListVolumeGroupSnapshotsResponse) + err := c.cc.Invoke(ctx, "/csi.v1.Controller/ListVolumeGroupSnapshots", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *controllerClient) ControllerGetVolumeGroup(ctx context.Context, in *ControllerGetVolumeGroupRequest, opts ...grpc.CallOption) (*ControllerGetVolumeGroupResponse, error) { + out := new(ControllerGetVolumeGroupResponse) + err := c.cc.Invoke(ctx, "/csi.v1.Controller/ControllerGetVolumeGroup", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *controllerClient) ControllerGetVolumeGroupSnapshot(ctx context.Context, in *ControllerGetVolumeGroupSnapshotRequest, opts ...grpc.CallOption) (*ControllerGetVolumeGroupSnapshotResponse, error) { + out := new(ControllerGetVolumeGroupSnapshotResponse) + err := c.cc.Invoke(ctx, "/csi.v1.Controller/ControllerGetVolumeGroupSnapshot", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // ControllerServer is the server API for Controller service. type ControllerServer interface { CreateVolume(context.Context, *CreateVolumeRequest) (*CreateVolumeResponse, error) @@ -5612,6 +7111,15 @@ type ControllerServer interface { ListSnapshots(context.Context, *ListSnapshotsRequest) (*ListSnapshotsResponse, error) ControllerExpandVolume(context.Context, *ControllerExpandVolumeRequest) (*ControllerExpandVolumeResponse, error) ControllerGetVolume(context.Context, *ControllerGetVolumeRequest) (*ControllerGetVolumeResponse, error) + CreateVolumeGroup(context.Context, *CreateVolumeGroupRequest) (*CreateVolumeGroupResponse, error) + CreateVolumeGroupSnapshot(context.Context, *CreateVolumeGroupSnapshotRequest) (*CreateVolumeGroupSnapshotResponse, error) + ModifyVolumeGroupMembership(context.Context, *ModifyVolumeGroupMembershipRequest) (*ModifyVolumeGroupMembershipResponse, error) + DeleteVolumeGroup(context.Context, *DeleteVolumeGroupRequest) (*DeleteVolumeGroupResponse, error) + DeleteVolumeGroupSnapshot(context.Context, *DeleteVolumeGroupSnapshotRequest) (*DeleteVolumeGroupSnapshotResponse, error) + ListVolumeGroups(context.Context, *ListVolumeGroupsRequest) (*ListVolumeGroupsResponse, error) + ListVolumeGroupSnapshots(context.Context, *ListVolumeGroupSnapshotsRequest) (*ListVolumeGroupSnapshotsResponse, error) + ControllerGetVolumeGroup(context.Context, *ControllerGetVolumeGroupRequest) (*ControllerGetVolumeGroupResponse, error) + ControllerGetVolumeGroupSnapshot(context.Context, *ControllerGetVolumeGroupSnapshotRequest) (*ControllerGetVolumeGroupSnapshotResponse, error) } // UnimplementedControllerServer can be embedded to have forward compatible implementations. @@ -5657,6 +7165,33 @@ func (*UnimplementedControllerServer) ControllerExpandVolume(ctx context.Context func (*UnimplementedControllerServer) ControllerGetVolume(ctx context.Context, req *ControllerGetVolumeRequest) (*ControllerGetVolumeResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method ControllerGetVolume not implemented") } +func (*UnimplementedControllerServer) CreateVolumeGroup(ctx context.Context, req *CreateVolumeGroupRequest) (*CreateVolumeGroupResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method CreateVolumeGroup not implemented") +} +func (*UnimplementedControllerServer) CreateVolumeGroupSnapshot(ctx context.Context, req *CreateVolumeGroupSnapshotRequest) (*CreateVolumeGroupSnapshotResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method CreateVolumeGroupSnapshot not implemented") +} +func (*UnimplementedControllerServer) ModifyVolumeGroupMembership(ctx context.Context, req *ModifyVolumeGroupMembershipRequest) (*ModifyVolumeGroupMembershipResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method ModifyVolumeGroupMembership not implemented") +} +func (*UnimplementedControllerServer) DeleteVolumeGroup(ctx context.Context, req *DeleteVolumeGroupRequest) (*DeleteVolumeGroupResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method DeleteVolumeGroup not implemented") +} +func (*UnimplementedControllerServer) DeleteVolumeGroupSnapshot(ctx context.Context, req *DeleteVolumeGroupSnapshotRequest) (*DeleteVolumeGroupSnapshotResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method DeleteVolumeGroupSnapshot not implemented") +} +func (*UnimplementedControllerServer) ListVolumeGroups(ctx context.Context, req *ListVolumeGroupsRequest) (*ListVolumeGroupsResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method ListVolumeGroups not implemented") +} +func (*UnimplementedControllerServer) ListVolumeGroupSnapshots(ctx context.Context, req *ListVolumeGroupSnapshotsRequest) (*ListVolumeGroupSnapshotsResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method ListVolumeGroupSnapshots not implemented") +} +func (*UnimplementedControllerServer) ControllerGetVolumeGroup(ctx context.Context, req *ControllerGetVolumeGroupRequest) (*ControllerGetVolumeGroupResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method ControllerGetVolumeGroup not implemented") +} +func (*UnimplementedControllerServer) ControllerGetVolumeGroupSnapshot(ctx context.Context, req *ControllerGetVolumeGroupSnapshotRequest) (*ControllerGetVolumeGroupSnapshotResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method ControllerGetVolumeGroupSnapshot not implemented") +} func RegisterControllerServer(s *grpc.Server, srv ControllerServer) { s.RegisterService(&_Controller_serviceDesc, srv) @@ -5896,6 +7431,168 @@ func _Controller_ControllerGetVolume_Handler(srv interface{}, ctx context.Contex return interceptor(ctx, in, info, handler) } +func _Controller_CreateVolumeGroup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(CreateVolumeGroupRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ControllerServer).CreateVolumeGroup(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/csi.v1.Controller/CreateVolumeGroup", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ControllerServer).CreateVolumeGroup(ctx, req.(*CreateVolumeGroupRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _Controller_CreateVolumeGroupSnapshot_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(CreateVolumeGroupSnapshotRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ControllerServer).CreateVolumeGroupSnapshot(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/csi.v1.Controller/CreateVolumeGroupSnapshot", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ControllerServer).CreateVolumeGroupSnapshot(ctx, req.(*CreateVolumeGroupSnapshotRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _Controller_ModifyVolumeGroupMembership_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ModifyVolumeGroupMembershipRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ControllerServer).ModifyVolumeGroupMembership(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/csi.v1.Controller/ModifyVolumeGroupMembership", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ControllerServer).ModifyVolumeGroupMembership(ctx, req.(*ModifyVolumeGroupMembershipRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _Controller_DeleteVolumeGroup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(DeleteVolumeGroupRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ControllerServer).DeleteVolumeGroup(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/csi.v1.Controller/DeleteVolumeGroup", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ControllerServer).DeleteVolumeGroup(ctx, req.(*DeleteVolumeGroupRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _Controller_DeleteVolumeGroupSnapshot_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(DeleteVolumeGroupSnapshotRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ControllerServer).DeleteVolumeGroupSnapshot(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/csi.v1.Controller/DeleteVolumeGroupSnapshot", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ControllerServer).DeleteVolumeGroupSnapshot(ctx, req.(*DeleteVolumeGroupSnapshotRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _Controller_ListVolumeGroups_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ListVolumeGroupsRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ControllerServer).ListVolumeGroups(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/csi.v1.Controller/ListVolumeGroups", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ControllerServer).ListVolumeGroups(ctx, req.(*ListVolumeGroupsRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _Controller_ListVolumeGroupSnapshots_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ListVolumeGroupSnapshotsRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ControllerServer).ListVolumeGroupSnapshots(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/csi.v1.Controller/ListVolumeGroupSnapshots", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ControllerServer).ListVolumeGroupSnapshots(ctx, req.(*ListVolumeGroupSnapshotsRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _Controller_ControllerGetVolumeGroup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ControllerGetVolumeGroupRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ControllerServer).ControllerGetVolumeGroup(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/csi.v1.Controller/ControllerGetVolumeGroup", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ControllerServer).ControllerGetVolumeGroup(ctx, req.(*ControllerGetVolumeGroupRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _Controller_ControllerGetVolumeGroupSnapshot_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ControllerGetVolumeGroupSnapshotRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ControllerServer).ControllerGetVolumeGroupSnapshot(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/csi.v1.Controller/ControllerGetVolumeGroupSnapshot", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ControllerServer).ControllerGetVolumeGroupSnapshot(ctx, req.(*ControllerGetVolumeGroupSnapshotRequest)) + } + return interceptor(ctx, in, info, handler) +} + var _Controller_serviceDesc = grpc.ServiceDesc{ ServiceName: "csi.v1.Controller", HandlerType: (*ControllerServer)(nil), @@ -5952,6 +7649,42 @@ var _Controller_serviceDesc = grpc.ServiceDesc{ MethodName: "ControllerGetVolume", Handler: _Controller_ControllerGetVolume_Handler, }, + { + MethodName: "CreateVolumeGroup", + Handler: _Controller_CreateVolumeGroup_Handler, + }, + { + MethodName: "CreateVolumeGroupSnapshot", + Handler: _Controller_CreateVolumeGroupSnapshot_Handler, + }, + { + MethodName: "ModifyVolumeGroupMembership", + Handler: _Controller_ModifyVolumeGroupMembership_Handler, + }, + { + MethodName: "DeleteVolumeGroup", + Handler: _Controller_DeleteVolumeGroup_Handler, + }, + { + MethodName: "DeleteVolumeGroupSnapshot", + Handler: _Controller_DeleteVolumeGroupSnapshot_Handler, + }, + { + MethodName: "ListVolumeGroups", + Handler: _Controller_ListVolumeGroups_Handler, + }, + { + MethodName: "ListVolumeGroupSnapshots", + Handler: _Controller_ListVolumeGroupSnapshots_Handler, + }, + { + MethodName: "ControllerGetVolumeGroup", + Handler: _Controller_ControllerGetVolumeGroup_Handler, + }, + { + MethodName: "ControllerGetVolumeGroupSnapshot", + Handler: _Controller_ControllerGetVolumeGroupSnapshot_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "github.com/container-storage-interface/spec/csi.proto", diff --git a/spec.md b/spec.md index 5f2684af..545fccf2 100644 --- a/spec.md +++ b/spec.md @@ -392,8 +392,8 @@ service Controller { option (alpha_method) = true; } - rpc ModifyVolumeGroup(ModifyVolumeGroupRequest) - returns (ModifyVolumeGroupResponse) { + rpc ModifyVolumeGroupMembership(ModifyVolumeGroupMembershipRequest) + returns (ModifyVolumeGroupMembershipResponse) { option (alpha_method) = true; } @@ -857,9 +857,11 @@ message CreateVolumeRequest { // choose where the provisioned volume is accessible from. TopologyRequirement accessibility_requirements = 7; - // The ID of the volume group where the volume will be added to. + // The IDs of the volume groups where the volume will be added to. + // Note that it is possible for a volume to be placed in one or more + // groups on the storage backend even if this field is not specified. // This field is OPTIONAL. - string volume_group_id = 8; + repeated string volume_group_id = 8 [(alpha_field) = true]; } // Specifies what source the volume will be created from. One of the @@ -1061,9 +1063,11 @@ message Volume { // in the "region" "R1". repeated Topology accessible_topology = 5; - // The ID of the volume group where the volume belongs to. + // The IDs of the volume groups where the volume belongs to. + // Note that it is possible for a volume to be placed in one or more + // groups on the storage backend even if this field is not specified. // This field is OPTIONAL. - string volume_group_id = 6; + repeated string volume_group_id = 6 [(alpha_field) = true]; } message TopologyRequirement { @@ -1721,9 +1725,13 @@ If the plugin is unable to complete the GetCapacity call successfully, it MUST r **ALPHA FEATURE** +A Controller Plugin MUST implement this RPC call if it has `CREATE_DELETE_VOLUME_GROUP` controller capability. + This RPC will be called by the CO to create a new volume group on behalf of a user. This operation MUST be idempotent. If a volume group corresponding to the specified volume group name already exists, is compatible with the specified parameters in the CreateVolumeGroupRequest, the Plugin MUST reply 0 OK with the corresponding CreateVolumeGroupResponse. CSI Plugins MAY create the following types of volume groups: Create a new empty volume group. +Note that N volumes with some backend label Y could be considered to be in "group Y" which might not be a physical group on the storage backend. +In this case, an empty group can still be created by the CO to hold volumes. After the empty group is created, create a new volume, specifying the group name in the volume. At restore time, create a single volume from individual snapshot and then join an existing group. @@ -1778,14 +1786,14 @@ message VolumeGroup { // Underlying volumes in this group. The same definition in CSI // Volume. - // This field is REQUIRED. + // This field is OPTIONAL. // To support the creation of an empty group, this list can be empty. // However, this field is not empty in the following cases: // - Response from ListVolumeGroups or ControllerGetVolumeGroup if the // VolumeGroup is not empty. - // - Response from ModifyVolumeGroup if the VolumeGroup is not - // empty after modification. - repeated .csi.v1.Volume volumes = 3; + // - Response from ModifyVolumeGroupMembership if the + // VolumeGroup is not empty after modification. + repeated Volume volumes = 3; } ``` @@ -1804,8 +1812,12 @@ The CO MUST implement the specified error recovery behavior when it encounters t **ALPHA FEATURE** +A Controller Plugin MUST implement this RPC call if it has `CREATE_DELETE_VOLUME_GROUP` capability. + This RPC will be called by the CO to delete a volume group on behalf of a user. This operation MUST be idempotent. +If a volume group corresponding to the specified `volume_group_id` does not exist or the artifacts associated with the volume group do not exist anymore, the Plugin MUST reply `0 OK`. + A volume cannot be deleted individually when it is part of the group. It has to be removed from the group first. Delete a volume group will delete all volumes in the group. @@ -1818,8 +1830,8 @@ message DeleteVolumeGroupRequest { // This field is REQUIRED. string volume_group_id = 1; - // Secrets required by plugin to complete volume group deletion - // request. + // Secrets required by plugin to complete volume group + // deletion request. // This field is OPTIONAL. Refer to the `Secrets Requirements` // section on how to use this field. map secrets = 2 [(csi_secret) = true]; @@ -1841,20 +1853,22 @@ The CO MUST implement the specified error recovery behavior when it encounters t |-----------|-----------|-------------|-------------------| | Volume group in use | 9 FAILED_PRECONDITION | Indicates that the volume group corresponding to the specified `volume_group_id` could not be deleted because it is in use by another resource or has snapshots and the plugin doesn't treat them as independent entities. | Caller SHOULD ensure that there are no other resources using the volume group and that it has no snapshots, and then retry with exponential back off. | -#### `ModifyVolumeGroup` +#### `ModifyVolumeGroupMembership` **ALPHA FEATURE** -This RPC will be called by the CO to modify an existing volumegroup on behalf of a user. volume_ids provided in the ModifyVolumeGroupRequest will be compared to the ones in the existing VolumeGroup. New volume_ids in the modified VolumeGroup will be added to the VolumeGroup. Existing volume_ids not in the modified VolumeGroup will be removed from the VolumeGroup. If volume_ids is empty, the VolumeGroup will be removed of all existing volumes. This operation MUST be idempotent. +This RPC will be called by the CO to modify an existing volume group on behalf of a user. volume_ids provided in the ModifyVolumeGroupMembershipRequest will be compared to the ones in the existing volume group. New volume_ids in the modified volume group will be added to the volume group. Existing volume_ids not in the modified volume group will be removed from the volume group. If volume_ids is empty, the volume group will be removed of all existing volumes. This operation MUST be idempotent. + +File-based storage systems usually do not support this PRC. Block-based storage systems usually support this PRC. -To support ModifyVolumeGroup, a CO controller MAY be implemented to have a desired state of the world and an actual state of the world. The desired state of the world contains VolumeGroups with the desired volume ids while the actual state of the world contains VolumeGroups with the actual volume ids. The controller will try to reconcile the two by handling adding and removing multiple volumes through a single CSI RPC call each time. +By adding an existing volume to a group, however, there is no way to pass in parameters to influence placement when provisioning a volume. -Note that filesystems based storage systems may not be able to support this RPC. For block based storage systems, this is a very convenient method. However, it may not satisfy the requirement for consistency as the volume is created without the knowledge of which group it is placed in. It is out of the scope of the CSI spec to determine whether a group is consistent or not. It is up to the storage provider to clarify that in the vendor specific documentation. +It is out of the scope of the CSI spec to determine whether a group is consistent or not. It is up to the storage provider to clarify that in the vendor specific documentation. This is true either when creating a new volume with a group id or adding an existing volume to a group. -CSI drivers supporting VOLUME_GROUP_ADD_REMOVE_EXISTING_VOLUME MUST implement ModifyVolumeGroup RPC. +CSI drivers supporting MODIFY_VOLUME_GROUP_MEMBERSHIP MUST implement ModifyVolumeGroupMembership RPC. ```protobuf -message ModifyVolumeGroupRequest { +message ModifyVolumeGroupMembershipRequest { option (alpha_message) = true; // The ID of the volume group to be modified. @@ -1877,7 +1891,7 @@ message ModifyVolumeGroupRequest { map secrets = 3 [(csi_secret) = true]; } -message ModifyVolumeGroupResponse { +message ModifyVolumeGroupMembershipResponse { option (alpha_message) = true; // Contains all attributes of the modified volume group. @@ -1886,15 +1900,15 @@ message ModifyVolumeGroupResponse { } ``` -##### ModifyVolumeGroup Errors +##### ModifyVolumeGroupMembership Errors -If the plugin is unable to complete the ModifyVolumeGroup call successfully, it MUST return a non-ok gRPC code in the gRPC status. +If the plugin is unable to complete the ModifyVolumeGroupMembership call successfully, it MUST return a non-ok gRPC code in the gRPC status. If the conditions defined below are encountered, the plugin MUST return the specified gRPC error code. The CO MUST implement the specified error recovery behavior when it encounters the gRPC error code. | Condition | gRPC Code | Description | Recovery Behavior | |-----------|-----------|-------------|-------------------| -| Volumes incompatible or not supported | 3 INVALID_ARGUMENT | Besides the general cases, this code MUST also be used to indicate when plugin supporting VOLUME_GROUP_ADD_REMOVE_EXISTING_VOLUME cannot modify a volume group because a volume to be added is incompatible with other volumes in the group. More human-readable information SHOULD be provided in the gRPC `status.message` field. | On volumes incompatibility related issues, caller MUST use different volume ids as the input parameter. | +| Volumes incompatible or not supported | 3 INVALID_ARGUMENT | Besides the general cases, this code MUST also be used to indicate when plugin supporting MODIFY_VOLUME_GROUP_MEMBERSHIP cannot modify a volume group because a volume to be added is incompatible with other volumes in the group. More human-readable information SHOULD be provided in the gRPC `status.message` field. | On volumes incompatibility related issues, caller MUST use different volume ids as the input parameter. | | Volume id or volume group does not exist | 5 NOT_FOUND | Indicates that one of the specified volume ids or the volume group itself does not exist. | Caller MUST verify that the `volume_ids` is correct and the volume group exists, and has not been deleted before retrying with exponential back off. | | Unable to add volumes because the maximum is reached | 8 RESOURCE_EXHAUSTED | Indicates that group can not add more volumes because the maximum limit is reached. More human-readable information MAY be provided in the gRPC `status.message` field. | Caller MUST ensure that whatever is preventing volume group from being modified is addressed before retrying with exponential backoff. | @@ -1902,6 +1916,13 @@ The CO MUST implement the specified error recovery behavior when it encounters t **ALPHA FEATURE** +This optional RPC MAY be called by the CO to fetch current information about a volume group. + +A Controller Plugin MUST implement this `ControllerGetVolumeGroup` RPC call if it has `GET_VOLUME_GROUP` capability. + +`ControllerGetVolumeGroupResponse` should contain current information of a volume group if it exists. +If the volume group does not exist any more, `ControllerGetVolumeGroup` should return gRPC error code `NOT_FOUND`. + ```protobuf message ControllerGetVolumeGroupRequest { option (alpha_message) = true; @@ -1940,6 +1961,11 @@ The CO MUST implement the specified error recovery behavior when it encounters t **ALPHA FEATURE** +A Controller Plugin MUST implement this RPC call if it has `LIST_VOLUME_GROUPS` capability. +The Plugin SHALL return the information about all the volume groups that it knows about. +If volume groups are created and/or deleted while the CO is concurrently paging through `ListVolumeGroups` results then it is possible that the CO MAY either witness duplicate volume groups in the list, not witness existing volume groups, or both. +The CO SHALL NOT expect a consistent "view" of all volume groups when paging through the volume group list via multiple calls to `ListVolumeGroups`. + ```protobuf message ListVolumeGroupsRequest { option (alpha_message) = true; @@ -2000,7 +2026,10 @@ The CO MUST implement the specified error recovery behavior when it encounters t **ALPHA FEATURE** -The purpose of this call is to request the creation of a multi-volume snapshot. Group snapshots can be created from existing volume group. Note that calls to this function must be idempotent - the function may be called multiple times for the same name - the group snapshot must only be created once. +A Controller Plugin MUST implement this RPC call if it has `CREATE_DELETE_VOLUME_GROUP_SNAPSHOT` controller capability. +This RPC will be called by the CO to create a new volume group snapshot from a source volume group snapshot on behalf of a user. + +The purpose of this call is to request the creation of a multi-volume snapshot. Group snapshots can be created from existing volume group. Note that calls to this function MUST be idempotent - the function may be called multiple times for the same name - the group snapshot must only be created once. In VolumeGroupSnapshot message, snapshots is an optional field while group_snapshot_id is a required field. It is fine to only specify group_snapshot_id but not snapshots in VolumeGroupSnapshot message at restore time. However, the Plugin MUST return a list of volumes that are restored in CreateVolumeGroupResponse. @@ -2023,14 +2052,17 @@ message CreateVolumeGroupSnapshotRequest { // take a group snapshot repeated string volume_ids = 3; - // secrets required for snapshot creation (pulled from - // VolumeSnapshotClass) - // This field is OPTIONAL. + // Secrets required by plugin to complete volume group snapshot + // creation request. + // This field is OPTIONAL. Refer to the `Secrets Requirements` + // section on how to use this field. map secrets = 4 [(.csi.v1.csi_secret) = true]; - // params passed from VolumeSnapshotClass - // This field is OPTIONAL. + // Plugin specific parameters passed in as opaque key-value pairs. + // This field is OPTIONAL. The Plugin is responsible for parsing and + // validating these parameters. COs will treat these as opaque. map parameters = 5; + } message CreateVolumeGroupSnapshotResponse { @@ -2051,7 +2083,7 @@ message VolumeGroupSnapshot { // A list of snapshots created. Snapshot is the same // definition as Snapshot definition used in CSI. // This field is OPTIONAL. - repeated .csi.v1.Snapshot snapshots = 2; + repeated Snapshot snapshots = 2; // Identity information for the source volume group. Currently, only // support the case that source is volume group. This field is @@ -2062,8 +2094,7 @@ message VolumeGroupSnapshot { // This field is REQUIRED. bool ready_to_use = 4; - // Timestamp when the point-in-time consistency group snapshot is - // taken. + // Timestamp when the volume group snapshot is taken. // This field is REQUIRED. .google.protobuf.Timestamp creation_time = 5; @@ -2090,6 +2121,12 @@ The CO MUST implement the specified error recovery behavior when it encounters t **ALPHA FEATURE** +A Controller Plugin MUST implement this RPC call if it has `CREATE_DELETE_VOLUME_GROUP_SNAPSHOT` capability. +This RPC will be called by the CO to delete a volume group snapshot. + +This operation MUST be idempotent. +If a group snapshot corresponding to the specified `group_snapshot_id` does not exist or the artifacts associated with the group snapshot do not exist anymore, the Plugin MUST reply `0 OK`. + ```protobuf message DeleteVolumeGroupSnapshotRequest { option (alpha_message) = true; @@ -2124,6 +2161,13 @@ The CO MUST implement the specified error recovery behavior when it encounters t **ALPHA FEATURE** +This optional RPC MAY be called by the CO to fetch current information about a volume group snapshot. + +A Controller Plugin MUST implement this `ControllerGetVolumeGroupSnapshot` RPC call if it has `GET_VOLUME_GROUP_SNAPSHOT` capability. + +`ControllerGetVolumeGroupSnapshotResponse` should contain current information of a volume group snapshot if it exists. +If the volume group snapshot does not exist any more, `ControllerGetVolumeGroupSnapshot` should return gRPC error code `NOT_FOUND`. + ```protobuf message ControllerGetVolumeGroupSnapshotRequest { option (alpha_message) = true; @@ -2162,6 +2206,11 @@ The CO MUST implement the specified error recovery behavior when it encounters t **ALPHA FEATURE** +A Controller Plugin MUST implement this RPC call if it has `LIST_VOLUME_GROUP_SNAPSHOTS` capability. +The Plugin SHALL return the information about all the volume group snapshots that it knows about. +If volume group snapshots are created and/or deleted while the CO is concurrently paging through `ListVolumeGroupSnapshots` results then it is possible that the CO MAY either witness duplicate volume group snapshots in the list, not witness existing volume group snapshots, or both. +The CO SHALL NOT expect a consistent "view" of all volume group snapshots when paging through the volume group snapshot list via multiple calls to `ListVolumeGroupSnapshots`. + ```protobuf message ListVolumeGroupSnapshotsRequest { option (alpha_message) = true; @@ -2310,30 +2359,35 @@ message ControllerServiceCapability { // Indicates that the controller plugin supports adding an // existing volume to a volume group and removing a volume from // a volume group without deleting it. - VOLUME_GROUP_ADD_REMOVE_EXISTING_VOLUME = 15 + MODIFY_VOLUME_GROUP_MEMBERSHIP = 15 + [(alpha_enum_value) = true]; + + // Indicates that the controller plugin supports creating and + // deleting a volume group snapshot. + CREATE_DELETE_VOLUME_GROUP_SNAPSHOT = 16 [(alpha_enum_value) = true]; // Indicates whether the controller plugin supports creating a // volume from an individual volume snapshot if the volume // snapshot is part of a VolumeGroupSnapshot. // Use cases: selective restore, advanced recovery, etc. - INDIVIDUAL_SNAPSHOT_RESTORE = 16 [(alpha_enum_value) = true]; + INDIVIDUAL_SNAPSHOT_RESTORE = 17 [(alpha_enum_value) = true]; // Indicates that the controller plugin supports getting details // of a volume group. - GET_VOLUME_GROUP = 17 [(alpha_enum_value) = true]; + GET_VOLUME_GROUP = 18 [(alpha_enum_value) = true]; // Indicates that the controller plugin supports getting details // of a volume group snapshot. - GET_VOLUME_GROUP_SNAPSHOT = 18 [(alpha_enum_value) = true]; + GET_VOLUME_GROUP_SNAPSHOT = 19 [(alpha_enum_value) = true]; // Indicates that the controller plugin supports getting details // of a list of volume groups. - LIST_VOLUME_GROUPS = 19 [(alpha_enum_value) = true]; + LIST_VOLUME_GROUPS = 20 [(alpha_enum_value) = true]; // Indicates that the controller plugin supports getting details // of a list of volume group snapshots. - LIST_VOLUME_GROUP_SNAPSHOTS = 20 [(alpha_enum_value) = true]; + LIST_VOLUME_GROUP_SNAPSHOTS = 21 [(alpha_enum_value) = true]; } Type type = 1;