Skip to content

Commit

Permalink
Merge pull request #18 from quobyte/quobyte_3_policy_rules
Browse files Browse the repository at this point in the history
Add labels volume create request
  • Loading branch information
venkatsc authored Feb 18, 2020
2 parents f9140c7 + d6bcd7d commit a95a89e
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 20 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ func main() {
RootUserID: "root",
RootGroupID: "root",
ConfigurationName: "BASE",
Labels: []quobyte_api.Label{
{Name: "label1", Value: "value1"},
{Name: "label2", Value: "value2"},
},
}

volumeUUID, err := client.CreateVolume(req)
Expand Down
46 changes: 26 additions & 20 deletions types.go
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@
package quobyte

type retryPolicy struct {
RetryPolicy string `json:"retry,omitempty"`
RetryPolicy string `json:"retry,omitempty"`
}

// CreateVolumeRequest represents a CreateVolumeRequest
type CreateVolumeRequest struct {
Name string `json:"name,omitempty"`
RootUserID string `json:"root_user_id,omitempty"`
RootGroupID string `json:"root_group_id,omitempty"`
ReplicaDeviceIDS []uint64 `json:"replica_device_ids,string,omitempty"`
ConfigurationName string `json:"configuration_name,omitempty"`
AccessMode uint32 `json:"access_mode,uint32,omitempty"`
TenantID string `json:"tenant_id,omitempty"`
retryPolicy
Name string `json:"name,omitempty"`
RootUserID string `json:"root_user_id,omitempty"`
RootGroupID string `json:"root_group_id,omitempty"`
ReplicaDeviceIDS []uint64 `json:"replica_device_ids,string,omitempty"`
ConfigurationName string `json:"configuration_name,omitempty"`
Labels []Label `json:"label,omitempty"`
AccessMode uint32 `json:"access_mode,uint32,omitempty"`
TenantID string `json:"tenant_id,omitempty"`
retryPolicy
}

type Label struct {
Name string `json:"name,string,omitempty"`
Value string `json:"value,string,omitempty"`
}

type resolveVolumeNameRequest struct {
VolumeName string `json:"volume_name,omitempty"`
TenantDomain string `json:"tenant_domain,omitempty"`
retryPolicy
VolumeName string `json:"volume_name,omitempty"`
TenantDomain string `json:"tenant_domain,omitempty"`
retryPolicy
}

type resolveTenantNameRequest struct {
Expand All @@ -35,8 +41,8 @@ type volumeUUID struct {
}

type getClientListRequest struct {
TenantDomain string `json:"tenant_domain,omitempty"`
retryPolicy
TenantDomain string `json:"tenant_domain,omitempty"`
retryPolicy
}

type GetClientListResponse struct {
Expand Down Expand Up @@ -67,13 +73,13 @@ type quota struct {
}

type setQuotaRequest struct {
Quotas []*quota `json:"quotas,omitempty"`
retryPolicy
Quotas []*quota `json:"quotas,omitempty"`
retryPolicy
}

type getTenantRequest struct {
TenantIDs []string `json:"tenant_id,omitempty"`
retryPolicy
TenantIDs []string `json:"tenant_id,omitempty"`
retryPolicy
}

type GetTenantResponse struct {
Expand All @@ -94,8 +100,8 @@ type TenantDomainConfigurationVolumeAccess struct {
}

type setTenantRequest struct {
Tenants *TenantDomainConfiguration `json:"tenant,omitempty"`
retryPolicy
Tenants *TenantDomainConfiguration `json:"tenant,omitempty"`
retryPolicy
}

type setTenantResponse struct {
Expand Down

0 comments on commit a95a89e

Please sign in to comment.