Home | History | Annotate | Download | only in gslib

Lines Matching refs:storage_url

282   def XmlPassThroughGetAcl(self, storage_url, def_obj_acl=False, provider=None):
286 storage_url: StorageUrl object.
296 ACL XML for the resource specified by storage_url.
298 return self._GetApi(provider).XmlPassThroughGetAcl(storage_url,
301 def XmlPassThroughSetAcl(self, acl_text, storage_url, canned=True,
307 storage_url: StorageUrl object.
321 acl_text, storage_url, canned=canned, def_obj_acl=def_obj_acl)
323 def XmlPassThroughGetCors(self, storage_url, provider=None):
327 storage_url: StorageUrl object.
336 CORS configuration XML for the bucket specified by storage_url.
338 return self._GetApi(provider).XmlPassThroughGetCors(storage_url)
340 def XmlPassThroughSetCors(self, cors_text, storage_url, provider=None):
345 storage_url: StorageUrl object.
356 self._GetApi(provider).XmlPassThroughSetCors(cors_text, storage_url)
358 def XmlPassThroughGetLifecycle(self, storage_url, provider=None):
362 storage_url: StorageUrl object.
371 Lifecycle configuration XML for the bucket specified by storage_url.
373 return self._GetApi(provider).XmlPassThroughGetLifecycle(storage_url)
375 def XmlPassThroughSetLifecycle(self, lifecycle_text, storage_url,
381 storage_url: StorageUrl object.
393 storage_url)
395 def XmlPassThroughGetLogging(self, storage_url, provider=None):
399 storage_url: StorageUrl object.
408 Logging configuration XML for the bucket specified by storage_url.
410 return self._GetApi(provider).XmlPassThroughGetLogging(storage_url)
412 def XmlPassThroughGetWebsite(self, storage_url, provider=None):
416 storage_url: StorageUrl object.
425 Website configuration XML for the bucket specified by storage_url.
427 return self._GetApi(provider).XmlPassThroughGetWebsite(storage_url)