def __init__()

in roles/gcs-upload/library/gcs_upload.py [0:0]


    def __init__(self, client, container, prefix, cache_control):
        self.client = client
        self.prefix = prefix or ''
        if self.prefix and not self.prefix.endswith('/'):
            self.prefix += '/'
        self.cache_control = cache_control
        self.bucket = client.bucket(container)