Documentation ¶
Index ¶
- Constants
- type AddPracticeMode
- type AddPracticeWrapper
- type AddProxySetting
- type AddSourceIdentifier
- type AddTag
- type AddTags
- type Behavior
- type Behaviors
- type CreateWebApplicationAssetInput
- type MTLSSchema
- type MTLSSchemas
- type Practice
- type PracticeBehavior
- type PracticeMode
- type PracticeModeInput
- type PracticeWrapper
- type PracticeWrapperInput
- type PracticeWrappersInputs
- type PracticesWrappers
- type Profile
- type Profiles
- type ProxySetting
- type ProxySettingInput
- type ProxySettingInputs
- type ProxySettings
- type SchemaPracticeMode
- type SchemaPracticeWrapper
- type SchemaSourceIdentifier
- type SchemaTag
- type SourceIdentifier
- type SourceIdentifierInput
- type SourceIdentifierValue
- type SourceIdentifiers
- type SourceIdentifiersInputs
- type Tag
- type TagInput
- type Tags
- type TagsInputs
- type Trigger
- type URL
- type URLs
- type UpdateProxySetting
- type UpdateSourceIdentifier
- type UpdateSourceIdentifierValue
- type UpdateURL
- type UpdateWebApplicationAssetInput
- type ValuesIDs
- type WebApplicationAsset
Constants ¶
const ( SourceIdentifierValueIDSeparator = ";;;" FileDataFormat = "data:%s;base64,%s" )
const (
URLIDSeparator = ";;;;"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AddPracticeMode ¶
type AddPracticeMode struct { Mode string `json:"mode"` SubPractice string `json:"subPractice,omitempty"` }
AddPracticeMode represents the api input for adding a practice mode (sub practice) in a practice to add to an existing WebApplicationAsset object
type AddPracticeWrapper ¶
type AddPracticeWrapper struct { PracticeID string `json:"practiceId"` MainMode string `json:"mainMode"` SubPracticeModes []AddPracticeMode `json:"subPracticeModes,omitempty"` Triggers []string `json:"triggers"` }
AddPracticeWrapper represents the input for adding a practice wrapper field to an existing WebApplicationAsset object
type AddProxySetting ¶
AddProxySetting represents the input for adding a proxy setting field to an existing WebApplicationAsset object
type AddSourceIdentifier ¶
type AddSourceIdentifier struct { SourceIdentifier string `json:"sourceIdentifier"` Values []string `json:"values"` }
AddSourceIdentifier represents the input for adding a source identifier field to an existing WebApplicationAsset object
type Behavior ¶
Behavior represents a behavior field of a web application asset as it is returned from mgmt
type CreateWebApplicationAssetInput ¶
type CreateWebApplicationAssetInput struct { Name string `json:"name"` PracticeWrappers PracticeWrappersInputs `json:"practices,omitempty"` Profiles []string `json:"profiles,omitempty"` Behaviors []string `json:"behaviors,omitempty"` Tags TagsInputs `json:"tags,omitempty"` ProxySettings ProxySettingInputs `json:"proxySetting,omitempty"` UpstreamURL string `json:"upstreamURL,omitempty"` URLs []string `json:"URLs,omitempty"` SourceIdentifiers SourceIdentifiersInputs `json:"sourceIdentifiers,omitempty"` }
CreateWebApplicationAssetInput represents the api input for creating a web application asset
type MTLSSchema ¶ added in v1.1.1
type MTLSSchema struct { FilenameID string `json:"filename_id,omitempty"` Filename string `json:"filename,omitempty"` CertificateType string `json:"certificate_type,omitempty"` DataID string `json:"data_id,omitempty"` Data string `json:"data"` Type string `json:"type,omitempty"` EnableID string `json:"enable_id,omitempty"` Enable bool `json:"enable,omitempty"` }
MTLSSchema represents a field of web application asset as it is saved in the state file this structure is aligned with the input schema (see web-app-asset.go file)
func NewFileSchemaEncode ¶ added in v1.1.1
func NewFileSchemaEncode(filename, fileData, mTLSType, certificateType string, fileEnable bool) MTLSSchema
type MTLSSchemas ¶ added in v1.1.1
type MTLSSchemas []MTLSSchema
func (MTLSSchemas) ToIndicatorMap ¶ added in v1.1.1
func (mtlsInputs MTLSSchemas) ToIndicatorMap() map[string]MTLSSchema
type PracticeBehavior ¶
PracticeBehavior represents a behavior field of a practice field of a web application asset as it is returned from mgmt
type PracticeMode ¶
type PracticeMode struct { Mode string `json:"mode"` SubPractice string `json:"subPractice,omitempty"` }
PracticeMode represents a practice mode (sub practice) field of a practice field of a web application asset object as it is returned from mgmt
type PracticeModeInput ¶
type PracticeModeInput struct { Mode string `json:"mode"` SubPractice string `json:"subPractice,omitempty"` }
PracticeModeInput represents the api input for creating a practice mode field in the practice field of the web application asset
type PracticeWrapper ¶
type PracticeWrapper struct { PracticeWrapperID string `json:"id"` MainMode string `json:"mainMode,omitempty"` SubPracticeModes []PracticeMode `json:"subPracticeModes,omitempty"` Triggers []Trigger `json:"triggers,omitempty"` Practice Practice `json:"practice"` }
PracticeWrapper represents a practice field of a web application asset object as it is returned from mgmt
func (PracticeWrapper) ToSchema ¶
func (practiceWrapper PracticeWrapper) ToSchema() SchemaPracticeWrapper
ToSchema converts a single PracticeWrapper as returned from the API to a single SchemaPracticeWrapper to be saved in the state file
type PracticeWrapperInput ¶
type PracticeWrapperInput struct { PracticeWrapperID string `json:"practiceWrapperId,omitempty"` PracticeID string `json:"practiceId"` MainMode string `json:"mainMode"` SubPracticeModes []PracticeModeInput `json:"subPracticeModes,omitempty"` Triggers []string `json:"triggers,omitempty"` }
PracticeWrapperInput represents the api input for creating a practice field in the web application asset
type PracticeWrappersInputs ¶
type PracticeWrappersInputs []PracticeWrapperInput
type PracticesWrappers ¶
type PracticesWrappers []PracticeWrapper
func (PracticesWrappers) ToSchema ¶
func (wrappers PracticesWrappers) ToSchema() []SchemaPracticeWrapper
ToSchema converts the practices field as returned from the API to a slice of SchemaPracticeWrapper to be saved in the state file
type Profile ¶
type Profile struct {
ID string `json:"id"`
}
Profile represents a profileId associated with the web application asset as it is returned from mgmt
type ProxySetting ¶
type ProxySetting struct { ID string `json:"id"` Key string `json:"key"` Value string `json:"value"` }
ProxySetting represents a ProxySetting field of a web application asset object as it is returned from mgmt
type ProxySettingInput ¶
type ProxySettingInput struct { Key string `json:"key"` Value string `json:"value"` ID string `json:"id,omitempty"` }
ProxySettingInput represents the api input for creating a proxy setting field in the web application asset
type ProxySettingInputs ¶
type ProxySettingInputs []ProxySettingInput
func (ProxySettingInputs) ToIndicatorsMap ¶
func (inputs ProxySettingInputs) ToIndicatorsMap() map[string]ProxySettingInput
ToIndicatorsMap converts a ProxySettingInputs to a map from a proxy setting key to the proxy setting struct itself
type ProxySettings ¶
type ProxySettings []ProxySetting
type SchemaPracticeMode ¶
type SchemaPracticeMode struct { Mode string `json:"mode"` SubPractice string `json:"sub_practice,omitempty"` }
SchemaPracticeMode represents a PracticeMode field of a practice field of a web application asset as it is saved in the state file this structure is aligned with the input schema (see web-api-asset.go file)
type SchemaPracticeWrapper ¶
type SchemaPracticeWrapper struct { PracticeWrapperID string `json:"practice_wrapper_id"` PracticeID string `json:"id"` MainMode string `json:"main_mode,omitempty"` SubPracticeModes map[string]string `json:"sub_practices_modes,omitempty"` Triggers []string `json:"triggers,omitempty"` }
SchemaPracticeWrapper represents a field of web application asset as it is saved in the state file this structure is aligned with the input schema (see web-api-asset.go file)
type SchemaSourceIdentifier ¶
type SchemaSourceIdentifier struct { ID string `json:"id,omitempty"` SourceIdentifier string `json:"identifier"` Values []string `json:"values"` ValuesIDs []string `json:"values_ids"` }
SchemaSourceIdentifier represents the SourceIdentifier field of a web application asset as it is saved in the state file this structure is aligned with the input schema (see web-app-asset.go file)
type SourceIdentifier ¶
type SourceIdentifier struct { ID string `json:"id"` SourceIdentifier string `json:"sourceIdentifier"` Values []SourceIdentifierValue `json:"values"` }
SourceIdentifier represents a SourceIdentifier object returned from mgmt
func (SourceIdentifier) ToSchema ¶
func (sourceIdentifier SourceIdentifier) ToSchema() SchemaSourceIdentifier
ToSchema converts a single SourceIdentifier as returned from the API to a single SchemaSourceIdentifier to be saved in the state file
type SourceIdentifierInput ¶
type SourceIdentifierInput struct { SourceIdentifier string `json:"sourceIdentifier"` Values []string `json:"values"` ValuesIDs ValuesIDs `json:"valuesIDs,omitempty"` ID string `json:"id,omitempty"` }
SourceIdentifierInput represents the api input for creating a source identifier field in the web application asset
type SourceIdentifierValue ¶
type SourceIdentifierValue struct { ID string `json:"id"` IdentifierValue string `json:"IdentifierValue"` }
SourceIdentifierValue represents a SourceIdentifierValue field of a SourceIdentifier field of a web application asset as it is returned from mgmt
type SourceIdentifiers ¶
type SourceIdentifiers []SourceIdentifier
func (SourceIdentifiers) ToSchema ¶
func (sourceIdentifiers SourceIdentifiers) ToSchema() []SchemaSourceIdentifier
ToSchema converts the SourceIdentifiers field as returned from the API to a slice of SchemaSourceIdentifier to be saved in the state file
type SourceIdentifiersInputs ¶
type SourceIdentifiersInputs []SourceIdentifierInput
func (SourceIdentifiersInputs) ToIndicatorsMap ¶
func (inputs SourceIdentifiersInputs) ToIndicatorsMap() map[string]SourceIdentifierInput
ToIndicatorsMap converts a SourceIdentifiersInputs to a map from a source identifier field to the source identifier struct itself
type Tag ¶ added in v1.1.1
Tag represents a tag field of a web application asset as it is returned from mgmt
type TagInput ¶ added in v1.1.1
type TagInput struct { Key string `json:"key"` Value string `json:"value"` ID string `json:"id,omitempty"` }
TagInput represents the api input for creating a tag field in the web application asset
type TagsInputs ¶ added in v1.1.1
type TagsInputs []TagInput
func (TagsInputs) ToIndicatorsMap ¶ added in v1.1.1
func (inputs TagsInputs) ToIndicatorsMap() map[string]TagInput
type Trigger ¶
type Trigger struct {
ID string `json:"id"`
}
Trigger represents a trigger in a Practice object returned from mgmt
type UpdateProxySetting ¶
type UpdateProxySetting struct { ID string `json:"id"` Key string `json:"key"` Value string `json:"value"` }
UpdateProxySetting represents the input for updating an existing proxy setting field of an existing WebApplicationAsset object
type UpdateSourceIdentifier ¶
type UpdateSourceIdentifier struct { ID string `json:"id"` SourceIdentifier string `json:"sourceIdentifier"` AddValues []string `json:"addValues"` RemoveValues []string `json:"removeValues"` UpdateValues []UpdateSourceIdentifierValue `json:"updateValues"` }
UpdateSourceIdentifier represents the input for updating an existing proxy setting field of an existing WebApplicationAsset object
type UpdateSourceIdentifierValue ¶
type UpdateSourceIdentifierValue struct { ID string `json:"id"` IdentifierValue string `json:"identifierValue"` }
UpdateSourceIdentifierValue represents the input for updating an existing source identifier value in a source identifier field of an existing WebApplicationAsset object
type UpdateURL ¶
UpdateURL represents the input for updating an existing url field of an existing WebApplicationAsset object
type UpdateWebApplicationAssetInput ¶
type UpdateWebApplicationAssetInput struct { Name string `json:"name,omitempty"` AddPracticeWrappers []AddPracticeWrapper `json:"addPractices,omitempty"` RemovePracticeWrappers []string `json:"removePractices,omitempty"` AddProfiles []string `json:"addProfiles,omitempty"` RemoveProfiles []string `json:"removeProfiles,omitempty"` AddBehaviors []string `json:"addBehaviors,omitempty"` RemoveBehaviors []string `json:"removeBehaviors,omitempty"` AddTags AddTags `json:"addTags,omitempty"` RemoveTags []string `json:"removeTags,omitempty"` State string `json:"state,omitempty"` AddProxySetting []AddProxySetting `json:"addProxySetting,omitempty"` RemoveProxySetting []string `json:"removeProxySetting,omitempty"` UpdateProxySetting []UpdateProxySetting `json:"updateProxySetting,omitempty"` UpstreamURL string `json:"upstreamURL,omitempty"` AddURLs []string `json:"addURLs,omitempty"` RemoveURLs []string `json:"removeURLs,omitempty"` UpdateURLs []UpdateURL `json:"updateURLs,omitempty"` AddSourceIdentifiers []AddSourceIdentifier `json:"addSourceIdentifiers,omitempty"` RemoveSourceIdentifiers []string `json:"removeSourceIdentifiers,omitempty"` UpdateSourceIdentifiers []UpdateSourceIdentifier `json:"updateSourceIdentifiers,omitempty"` }
UpdateWebApplicationAssetInput represents the input for updating an existing WebApplicationAsset object
type WebApplicationAsset ¶
type WebApplicationAsset struct { ID string `json:"id"` Name string `json:"name"` AssetType string `json:"assetType"` Class string `json:"class"` Category string `json:"category"` Family string `json:"family"` Group string `json:"group"` Order string `json:"order"` Kind string `json:"kind"` MainAttributes string `json:"mainAttributes"` IntelligenceTags string `json:"intelligenceTags"` State string `json:"state,omitempty"` UpstreamURL string `json:"upstreamURL,omitempty"` Sources string `json:"sources"` URLs URLs `json:"URLs"` ProxySettings ProxySettings `json:"proxySetting"` SourceIdentifiers SourceIdentifiers `json:"sourceIdentifiers"` Behaviors Behaviors `json:"behaviors,omitempty"` Profiles Profiles `json:"profiles,omitempty"` Practices PracticesWrappers `json:"practices,omitempty"` Tags Tags `json:"tags,omitempty"` ReadOnly bool `json:"readOnly"` }
WebApplicationAsset represents a web application asset as it is returned from mgmt