MCPcopy Create free account
hub / github.com/Azure/azure-storage-python / exists

Method exists

samples/queue/queue_usage.py:94–104  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

92 pass
93
94 def exists(self):
95 queue_name = self._get_queue_reference()
96
97 # Does not exist
98 exists = self.service.exists(queue_name) # False
99
100 # Exists
101 self.service.create_queue(queue_name)
102 exists = self.service.exists(queue_name) # True
103
104 self.service.delete_queue(queue_name)
105
106 def metadata(self):
107 queue_name = self._create_queue()

Callers 15

run_all_samplesMethod · 0.95
blob_existsMethod · 0.45
blob_existsMethod · 0.45
blocksMethod · 0.45
blob_existsMethod · 0.45
container_existsMethod · 0.45
directory_existsMethod · 0.45
file_existsMethod · 0.45
share_existsMethod · 0.45
test_container_existsMethod · 0.45

Calls 3

_get_queue_referenceMethod · 0.95
create_queueMethod · 0.45
delete_queueMethod · 0.45