Home | History | Annotate | Download | only in storage

Lines Matching refs:Acl

261 	acl           ACLHandle
268 // ACL provides access to the object's access control list.
271 func (o *ObjectHandle) ACL() *ACLHandle {
272 return &o.acl
382 if uattrs.ACL != nil {
383 attrs.ACL = uattrs.ACL
384 // It's an error to attempt to delete the ACL, so
386 forceSendFields = append(forceSendFields, "Acl")
432 ACL []ACLRule
656 var acl []*raw.ObjectAccessControl
658 acl = make([]*raw.ObjectAccessControl, len(oldACL))
660 acl[i] = &raw.ObjectAccessControl{
666 return acl
671 acl := toRawObjectACL(o.ACL)
681 Acl: acl,
706 // ACL is the list of access control rules for the object.
707 ACL []ACLRule
803 acl := make([]ACLRule, len(o.Acl))
804 for i, rule := range o.Acl {
805 acl[i] = ACLRule{
826 ACL: acl,