You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/api/hosts/host_catalog.go

55 lines
1.4 KiB

// Code generated by go generate; DO NOT EDIT.
// This file was generated by robots at
// 2020-05-03 14:33:51.4626029 -0400 EDT m=+0.042775701
package hosts
import (
"encoding/json"
"time"
"github.com/fatih/structs"
"github.com/hashicorp/watchtower/api/internal/strutil"
)
type HostCatalog struct {
defaultFields []string
// Canonical path of the resource from the API's base URI
// Output only.
Path *string `json:"path,omitempty"`
// The type of the resource, to help differentiate schemas
Type *string `json:"type,omitempty"`
// Friendly name, if set
FriendlyName *string `json:"friendly_name,omitempty"`
// The time this host was created
// Output only.
CreatedTime time.Time `json:"created_time,omitempty"`
// The time this host was last updated
// Output only.
UpdatedTime time.Time `json:"updated_time,omitempty"`
// Whether the catalog is disabled
Disabled *bool `json:"disabled,omitempty"`
// Attributes specific to the catalog type
Attributes map[string]interface {
} `json:"attributes,omitempty"`
}
func (s *HostCatalog) SetDefault(key string) {
s.defaultFields = strutil.AppendIfMissing(s.defaultFields, key)
}
func (s *HostCatalog) UnsetDefault(key string) {
s.defaultFields = strutil.StrListDelete(s.defaultFields, key)
}
func (s HostCatalog) MarshalJSON() ([]byte, error) {
m := structs.Map(s)
if m == nil {
m = make(map[string]interface{})
}
for _, k := range s.defaultFields {
m[k] = nil
}
return json.Marshal(m)
}