Documentation ¶
Index ¶
- func Delete(service *services.Service, consoleID string) (*http.Response, error)
- func Update(service *services.Service, consoleID string, praConsole *PRAConsole) (*http.Response, error)
- type PRAApplication
- type PRAConsole
- func Create(service *services.Service, praConsole *PRAConsole) (*PRAConsole, *http.Response, error)
- func CreatePraBulk(service *services.Service, praConsoles []PRAConsole) ([]PRAConsole, *http.Response, error)
- func Get(service *services.Service, consoleID string) (*PRAConsole, *http.Response, error)
- func GetAll(service *services.Service) ([]PRAConsole, *http.Response, error)
- func GetByName(service *services.Service, consoleName string) (*PRAConsole, *http.Response, error)
- func GetPraPortal(service *services.Service, portalID string) (*PRAConsole, *http.Response, error)
- type PRAPortals
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type PRAApplication ¶
type PRAConsole ¶
type PRAConsole struct { // The unique identifier of the privileged console ID string `json:"id,omitempty"` // The name of the privileged console. Name string `json:"name,omitempty"` // The description of the privileged console. Description string `json:"description,omitempty"` // Whether or not the privileged console is enabled. Enabled bool `json:"enabled"` // The privileged console icon. The icon image is converted to base64 encoded text format. IconText string `json:"iconText,omitempty"` // The time the privileged console is created. CreationTime string `json:"creationTime,omitempty"` // The tenant who modified the privileged console. ModifiedBy string `json:"modifiedBy,omitempty"` // The time the privileged console is modified. ModifiedTime string `json:"modifiedTime,omitempty"` MicroTenantID string `json:"microtenantId,omitempty"` MicroTenantName string `json:"microtenantName,omitempty"` PRAApplication PRAApplication `json:"praApplication,omitempty"` PRAPortals []PRAPortals `json:"praPortals"` }
func Create ¶ added in v2.61.0
func Create(service *services.Service, praConsole *PRAConsole) (*PRAConsole, *http.Response, error)
func CreatePraBulk ¶ added in v2.61.0
func CreatePraBulk(service *services.Service, praConsoles []PRAConsole) ([]PRAConsole, *http.Response, error)
func GetPraPortal ¶ added in v2.61.0
type PRAPortals ¶
Click to show internal directories.
Click to hide internal directories.