Documentation ¶
Index ¶
- type PRAApplication
- type PRAConsole
- type PRAPortals
- type Service
- func (service *Service) Create(praConsole *PRAConsole) (*PRAConsole, *http.Response, error)
- func (service *Service) CreatePraBulk(praConsoles []PRAConsole) ([]PRAConsole, *http.Response, error)
- func (service *Service) Delete(consoleID string) (*http.Response, error)
- func (service *Service) Get(consoleID string) (*PRAConsole, *http.Response, error)
- func (service *Service) GetAll() ([]PRAConsole, *http.Response, error)
- func (service *Service) GetByName(consoleName string) (*PRAConsole, *http.Response, error)
- func (service *Service) GetPraPortal(portalID string) (*PRAConsole, *http.Response, error)
- func (service *Service) Update(consoleID string, praConsole *PRAConsole) (*http.Response, error)
- func (service *Service) WithMicroTenant(microTenantID string) *Service
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
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"` }
type PRAPortals ¶
type Service ¶
func (*Service) Create ¶
func (service *Service) Create(praConsole *PRAConsole) (*PRAConsole, *http.Response, error)
func (*Service) CreatePraBulk ¶
func (service *Service) CreatePraBulk(praConsoles []PRAConsole) ([]PRAConsole, *http.Response, error)
func (*Service) GetPraPortal ¶
func (*Service) WithMicroTenant ¶
Click to show internal directories.
Click to hide internal directories.