Documentation ¶
Index ¶
- func Delete(service *services.Service, customID string) (*http.Response, error)
- func Update(service *services.Service, customID string, ...) (*http.Response, error)
- type Conditions
- type InspectionCustomControl
- func Create(service *services.Service, customControls InspectionCustomControl) (*InspectionCustomControl, *http.Response, error)
- func Get(service *services.Service, customID string) (*InspectionCustomControl, *http.Response, error)
- func GetAll(service *services.Service) ([]InspectionCustomControl, *http.Response, error)
- func GetByName(service *services.Service, controlName string) (*InspectionCustomControl, *http.Response, error)
- type Rules
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Conditions ¶
type InspectionCustomControl ¶
type InspectionCustomControl struct { ID string `json:"id,omitempty"` Action string `json:"action,omitempty"` ActionValue string `json:"actionValue,omitempty"` AssociatedInspectionProfileNames []common.AssociatedProfileNames `json:"associatedInspectionProfileNames,omitempty"` Rules []Rules `json:"rules,omitempty"` ControlNumber string `json:"controlNumber,omitempty"` ControlType string `json:"controlType,omitempty"` ControlRuleJson string `json:"controlRuleJson,omitempty"` CreationTime string `json:"creationTime,omitempty"` DefaultAction string `json:"defaultAction,omitempty"` DefaultActionValue string `json:"defaultActionValue,omitempty"` Description string `json:"description,omitempty"` ModifiedBy string `json:"modifiedBy,omitempty"` ModifiedTime string `json:"modifiedTime,omitempty"` Name string `json:"name,omitempty"` ParanoiaLevel string `json:"paranoiaLevel,omitempty"` ProtocolType string `json:"protocolType,omitempty"` Severity string `json:"severity,omitempty"` Type string `json:"type,omitempty"` Version string `json:"version,omitempty"` }
func Create ¶ added in v2.61.7
func Create(service *services.Service, customControls InspectionCustomControl) (*InspectionCustomControl, *http.Response, error)
type Rules ¶
type Rules struct { Conditions []Conditions `json:"conditions,omitempty"` Names []string `json:"names,omitempty"` Type string `json:"type,omitempty"` }
Click to show internal directories.
Click to hide internal directories.