ACL#
Manipulate access control lists that Cloud Storage provides.
gcloud.storage.bucket.Bucket
has a getting method that creates
an ACL object under the hood, and you can interact with that using
gcloud.storage.bucket.Bucket.acl()
:
>>> from gcloud import storage
>>> client = storage.Client()
>>> bucket = client.get_bucket(bucket_name)
>>> acl = bucket.acl
Adding and removing permissions can be done with the following methods (in increasing order of granularity):
ACL.all()
corresponds to access for all users.ACL.all_authenticated()
corresponds to access for all users that are signed into a Google account.ACL.domain()
corresponds to access on a per Google Apps domain (ie,example.com
).ACL.group()
corresponds to access on a per group basis (either by ID or e-mail address).ACL.user()
corresponds to access on a per user basis (either by ID or e-mail address).
And you are able to grant
and revoke
the following roles:
- Reading:
_ACLEntity.grant_read()
and_ACLEntity.revoke_read()
- Writing:
_ACLEntity.grant_write()
and_ACLEntity.revoke_write()
- Owning:
_ACLEntity.grant_owner()
and_ACLEntity.revoke_owner()
You can use any of these like any other factory method (these happen to
be _ACLEntity
factories):
>>> acl.user('me@example.org').grant_read()
>>> acl.all_authenticated().grant_write()
You can also chain these grant_*
and revoke_*
methods together
for brevity:
>>> acl.all().grant_read().revoke_write()
After that, you can save any changes you make with the
gcloud.storage.acl.ACL.save()
method:
>>> acl.save()
You can alternatively save any existing gcloud.storage.acl.ACL
object (whether it was created by a factory method or not) from a
gcloud.storage.bucket.Bucket
:
>>> bucket.acl.save(acl=acl)
To get the list of entity
and role
for each unique pair, the
ACL
class is iterable:
>>> print list(ACL)
[{'role': 'OWNER', 'entity': 'allUsers'}, ...]
This list of tuples can be used as the entity
and role
fields
when sending metadata for ACLs to the API.
-
class
gcloud.storage.acl.
ACL
[source]# Bases:
object
Container class representing a list of access controls.
-
add_entity
(entity)[source]# Add an entity to the ACL.
Parameters: entity ( _ACLEntity
) – The entity to add to this ACL.
-
all
()[source]# Factory method for an Entity representing all users.
Return type: _ACLEntity
Returns: An entity representing all users.
-
all_authenticated
()[source]# Factory method for an Entity representing all authenticated users.
Return type: _ACLEntity
Returns: An entity representing all authenticated users.
-
clear
(client=None)[source]# Remove all ACL entries.
Note that this won’t actually remove ALL the rules, but it will remove all the non-default rules. In short, you’ll still have access to a bucket that you created even after you clear ACL rules with this method.
Parameters: client ( gcloud.storage.client.Client
orNoneType
) – Optional. The client to use. If not passed, falls back to theclient
stored on the ACL’s parent.
-
client
# Abstract getter for the object client.
-
domain
(domain)[source]# Factory method for a domain Entity.
Parameters: domain (string) – The domain for this entity. Return type: _ACLEntity
Returns: An entity corresponding to this domain.
-
entity
(entity_type, identifier=None)[source]# Factory method for creating an Entity.
If an entity with the same type and identifier already exists, this will return a reference to that entity. If not, it will create a new one and add it to the list of known entities for this ACL.
Parameters: Return type: _ACLEntity
Returns: A new Entity or a reference to an existing identical entity.
-
entity_from_dict
(entity_dict)[source]# Build an _ACLEntity object from a dictionary of data.
An entity is a mutable object that represents a list of roles belonging to either a user or group or the special types for all users and all authenticated users.
Parameters: entity_dict (dict) – Dictionary full of data from an ACL lookup. Return type: _ACLEntity
Returns: An Entity constructed from the dictionary.
-
get_entities
()[source]# Get a list of all Entity objects.
Return type: list of _ACLEntity
objectsReturns: A list of all Entity objects.
-
get_entity
(entity, default=None)[source]# Gets an entity object from the ACL.
Parameters: - entity (
_ACLEntity
or string) – The entity to get lookup in the ACL. - default (anything) – This value will be returned if the entity doesn’t exist.
Return type: _ACLEntity
Returns: The corresponding entity or the value provided to
default
.- entity (
-
group
(identifier)[source]# Factory method for a group Entity.
Parameters: identifier (string) – An id or e-mail for this particular group. Return type: _ACLEntity
Returns: An Entity corresponding to this group.
-
has_entity
(entity)[source]# Returns whether or not this ACL has any entries for an entity.
Parameters: entity ( _ACLEntity
) – The entity to check for existence in this ACL.Return type: boolean Returns: True of the entity exists in the ACL.
-
loaded
= False#
-
reload
(client=None)[source]# Reload the ACL data from Cloud Storage.
Parameters: client ( gcloud.storage.client.Client
orNoneType
) – Optional. The client to use. If not passed, falls back to theclient
stored on the ACL’s parent.
-
reload_path
= None#
-
save
(acl=None, client=None)[source]# Save this ACL for the current bucket.
Parameters: - acl (
gcloud.storage.acl.ACL
, or a compatible list.) – The ACL object to save. If left blank, this will save current entries. - client (
gcloud.storage.client.Client
orNoneType
) – Optional. The client to use. If not passed, falls back to theclient
stored on the ACL’s parent.
- acl (
-
save_path
= None#
-
-
class
gcloud.storage.acl.
BucketACL
(bucket)[source]# Bases:
gcloud.storage.acl.ACL
An ACL specifically for a bucket.
Parameters: bucket ( gcloud.storage.bucket.Bucket
) – The bucket to which this ACL relates.-
client
# The client bound to this ACL’s bucket.
-
reload_path
# Compute the path for GET API requests for this ACL.
-
save_path
# Compute the path for PATCH API requests for this ACL.
-
-
class
gcloud.storage.acl.
DefaultObjectACL
(bucket)[source]# Bases:
gcloud.storage.acl.BucketACL
A class representing the default object ACL for a bucket.
-
class
gcloud.storage.acl.
ObjectACL
(blob)[source]# Bases:
gcloud.storage.acl.ACL
An ACL specifically for a Cloud Storage object / blob.
Parameters: blob ( gcloud.storage.blob.Blob
) – The blob that this ACL corresponds to.-
client
# The client bound to this ACL’s blob.
-
reload_path
# Compute the path for GET API requests for this ACL.
-
save_path
# Compute the path for PATCH API requests for this ACL.
-