Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CreateDockerProfileInput ¶
type CreateDockerProfileInput struct { Name string `json:"name"` AdditionalSettings []KeyValueInput `json:"additionalSettings"` OnlyDefinedApplications bool `json:"onlyDefinedApplications,omitempty"` Authentication ReusableTokenAuthenticationInput `json:"authentication,omitempty"` }
type DockerProfile ¶
type DockerProfile struct { ID string `json:"id"` Name string `json:"name"` ProfileType string `json:"profileType"` Authentication ReusableTokenAuthentication `json:"authentication,omitempty"` AdditionalSettings []KeyValue `json:"additionalSettings"` OnlyDefinedApplications bool `json:"onlyDefinedApplications,omitempty"` }
DockerProfile represents the profile object as it is returned from mgmt
type DockerProfileUpdateInput ¶
type DockerProfileUpdateInput struct { Name string `json:"name,omitempty"` AddAdditionalSettings []KeyValueInput `json:"addAdditionalSettings,omitempty"` UpdateAdditionalSettings []KeyValueUpdateInput `json:"updateAdditionalSettings,omitempty"` RemoveAdditionalSettings []string `json:"removeAdditionalSettings,omitempty"` OnlyDefinedApplications bool `json:"onlyDefinedApplications"` Authentication ReusableTokenAuthenticationInput `json:"authentication,omitempty"` }
type KeyValueInput ¶
type KeyValueUpdateInput ¶
type ReusableTokenAuthenticationInput ¶
type ReusableTokenAuthenticationInput struct {
MaxNumberOfAgents int `json:"maxNumberOfAgents"`
}
Click to show internal directories.
Click to hide internal directories.