Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for saveGroupInfo (0.33 sec)

  1. cmd/iam-etcd-store.go

    	return ies.saveIAMConfig(ctx, u, getUserIdentityPath(name, userType), opts...)
    }
    
    func (ies *IAMEtcdStore) saveGroupInfo(ctx context.Context, name string, gi GroupInfo) error {
    	return ies.saveIAMConfig(ctx, gi, getGroupInfoPath(name))
    }
    
    func (ies *IAMEtcdStore) deletePolicyDoc(ctx context.Context, name string) error {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 13.6K bytes
    - Viewed (0)
  2. cmd/iam-store.go

    	saveUserIdentity(ctx context.Context, name string, userType IAMUserType, u UserIdentity, opts ...options) error
    	saveGroupInfo(ctx context.Context, group string, gi GroupInfo) error
    	deletePolicyDoc(ctx context.Context, policyName string) error
    	deleteMappedPolicy(ctx context.Context, name string, userType IAMUserType, isGroup bool) error
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 74.4K bytes
    - Viewed (2)
  3. cmd/iam-object-store.go

    	return iamOS.saveIAMConfig(ctx, u, getUserIdentityPath(name, userType), opts...)
    }
    
    func (iamOS *IAMObjectStore) saveGroupInfo(ctx context.Context, name string, gi GroupInfo) error {
    	return iamOS.saveIAMConfig(ctx, gi, getGroupInfoPath(name))
    }
    
    func (iamOS *IAMObjectStore) deletePolicyDoc(ctx context.Context, name string) error {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Apr 05 21:26:41 GMT 2024
    - 19.9K bytes
    - Viewed (0)
Back to top