This is an automated email from the ASF dual-hosted git repository. dangogh pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-trafficcontrol.git
commit 4684cede9b849117770d8f7cb0c74a4a3342fcd7 Author: Dewayne Richardson <dewr...@apache.org> AuthorDate: Wed Apr 4 13:44:06 2018 -0600 added for api 1.3 support --- lib/go-tc/v13/profiles.go | 59 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/lib/go-tc/v13/profiles.go b/lib/go-tc/v13/profiles.go new file mode 100644 index 0000000..22003bf --- /dev/null +++ b/lib/go-tc/v13/profiles.go @@ -0,0 +1,59 @@ +package v13 + +import tc "github.com/apache/incubator-trafficcontrol/lib/go-tc" + +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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. + */ + +// ProfilesResponse ... +type ProfilesResponse struct { + Response []Profile `json:"response"` +} + +// Profile ... +type Profile struct { + ID int `json:"id" db:"id"` + + // LastUpdated + // + LastUpdated tc.TimeNoMod `json:"lastUpdated" db:"last_updated"` + + Name string `json:"name"` + Description string `json:"description"` + CDNName string `json:"cdnName"` + CDNID int `json:"cdn"` + RoutingDisabled bool `json:"routingDisabled"` + Type string `json:"type"` +} + +// ProfileNullable ... +type ProfileNullable struct { + ID *int `json:"id" db:"id"` + + // LastUpdated + // + LastUpdated *tc.TimeNoMod `json:"lastUpdated" db:"last_updated"` + + Name *string `json:"name" db:"name"` + Description *string `json:"description" db:"description"` + CDNName *string `json:"cdnName" db:"cdn_name"` + CDNID *int `json:"cdn" db:"cdn"` + RoutingDisabled *bool `json:"routingDisabled" db:"routing_disabled"` + Type *string `json:"type" db:"type"` +} -- To stop receiving notification emails like this one, please contact dang...@apache.org.