services/rds/describe_backup_policy.go (106 lines of code) (raw):
package rds
//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 Alibaba Cloud SDK Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
import (
"github.com/aliyun/alibaba-cloud-sdk-go/sdk/requests"
"github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses"
)
// DescribeBackupPolicy invokes the rds.DescribeBackupPolicy API synchronously
func (client *Client) DescribeBackupPolicy(request *DescribeBackupPolicyRequest) (response *DescribeBackupPolicyResponse, err error) {
response = CreateDescribeBackupPolicyResponse()
err = client.DoAction(request, response)
return
}
// DescribeBackupPolicyWithChan invokes the rds.DescribeBackupPolicy API asynchronously
func (client *Client) DescribeBackupPolicyWithChan(request *DescribeBackupPolicyRequest) (<-chan *DescribeBackupPolicyResponse, <-chan error) {
responseChan := make(chan *DescribeBackupPolicyResponse, 1)
errChan := make(chan error, 1)
err := client.AddAsyncTask(func() {
defer close(responseChan)
defer close(errChan)
response, err := client.DescribeBackupPolicy(request)
if err != nil {
errChan <- err
} else {
responseChan <- response
}
})
if err != nil {
errChan <- err
close(responseChan)
close(errChan)
}
return responseChan, errChan
}
// DescribeBackupPolicyWithCallback invokes the rds.DescribeBackupPolicy API asynchronously
func (client *Client) DescribeBackupPolicyWithCallback(request *DescribeBackupPolicyRequest, callback func(response *DescribeBackupPolicyResponse, err error)) <-chan int {
result := make(chan int, 1)
err := client.AddAsyncTask(func() {
var response *DescribeBackupPolicyResponse
var err error
defer close(result)
response, err = client.DescribeBackupPolicy(request)
callback(response, err)
result <- 1
})
if err != nil {
defer close(result)
callback(nil, err)
result <- 0
}
return result
}
// DescribeBackupPolicyRequest is the request struct for api DescribeBackupPolicy
type DescribeBackupPolicyRequest struct {
*requests.RpcRequest
ResourceOwnerId requests.Integer `position:"Query" name:"ResourceOwnerId"`
DBInstanceId string `position:"Query" name:"DBInstanceId"`
BackupPolicyMode string `position:"Query" name:"BackupPolicyMode"`
ReleasedKeepPolicy string `position:"Query" name:"ReleasedKeepPolicy"`
ResourceOwnerAccount string `position:"Query" name:"ResourceOwnerAccount"`
OwnerAccount string `position:"Query" name:"OwnerAccount"`
CompressType string `position:"Query" name:"CompressType"`
OwnerId requests.Integer `position:"Query" name:"OwnerId"`
}
// DescribeBackupPolicyResponse is the response struct for api DescribeBackupPolicy
type DescribeBackupPolicyResponse struct {
*responses.BaseResponse
LogBackupRetentionPeriod int `json:"LogBackupRetentionPeriod" xml:"LogBackupRetentionPeriod"`
ArchiveBackupKeepPolicy string `json:"ArchiveBackupKeepPolicy" xml:"ArchiveBackupKeepPolicy"`
ArchiveBackupKeepCount string `json:"ArchiveBackupKeepCount" xml:"ArchiveBackupKeepCount"`
LocalLogRetentionHours int `json:"LocalLogRetentionHours" xml:"LocalLogRetentionHours"`
BackupRetentionPeriod int `json:"BackupRetentionPeriod" xml:"BackupRetentionPeriod"`
RequestId string `json:"RequestId" xml:"RequestId"`
PreferredBackupPeriod string `json:"PreferredBackupPeriod" xml:"PreferredBackupPeriod"`
CompressType string `json:"CompressType" xml:"CompressType"`
SupportReleasedKeep int `json:"SupportReleasedKeep" xml:"SupportReleasedKeep"`
LocalLogRetentionSpace string `json:"LocalLogRetentionSpace" xml:"LocalLogRetentionSpace"`
SupportVolumeShadowCopy int `json:"SupportVolumeShadowCopy" xml:"SupportVolumeShadowCopy"`
BackupMethod string `json:"BackupMethod" xml:"BackupMethod"`
LogBackupFrequency string `json:"LogBackupFrequency" xml:"LogBackupFrequency"`
PreferredNextBackupTime string `json:"PreferredNextBackupTime" xml:"PreferredNextBackupTime"`
HighSpaceUsageProtection string `json:"HighSpaceUsageProtection" xml:"HighSpaceUsageProtection"`
DuplicationContent string `json:"DuplicationContent" xml:"DuplicationContent"`
ArchiveBackupRetentionPeriod string `json:"ArchiveBackupRetentionPeriod" xml:"ArchiveBackupRetentionPeriod"`
BackupInterval string `json:"BackupInterval" xml:"BackupInterval"`
ReleasedKeepPolicy string `json:"ReleasedKeepPolicy" xml:"ReleasedKeepPolicy"`
PreferredBackupTime string `json:"PreferredBackupTime" xml:"PreferredBackupTime"`
Duplication string `json:"Duplication" xml:"Duplication"`
LogBackupLocalRetentionNumber int `json:"LogBackupLocalRetentionNumber" xml:"LogBackupLocalRetentionNumber"`
Category string `json:"Category" xml:"Category"`
EnableBackupLog string `json:"EnableBackupLog" xml:"EnableBackupLog"`
BackupLog string `json:"BackupLog" xml:"BackupLog"`
EnableIncrementDataBackup bool `json:"EnableIncrementDataBackup" xml:"EnableIncrementDataBackup"`
SupportModifyBackupPriority bool `json:"SupportModifyBackupPriority" xml:"SupportModifyBackupPriority"`
BackupPriority int `json:"BackupPriority" xml:"BackupPriority"`
EnablePitrProtection bool `json:"EnablePitrProtection" xml:"EnablePitrProtection"`
PitrRetentionPeriod int `json:"PitrRetentionPeriod" xml:"PitrRetentionPeriod"`
DuplicationLocation DuplicationLocation `json:"DuplicationLocation" xml:"DuplicationLocation"`
}
// CreateDescribeBackupPolicyRequest creates a request to invoke DescribeBackupPolicy API
func CreateDescribeBackupPolicyRequest() (request *DescribeBackupPolicyRequest) {
request = &DescribeBackupPolicyRequest{
RpcRequest: &requests.RpcRequest{},
}
request.InitWithApiInfo("Rds", "2014-08-15", "DescribeBackupPolicy", "rds", "openAPI")
request.Method = requests.POST
return
}
// CreateDescribeBackupPolicyResponse creates a response to parse from DescribeBackupPolicy response
func CreateDescribeBackupPolicyResponse() (response *DescribeBackupPolicyResponse) {
response = &DescribeBackupPolicyResponse{
BaseResponse: &responses.BaseResponse{},
}
return
}