// +------------------------------------------------------------------------- // | Copyright (C) 2016 Yunify, Inc. // +------------------------------------------------------------------------- // | Licensed under the Apache License, Version 2.0 (the "License"); // | you may not use this work except in compliance with the License. // | You may obtain a copy of the License in the LICENSE file, or 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. // +------------------------------------------------------------------------- package service import ( "fmt" "time" "github.com/yunify/qingcloud-sdk-go/config" "github.com/yunify/qingcloud-sdk-go/request" "github.com/yunify/qingcloud-sdk-go/request/data" "github.com/yunify/qingcloud-sdk-go/request/errors" ) var _ fmt.State var _ time.Time type MonitorService struct { Config *config.Config Properties *MonitorServiceProperties } type MonitorServiceProperties struct { // QingCloud Zone ID Zone *string `json:"zone" name:"zone"` // Required } func (s *QingCloudService) Monitor(zone string) (*MonitorService, error) { properties := &MonitorServiceProperties{ Zone: &zone, } return &MonitorService{Config: s.Config, Properties: properties}, nil } // Documentation URL: https://docs.qingcloud.com/api/monitor/get_monitor.html func (s *MonitorService) GetMonitor(i *GetMonitorInput) (*GetMonitorOutput, error) { if i == nil { i = &GetMonitorInput{} } o := &data.Operation{ Config: s.Config, Properties: s.Properties, APIName: "GetMonitor", RequestMethod: "GET", } x := &GetMonitorOutput{} r, err := request.New(o, i, x) if err != nil { return nil, err } err = r.Send() if err != nil { return nil, err } return x, err } type GetMonitorInput struct { EndTime *time.Time `json:"end_time" name:"end_time" format:"ISO 8601" location:"params"` Meters []*string `json:"meters" name:"meters" location:"params"` Resource *string `json:"resource" name:"resource" location:"params"` StartTime *time.Time `json:"start_time" name:"start_time" format:"ISO 8601" location:"params"` // Step's available values: 5m, 15m, 2h, 1d Step *string `json:"step" name:"step" location:"params"` } func (v *GetMonitorInput) Validate() error { if v.Step != nil { stepValidValues := []string{"5m", "15m", "2h", "1d"} stepParameterValue := fmt.Sprint(*v.Step) stepIsValid := false for _, value := range stepValidValues { if value == stepParameterValue { stepIsValid = true } } if !stepIsValid { return errors.ParameterValueNotAllowedError{ ParameterName: "Step", ParameterValue: stepParameterValue, AllowedValues: stepValidValues, } } } return nil } type GetMonitorOutput struct { Message *string `json:"message" name:"message"` Action *string `json:"action" name:"action" location:"elements"` MeterSet []*Meter `json:"meter_set" name:"meter_set" location:"elements"` ResourceID *string `json:"resource_id" name:"resource_id" location:"elements"` RetCode *int `json:"ret_code" name:"ret_code" location:"elements"` }