mirror of
https://github.com/octoleo/restic.git
synced 2024-11-06 13:27:58 +00:00
61cb1cc6f8
This includes github.com/kurin/blazer 0.2.0, which resolves #1291
332 lines
12 KiB
Go
Executable File
332 lines
12 KiB
Go
Executable File
package redis
|
|
|
|
// Copyright (c) Microsoft and contributors. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
//
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
// Code generated by Microsoft (R) AutoRest Code Generator.
|
|
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
|
|
import (
|
|
"github.com/Azure/go-autorest/autorest"
|
|
"github.com/Azure/go-autorest/autorest/to"
|
|
"net/http"
|
|
)
|
|
|
|
// DayOfWeek enumerates the values for day of week.
|
|
type DayOfWeek string
|
|
|
|
const (
|
|
// Everyday specifies the everyday state for day of week.
|
|
Everyday DayOfWeek = "Everyday"
|
|
// Friday specifies the friday state for day of week.
|
|
Friday DayOfWeek = "Friday"
|
|
// Monday specifies the monday state for day of week.
|
|
Monday DayOfWeek = "Monday"
|
|
// Saturday specifies the saturday state for day of week.
|
|
Saturday DayOfWeek = "Saturday"
|
|
// Sunday specifies the sunday state for day of week.
|
|
Sunday DayOfWeek = "Sunday"
|
|
// Thursday specifies the thursday state for day of week.
|
|
Thursday DayOfWeek = "Thursday"
|
|
// Tuesday specifies the tuesday state for day of week.
|
|
Tuesday DayOfWeek = "Tuesday"
|
|
// Wednesday specifies the wednesday state for day of week.
|
|
Wednesday DayOfWeek = "Wednesday"
|
|
// Weekend specifies the weekend state for day of week.
|
|
Weekend DayOfWeek = "Weekend"
|
|
)
|
|
|
|
// KeyType enumerates the values for key type.
|
|
type KeyType string
|
|
|
|
const (
|
|
// Primary specifies the primary state for key type.
|
|
Primary KeyType = "Primary"
|
|
// Secondary specifies the secondary state for key type.
|
|
Secondary KeyType = "Secondary"
|
|
)
|
|
|
|
// RebootType enumerates the values for reboot type.
|
|
type RebootType string
|
|
|
|
const (
|
|
// AllNodes specifies the all nodes state for reboot type.
|
|
AllNodes RebootType = "AllNodes"
|
|
// PrimaryNode specifies the primary node state for reboot type.
|
|
PrimaryNode RebootType = "PrimaryNode"
|
|
// SecondaryNode specifies the secondary node state for reboot type.
|
|
SecondaryNode RebootType = "SecondaryNode"
|
|
)
|
|
|
|
// SkuFamily enumerates the values for sku family.
|
|
type SkuFamily string
|
|
|
|
const (
|
|
// C specifies the c state for sku family.
|
|
C SkuFamily = "C"
|
|
// P specifies the p state for sku family.
|
|
P SkuFamily = "P"
|
|
)
|
|
|
|
// SkuName enumerates the values for sku name.
|
|
type SkuName string
|
|
|
|
const (
|
|
// Basic specifies the basic state for sku name.
|
|
Basic SkuName = "Basic"
|
|
// Premium specifies the premium state for sku name.
|
|
Premium SkuName = "Premium"
|
|
// Standard specifies the standard state for sku name.
|
|
Standard SkuName = "Standard"
|
|
)
|
|
|
|
// AccessKeys is redis cache access keys.
|
|
type AccessKeys struct {
|
|
autorest.Response `json:"-"`
|
|
PrimaryKey *string `json:"primaryKey,omitempty"`
|
|
SecondaryKey *string `json:"secondaryKey,omitempty"`
|
|
}
|
|
|
|
// CreateParameters is parameters supplied to the Create Redis operation.
|
|
type CreateParameters struct {
|
|
ID *string `json:"id,omitempty"`
|
|
Name *string `json:"name,omitempty"`
|
|
Type *string `json:"type,omitempty"`
|
|
Location *string `json:"location,omitempty"`
|
|
Tags *map[string]*string `json:"tags,omitempty"`
|
|
*CreateProperties `json:"properties,omitempty"`
|
|
}
|
|
|
|
// CreateProperties is properties supplied to Create Redis operation.
|
|
type CreateProperties struct {
|
|
RedisConfiguration *map[string]*string `json:"redisConfiguration,omitempty"`
|
|
EnableNonSslPort *bool `json:"enableNonSslPort,omitempty"`
|
|
TenantSettings *map[string]*string `json:"tenantSettings,omitempty"`
|
|
ShardCount *int32 `json:"shardCount,omitempty"`
|
|
SubnetID *string `json:"subnetId,omitempty"`
|
|
StaticIP *string `json:"staticIP,omitempty"`
|
|
Sku *Sku `json:"sku,omitempty"`
|
|
}
|
|
|
|
// ExportRDBParameters is parameters for Redis export operation.
|
|
type ExportRDBParameters struct {
|
|
Format *string `json:"format,omitempty"`
|
|
Prefix *string `json:"prefix,omitempty"`
|
|
Container *string `json:"container,omitempty"`
|
|
}
|
|
|
|
// FirewallRule is a firewall rule on a redis cache has a name, and describes a contiguous range of IP addresses
|
|
// permitted to connect
|
|
type FirewallRule struct {
|
|
autorest.Response `json:"-"`
|
|
ID *string `json:"id,omitempty"`
|
|
Name *string `json:"name,omitempty"`
|
|
Type *string `json:"type,omitempty"`
|
|
*FirewallRuleProperties `json:"properties,omitempty"`
|
|
}
|
|
|
|
// FirewallRuleListResult is the response of list firewall rules Redis operation.
|
|
type FirewallRuleListResult struct {
|
|
autorest.Response `json:"-"`
|
|
Value *[]FirewallRule `json:"value,omitempty"`
|
|
NextLink *string `json:"nextLink,omitempty"`
|
|
}
|
|
|
|
// FirewallRuleListResultPreparer prepares a request to retrieve the next set of results. It returns
|
|
// nil if no more results exist.
|
|
func (client FirewallRuleListResult) FirewallRuleListResultPreparer() (*http.Request, error) {
|
|
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
|
|
return nil, nil
|
|
}
|
|
return autorest.Prepare(&http.Request{},
|
|
autorest.AsJSON(),
|
|
autorest.AsGet(),
|
|
autorest.WithBaseURL(to.String(client.NextLink)))
|
|
}
|
|
|
|
// FirewallRuleProperties is specifies a range of IP addresses permitted to connect to the cache
|
|
type FirewallRuleProperties struct {
|
|
StartIP *string `json:"startIP,omitempty"`
|
|
EndIP *string `json:"endIP,omitempty"`
|
|
}
|
|
|
|
// ForceRebootResponse is response to force reboot for Redis cache.
|
|
type ForceRebootResponse struct {
|
|
autorest.Response `json:"-"`
|
|
Message *string `json:"Message,omitempty"`
|
|
}
|
|
|
|
// ImportRDBParameters is parameters for Redis import operation.
|
|
type ImportRDBParameters struct {
|
|
Format *string `json:"format,omitempty"`
|
|
Files *[]string `json:"files,omitempty"`
|
|
}
|
|
|
|
// ListResult is the response of list Redis operation.
|
|
type ListResult struct {
|
|
autorest.Response `json:"-"`
|
|
Value *[]ResourceType `json:"value,omitempty"`
|
|
NextLink *string `json:"nextLink,omitempty"`
|
|
}
|
|
|
|
// ListResultPreparer prepares a request to retrieve the next set of results. It returns
|
|
// nil if no more results exist.
|
|
func (client ListResult) ListResultPreparer() (*http.Request, error) {
|
|
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
|
|
return nil, nil
|
|
}
|
|
return autorest.Prepare(&http.Request{},
|
|
autorest.AsJSON(),
|
|
autorest.AsGet(),
|
|
autorest.WithBaseURL(to.String(client.NextLink)))
|
|
}
|
|
|
|
// Operation is REST API operation
|
|
type Operation struct {
|
|
Name *string `json:"name,omitempty"`
|
|
Display *OperationDisplay `json:"display,omitempty"`
|
|
}
|
|
|
|
// OperationDisplay is the object that describes the operation.
|
|
type OperationDisplay struct {
|
|
Provider *string `json:"provider,omitempty"`
|
|
Operation *string `json:"operation,omitempty"`
|
|
Resource *string `json:"resource,omitempty"`
|
|
Description *string `json:"description,omitempty"`
|
|
}
|
|
|
|
// OperationListResult is result of the request to list REST API operations. It contains a list of operations and a URL
|
|
// nextLink to get the next set of results.
|
|
type OperationListResult struct {
|
|
autorest.Response `json:"-"`
|
|
Value *[]Operation `json:"value,omitempty"`
|
|
NextLink *string `json:"nextLink,omitempty"`
|
|
}
|
|
|
|
// OperationListResultPreparer prepares a request to retrieve the next set of results. It returns
|
|
// nil if no more results exist.
|
|
func (client OperationListResult) OperationListResultPreparer() (*http.Request, error) {
|
|
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
|
|
return nil, nil
|
|
}
|
|
return autorest.Prepare(&http.Request{},
|
|
autorest.AsJSON(),
|
|
autorest.AsGet(),
|
|
autorest.WithBaseURL(to.String(client.NextLink)))
|
|
}
|
|
|
|
// PatchSchedule is response to put/get patch schedules for Redis cache.
|
|
type PatchSchedule struct {
|
|
autorest.Response `json:"-"`
|
|
ID *string `json:"id,omitempty"`
|
|
Name *string `json:"name,omitempty"`
|
|
Type *string `json:"type,omitempty"`
|
|
Location *string `json:"location,omitempty"`
|
|
*ScheduleEntries `json:"properties,omitempty"`
|
|
}
|
|
|
|
// Properties is properties supplied to Create or Update Redis operation.
|
|
type Properties struct {
|
|
RedisConfiguration *map[string]*string `json:"redisConfiguration,omitempty"`
|
|
EnableNonSslPort *bool `json:"enableNonSslPort,omitempty"`
|
|
TenantSettings *map[string]*string `json:"tenantSettings,omitempty"`
|
|
ShardCount *int32 `json:"shardCount,omitempty"`
|
|
SubnetID *string `json:"subnetId,omitempty"`
|
|
StaticIP *string `json:"staticIP,omitempty"`
|
|
}
|
|
|
|
// RebootParameters is specifies which Redis node(s) to reboot.
|
|
type RebootParameters struct {
|
|
RebootType RebootType `json:"rebootType,omitempty"`
|
|
ShardID *int32 `json:"shardId,omitempty"`
|
|
}
|
|
|
|
// RegenerateKeyParameters is specifies which Redis access keys to reset.
|
|
type RegenerateKeyParameters struct {
|
|
KeyType KeyType `json:"keyType,omitempty"`
|
|
}
|
|
|
|
// Resource is the Resource definition.
|
|
type Resource struct {
|
|
ID *string `json:"id,omitempty"`
|
|
Name *string `json:"name,omitempty"`
|
|
Type *string `json:"type,omitempty"`
|
|
Location *string `json:"location,omitempty"`
|
|
Tags *map[string]*string `json:"tags,omitempty"`
|
|
}
|
|
|
|
// ResourceProperties is parameters describing a Redis instance.
|
|
type ResourceProperties struct {
|
|
RedisConfiguration *map[string]*string `json:"redisConfiguration,omitempty"`
|
|
EnableNonSslPort *bool `json:"enableNonSslPort,omitempty"`
|
|
TenantSettings *map[string]*string `json:"tenantSettings,omitempty"`
|
|
ShardCount *int32 `json:"shardCount,omitempty"`
|
|
SubnetID *string `json:"subnetId,omitempty"`
|
|
StaticIP *string `json:"staticIP,omitempty"`
|
|
Sku *Sku `json:"sku,omitempty"`
|
|
RedisVersion *string `json:"redisVersion,omitempty"`
|
|
ProvisioningState *string `json:"provisioningState,omitempty"`
|
|
HostName *string `json:"hostName,omitempty"`
|
|
Port *int32 `json:"port,omitempty"`
|
|
SslPort *int32 `json:"sslPort,omitempty"`
|
|
AccessKeys *AccessKeys `json:"accessKeys,omitempty"`
|
|
}
|
|
|
|
// ResourceType is a single Redis item in List or Get Operation.
|
|
type ResourceType struct {
|
|
autorest.Response `json:"-"`
|
|
ID *string `json:"id,omitempty"`
|
|
Name *string `json:"name,omitempty"`
|
|
Type *string `json:"type,omitempty"`
|
|
Location *string `json:"location,omitempty"`
|
|
Tags *map[string]*string `json:"tags,omitempty"`
|
|
*ResourceProperties `json:"properties,omitempty"`
|
|
}
|
|
|
|
// ScheduleEntries is list of patch schedules for a Redis cache.
|
|
type ScheduleEntries struct {
|
|
ScheduleEntries *[]ScheduleEntry `json:"scheduleEntries,omitempty"`
|
|
}
|
|
|
|
// ScheduleEntry is patch schedule entry for a Premium Redis Cache.
|
|
type ScheduleEntry struct {
|
|
DayOfWeek DayOfWeek `json:"dayOfWeek,omitempty"`
|
|
StartHourUtc *int32 `json:"startHourUtc,omitempty"`
|
|
MaintenanceWindow *string `json:"maintenanceWindow,omitempty"`
|
|
}
|
|
|
|
// Sku is SKU parameters supplied to the create Redis operation.
|
|
type Sku struct {
|
|
Name SkuName `json:"name,omitempty"`
|
|
Family SkuFamily `json:"family,omitempty"`
|
|
Capacity *int32 `json:"capacity,omitempty"`
|
|
}
|
|
|
|
// UpdateParameters is parameters supplied to the Update Redis operation.
|
|
type UpdateParameters struct {
|
|
*UpdateProperties `json:"properties,omitempty"`
|
|
}
|
|
|
|
// UpdateProperties is properties supplied to Update Redis operation.
|
|
type UpdateProperties struct {
|
|
RedisConfiguration *map[string]*string `json:"redisConfiguration,omitempty"`
|
|
EnableNonSslPort *bool `json:"enableNonSslPort,omitempty"`
|
|
TenantSettings *map[string]*string `json:"tenantSettings,omitempty"`
|
|
ShardCount *int32 `json:"shardCount,omitempty"`
|
|
SubnetID *string `json:"subnetId,omitempty"`
|
|
StaticIP *string `json:"staticIP,omitempty"`
|
|
Sku *Sku `json:"sku,omitempty"`
|
|
Tags *map[string]*string `json:"tags,omitempty"`
|
|
}
|