package ssoadmin
import "github.com/vmware/govmomi/ssoadmin"
Index ¶
- Constants
- Variables
- type Client
- func NewClient(ctx context.Context, c *vim25.Client) (*Client, error)
- func (c *Client) AddGroupsToGroup(ctx context.Context, groupName string, groupIDs ...types.PrincipalId) error
- func (c *Client) AddUsersToGroup(ctx context.Context, groupName string, userIDs ...types.PrincipalId) error
- func (c *Client) CreateGroup(ctx context.Context, name string, details types.AdminGroupDetails) error
- func (c *Client) CreatePersonUser(ctx context.Context, name string, details types.AdminPersonDetails, password string) error
- func (c *Client) CreateSolutionUser(ctx context.Context, name string, details types.AdminSolutionDetails) error
- func (c *Client) DeletePrincipal(ctx context.Context, name string) error
- func (c *Client) FindGroup(ctx context.Context, name string) (*types.AdminGroup, error)
- func (c *Client) FindGroups(ctx context.Context, search string) ([]types.AdminGroup, error)
- func (c *Client) FindGroupsInGroup(ctx context.Context, name string, search string) ([]types.AdminGroup, error)
- func (c *Client) FindParentGroups(ctx context.Context, id types.PrincipalId, groups ...types.PrincipalId) ([]types.PrincipalId, error)
- func (c *Client) FindPersonUser(ctx context.Context, name string) (*types.AdminPersonUser, error)
- func (c *Client) FindPersonUsers(ctx context.Context, search string) ([]types.AdminPersonUser, error)
- func (c *Client) FindSolutionUser(ctx context.Context, name string) (*types.AdminSolutionUser, error)
- func (c *Client) FindSolutionUsers(ctx context.Context, search string) ([]types.AdminSolutionUser, error)
- func (c *Client) FindUser(ctx context.Context, name string) (*types.AdminUser, error)
- func (c *Client) FindUsersInGroup(ctx context.Context, name string, search string) ([]types.AdminUser, error)
- func (c *Client) GetDefaultDomains(ctx context.Context) ([]string, error)
- func (c *Client) GetLocalPasswordPolicy(ctx context.Context) (*types.AdminPasswordPolicy, error)
- func (c *Client) GetTrustedCertificates(ctx context.Context) ([]string, error)
- func (c *Client) GrantWSTrustRole(ctx context.Context, id types.PrincipalId, role string) (bool, error)
- func (c *Client) IdentitySources(ctx context.Context) (*types.IdentitySources, error)
- func (c *Client) Login(ctx context.Context) error
- func (c *Client) Logout(ctx context.Context) error
- func (c *Client) RegisterLdap(ctx context.Context, stype string, name string, alias string, details types.LdapIdentitySourceDetails, auth types.SsoAdminIdentitySourceManagementServiceAuthenticationCredentails) error
- func (c *Client) RemoveUsersFromGroup(ctx context.Context, groupName string, userIDs ...types.PrincipalId) error
- func (c *Client) ResetPersonPassword(ctx context.Context, name string, password string) error
- func (c *Client) RevokeWSTrustRole(ctx context.Context, id types.PrincipalId, role string) (bool, error)
- func (c *Client) RoundTrip(ctx context.Context, req, res soap.HasFault) error
- func (c *Client) SetDefaultDomains(ctx context.Context, domain string) error
- func (c *Client) SetRole(ctx context.Context, id types.PrincipalId, role string) (bool, error)
- func (c *Client) UpdateGroup(ctx context.Context, name string, details types.AdminGroupDetails) error
- func (c *Client) UpdateLdap(ctx context.Context, name string, details types.LdapIdentitySourceDetails) error
- func (c *Client) UpdateLdapAuthnType(ctx context.Context, name string, auth types.SsoAdminIdentitySourceManagementServiceAuthenticationCredentails) error
- func (c *Client) UpdateLocalPasswordPolicy(ctx context.Context, policy types.AdminPasswordPolicy) error
- func (c *Client) UpdatePersonUser(ctx context.Context, name string, details types.AdminPersonDetails) error
- func (c *Client) UpdateSolutionUser(ctx context.Context, name string, details types.AdminSolutionDetails) error
Constants ¶
const ( Namespace = "sso" Version = "version2" Path = basePath + vim25.Path SystemPath = basePath + "/system-sdk" )
Variables ¶
var ( ServiceInstance = vim.ManagedObjectReference{ Type: "SsoAdminServiceInstance", Value: "SsoAdminServiceInstance", } )
Types ¶
type Client ¶
type Client struct { *soap.Client RoundTripper soap.RoundTripper ServiceContent types.AdminServiceContent GroupCheck types.GroupcheckServiceContent Domain string Limit int32 }
func NewClient ¶
func (*Client) AddGroupsToGroup ¶
func (c *Client) AddGroupsToGroup(ctx context.Context, groupName string, groupIDs ...types.PrincipalId) error
func (*Client) AddUsersToGroup ¶
func (c *Client) AddUsersToGroup(ctx context.Context, groupName string, userIDs ...types.PrincipalId) error
func (*Client) CreateGroup ¶
func (c *Client) CreateGroup(ctx context.Context, name string, details types.AdminGroupDetails) error
func (*Client) CreatePersonUser ¶
func (c *Client) CreatePersonUser(ctx context.Context, name string, details types.AdminPersonDetails, password string) error
func (*Client) CreateSolutionUser ¶
func (c *Client) CreateSolutionUser(ctx context.Context, name string, details types.AdminSolutionDetails) error
func (*Client) DeletePrincipal ¶
func (*Client) FindGroup ¶
func (*Client) FindGroups ¶
func (*Client) FindGroupsInGroup ¶
func (c *Client) FindGroupsInGroup(ctx context.Context, name string, search string) ([]types.AdminGroup, error)
func (*Client) FindParentGroups ¶
func (c *Client) FindParentGroups(ctx context.Context, id types.PrincipalId, groups ...types.PrincipalId) ([]types.PrincipalId, error)
func (*Client) FindPersonUser ¶
func (*Client) FindPersonUsers ¶
func (c *Client) FindPersonUsers(ctx context.Context, search string) ([]types.AdminPersonUser, error)
func (*Client) FindSolutionUser ¶
func (c *Client) FindSolutionUser(ctx context.Context, name string) (*types.AdminSolutionUser, error)
func (*Client) FindSolutionUsers ¶
func (c *Client) FindSolutionUsers(ctx context.Context, search string) ([]types.AdminSolutionUser, error)
func (*Client) FindUser ¶
func (*Client) FindUsersInGroup ¶
func (c *Client) FindUsersInGroup(ctx context.Context, name string, search string) ([]types.AdminUser, error)
func (*Client) GetDefaultDomains ¶
func (*Client) GetLocalPasswordPolicy ¶
func (*Client) GetTrustedCertificates ¶
func (*Client) GrantWSTrustRole ¶
func (c *Client) GrantWSTrustRole(ctx context.Context, id types.PrincipalId, role string) (bool, error)
func (*Client) IdentitySources ¶
func (*Client) Login ¶
func (*Client) Logout ¶
func (*Client) RegisterLdap ¶
func (c *Client) RegisterLdap(ctx context.Context, stype string, name string, alias string, details types.LdapIdentitySourceDetails, auth types.SsoAdminIdentitySourceManagementServiceAuthenticationCredentails) error
func (*Client) RemoveUsersFromGroup ¶
func (c *Client) RemoveUsersFromGroup(ctx context.Context, groupName string, userIDs ...types.PrincipalId) error
func (*Client) ResetPersonPassword ¶
func (*Client) RevokeWSTrustRole ¶
func (c *Client) RevokeWSTrustRole(ctx context.Context, id types.PrincipalId, role string) (bool, error)
func (*Client) RoundTrip ¶
RoundTrip dispatches to the RoundTripper field.
func (*Client) SetDefaultDomains ¶
func (*Client) SetRole ¶
func (*Client) UpdateGroup ¶
func (c *Client) UpdateGroup(ctx context.Context, name string, details types.AdminGroupDetails) error
func (*Client) UpdateLdap ¶
func (c *Client) UpdateLdap(ctx context.Context, name string, details types.LdapIdentitySourceDetails) error
func (*Client) UpdateLdapAuthnType ¶
func (c *Client) UpdateLdapAuthnType(ctx context.Context, name string, auth types.SsoAdminIdentitySourceManagementServiceAuthenticationCredentails) error
func (*Client) UpdateLocalPasswordPolicy ¶
func (c *Client) UpdateLocalPasswordPolicy(ctx context.Context, policy types.AdminPasswordPolicy) error
func (*Client) UpdatePersonUser ¶
func (c *Client) UpdatePersonUser(ctx context.Context, name string, details types.AdminPersonDetails) error
func (*Client) UpdateSolutionUser ¶
func (c *Client) UpdateSolutionUser(ctx context.Context, name string, details types.AdminSolutionDetails) error
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
ssoadmin/methods | |
ssoadmin/simulator | |
ssoadmin/types |
- Version
- v0.48.1 (latest)
- Published
- Feb 11, 2025
- Platform
- linux/amd64
- Imports
- 14 packages
- Last checked
- 2 months ago –
Tools for package owners.