Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for GetPolicyDoc (0.16 sec)

  1. cmd/iam-store.go

    	if len(toMerge) == 0 {
    		return policy.Policy{}, errNoSuchPolicy
    	}
    	return policy.MergePolicies(toMerge...), nil
    }
    
    // GetPolicyDoc - gets the policy doc which has the policy and some metadata.
    // Exactly one policy must be specified here.
    func (store *IAMStoreSys) GetPolicyDoc(name string) (r PolicyDoc, err error) {
    	name = strings.TrimSpace(name)
    	if name == "" {
    		return r, errInvalidArgument
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Apr 27 10:04:10 GMT 2024
    - 75.2K bytes
    - Viewed (2)
Back to top