def _logs_bucket_name(self, project_name): """Return the logs bucket name.""" return project_name + '-logs.' + data_handler.bucket_domain_suffix()
def _corpus_bucket_name(self, project_name): """Return the corpus_bucket_name.""" return project_name + '-corpus.' + data_handler.bucket_domain_suffix()
def _quarantine_bucket_name(self, project_name): """Return the quarantine_bucket_name.""" return project_name + '-quarantine.' + data_handler.bucket_domain_suffix( )
def _backup_bucket_name(self, project_name): """Return the backup_bucket_name.""" return project_name + '-backup.' + data_handler.bucket_domain_suffix()