yunion.io/x/cloudmux@v0.3.10-0-alpha.1/pkg/multicloud/zstack/systag.go (about) 1 // Copyright 2019 Yunion 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 package zstack 16 17 import "net/url" 18 19 type SSysTag struct { 20 ZStackTime 21 Inherent bool `json:"inherent"` 22 ResourceType string `json:"resourceType"` 23 ResourceUUID string `json:"resourceUuid"` 24 Tag string `json:"tag"` 25 Type string `json:"type"` 26 UUID string `json:"uuid"` 27 } 28 29 func (region *SRegion) GetResourceSysTags(tagId string, resourceType string, resourceId string, tag string) ([]SSysTag, error) { 30 tags := []SSysTag{} 31 params := url.Values{} 32 if len(tagId) > 0 { 33 params.Add("q", "uuid="+tagId) 34 } 35 if len(resourceType) > 0 { 36 params.Add("q", "resourceType="+resourceType) 37 } 38 if len(resourceId) > 0 { 39 params.Add("q", "resourceUuid="+resourceId) 40 } 41 if len(tag) > 0 { 42 params.Add("q", "tag="+tag) 43 } 44 return tags, region.client.listAll("system-tags", params, &tags) 45 }