partition
stringclasses
3 values
func_name
stringlengths
1
134
docstring
stringlengths
1
46.9k
path
stringlengths
4
223
original_string
stringlengths
75
104k
code
stringlengths
75
104k
docstring_tokens
listlengths
1
1.97k
repo
stringlengths
7
55
language
stringclasses
1 value
url
stringlengths
87
315
code_tokens
listlengths
19
28.4k
sha
stringlengths
40
40
test
BaseHandler.close
Close down the handler connection. If the handler has already closed, this operation will do nothing. An optional exception can be passed in to indicate that the handler was shutdown due to error. It is recommended to open a handler within a context manager as opposed to calling...
azure-servicebus/azure/servicebus/aio/async_base_handler.py
async def close(self, exception=None): """Close down the handler connection. If the handler has already closed, this operation will do nothing. An optional exception can be passed in to indicate that the handler was shutdown due to error. It is recommended to open a handler with...
async def close(self, exception=None): """Close down the handler connection. If the handler has already closed, this operation will do nothing. An optional exception can be passed in to indicate that the handler was shutdown due to error. It is recommended to open a handler with...
[ "Close", "down", "the", "handler", "connection", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/aio/async_base_handler.py#L171-L204
[ "async", "def", "close", "(", "self", ",", "exception", "=", "None", ")", ":", "self", ".", "running", "=", "False", "if", "self", ".", "error", ":", "return", "if", "isinstance", "(", "exception", ",", "ServiceBusError", ")", ":", "self", ".", "error"...
d7306fde32f60a293a7567678692bdad31e4b667
test
Receiver.open
Open receiver connection and authenticate session. If the receiver is already open, this operation will do nothing. This method will be called automatically when one starts to iterate messages in the receiver, so there should be no need to call it directly. A receiver opened with this m...
azure-servicebus/azure/servicebus/aio/async_receive_handler.py
async def open(self): """Open receiver connection and authenticate session. If the receiver is already open, this operation will do nothing. This method will be called automatically when one starts to iterate messages in the receiver, so there should be no need to call it directly. ...
async def open(self): """Open receiver connection and authenticate session. If the receiver is already open, this operation will do nothing. This method will be called automatically when one starts to iterate messages in the receiver, so there should be no need to call it directly. ...
[ "Open", "receiver", "connection", "and", "authenticate", "session", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/aio/async_receive_handler.py#L215-L244
[ "async", "def", "open", "(", "self", ")", ":", "if", "self", ".", "running", ":", "return", "self", ".", "running", "=", "True", "try", ":", "await", "self", ".", "_handler", ".", "open_async", "(", "connection", "=", "self", ".", "connection", ")", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
Receiver.close
Close down the receiver connection. If the receiver has already closed, this operation will do nothing. An optional exception can be passed in to indicate that the handler was shutdown due to error. It is recommended to open a handler within a context manager as opposed to calling the m...
azure-servicebus/azure/servicebus/aio/async_receive_handler.py
async def close(self, exception=None): """Close down the receiver connection. If the receiver has already closed, this operation will do nothing. An optional exception can be passed in to indicate that the handler was shutdown due to error. It is recommended to open a handler within a c...
async def close(self, exception=None): """Close down the receiver connection. If the receiver has already closed, this operation will do nothing. An optional exception can be passed in to indicate that the handler was shutdown due to error. It is recommended to open a handler within a c...
[ "Close", "down", "the", "receiver", "connection", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/aio/async_receive_handler.py#L246-L277
[ "async", "def", "close", "(", "self", ",", "exception", "=", "None", ")", ":", "if", "not", "self", ".", "running", ":", "return", "self", ".", "running", "=", "False", "self", ".", "receiver_shutdown", "=", "True", "self", ".", "_used", ".", "set", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
SessionReceiver.get_session_state
Get the session state. Returns None if no state has been set. :rtype: str Example: .. literalinclude:: ../examples/async_examples/test_examples_async.py :start-after: [START set_session_state] :end-before: [END set_session_state] :la...
azure-servicebus/azure/servicebus/aio/async_receive_handler.py
async def get_session_state(self): """Get the session state. Returns None if no state has been set. :rtype: str Example: .. literalinclude:: ../examples/async_examples/test_examples_async.py :start-after: [START set_session_state] :end-befor...
async def get_session_state(self): """Get the session state. Returns None if no state has been set. :rtype: str Example: .. literalinclude:: ../examples/async_examples/test_examples_async.py :start-after: [START set_session_state] :end-befor...
[ "Get", "the", "session", "state", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/aio/async_receive_handler.py#L513-L537
[ "async", "def", "get_session_state", "(", "self", ")", ":", "await", "self", ".", "_can_run", "(", ")", "response", "=", "await", "self", ".", "_mgmt_request_response", "(", "REQUEST_RESPONSE_GET_SESSION_STATE_OPERATION", ",", "{", "'session-id'", ":", "self", "."...
d7306fde32f60a293a7567678692bdad31e4b667
test
SessionReceiver.set_session_state
Set the session state. :param state: The state value. :type state: str or bytes or bytearray Example: .. literalinclude:: ../examples/async_examples/test_examples_async.py :start-after: [START set_session_state] :end-before: [END set_session_state] ...
azure-servicebus/azure/servicebus/aio/async_receive_handler.py
async def set_session_state(self, state): """Set the session state. :param state: The state value. :type state: str or bytes or bytearray Example: .. literalinclude:: ../examples/async_examples/test_examples_async.py :start-after: [START set_session_state] ...
async def set_session_state(self, state): """Set the session state. :param state: The state value. :type state: str or bytes or bytearray Example: .. literalinclude:: ../examples/async_examples/test_examples_async.py :start-after: [START set_session_state] ...
[ "Set", "the", "session", "state", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/aio/async_receive_handler.py#L539-L559
[ "async", "def", "set_session_state", "(", "self", ",", "state", ")", ":", "await", "self", ".", "_can_run", "(", ")", "state", "=", "state", ".", "encode", "(", "self", ".", "encoding", ")", "if", "isinstance", "(", "state", ",", "six", ".", "text_type...
d7306fde32f60a293a7567678692bdad31e4b667
test
SessionReceiver.receive_deferred_messages
Receive messages that have previously been deferred. This operation can only receive deferred messages from the current session. When receiving deferred messages from a partitioned entity, all of the supplied sequence numbers must be messages from the same partition. :param sequence_nu...
azure-servicebus/azure/servicebus/aio/async_receive_handler.py
async def receive_deferred_messages(self, sequence_numbers, mode=ReceiveSettleMode.PeekLock): """Receive messages that have previously been deferred. This operation can only receive deferred messages from the current session. When receiving deferred messages from a partitioned entity, all of th...
async def receive_deferred_messages(self, sequence_numbers, mode=ReceiveSettleMode.PeekLock): """Receive messages that have previously been deferred. This operation can only receive deferred messages from the current session. When receiving deferred messages from a partitioned entity, all of th...
[ "Receive", "messages", "that", "have", "previously", "been", "deferred", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/aio/async_receive_handler.py#L625-L667
[ "async", "def", "receive_deferred_messages", "(", "self", ",", "sequence_numbers", ",", "mode", "=", "ReceiveSettleMode", ".", "PeekLock", ")", ":", "if", "not", "sequence_numbers", ":", "raise", "ValueError", "(", "\"At least one sequence number must be specified.\"", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
ReservationOperations.merge
Merges two `Reservation`s. Merge the specified `Reservation`s into a new `Reservation`. The two `Reservation`s being merged must have same properties. :param reservation_order_id: Order Id of the reservation :type reservation_order_id: str :param sources: Format of the resource...
azure-mgmt-reservations/azure/mgmt/reservations/operations/reservation_operations.py
def merge( self, reservation_order_id, sources=None, custom_headers=None, raw=False, polling=True, **operation_config): """Merges two `Reservation`s. Merge the specified `Reservation`s into a new `Reservation`. The two `Reservation`s being merged must have same properties. ...
def merge( self, reservation_order_id, sources=None, custom_headers=None, raw=False, polling=True, **operation_config): """Merges two `Reservation`s. Merge the specified `Reservation`s into a new `Reservation`. The two `Reservation`s being merged must have same properties. ...
[ "Merges", "two", "Reservation", "s", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-reservations/azure/mgmt/reservations/operations/reservation_operations.py#L194-L243
[ "def", "merge", "(", "self", ",", "reservation_order_id", ",", "sources", "=", "None", ",", "custom_headers", "=", "None", ",", "raw", "=", "False", ",", "polling", "=", "True", ",", "*", "*", "operation_config", ")", ":", "raw_result", "=", "self", ".",...
d7306fde32f60a293a7567678692bdad31e4b667
test
HttpBearerChallenge._validate_challenge
Verifies that the challenge is a Bearer challenge and returns the key=value pairs.
azure-keyvault/azure/keyvault/http_bearer_challenge.py
def _validate_challenge(self, challenge): """ Verifies that the challenge is a Bearer challenge and returns the key=value pairs. """ bearer_string = 'Bearer ' if not challenge: raise ValueError('Challenge cannot be empty') challenge = challenge.strip() if not challen...
def _validate_challenge(self, challenge): """ Verifies that the challenge is a Bearer challenge and returns the key=value pairs. """ bearer_string = 'Bearer ' if not challenge: raise ValueError('Challenge cannot be empty') challenge = challenge.strip() if not challen...
[ "Verifies", "that", "the", "challenge", "is", "a", "Bearer", "challenge", "and", "returns", "the", "key", "=", "value", "pairs", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-keyvault/azure/keyvault/http_bearer_challenge.py#L73-L83
[ "def", "_validate_challenge", "(", "self", ",", "challenge", ")", ":", "bearer_string", "=", "'Bearer '", "if", "not", "challenge", ":", "raise", "ValueError", "(", "'Challenge cannot be empty'", ")", "challenge", "=", "challenge", ".", "strip", "(", ")", "if", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
WorkspacesOperations.purge
Purges data in an Log Analytics workspace by a set of user-defined filters. :param resource_group_name: The name of the resource group to get. The name is case insensitive. :type resource_group_name: str :param workspace_name: Log Analytics workspace name :type workspac...
azure-mgmt-loganalytics/azure/mgmt/loganalytics/operations/workspaces_operations.py
def purge( self, resource_group_name, workspace_name, table, filters, custom_headers=None, raw=False, polling=True, **operation_config): """Purges data in an Log Analytics workspace by a set of user-defined filters. :param resource_group_name: The name of the resource group to get. ...
def purge( self, resource_group_name, workspace_name, table, filters, custom_headers=None, raw=False, polling=True, **operation_config): """Purges data in an Log Analytics workspace by a set of user-defined filters. :param resource_group_name: The name of the resource group to get. ...
[ "Purges", "data", "in", "an", "Log", "Analytics", "workspace", "by", "a", "set", "of", "user", "-", "defined", "filters", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-loganalytics/azure/mgmt/loganalytics/operations/workspaces_operations.py#L396-L448
[ "def", "purge", "(", "self", ",", "resource_group_name", ",", "workspace_name", ",", "table", ",", "filters", ",", "custom_headers", "=", "None", ",", "raw", "=", "False", ",", "polling", "=", "True", ",", "*", "*", "operation_config", ")", ":", "raw_resul...
d7306fde32f60a293a7567678692bdad31e4b667
test
_error_handler
Handle connection and service errors. Called internally when an event has failed to send so we can parse the error to determine whether we should attempt to retry sending the event again. Returns the action to take according to error type. :param error: The error received in the send attempt. ...
azure-servicebus/azure/servicebus/common/errors.py
def _error_handler(error): """Handle connection and service errors. Called internally when an event has failed to send so we can parse the error to determine whether we should attempt to retry sending the event again. Returns the action to take according to error type. :param error: The error ...
def _error_handler(error): """Handle connection and service errors. Called internally when an event has failed to send so we can parse the error to determine whether we should attempt to retry sending the event again. Returns the action to take according to error type. :param error: The error ...
[ "Handle", "connection", "and", "service", "errors", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/common/errors.py#L38-L60
[ "def", "_error_handler", "(", "error", ")", ":", "if", "error", ".", "condition", "==", "b'com.microsoft:server-busy'", ":", "return", "errors", ".", "ErrorAction", "(", "retry", "=", "True", ",", "backoff", "=", "4", ")", "if", "error", ".", "condition", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.with_filter
Returns a new service which will process requests with the specified filter. Filtering operations can include logging, automatic retrying, etc... The filter is a lambda which receives the HTTPRequest and another lambda. The filter can perform any pre-processing on the request, pass it...
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def with_filter(self, filter_func): ''' Returns a new service which will process requests with the specified filter. Filtering operations can include logging, automatic retrying, etc... The filter is a lambda which receives the HTTPRequest and another lambda. The filter can pe...
def with_filter(self, filter_func): ''' Returns a new service which will process requests with the specified filter. Filtering operations can include logging, automatic retrying, etc... The filter is a lambda which receives the HTTPRequest and another lambda. The filter can pe...
[ "Returns", "a", "new", "service", "which", "will", "process", "requests", "with", "the", "specified", "filter", ".", "Filtering", "operations", "can", "include", "logging", "automatic", "retrying", "etc", "...", "The", "filter", "is", "a", "lambda", "which", "...
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L182-L201
[ "def", "with_filter", "(", "self", ",", "filter_func", ")", ":", "res", "=", "ServiceBusService", "(", "service_namespace", "=", "self", ".", "service_namespace", ",", "authentication", "=", "self", ".", "authentication", ")", "old_filter", "=", "self", ".", "...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.create_queue
Creates a new queue. Once created, this queue's resource manifest is immutable. queue_name: Name of the queue to create. queue: Queue object to create. fail_on_exist: Specify whether to throw an exception when the queue exists.
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def create_queue(self, queue_name, queue=None, fail_on_exist=False): ''' Creates a new queue. Once created, this queue's resource manifest is immutable. queue_name: Name of the queue to create. queue: Queue object to create. fail_on_exist: ...
def create_queue(self, queue_name, queue=None, fail_on_exist=False): ''' Creates a new queue. Once created, this queue's resource manifest is immutable. queue_name: Name of the queue to create. queue: Queue object to create. fail_on_exist: ...
[ "Creates", "a", "new", "queue", ".", "Once", "created", "this", "queue", "s", "resource", "manifest", "is", "immutable", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L226-L255
[ "def", "create_queue", "(", "self", ",", "queue_name", ",", "queue", "=", "None", ",", "fail_on_exist", "=", "False", ")", ":", "_validate_not_none", "(", "'queue_name'", ",", "queue_name", ")", "request", "=", "HTTPRequest", "(", ")", "request", ".", "metho...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.delete_queue
Deletes an existing queue. This operation will also remove all associated state including messages in the queue. queue_name: Name of the queue to delete. fail_not_exist: Specify whether to throw an exception if the queue doesn't exist.
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def delete_queue(self, queue_name, fail_not_exist=False): ''' Deletes an existing queue. This operation will also remove all associated state including messages in the queue. queue_name: Name of the queue to delete. fail_not_exist: Specify whether to thro...
def delete_queue(self, queue_name, fail_not_exist=False): ''' Deletes an existing queue. This operation will also remove all associated state including messages in the queue. queue_name: Name of the queue to delete. fail_not_exist: Specify whether to thro...
[ "Deletes", "an", "existing", "queue", ".", "This", "operation", "will", "also", "remove", "all", "associated", "state", "including", "messages", "in", "the", "queue", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L257-L283
[ "def", "delete_queue", "(", "self", ",", "queue_name", ",", "fail_not_exist", "=", "False", ")", ":", "_validate_not_none", "(", "'queue_name'", ",", "queue_name", ")", "request", "=", "HTTPRequest", "(", ")", "request", ".", "method", "=", "'DELETE'", "reques...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.get_queue
Retrieves an existing queue. queue_name: Name of the queue.
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def get_queue(self, queue_name): ''' Retrieves an existing queue. queue_name: Name of the queue. ''' _validate_not_none('queue_name', queue_name) request = HTTPRequest() request.method = 'GET' request.host = self._get_host() request.pa...
def get_queue(self, queue_name): ''' Retrieves an existing queue. queue_name: Name of the queue. ''' _validate_not_none('queue_name', queue_name) request = HTTPRequest() request.method = 'GET' request.host = self._get_host() request.pa...
[ "Retrieves", "an", "existing", "queue", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L285-L301
[ "def", "get_queue", "(", "self", ",", "queue_name", ")", ":", "_validate_not_none", "(", "'queue_name'", ",", "queue_name", ")", "request", "=", "HTTPRequest", "(", ")", "request", ".", "method", "=", "'GET'", "request", ".", "host", "=", "self", ".", "_ge...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.list_queues
Enumerates the queues in the service namespace.
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def list_queues(self): ''' Enumerates the queues in the service namespace. ''' request = HTTPRequest() request.method = 'GET' request.host = self._get_host() request.path = '/$Resources/Queues' request.path, request.query = self._httpclient._update_request...
def list_queues(self): ''' Enumerates the queues in the service namespace. ''' request = HTTPRequest() request.method = 'GET' request.host = self._get_host() request.path = '/$Resources/Queues' request.path, request.query = self._httpclient._update_request...
[ "Enumerates", "the", "queues", "in", "the", "service", "namespace", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L303-L316
[ "def", "list_queues", "(", "self", ")", ":", "request", "=", "HTTPRequest", "(", ")", "request", ".", "method", "=", "'GET'", "request", ".", "host", "=", "self", ".", "_get_host", "(", ")", "request", ".", "path", "=", "'/$Resources/Queues'", "request", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.create_topic
Creates a new topic. Once created, this topic resource manifest is immutable. topic_name: Name of the topic to create. topic: Topic object to create. fail_on_exist: Specify whether to throw an exception when the topic exists.
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def create_topic(self, topic_name, topic=None, fail_on_exist=False): ''' Creates a new topic. Once created, this topic resource manifest is immutable. topic_name: Name of the topic to create. topic: Topic object to create. fail_on_exist: ...
def create_topic(self, topic_name, topic=None, fail_on_exist=False): ''' Creates a new topic. Once created, this topic resource manifest is immutable. topic_name: Name of the topic to create. topic: Topic object to create. fail_on_exist: ...
[ "Creates", "a", "new", "topic", ".", "Once", "created", "this", "topic", "resource", "manifest", "is", "immutable", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L318-L347
[ "def", "create_topic", "(", "self", ",", "topic_name", ",", "topic", "=", "None", ",", "fail_on_exist", "=", "False", ")", ":", "_validate_not_none", "(", "'topic_name'", ",", "topic_name", ")", "request", "=", "HTTPRequest", "(", ")", "request", ".", "metho...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.get_topic
Retrieves the description for the specified topic. topic_name: Name of the topic.
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def get_topic(self, topic_name): ''' Retrieves the description for the specified topic. topic_name: Name of the topic. ''' _validate_not_none('topic_name', topic_name) request = HTTPRequest() request.method = 'GET' request.host = self._get_hos...
def get_topic(self, topic_name): ''' Retrieves the description for the specified topic. topic_name: Name of the topic. ''' _validate_not_none('topic_name', topic_name) request = HTTPRequest() request.method = 'GET' request.host = self._get_hos...
[ "Retrieves", "the", "description", "for", "the", "specified", "topic", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L377-L393
[ "def", "get_topic", "(", "self", ",", "topic_name", ")", ":", "_validate_not_none", "(", "'topic_name'", ",", "topic_name", ")", "request", "=", "HTTPRequest", "(", ")", "request", ".", "method", "=", "'GET'", "request", ".", "host", "=", "self", ".", "_ge...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.create_rule
Creates a new rule. Once created, this rule's resource manifest is immutable. topic_name: Name of the topic. subscription_name: Name of the subscription. rule_name: Name of the rule. fail_on_exist: Specify whether to throw an excep...
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def create_rule(self, topic_name, subscription_name, rule_name, rule=None, fail_on_exist=False): ''' Creates a new rule. Once created, this rule's resource manifest is immutable. topic_name: Name of the topic. subscription_name: Name o...
def create_rule(self, topic_name, subscription_name, rule_name, rule=None, fail_on_exist=False): ''' Creates a new rule. Once created, this rule's resource manifest is immutable. topic_name: Name of the topic. subscription_name: Name o...
[ "Creates", "a", "new", "rule", ".", "Once", "created", "this", "rule", "s", "resource", "manifest", "is", "immutable", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L410-L446
[ "def", "create_rule", "(", "self", ",", "topic_name", ",", "subscription_name", ",", "rule_name", ",", "rule", "=", "None", ",", "fail_on_exist", "=", "False", ")", ":", "_validate_not_none", "(", "'topic_name'", ",", "topic_name", ")", "_validate_not_none", "("...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.get_rule
Retrieves the description for the specified rule. topic_name: Name of the topic. subscription_name: Name of the subscription. rule_name: Name of the rule.
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def get_rule(self, topic_name, subscription_name, rule_name): ''' Retrieves the description for the specified rule. topic_name: Name of the topic. subscription_name: Name of the subscription. rule_name: Name of the rule. ''' _v...
def get_rule(self, topic_name, subscription_name, rule_name): ''' Retrieves the description for the specified rule. topic_name: Name of the topic. subscription_name: Name of the subscription. rule_name: Name of the rule. ''' _v...
[ "Retrieves", "the", "description", "for", "the", "specified", "rule", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L485-L509
[ "def", "get_rule", "(", "self", ",", "topic_name", ",", "subscription_name", ",", "rule_name", ")", ":", "_validate_not_none", "(", "'topic_name'", ",", "topic_name", ")", "_validate_not_none", "(", "'subscription_name'", ",", "subscription_name", ")", "_validate_not_...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.list_rules
Retrieves the rules that exist under the specified subscription. topic_name: Name of the topic. subscription_name: Name of the subscription.
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def list_rules(self, topic_name, subscription_name): ''' Retrieves the rules that exist under the specified subscription. topic_name: Name of the topic. subscription_name: Name of the subscription. ''' _validate_not_none('topic_name', topic_name) ...
def list_rules(self, topic_name, subscription_name): ''' Retrieves the rules that exist under the specified subscription. topic_name: Name of the topic. subscription_name: Name of the subscription. ''' _validate_not_none('topic_name', topic_name) ...
[ "Retrieves", "the", "rules", "that", "exist", "under", "the", "specified", "subscription", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L511-L533
[ "def", "list_rules", "(", "self", ",", "topic_name", ",", "subscription_name", ")", ":", "_validate_not_none", "(", "'topic_name'", ",", "topic_name", ")", "_validate_not_none", "(", "'subscription_name'", ",", "subscription_name", ")", "request", "=", "HTTPRequest", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.create_subscription
Creates a new subscription. Once created, this subscription resource manifest is immutable. topic_name: Name of the topic. subscription_name: Name of the subscription. fail_on_exist: Specify whether throw exception when subscription exists.
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def create_subscription(self, topic_name, subscription_name, subscription=None, fail_on_exist=False): ''' Creates a new subscription. Once created, this subscription resource manifest is immutable. topic_name: Name of the topic. subscripti...
def create_subscription(self, topic_name, subscription_name, subscription=None, fail_on_exist=False): ''' Creates a new subscription. Once created, this subscription resource manifest is immutable. topic_name: Name of the topic. subscripti...
[ "Creates", "a", "new", "subscription", ".", "Once", "created", "this", "subscription", "resource", "manifest", "is", "immutable", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L535-L568
[ "def", "create_subscription", "(", "self", ",", "topic_name", ",", "subscription_name", ",", "subscription", "=", "None", ",", "fail_on_exist", "=", "False", ")", ":", "_validate_not_none", "(", "'topic_name'", ",", "topic_name", ")", "_validate_not_none", "(", "'...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.get_subscription
Gets an existing subscription. topic_name: Name of the topic. subscription_name: Name of the subscription.
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def get_subscription(self, topic_name, subscription_name): ''' Gets an existing subscription. topic_name: Name of the topic. subscription_name: Name of the subscription. ''' _validate_not_none('topic_name', topic_name) _validate_not_none('...
def get_subscription(self, topic_name, subscription_name): ''' Gets an existing subscription. topic_name: Name of the topic. subscription_name: Name of the subscription. ''' _validate_not_none('topic_name', topic_name) _validate_not_none('...
[ "Gets", "an", "existing", "subscription", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L603-L623
[ "def", "get_subscription", "(", "self", ",", "topic_name", ",", "subscription_name", ")", ":", "_validate_not_none", "(", "'topic_name'", ",", "topic_name", ")", "_validate_not_none", "(", "'subscription_name'", ",", "subscription_name", ")", "request", "=", "HTTPRequ...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.list_subscriptions
Retrieves the subscriptions in the specified topic. topic_name: Name of the topic.
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def list_subscriptions(self, topic_name): ''' Retrieves the subscriptions in the specified topic. topic_name: Name of the topic. ''' _validate_not_none('topic_name', topic_name) request = HTTPRequest() request.method = 'GET' request.host = sel...
def list_subscriptions(self, topic_name): ''' Retrieves the subscriptions in the specified topic. topic_name: Name of the topic. ''' _validate_not_none('topic_name', topic_name) request = HTTPRequest() request.method = 'GET' request.host = sel...
[ "Retrieves", "the", "subscriptions", "in", "the", "specified", "topic", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L625-L642
[ "def", "list_subscriptions", "(", "self", ",", "topic_name", ")", ":", "_validate_not_none", "(", "'topic_name'", ",", "topic_name", ")", "request", "=", "HTTPRequest", "(", ")", "request", ".", "method", "=", "'GET'", "request", ".", "host", "=", "self", "....
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.send_topic_message
Enqueues a message into the specified topic. The limit to the number of messages which may be present in the topic is governed by the message size in MaxTopicSizeInBytes. If this message causes the topic to exceed its quota, a quota exceeded error is returned and the message will be reje...
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def send_topic_message(self, topic_name, message=None): ''' Enqueues a message into the specified topic. The limit to the number of messages which may be present in the topic is governed by the message size in MaxTopicSizeInBytes. If this message causes the topic to exceed its qu...
def send_topic_message(self, topic_name, message=None): ''' Enqueues a message into the specified topic. The limit to the number of messages which may be present in the topic is governed by the message size in MaxTopicSizeInBytes. If this message causes the topic to exceed its qu...
[ "Enqueues", "a", "message", "into", "the", "specified", "topic", ".", "The", "limit", "to", "the", "number", "of", "messages", "which", "may", "be", "present", "in", "the", "topic", "is", "governed", "by", "the", "message", "size", "in", "MaxTopicSizeInBytes...
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L644-L667
[ "def", "send_topic_message", "(", "self", ",", "topic_name", ",", "message", "=", "None", ")", ":", "_validate_not_none", "(", "'topic_name'", ",", "topic_name", ")", "_validate_not_none", "(", "'message'", ",", "message", ")", "request", "=", "HTTPRequest", "("...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.peek_lock_subscription_message
This operation is used to atomically retrieve and lock a message for processing. The message is guaranteed not to be delivered to other receivers during the lock duration period specified in buffer description. Once the lock expires, the message will be available to other receivers (on t...
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def peek_lock_subscription_message(self, topic_name, subscription_name, timeout='60'): ''' This operation is used to atomically retrieve and lock a message for processing. The message is guaranteed not to be delivered to other receivers during the l...
def peek_lock_subscription_message(self, topic_name, subscription_name, timeout='60'): ''' This operation is used to atomically retrieve and lock a message for processing. The message is guaranteed not to be delivered to other receivers during the l...
[ "This", "operation", "is", "used", "to", "atomically", "retrieve", "and", "lock", "a", "message", "for", "processing", ".", "The", "message", "is", "guaranteed", "not", "to", "be", "delivered", "to", "other", "receivers", "during", "the", "lock", "duration", ...
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L694-L730
[ "def", "peek_lock_subscription_message", "(", "self", ",", "topic_name", ",", "subscription_name", ",", "timeout", "=", "'60'", ")", ":", "_validate_not_none", "(", "'topic_name'", ",", "topic_name", ")", "_validate_not_none", "(", "'subscription_name'", ",", "subscri...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.unlock_subscription_message
Unlock a message for processing by other receivers on a given subscription. This operation deletes the lock object, causing the message to be unlocked. A message must have first been locked by a receiver before this operation is called. topic_name: Name of the topic. ...
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def unlock_subscription_message(self, topic_name, subscription_name, sequence_number, lock_token): ''' Unlock a message for processing by other receivers on a given subscription. This operation deletes the lock object, causing the message to be unlocke...
def unlock_subscription_message(self, topic_name, subscription_name, sequence_number, lock_token): ''' Unlock a message for processing by other receivers on a given subscription. This operation deletes the lock object, causing the message to be unlocke...
[ "Unlock", "a", "message", "for", "processing", "by", "other", "receivers", "on", "a", "given", "subscription", ".", "This", "operation", "deletes", "the", "lock", "object", "causing", "the", "message", "to", "be", "unlocked", ".", "A", "message", "must", "ha...
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L732-L764
[ "def", "unlock_subscription_message", "(", "self", ",", "topic_name", ",", "subscription_name", ",", "sequence_number", ",", "lock_token", ")", ":", "_validate_not_none", "(", "'topic_name'", ",", "topic_name", ")", "_validate_not_none", "(", "'subscription_name'", ",",...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.send_queue_message_batch
Sends a batch of messages into the specified queue. The limit to the number of messages which may be present in the topic is governed by the message size the MaxTopicSizeInMegaBytes. If this message will cause the queue to exceed its quota, a quota exceeded error is returned and the mess...
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def send_queue_message_batch(self, queue_name, messages=None): ''' Sends a batch of messages into the specified queue. The limit to the number of messages which may be present in the topic is governed by the message size the MaxTopicSizeInMegaBytes. If this message will cause the queue ...
def send_queue_message_batch(self, queue_name, messages=None): ''' Sends a batch of messages into the specified queue. The limit to the number of messages which may be present in the topic is governed by the message size the MaxTopicSizeInMegaBytes. If this message will cause the queue ...
[ "Sends", "a", "batch", "of", "messages", "into", "the", "specified", "queue", ".", "The", "limit", "to", "the", "number", "of", "messages", "which", "may", "be", "present", "in", "the", "topic", "is", "governed", "by", "the", "message", "size", "the", "M...
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L888-L911
[ "def", "send_queue_message_batch", "(", "self", ",", "queue_name", ",", "messages", "=", "None", ")", ":", "_validate_not_none", "(", "'queue_name'", ",", "queue_name", ")", "_validate_not_none", "(", "'messages'", ",", "messages", ")", "request", "=", "HTTPReques...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.peek_lock_queue_message
Automically retrieves and locks a message from a queue for processing. The message is guaranteed not to be delivered to other receivers (on the same subscription only) during the lock duration period specified in the queue description. Once the lock expires, the message will be available...
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def peek_lock_queue_message(self, queue_name, timeout='60'): ''' Automically retrieves and locks a message from a queue for processing. The message is guaranteed not to be delivered to other receivers (on the same subscription only) during the lock duration period specified in th...
def peek_lock_queue_message(self, queue_name, timeout='60'): ''' Automically retrieves and locks a message from a queue for processing. The message is guaranteed not to be delivered to other receivers (on the same subscription only) during the lock duration period specified in th...
[ "Automically", "retrieves", "and", "locks", "a", "message", "from", "a", "queue", "for", "processing", ".", "The", "message", "is", "guaranteed", "not", "to", "be", "delivered", "to", "other", "receivers", "(", "on", "the", "same", "subscription", "only", ")...
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L913-L940
[ "def", "peek_lock_queue_message", "(", "self", ",", "queue_name", ",", "timeout", "=", "'60'", ")", ":", "_validate_not_none", "(", "'queue_name'", ",", "queue_name", ")", "request", "=", "HTTPRequest", "(", ")", "request", ".", "method", "=", "'POST'", "reque...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.unlock_queue_message
Unlocks a message for processing by other receivers on a given queue. This operation deletes the lock object, causing the message to be unlocked. A message must have first been locked by a receiver before this operation is called. queue_name: Name of the queue. seque...
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def unlock_queue_message(self, queue_name, sequence_number, lock_token): ''' Unlocks a message for processing by other receivers on a given queue. This operation deletes the lock object, causing the message to be unlocked. A message must have first been locked by a receiver befor...
def unlock_queue_message(self, queue_name, sequence_number, lock_token): ''' Unlocks a message for processing by other receivers on a given queue. This operation deletes the lock object, causing the message to be unlocked. A message must have first been locked by a receiver befor...
[ "Unlocks", "a", "message", "for", "processing", "by", "other", "receivers", "on", "a", "given", "queue", ".", "This", "operation", "deletes", "the", "lock", "object", "causing", "the", "message", "to", "be", "unlocked", ".", "A", "message", "must", "have", ...
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L942-L969
[ "def", "unlock_queue_message", "(", "self", ",", "queue_name", ",", "sequence_number", ",", "lock_token", ")", ":", "_validate_not_none", "(", "'queue_name'", ",", "queue_name", ")", "_validate_not_none", "(", "'sequence_number'", ",", "sequence_number", ")", "_valida...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.receive_queue_message
Receive a message from a queue for processing. queue_name: Name of the queue. peek_lock: Optional. True to retrieve and lock the message. False to read and delete the message. Default is True (lock). timeout: Optional. The timeout parameter is exp...
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def receive_queue_message(self, queue_name, peek_lock=True, timeout=60): ''' Receive a message from a queue for processing. queue_name: Name of the queue. peek_lock: Optional. True to retrieve and lock the message. False to read and delete the message...
def receive_queue_message(self, queue_name, peek_lock=True, timeout=60): ''' Receive a message from a queue for processing. queue_name: Name of the queue. peek_lock: Optional. True to retrieve and lock the message. False to read and delete the message...
[ "Receive", "a", "message", "from", "a", "queue", "for", "processing", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L1052-L1066
[ "def", "receive_queue_message", "(", "self", ",", "queue_name", ",", "peek_lock", "=", "True", ",", "timeout", "=", "60", ")", ":", "if", "peek_lock", ":", "return", "self", ".", "peek_lock_queue_message", "(", "queue_name", ",", "timeout", ")", "return", "s...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.receive_subscription_message
Receive a message from a subscription for processing. topic_name: Name of the topic. subscription_name: Name of the subscription. peek_lock: Optional. True to retrieve and lock the message. False to read and delete the message. Default is True (lo...
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def receive_subscription_message(self, topic_name, subscription_name, peek_lock=True, timeout=60): ''' Receive a message from a subscription for processing. topic_name: Name of the topic. subscription_name: Name of the subscri...
def receive_subscription_message(self, topic_name, subscription_name, peek_lock=True, timeout=60): ''' Receive a message from a subscription for processing. topic_name: Name of the topic. subscription_name: Name of the subscri...
[ "Receive", "a", "message", "from", "a", "subscription", "for", "processing", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L1068-L1089
[ "def", "receive_subscription_message", "(", "self", ",", "topic_name", ",", "subscription_name", ",", "peek_lock", "=", "True", ",", "timeout", "=", "60", ")", ":", "if", "peek_lock", ":", "return", "self", ".", "peek_lock_subscription_message", "(", "topic_name",...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.create_event_hub
Creates a new Event Hub. hub_name: Name of event hub. hub: Optional. Event hub properties. Instance of EventHub class. hub.message_retention_in_days: Number of days to retain the events for this Event Hub. hub.status: Status of the Event H...
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def create_event_hub(self, hub_name, hub=None, fail_on_exist=False): ''' Creates a new Event Hub. hub_name: Name of event hub. hub: Optional. Event hub properties. Instance of EventHub class. hub.message_retention_in_days: Number of days to re...
def create_event_hub(self, hub_name, hub=None, fail_on_exist=False): ''' Creates a new Event Hub. hub_name: Name of event hub. hub: Optional. Event hub properties. Instance of EventHub class. hub.message_retention_in_days: Number of days to re...
[ "Creates", "a", "new", "Event", "Hub", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L1091-L1127
[ "def", "create_event_hub", "(", "self", ",", "hub_name", ",", "hub", "=", "None", ",", "fail_on_exist", "=", "False", ")", ":", "_validate_not_none", "(", "'hub_name'", ",", "hub_name", ")", "request", "=", "HTTPRequest", "(", ")", "request", ".", "method", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.update_event_hub
Updates an Event Hub. hub_name: Name of event hub. hub: Optional. Event hub properties. Instance of EventHub class. hub.message_retention_in_days: Number of days to retain the events for this Event Hub.
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def update_event_hub(self, hub_name, hub=None): ''' Updates an Event Hub. hub_name: Name of event hub. hub: Optional. Event hub properties. Instance of EventHub class. hub.message_retention_in_days: Number of days to retain the events for this...
def update_event_hub(self, hub_name, hub=None): ''' Updates an Event Hub. hub_name: Name of event hub. hub: Optional. Event hub properties. Instance of EventHub class. hub.message_retention_in_days: Number of days to retain the events for this...
[ "Updates", "an", "Event", "Hub", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L1129-L1151
[ "def", "update_event_hub", "(", "self", ",", "hub_name", ",", "hub", "=", "None", ")", ":", "_validate_not_none", "(", "'hub_name'", ",", "hub_name", ")", "request", "=", "HTTPRequest", "(", ")", "request", ".", "method", "=", "'PUT'", "request", ".", "hos...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.get_event_hub
Retrieves an existing event hub. hub_name: Name of the event hub.
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def get_event_hub(self, hub_name): ''' Retrieves an existing event hub. hub_name: Name of the event hub. ''' _validate_not_none('hub_name', hub_name) request = HTTPRequest() request.method = 'GET' request.host = self._get_host() reques...
def get_event_hub(self, hub_name): ''' Retrieves an existing event hub. hub_name: Name of the event hub. ''' _validate_not_none('hub_name', hub_name) request = HTTPRequest() request.method = 'GET' request.host = self._get_host() reques...
[ "Retrieves", "an", "existing", "event", "hub", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L1181-L1197
[ "def", "get_event_hub", "(", "self", ",", "hub_name", ")", ":", "_validate_not_none", "(", "'hub_name'", ",", "hub_name", ")", "request", "=", "HTTPRequest", "(", ")", "request", ".", "method", "=", "'GET'", "request", ".", "host", "=", "self", ".", "_get_...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService.send_event
Sends a new message event to an Event Hub.
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def send_event(self, hub_name, message, device_id=None, broker_properties=None): ''' Sends a new message event to an Event Hub. ''' _validate_not_none('hub_name', hub_name) request = HTTPRequest() request.method = 'POST' request.host = self._get...
def send_event(self, hub_name, message, device_id=None, broker_properties=None): ''' Sends a new message event to an Event Hub. ''' _validate_not_none('hub_name', hub_name) request = HTTPRequest() request.method = 'POST' request.host = self._get...
[ "Sends", "a", "new", "message", "event", "to", "an", "Event", "Hub", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L1199-L1218
[ "def", "send_event", "(", "self", ",", "hub_name", ",", "message", ",", "device_id", "=", "None", ",", "broker_properties", "=", "None", ")", ":", "_validate_not_none", "(", "'hub_name'", ",", "hub_name", ")", "request", "=", "HTTPRequest", "(", ")", "reques...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusService._update_service_bus_header
Add additional headers for Service Bus.
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def _update_service_bus_header(self, request): ''' Add additional headers for Service Bus. ''' if request.method in ['PUT', 'POST', 'MERGE', 'DELETE']: request.headers.append(('Content-Length', str(len(request.body)))) # if it is not GET or HEAD request, must set content-type. ...
def _update_service_bus_header(self, request): ''' Add additional headers for Service Bus. ''' if request.method in ['PUT', 'POST', 'MERGE', 'DELETE']: request.headers.append(('Content-Length', str(len(request.body)))) # if it is not GET or HEAD request, must set content-type. ...
[ "Add", "additional", "headers", "for", "Service", "Bus", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L1231-L1250
[ "def", "_update_service_bus_header", "(", "self", ",", "request", ")", ":", "if", "request", ".", "method", "in", "[", "'PUT'", ",", "'POST'", ",", "'MERGE'", ",", "'DELETE'", "]", ":", "request", ".", "headers", ".", "append", "(", "(", "'Content-Length'"...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusWrapTokenAuthentication._get_authorization
return the signed string with token.
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def _get_authorization(self, request, httpclient): ''' return the signed string with token. ''' return 'WRAP access_token="' + \ self._get_token(request.host, request.path, httpclient) + '"'
def _get_authorization(self, request, httpclient): ''' return the signed string with token. ''' return 'WRAP access_token="' + \ self._get_token(request.host, request.path, httpclient) + '"'
[ "return", "the", "signed", "string", "with", "token", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L1267-L1270
[ "def", "_get_authorization", "(", "self", ",", "request", ",", "httpclient", ")", ":", "return", "'WRAP access_token=\"'", "+", "self", ".", "_get_token", "(", "request", ".", "host", ",", "request", ".", "path", ",", "httpclient", ")", "+", "'\"'" ]
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusWrapTokenAuthentication._token_is_expired
Check if token expires or not.
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def _token_is_expired(self, token): # pylint: disable=no-self-use ''' Check if token expires or not. ''' time_pos_begin = token.find('ExpiresOn=') + len('ExpiresOn=') time_pos_end = token.find('&', time_pos_begin) token_expire_time = int(token[time_pos_begin:time_pos_end]) time_...
def _token_is_expired(self, token): # pylint: disable=no-self-use ''' Check if token expires or not. ''' time_pos_begin = token.find('ExpiresOn=') + len('ExpiresOn=') time_pos_end = token.find('&', time_pos_begin) token_expire_time = int(token[time_pos_begin:time_pos_end]) time_...
[ "Check", "if", "token", "expires", "or", "not", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L1272-L1281
[ "def", "_token_is_expired", "(", "self", ",", "token", ")", ":", "# pylint: disable=no-self-use", "time_pos_begin", "=", "token", ".", "find", "(", "'ExpiresOn='", ")", "+", "len", "(", "'ExpiresOn='", ")", "time_pos_end", "=", "token", ".", "find", "(", "'&'"...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusWrapTokenAuthentication._get_token
Returns token for the request. host: the Service Bus service request. path: the Service Bus service request.
azure-servicebus/azure/servicebus/control_client/servicebusservice.py
def _get_token(self, host, path, httpclient): ''' Returns token for the request. host: the Service Bus service request. path: the Service Bus service request. ''' wrap_scope = 'http://' + host + path + self.issuer + self.account_key # Che...
def _get_token(self, host, path, httpclient): ''' Returns token for the request. host: the Service Bus service request. path: the Service Bus service request. ''' wrap_scope = 'http://' + host + path + self.issuer + self.account_key # Che...
[ "Returns", "token", "for", "the", "request", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/servicebusservice.py#L1283-L1318
[ "def", "_get_token", "(", "self", ",", "host", ",", "path", ",", "httpclient", ")", ":", "wrap_scope", "=", "'http://'", "+", "host", "+", "path", "+", "self", ".", "issuer", "+", "self", ".", "account_key", "# Check whether has unexpired cache, return cached to...
d7306fde32f60a293a7567678692bdad31e4b667
test
_HTTPClient._update_request_uri_query
pulls the query string out of the URI and moves it into the query portion of the request object. If there are already query parameters on the request the parameters in the URI will appear after the existing parameters
azure-servicemanagement-legacy/azure/servicemanagement/_http/httpclient.py
def _update_request_uri_query(self, request): '''pulls the query string out of the URI and moves it into the query portion of the request object. If there are already query parameters on the request the parameters in the URI will appear after the existing parameters''' if '?' i...
def _update_request_uri_query(self, request): '''pulls the query string out of the URI and moves it into the query portion of the request object. If there are already query parameters on the request the parameters in the URI will appear after the existing parameters''' if '?' i...
[ "pulls", "the", "query", "string", "out", "of", "the", "URI", "and", "moves", "it", "into", "the", "query", "portion", "of", "the", "request", "object", ".", "If", "there", "are", "already", "query", "parameters", "on", "the", "request", "the", "parameters...
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicemanagement-legacy/azure/servicemanagement/_http/httpclient.py#L144-L169
[ "def", "_update_request_uri_query", "(", "self", ",", "request", ")", ":", "if", "'?'", "in", "request", ".", "path", ":", "request", ".", "path", ",", "_", ",", "query_string", "=", "request", ".", "path", ".", "partition", "(", "'?'", ")", "if", "que...
d7306fde32f60a293a7567678692bdad31e4b667
test
ManagedClustersOperations.reset_service_principal_profile
Reset Service Principal Profile of a managed cluster. Update the service principal Profile for a managed cluster. :param resource_group_name: The name of the resource group. :type resource_group_name: str :param resource_name: The name of the managed cluster resource. :type res...
azure-mgmt-containerservice/azure/mgmt/containerservice/v2018_08_01_preview/operations/managed_clusters_operations.py
def reset_service_principal_profile( self, resource_group_name, resource_name, client_id, secret=None, custom_headers=None, raw=False, polling=True, **operation_config): """Reset Service Principal Profile of a managed cluster. Update the service principal Profile for a managed cluster. ...
def reset_service_principal_profile( self, resource_group_name, resource_name, client_id, secret=None, custom_headers=None, raw=False, polling=True, **operation_config): """Reset Service Principal Profile of a managed cluster. Update the service principal Profile for a managed cluster. ...
[ "Reset", "Service", "Principal", "Profile", "of", "a", "managed", "cluster", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-containerservice/azure/mgmt/containerservice/v2018_08_01_preview/operations/managed_clusters_operations.py#L850-L897
[ "def", "reset_service_principal_profile", "(", "self", ",", "resource_group_name", ",", "resource_name", ",", "client_id", ",", "secret", "=", "None", ",", "custom_headers", "=", "None", ",", "raw", "=", "False", ",", "polling", "=", "True", ",", "*", "*", "...
d7306fde32f60a293a7567678692bdad31e4b667
test
Message.delete
Deletes itself if find queue name or topic name and subscription name.
azure-servicebus/azure/servicebus/control_client/models.py
def delete(self): ''' Deletes itself if find queue name or topic name and subscription name. ''' if self._queue_name: self.service_bus_service.delete_queue_message( self._queue_name, self.broker_properties['SequenceNumber'], self.broker...
def delete(self): ''' Deletes itself if find queue name or topic name and subscription name. ''' if self._queue_name: self.service_bus_service.delete_queue_message( self._queue_name, self.broker_properties['SequenceNumber'], self.broker...
[ "Deletes", "itself", "if", "find", "queue", "name", "or", "topic", "name", "and", "subscription", "name", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/models.py#L185-L200
[ "def", "delete", "(", "self", ")", ":", "if", "self", ".", "_queue_name", ":", "self", ".", "service_bus_service", ".", "delete_queue_message", "(", "self", ".", "_queue_name", ",", "self", ".", "broker_properties", "[", "'SequenceNumber'", "]", ",", "self", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
Message.unlock
Unlocks itself if find queue name or topic name and subscription name.
azure-servicebus/azure/servicebus/control_client/models.py
def unlock(self): ''' Unlocks itself if find queue name or topic name and subscription name. ''' if self._queue_name: self.service_bus_service.unlock_queue_message( self._queue_name, self.broker_properties['SequenceNumber'], self.broker...
def unlock(self): ''' Unlocks itself if find queue name or topic name and subscription name. ''' if self._queue_name: self.service_bus_service.unlock_queue_message( self._queue_name, self.broker_properties['SequenceNumber'], self.broker...
[ "Unlocks", "itself", "if", "find", "queue", "name", "or", "topic", "name", "and", "subscription", "name", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/models.py#L202-L217
[ "def", "unlock", "(", "self", ")", ":", "if", "self", ".", "_queue_name", ":", "self", ".", "service_bus_service", ".", "unlock_queue_message", "(", "self", ".", "_queue_name", ",", "self", ".", "broker_properties", "[", "'SequenceNumber'", "]", ",", "self", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
Message.renew_lock
Renew lock on itself if find queue name or topic name and subscription name.
azure-servicebus/azure/servicebus/control_client/models.py
def renew_lock(self): ''' Renew lock on itself if find queue name or topic name and subscription name. ''' if self._queue_name: self.service_bus_service.renew_lock_queue_message( self._queue_name, self.broker_properties['SequenceNumber'], ...
def renew_lock(self): ''' Renew lock on itself if find queue name or topic name and subscription name. ''' if self._queue_name: self.service_bus_service.renew_lock_queue_message( self._queue_name, self.broker_properties['SequenceNumber'], ...
[ "Renew", "lock", "on", "itself", "if", "find", "queue", "name", "or", "topic", "name", "and", "subscription", "name", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/models.py#L219-L234
[ "def", "renew_lock", "(", "self", ")", ":", "if", "self", ".", "_queue_name", ":", "self", ".", "service_bus_service", ".", "renew_lock_queue_message", "(", "self", ".", "_queue_name", ",", "self", ".", "broker_properties", "[", "'SequenceNumber'", "]", ",", "...
d7306fde32f60a293a7567678692bdad31e4b667
test
Message.add_headers
add addtional headers to request for message request.
azure-servicebus/azure/servicebus/control_client/models.py
def add_headers(self, request): ''' add addtional headers to request for message request.''' # Adds custom properties if self.custom_properties: for name, value in self.custom_properties.items(): request.headers.append((name, self._serialize_escaped_properties_value(...
def add_headers(self, request): ''' add addtional headers to request for message request.''' # Adds custom properties if self.custom_properties: for name, value in self.custom_properties.items(): request.headers.append((name, self._serialize_escaped_properties_value(...
[ "add", "addtional", "headers", "to", "request", "for", "message", "request", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/models.py#L256-L279
[ "def", "add_headers", "(", "self", ",", "request", ")", ":", "# Adds custom properties", "if", "self", ".", "custom_properties", ":", "for", "name", ",", "value", "in", "self", ".", "custom_properties", ".", "items", "(", ")", ":", "request", ".", "headers",...
d7306fde32f60a293a7567678692bdad31e4b667
test
Message.as_batch_body
return the current message as expected by batch body format
azure-servicebus/azure/servicebus/control_client/models.py
def as_batch_body(self): ''' return the current message as expected by batch body format''' if sys.version_info >= (3,) and isinstance(self.body, bytes): # It HAS to be string to be serialized in JSON body = self.body.decode('utf-8') else: # Python 2.7 people ...
def as_batch_body(self): ''' return the current message as expected by batch body format''' if sys.version_info >= (3,) and isinstance(self.body, bytes): # It HAS to be string to be serialized in JSON body = self.body.decode('utf-8') else: # Python 2.7 people ...
[ "return", "the", "current", "message", "as", "expected", "by", "batch", "body", "format" ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/control_client/models.py#L281-L303
[ "def", "as_batch_body", "(", "self", ")", ":", "if", "sys", ".", "version_info", ">=", "(", "3", ",", ")", "and", "isinstance", "(", "self", ".", "body", ",", "bytes", ")", ":", "# It HAS to be string to be serialized in JSON", "body", "=", "self", ".", "b...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceFabricClientAPIs.get_cluster_health
Gets the health of a Service Fabric cluster. Use EventsHealthStateFilter to filter the collection of health events reported on the cluster based on the health state. Similarly, use NodesHealthStateFilter and ApplicationsHealthStateFilter to filter the collection of nodes and application...
azure-servicefabric/azure/servicefabric/service_fabric_client_ap_is.py
def get_cluster_health( self, nodes_health_state_filter=0, applications_health_state_filter=0, events_health_state_filter=0, exclude_health_statistics=False, include_system_application_health_statistics=False, timeout=60, custom_headers=None, raw=False, **operation_config): """Gets the health of a S...
def get_cluster_health( self, nodes_health_state_filter=0, applications_health_state_filter=0, events_health_state_filter=0, exclude_health_statistics=False, include_system_application_health_statistics=False, timeout=60, custom_headers=None, raw=False, **operation_config): """Gets the health of a S...
[ "Gets", "the", "health", "of", "a", "Service", "Fabric", "cluster", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicefabric/azure/servicefabric/service_fabric_client_ap_is.py#L184-L346
[ "def", "get_cluster_health", "(", "self", ",", "nodes_health_state_filter", "=", "0", ",", "applications_health_state_filter", "=", "0", ",", "events_health_state_filter", "=", "0", ",", "exclude_health_statistics", "=", "False", ",", "include_system_application_health_stat...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceFabricClientAPIs.get_cluster_health_using_policy
Gets the health of a Service Fabric cluster using the specified policy. Use EventsHealthStateFilter to filter the collection of health events reported on the cluster based on the health state. Similarly, use NodesHealthStateFilter and ApplicationsHealthStateFilter to filter the collecti...
azure-servicefabric/azure/servicefabric/service_fabric_client_ap_is.py
def get_cluster_health_using_policy( self, nodes_health_state_filter=0, applications_health_state_filter=0, events_health_state_filter=0, exclude_health_statistics=False, include_system_application_health_statistics=False, timeout=60, application_health_policy_map=None, cluster_health_policy=None, custom_he...
def get_cluster_health_using_policy( self, nodes_health_state_filter=0, applications_health_state_filter=0, events_health_state_filter=0, exclude_health_statistics=False, include_system_application_health_statistics=False, timeout=60, application_health_policy_map=None, cluster_health_policy=None, custom_he...
[ "Gets", "the", "health", "of", "a", "Service", "Fabric", "cluster", "using", "the", "specified", "policy", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicefabric/azure/servicefabric/service_fabric_client_ap_is.py#L349-L539
[ "def", "get_cluster_health_using_policy", "(", "self", ",", "nodes_health_state_filter", "=", "0", ",", "applications_health_state_filter", "=", "0", ",", "events_health_state_filter", "=", "0", ",", "exclude_health_statistics", "=", "False", ",", "include_system_applicatio...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceFabricClientAPIs.unprovision_application_type
Removes or unregisters a Service Fabric application type from the cluster. This operation can only be performed if all application instances of the application type have been deleted. Once the application type is unregistered, no new application instances can be created for this ...
azure-servicefabric/azure/servicefabric/service_fabric_client_ap_is.py
def unprovision_application_type( self, application_type_name, application_type_version, timeout=60, async_parameter=None, custom_headers=None, raw=False, **operation_config): """Removes or unregisters a Service Fabric application type from the cluster. This operation can only be pe...
def unprovision_application_type( self, application_type_name, application_type_version, timeout=60, async_parameter=None, custom_headers=None, raw=False, **operation_config): """Removes or unregisters a Service Fabric application type from the cluster. This operation can only be pe...
[ "Removes", "or", "unregisters", "a", "Service", "Fabric", "application", "type", "from", "the", "cluster", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicefabric/azure/servicefabric/service_fabric_client_ap_is.py#L2842-L2914
[ "def", "unprovision_application_type", "(", "self", ",", "application_type_name", ",", "application_type_version", ",", "timeout", "=", "60", ",", "async_parameter", "=", "None", ",", "custom_headers", "=", "None", ",", "raw", "=", "False", ",", "*", "*", "opera...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceFabricClientAPIs.get_repair_task_list
Gets a list of repair tasks matching the given filters. This API supports the Service Fabric platform; it is not meant to be used directly from your code. :param task_id_filter: The repair task ID prefix to be matched. :type task_id_filter: str :param state_filter: A bitwise-OR...
azure-servicefabric/azure/servicefabric/service_fabric_client_ap_is.py
def get_repair_task_list( self, task_id_filter=None, state_filter=None, executor_filter=None, custom_headers=None, raw=False, **operation_config): """Gets a list of repair tasks matching the given filters. This API supports the Service Fabric platform; it is not meant to be used dir...
def get_repair_task_list( self, task_id_filter=None, state_filter=None, executor_filter=None, custom_headers=None, raw=False, **operation_config): """Gets a list of repair tasks matching the given filters. This API supports the Service Fabric platform; it is not meant to be used dir...
[ "Gets", "a", "list", "of", "repair", "tasks", "matching", "the", "given", "filters", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicefabric/azure/servicefabric/service_fabric_client_ap_is.py#L7441-L7511
[ "def", "get_repair_task_list", "(", "self", ",", "task_id_filter", "=", "None", ",", "state_filter", "=", "None", ",", "executor_filter", "=", "None", ",", "custom_headers", "=", "None", ",", "raw", "=", "False", ",", "*", "*", "operation_config", ")", ":", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceFabricClientAPIs.submit_property_batch
Submits a property batch. Submits a batch of property operations. Either all or none of the operations will be committed. :param name_id: The Service Fabric name, without the 'fabric:' URI scheme. :type name_id: str :param timeout: The server timeout for performing the...
azure-servicefabric/azure/servicefabric/service_fabric_client_ap_is.py
def submit_property_batch( self, name_id, timeout=60, operations=None, custom_headers=None, raw=False, **operation_config): """Submits a property batch. Submits a batch of property operations. Either all or none of the operations will be committed. :param name_id: The Servi...
def submit_property_batch( self, name_id, timeout=60, operations=None, custom_headers=None, raw=False, **operation_config): """Submits a property batch. Submits a batch of property operations. Either all or none of the operations will be committed. :param name_id: The Servi...
[ "Submits", "a", "property", "batch", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicefabric/azure/servicefabric/service_fabric_client_ap_is.py#L14626-L14701
[ "def", "submit_property_batch", "(", "self", ",", "name_id", ",", "timeout", "=", "60", ",", "operations", "=", "None", ",", "custom_headers", "=", "None", ",", "raw", "=", "False", ",", "*", "*", "operation_config", ")", ":", "property_batch_description_list"...
d7306fde32f60a293a7567678692bdad31e4b667
test
FeatureClient.models
Module depends on the API version: * 2015-12-01: :mod:`v2015_12_01.models<azure.mgmt.resource.features.v2015_12_01.models>`
azure-mgmt-resource/azure/mgmt/resource/features/feature_client.py
def models(cls, api_version=DEFAULT_API_VERSION): """Module depends on the API version: * 2015-12-01: :mod:`v2015_12_01.models<azure.mgmt.resource.features.v2015_12_01.models>` """ if api_version == '2015-12-01': from .v2015_12_01 import models return models ...
def models(cls, api_version=DEFAULT_API_VERSION): """Module depends on the API version: * 2015-12-01: :mod:`v2015_12_01.models<azure.mgmt.resource.features.v2015_12_01.models>` """ if api_version == '2015-12-01': from .v2015_12_01 import models return models ...
[ "Module", "depends", "on", "the", "API", "version", ":" ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-resource/azure/mgmt/resource/features/feature_client.py#L101-L109
[ "def", "models", "(", "cls", ",", "api_version", "=", "DEFAULT_API_VERSION", ")", ":", "if", "api_version", "==", "'2015-12-01'", ":", "from", ".", "v2015_12_01", "import", "models", "return", "models", "raise", "NotImplementedError", "(", "\"APIVersion {} is not av...
d7306fde32f60a293a7567678692bdad31e4b667
test
FeatureClient.features
Instance depends on the API version: * 2015-12-01: :class:`FeaturesOperations<azure.mgmt.resource.features.v2015_12_01.operations.FeaturesOperations>`
azure-mgmt-resource/azure/mgmt/resource/features/feature_client.py
def features(self): """Instance depends on the API version: * 2015-12-01: :class:`FeaturesOperations<azure.mgmt.resource.features.v2015_12_01.operations.FeaturesOperations>` """ api_version = self._get_api_version('features') if api_version == '2015-12-01': from ....
def features(self): """Instance depends on the API version: * 2015-12-01: :class:`FeaturesOperations<azure.mgmt.resource.features.v2015_12_01.operations.FeaturesOperations>` """ api_version = self._get_api_version('features') if api_version == '2015-12-01': from ....
[ "Instance", "depends", "on", "the", "API", "version", ":" ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-resource/azure/mgmt/resource/features/feature_client.py#L112-L122
[ "def", "features", "(", "self", ")", ":", "api_version", "=", "self", ".", "_get_api_version", "(", "'features'", ")", "if", "api_version", "==", "'2015-12-01'", ":", "from", ".", "v2015_12_01", ".", "operations", "import", "FeaturesOperations", "as", "Operation...
d7306fde32f60a293a7567678692bdad31e4b667
test
_general_error_handler
Simple error handler for azure.
azure-servicemanagement-legacy/azure/servicemanagement/_common_error.py
def _general_error_handler(http_error): ''' Simple error handler for azure.''' message = str(http_error) if http_error.respbody is not None: message += '\n' + http_error.respbody.decode('utf-8-sig') raise AzureHttpError(message, http_error.status)
def _general_error_handler(http_error): ''' Simple error handler for azure.''' message = str(http_error) if http_error.respbody is not None: message += '\n' + http_error.respbody.decode('utf-8-sig') raise AzureHttpError(message, http_error.status)
[ "Simple", "error", "handler", "for", "azure", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicemanagement-legacy/azure/servicemanagement/_common_error.py#L29-L34
[ "def", "_general_error_handler", "(", "http_error", ")", ":", "message", "=", "str", "(", "http_error", ")", "if", "http_error", ".", "respbody", "is", "not", "None", ":", "message", "+=", "'\\n'", "+", "http_error", ".", "respbody", ".", "decode", "(", "'...
d7306fde32f60a293a7567678692bdad31e4b667
test
WebAppsOperations.start_web_site_network_trace_operation
Start capturing network packets for the site. Start capturing network packets for the site. :param resource_group_name: Name of the resource group to which the resource belongs. :type resource_group_name: str :param name: The name of the web app. :type name: str ...
azure-mgmt-web/azure/mgmt/web/operations/web_apps_operations.py
def start_web_site_network_trace_operation( self, resource_group_name, name, duration_in_seconds=None, max_frame_length=None, sas_url=None, custom_headers=None, raw=False, polling=True, **operation_config): """Start capturing network packets for the site. Start capturing network packets for...
def start_web_site_network_trace_operation( self, resource_group_name, name, duration_in_seconds=None, max_frame_length=None, sas_url=None, custom_headers=None, raw=False, polling=True, **operation_config): """Start capturing network packets for the site. Start capturing network packets for...
[ "Start", "capturing", "network", "packets", "for", "the", "site", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-web/azure/mgmt/web/operations/web_apps_operations.py#L7932-L7989
[ "def", "start_web_site_network_trace_operation", "(", "self", ",", "resource_group_name", ",", "name", ",", "duration_in_seconds", "=", "None", ",", "max_frame_length", "=", "None", ",", "sas_url", "=", "None", ",", "custom_headers", "=", "None", ",", "raw", "=", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
WebAppsOperations.list_slot_differences_slot
Get the difference in configuration settings between two web app slots. Get the difference in configuration settings between two web app slots. :param resource_group_name: Name of the resource group to which the resource belongs. :type resource_group_name: str :param name: Nam...
azure-mgmt-web/azure/mgmt/web/operations/web_apps_operations.py
def list_slot_differences_slot( self, resource_group_name, name, slot, target_slot, preserve_vnet, custom_headers=None, raw=False, **operation_config): """Get the difference in configuration settings between two web app slots. Get the difference in configuration settings between two web app...
def list_slot_differences_slot( self, resource_group_name, name, slot, target_slot, preserve_vnet, custom_headers=None, raw=False, **operation_config): """Get the difference in configuration settings between two web app slots. Get the difference in configuration settings between two web app...
[ "Get", "the", "difference", "in", "configuration", "settings", "between", "two", "web", "app", "slots", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-web/azure/mgmt/web/operations/web_apps_operations.py#L21249-L21333
[ "def", "list_slot_differences_slot", "(", "self", ",", "resource_group_name", ",", "name", ",", "slot", ",", "target_slot", ",", "preserve_vnet", ",", "custom_headers", "=", "None", ",", "raw", "=", "False", ",", "*", "*", "operation_config", ")", ":", "slot_s...
d7306fde32f60a293a7567678692bdad31e4b667
test
WebAppsOperations.swap_slot_slot
Swaps two deployment slots of an app. Swaps two deployment slots of an app. :param resource_group_name: Name of the resource group to which the resource belongs. :type resource_group_name: str :param name: Name of the app. :type name: str :param slot: Name of t...
azure-mgmt-web/azure/mgmt/web/operations/web_apps_operations.py
def swap_slot_slot( self, resource_group_name, name, slot, target_slot, preserve_vnet, custom_headers=None, raw=False, polling=True, **operation_config): """Swaps two deployment slots of an app. Swaps two deployment slots of an app. :param resource_group_name: Name of the resource ...
def swap_slot_slot( self, resource_group_name, name, slot, target_slot, preserve_vnet, custom_headers=None, raw=False, polling=True, **operation_config): """Swaps two deployment slots of an app. Swaps two deployment slots of an app. :param resource_group_name: Name of the resource ...
[ "Swaps", "two", "deployment", "slots", "of", "an", "app", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-web/azure/mgmt/web/operations/web_apps_operations.py#L21381-L21433
[ "def", "swap_slot_slot", "(", "self", ",", "resource_group_name", ",", "name", ",", "slot", ",", "target_slot", ",", "preserve_vnet", ",", "custom_headers", "=", "None", ",", "raw", "=", "False", ",", "polling", "=", "True", ",", "*", "*", "operation_config"...
d7306fde32f60a293a7567678692bdad31e4b667
test
EventsOperations.get_by_type
Execute OData query. Executes an OData query for events. :param app_id: ID of the application. This is Application ID from the API Access settings blade in the Azure portal. :type app_id: str :param event_type: The type of events to query; either a standard event type...
azure-applicationinsights/azure/applicationinsights/operations/events_operations.py
def get_by_type( self, app_id, event_type, timespan=None, filter=None, search=None, orderby=None, select=None, skip=None, top=None, format=None, count=None, apply=None, custom_headers=None, raw=False, **operation_config): """Execute OData query. Executes an OData query for events. ...
def get_by_type( self, app_id, event_type, timespan=None, filter=None, search=None, orderby=None, select=None, skip=None, top=None, format=None, count=None, apply=None, custom_headers=None, raw=False, **operation_config): """Execute OData query. Executes an OData query for events. ...
[ "Execute", "OData", "query", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-applicationinsights/azure/applicationinsights/operations/events_operations.py#L36-L143
[ "def", "get_by_type", "(", "self", ",", "app_id", ",", "event_type", ",", "timespan", "=", "None", ",", "filter", "=", "None", ",", "search", "=", "None", ",", "orderby", "=", "None", ",", "select", "=", "None", ",", "skip", "=", "None", ",", "top", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
LargeFaceListOperations.add_face_from_stream
Add a face to a large face list. The input face is specified as an image with a targetFace rectangle. It returns a persistedFaceId representing the added face, and persistedFaceId will not expire. :param large_face_list_id: Id referencing a particular large face list. :type lar...
azure-cognitiveservices-vision-face/azure/cognitiveservices/vision/face/operations/large_face_list_operations.py
def add_face_from_stream( self, large_face_list_id, image, user_data=None, target_face=None, custom_headers=None, raw=False, callback=None, **operation_config): """Add a face to a large face list. The input face is specified as an image with a targetFace rectangle. It returns a persistedFace...
def add_face_from_stream( self, large_face_list_id, image, user_data=None, target_face=None, custom_headers=None, raw=False, callback=None, **operation_config): """Add a face to a large face list. The input face is specified as an image with a targetFace rectangle. It returns a persistedFace...
[ "Add", "a", "face", "to", "a", "large", "face", "list", ".", "The", "input", "face", "is", "specified", "as", "an", "image", "with", "a", "targetFace", "rectangle", ".", "It", "returns", "a", "persistedFaceId", "representing", "the", "added", "face", "and"...
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-cognitiveservices-vision-face/azure/cognitiveservices/vision/face/operations/large_face_list_operations.py#L778-L855
[ "def", "add_face_from_stream", "(", "self", ",", "large_face_list_id", ",", "image", ",", "user_data", "=", "None", ",", "target_face", "=", "None", ",", "custom_headers", "=", "None", ",", "raw", "=", "False", ",", "callback", "=", "None", ",", "*", "*", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
KeyVaultAuthBase._handle_redirect
Reset auth_attempted on redirects.
azure-keyvault/azure/keyvault/key_vault_authentication.py
def _handle_redirect(self, r, **kwargs): """Reset auth_attempted on redirects.""" if r.is_redirect: self._thread_local.auth_attempted = False
def _handle_redirect(self, r, **kwargs): """Reset auth_attempted on redirects.""" if r.is_redirect: self._thread_local.auth_attempted = False
[ "Reset", "auth_attempted", "on", "redirects", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-keyvault/azure/keyvault/key_vault_authentication.py#L93-L96
[ "def", "_handle_redirect", "(", "self", ",", "r", ",", "*", "*", "kwargs", ")", ":", "if", "r", ".", "is_redirect", ":", "self", ".", "_thread_local", ".", "auth_attempted", "=", "False" ]
d7306fde32f60a293a7567678692bdad31e4b667
test
KeyVaultAuthBase._handle_401
Takes the response authenticates and resends if neccissary :return: The final response to the authenticated request :rtype: requests.Response
azure-keyvault/azure/keyvault/key_vault_authentication.py
def _handle_401(self, response, **kwargs): """ Takes the response authenticates and resends if neccissary :return: The final response to the authenticated request :rtype: requests.Response """ # If response is not 401 do not auth and return response if not respons...
def _handle_401(self, response, **kwargs): """ Takes the response authenticates and resends if neccissary :return: The final response to the authenticated request :rtype: requests.Response """ # If response is not 401 do not auth and return response if not respons...
[ "Takes", "the", "response", "authenticates", "and", "resends", "if", "neccissary", ":", "return", ":", "The", "final", "response", "to", "the", "authenticated", "request", ":", "rtype", ":", "requests", ".", "Response" ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-keyvault/azure/keyvault/key_vault_authentication.py#L98-L159
[ "def", "_handle_401", "(", "self", ",", "response", ",", "*", "*", "kwargs", ")", ":", "# If response is not 401 do not auth and return response", "if", "not", "response", ".", "status_code", "==", "401", ":", "self", ".", "_thread_local", ".", "auth_attempted", "...
d7306fde32f60a293a7567678692bdad31e4b667
test
MigrationConfigsOperations.create_and_start_migration
Creates Migration configuration and starts migration of entities from Standard to Premium namespace. :param resource_group_name: Name of the Resource group within the Azure subscription. :type resource_group_name: str :param namespace_name: The namespace name :type name...
azure-mgmt-servicebus/azure/mgmt/servicebus/operations/migration_configs_operations.py
def create_and_start_migration( self, resource_group_name, namespace_name, target_namespace, post_migration_name, custom_headers=None, raw=False, polling=True, **operation_config): """Creates Migration configuration and starts migration of entities from Standard to Premium namespace. ...
def create_and_start_migration( self, resource_group_name, namespace_name, target_namespace, post_migration_name, custom_headers=None, raw=False, polling=True, **operation_config): """Creates Migration configuration and starts migration of entities from Standard to Premium namespace. ...
[ "Creates", "Migration", "configuration", "and", "starts", "migration", "of", "entities", "from", "Standard", "to", "Premium", "namespace", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-servicebus/azure/mgmt/servicebus/operations/migration_configs_operations.py#L164-L220
[ "def", "create_and_start_migration", "(", "self", ",", "resource_group_name", ",", "namespace_name", ",", "target_namespace", ",", "post_migration_name", ",", "custom_headers", "=", "None", ",", "raw", "=", "False", ",", "polling", "=", "True", ",", "*", "*", "o...
d7306fde32f60a293a7567678692bdad31e4b667
test
EventGridClient.publish_events
Publishes a batch of events to an Azure Event Grid topic. :param topic_hostname: The host name of the topic, e.g. topic1.westus2-1.eventgrid.azure.net :type topic_hostname: str :param events: An array of events to be published to Event Grid. :type events: list[~azure.eventgrid....
azure-eventgrid/azure/eventgrid/event_grid_client.py
def publish_events( self, topic_hostname, events, custom_headers=None, raw=False, **operation_config): """Publishes a batch of events to an Azure Event Grid topic. :param topic_hostname: The host name of the topic, e.g. topic1.westus2-1.eventgrid.azure.net :type topic_hostn...
def publish_events( self, topic_hostname, events, custom_headers=None, raw=False, **operation_config): """Publishes a batch of events to an Azure Event Grid topic. :param topic_hostname: The host name of the topic, e.g. topic1.westus2-1.eventgrid.azure.net :type topic_hostn...
[ "Publishes", "a", "batch", "of", "events", "to", "an", "Azure", "Event", "Grid", "topic", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-eventgrid/azure/eventgrid/event_grid_client.py#L67-L116
[ "def", "publish_events", "(", "self", ",", "topic_hostname", ",", "events", ",", "custom_headers", "=", "None", ",", "raw", "=", "False", ",", "*", "*", "operation_config", ")", ":", "# Construct URL", "url", "=", "self", ".", "publish_events", ".", "metadat...
d7306fde32f60a293a7567678692bdad31e4b667
test
ResourcesOperations.move_resources
Moves resources from one resource group to another resource group. The resources to move must be in the same source resource group. The target resource group may be in a different subscription. When moving resources, both the source group and the target group are locked for the duration...
azure-mgmt-resource/azure/mgmt/resource/resources/v2018_05_01/operations/resources_operations.py
def move_resources( self, source_resource_group_name, resources=None, target_resource_group=None, custom_headers=None, raw=False, polling=True, **operation_config): """Moves resources from one resource group to another resource group. The resources to move must be in the same source resourc...
def move_resources( self, source_resource_group_name, resources=None, target_resource_group=None, custom_headers=None, raw=False, polling=True, **operation_config): """Moves resources from one resource group to another resource group. The resources to move must be in the same source resourc...
[ "Moves", "resources", "from", "one", "resource", "group", "to", "another", "resource", "group", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-resource/azure/mgmt/resource/resources/v2018_05_01/operations/resources_operations.py#L185-L233
[ "def", "move_resources", "(", "self", ",", "source_resource_group_name", ",", "resources", "=", "None", ",", "target_resource_group", "=", "None", ",", "custom_headers", "=", "None", ",", "raw", "=", "False", ",", "polling", "=", "True", ",", "*", "*", "oper...
d7306fde32f60a293a7567678692bdad31e4b667
test
ContainerServiceClient.models
Module depends on the API version: * 2017-07-01: :mod:`v2017_07_01.models<azure.mgmt.containerservice.v2017_07_01.models>` * 2018-03-31: :mod:`v2018_03_31.models<azure.mgmt.containerservice.v2018_03_31.models>` * 2018-08-01-preview: :mod:`v2018_08_01_preview.models<azure.mgmt.container...
azure-mgmt-containerservice/azure/mgmt/containerservice/container_service_client.py
def models(cls, api_version=DEFAULT_API_VERSION): """Module depends on the API version: * 2017-07-01: :mod:`v2017_07_01.models<azure.mgmt.containerservice.v2017_07_01.models>` * 2018-03-31: :mod:`v2018_03_31.models<azure.mgmt.containerservice.v2018_03_31.models>` * 2018-08-01-p...
def models(cls, api_version=DEFAULT_API_VERSION): """Module depends on the API version: * 2017-07-01: :mod:`v2017_07_01.models<azure.mgmt.containerservice.v2017_07_01.models>` * 2018-03-31: :mod:`v2018_03_31.models<azure.mgmt.containerservice.v2018_03_31.models>` * 2018-08-01-p...
[ "Module", "depends", "on", "the", "API", "version", ":" ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-containerservice/azure/mgmt/containerservice/container_service_client.py#L102-L126
[ "def", "models", "(", "cls", ",", "api_version", "=", "DEFAULT_API_VERSION", ")", ":", "if", "api_version", "==", "'2017-07-01'", ":", "from", ".", "v2017_07_01", "import", "models", "return", "models", "elif", "api_version", "==", "'2018-03-31'", ":", "from", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
ContainerServiceClient.agent_pools
Instance depends on the API version: * 2019-02-01: :class:`AgentPoolsOperations<azure.mgmt.containerservice.v2019_02_01.operations.AgentPoolsOperations>`
azure-mgmt-containerservice/azure/mgmt/containerservice/container_service_client.py
def agent_pools(self): """Instance depends on the API version: * 2019-02-01: :class:`AgentPoolsOperations<azure.mgmt.containerservice.v2019_02_01.operations.AgentPoolsOperations>` """ api_version = self._get_api_version('agent_pools') if api_version == '2019-02-01': ...
def agent_pools(self): """Instance depends on the API version: * 2019-02-01: :class:`AgentPoolsOperations<azure.mgmt.containerservice.v2019_02_01.operations.AgentPoolsOperations>` """ api_version = self._get_api_version('agent_pools') if api_version == '2019-02-01': ...
[ "Instance", "depends", "on", "the", "API", "version", ":" ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-containerservice/azure/mgmt/containerservice/container_service_client.py#L129-L139
[ "def", "agent_pools", "(", "self", ")", ":", "api_version", "=", "self", ".", "_get_api_version", "(", "'agent_pools'", ")", "if", "api_version", "==", "'2019-02-01'", ":", "from", ".", "v2019_02_01", ".", "operations", "import", "AgentPoolsOperations", "as", "O...
d7306fde32f60a293a7567678692bdad31e4b667
test
ContainerServiceClient.container_services
Instance depends on the API version: * 2017-07-01: :class:`ContainerServicesOperations<azure.mgmt.containerservice.v2017_07_01.operations.ContainerServicesOperations>`
azure-mgmt-containerservice/azure/mgmt/containerservice/container_service_client.py
def container_services(self): """Instance depends on the API version: * 2017-07-01: :class:`ContainerServicesOperations<azure.mgmt.containerservice.v2017_07_01.operations.ContainerServicesOperations>` """ api_version = self._get_api_version('container_services') if api_versio...
def container_services(self): """Instance depends on the API version: * 2017-07-01: :class:`ContainerServicesOperations<azure.mgmt.containerservice.v2017_07_01.operations.ContainerServicesOperations>` """ api_version = self._get_api_version('container_services') if api_versio...
[ "Instance", "depends", "on", "the", "API", "version", ":" ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-containerservice/azure/mgmt/containerservice/container_service_client.py#L142-L152
[ "def", "container_services", "(", "self", ")", ":", "api_version", "=", "self", ".", "_get_api_version", "(", "'container_services'", ")", "if", "api_version", "==", "'2017-07-01'", ":", "from", ".", "v2017_07_01", ".", "operations", "import", "ContainerServicesOper...
d7306fde32f60a293a7567678692bdad31e4b667
test
ContainerServiceClient.open_shift_managed_clusters
Instance depends on the API version: * 2018-09-30-preview: :class:`OpenShiftManagedClustersOperations<azure.mgmt.containerservice.v2018_09_30_preview.operations.OpenShiftManagedClustersOperations>`
azure-mgmt-containerservice/azure/mgmt/containerservice/container_service_client.py
def open_shift_managed_clusters(self): """Instance depends on the API version: * 2018-09-30-preview: :class:`OpenShiftManagedClustersOperations<azure.mgmt.containerservice.v2018_09_30_preview.operations.OpenShiftManagedClustersOperations>` """ api_version = self._get_api_version('ope...
def open_shift_managed_clusters(self): """Instance depends on the API version: * 2018-09-30-preview: :class:`OpenShiftManagedClustersOperations<azure.mgmt.containerservice.v2018_09_30_preview.operations.OpenShiftManagedClustersOperations>` """ api_version = self._get_api_version('ope...
[ "Instance", "depends", "on", "the", "API", "version", ":" ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-containerservice/azure/mgmt/containerservice/container_service_client.py#L174-L184
[ "def", "open_shift_managed_clusters", "(", "self", ")", ":", "api_version", "=", "self", ".", "_get_api_version", "(", "'open_shift_managed_clusters'", ")", "if", "api_version", "==", "'2018-09-30-preview'", ":", "from", ".", "v2018_09_30_preview", ".", "operations", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
ContainerServiceClient.operations
Instance depends on the API version: * 2018-03-31: :class:`Operations<azure.mgmt.containerservice.v2018_03_31.operations.Operations>` * 2018-08-01-preview: :class:`Operations<azure.mgmt.containerservice.v2018_08_01_preview.operations.Operations>` * 2019-02-01: :class:`Operations<azure....
azure-mgmt-containerservice/azure/mgmt/containerservice/container_service_client.py
def operations(self): """Instance depends on the API version: * 2018-03-31: :class:`Operations<azure.mgmt.containerservice.v2018_03_31.operations.Operations>` * 2018-08-01-preview: :class:`Operations<azure.mgmt.containerservice.v2018_08_01_preview.operations.Operations>` * 2019...
def operations(self): """Instance depends on the API version: * 2018-03-31: :class:`Operations<azure.mgmt.containerservice.v2018_03_31.operations.Operations>` * 2018-08-01-preview: :class:`Operations<azure.mgmt.containerservice.v2018_08_01_preview.operations.Operations>` * 2019...
[ "Instance", "depends", "on", "the", "API", "version", ":" ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-containerservice/azure/mgmt/containerservice/container_service_client.py#L187-L203
[ "def", "operations", "(", "self", ")", ":", "api_version", "=", "self", ".", "_get_api_version", "(", "'operations'", ")", "if", "api_version", "==", "'2018-03-31'", ":", "from", ".", "v2018_03_31", ".", "operations", "import", "Operations", "as", "OperationClas...
d7306fde32f60a293a7567678692bdad31e4b667
test
DefaultProfile.use
Define a new default profile.
azure-common/azure/profiles/__init__.py
def use(self, profile): """Define a new default profile.""" if not isinstance(profile, (KnownProfiles, ProfileDefinition)): raise ValueError("Can only set as default a ProfileDefinition or a KnownProfiles") type(self).profile = profile
def use(self, profile): """Define a new default profile.""" if not isinstance(profile, (KnownProfiles, ProfileDefinition)): raise ValueError("Can only set as default a ProfileDefinition or a KnownProfiles") type(self).profile = profile
[ "Define", "a", "new", "default", "profile", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-common/azure/profiles/__init__.py#L47-L51
[ "def", "use", "(", "self", ",", "profile", ")", ":", "if", "not", "isinstance", "(", "profile", ",", "(", "KnownProfiles", ",", "ProfileDefinition", ")", ")", ":", "raise", "ValueError", "(", "\"Can only set as default a ProfileDefinition or a KnownProfiles\"", ")",...
d7306fde32f60a293a7567678692bdad31e4b667
test
PolicyTrackedResourcesOperations.list_query_results_for_management_group
Queries policy tracked resources under the management group. :param management_group_name: Management group name. :type management_group_name: str :param query_options: Additional parameters for the operation :type query_options: ~azure.mgmt.policyinsights.models.QueryOptions :p...
azure-mgmt-policyinsights/azure/mgmt/policyinsights/operations/policy_tracked_resources_operations.py
def list_query_results_for_management_group( self, management_group_name, query_options=None, custom_headers=None, raw=False, **operation_config): """Queries policy tracked resources under the management group. :param management_group_name: Management group name. :type management_gr...
def list_query_results_for_management_group( self, management_group_name, query_options=None, custom_headers=None, raw=False, **operation_config): """Queries policy tracked resources under the management group. :param management_group_name: Management group name. :type management_gr...
[ "Queries", "policy", "tracked", "resources", "under", "the", "management", "group", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-policyinsights/azure/mgmt/policyinsights/operations/policy_tracked_resources_operations.py#L43-L120
[ "def", "list_query_results_for_management_group", "(", "self", ",", "management_group_name", ",", "query_options", "=", "None", ",", "custom_headers", "=", "None", ",", "raw", "=", "False", ",", "*", "*", "operation_config", ")", ":", "top", "=", "None", "if", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
Sender.send
Send a message and blocks until acknowledgement is received or the operation fails. :param message: The message to be sent. :type message: ~azure.servicebus.common.message.Message :raises: ~azure.servicebus.common.errors.MessageSendFailed if the message fails to send. Example: ...
azure-servicebus/azure/servicebus/send_handler.py
def send(self, message): """Send a message and blocks until acknowledgement is received or the operation fails. :param message: The message to be sent. :type message: ~azure.servicebus.common.message.Message :raises: ~azure.servicebus.common.errors.MessageSendFailed if the message fails...
def send(self, message): """Send a message and blocks until acknowledgement is received or the operation fails. :param message: The message to be sent. :type message: ~azure.servicebus.common.message.Message :raises: ~azure.servicebus.common.errors.MessageSendFailed if the message fails...
[ "Send", "a", "message", "and", "blocks", "until", "acknowledgement", "is", "received", "or", "the", "operation", "fails", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/send_handler.py#L82-L107
[ "def", "send", "(", "self", ",", "message", ")", ":", "if", "not", "isinstance", "(", "message", ",", "Message", ")", ":", "raise", "TypeError", "(", "\"Value of message must be of type 'Message'.\"", ")", "if", "not", "self", ".", "running", ":", "self", "....
d7306fde32f60a293a7567678692bdad31e4b667
test
SessionSender.queue_message
Queue a message to be sent later. This operation should be followed up with send_pending_messages. If neither the Sender nor the message has a session ID, a `ValueError` will be raised. :param message: The message to be sent. :type message: ~azure.servicebus.Message Example: ...
azure-servicebus/azure/servicebus/send_handler.py
def queue_message(self, message): """Queue a message to be sent later. This operation should be followed up with send_pending_messages. If neither the Sender nor the message has a session ID, a `ValueError` will be raised. :param message: The message to be sent. :type message: ...
def queue_message(self, message): """Queue a message to be sent later. This operation should be followed up with send_pending_messages. If neither the Sender nor the message has a session ID, a `ValueError` will be raised. :param message: The message to be sent. :type message: ...
[ "Queue", "a", "message", "to", "be", "sent", "later", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/send_handler.py#L269-L289
[ "def", "queue_message", "(", "self", ",", "message", ")", ":", "if", "not", "self", ".", "session_id", "and", "not", "message", ".", "properties", ".", "group_id", ":", "raise", "ValueError", "(", "\"Message must have Session ID.\"", ")", "super", "(", "Sessio...
d7306fde32f60a293a7567678692bdad31e4b667
test
SessionSender.schedule
Send one or more messages to be enqueued at a specific time. Returns a list of the sequence numbers of the enqueued messages. :param schedule_time: The date and time to enqueue the messages. :type schedule_time: ~datetime.datetime :param messages: The messages to schedule. :typ...
azure-servicebus/azure/servicebus/send_handler.py
def schedule(self, schedule_time, *messages): """Send one or more messages to be enqueued at a specific time. Returns a list of the sequence numbers of the enqueued messages. :param schedule_time: The date and time to enqueue the messages. :type schedule_time: ~datetime.datetime ...
def schedule(self, schedule_time, *messages): """Send one or more messages to be enqueued at a specific time. Returns a list of the sequence numbers of the enqueued messages. :param schedule_time: The date and time to enqueue the messages. :type schedule_time: ~datetime.datetime ...
[ "Send", "one", "or", "more", "messages", "to", "be", "enqueued", "at", "a", "specific", "time", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/send_handler.py#L291-L314
[ "def", "schedule", "(", "self", ",", "schedule_time", ",", "*", "messages", ")", ":", "for", "message", "in", "messages", ":", "if", "not", "self", ".", "session_id", "and", "not", "message", ".", "properties", ".", "group_id", ":", "raise", "ValueError", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusMixin.create_queue
Create a queue entity. :param queue_name: The name of the new queue. :type queue_name: str :param lock_duration: The lock durection in seconds for each message in the queue. :type lock_duration: int :param max_size_in_megabytes: The max size to allow the queue to grow to. ...
azure-servicebus/azure/servicebus/common/mixins.py
def create_queue( self, queue_name, lock_duration=30, max_size_in_megabytes=None, requires_duplicate_detection=False, requires_session=False, default_message_time_to_live=None, dead_lettering_on_message_expiration=False, duplicate_detec...
def create_queue( self, queue_name, lock_duration=30, max_size_in_megabytes=None, requires_duplicate_detection=False, requires_session=False, default_message_time_to_live=None, dead_lettering_on_message_expiration=False, duplicate_detec...
[ "Create", "a", "queue", "entity", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/common/mixins.py#L39-L94
[ "def", "create_queue", "(", "self", ",", "queue_name", ",", "lock_duration", "=", "30", ",", "max_size_in_megabytes", "=", "None", ",", "requires_duplicate_detection", "=", "False", ",", "requires_session", "=", "False", ",", "default_message_time_to_live", "=", "No...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusMixin.delete_queue
Delete a queue entity. :param queue_name: The name of the queue to delete. :type queue_name: str :param fail_not_exist: Whether to raise an exception if the named queue is not found. If set to True, a ServiceBusResourceNotFound will be raised. Default value is False. :...
azure-servicebus/azure/servicebus/common/mixins.py
def delete_queue(self, queue_name, fail_not_exist=False): """Delete a queue entity. :param queue_name: The name of the queue to delete. :type queue_name: str :param fail_not_exist: Whether to raise an exception if the named queue is not found. If set to True, a ServiceBusResour...
def delete_queue(self, queue_name, fail_not_exist=False): """Delete a queue entity. :param queue_name: The name of the queue to delete. :type queue_name: str :param fail_not_exist: Whether to raise an exception if the named queue is not found. If set to True, a ServiceBusResour...
[ "Delete", "a", "queue", "entity", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/common/mixins.py#L96-L114
[ "def", "delete_queue", "(", "self", ",", "queue_name", ",", "fail_not_exist", "=", "False", ")", ":", "try", ":", "return", "self", ".", "mgmt_client", ".", "delete_queue", "(", "queue_name", ",", "fail_not_exist", "=", "fail_not_exist", ")", "except", "reques...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusMixin.create_topic
Create a topic entity. :param topic_name: The name of the new topic. :type topic_name: str :param max_size_in_megabytes: The max size to allow the topic to grow to. :type max_size_in_megabytes: int :param requires_duplicate_detection: Whether the topic will require every message...
azure-servicebus/azure/servicebus/common/mixins.py
def create_topic( self, topic_name, default_message_time_to_live=None, max_size_in_megabytes=None, requires_duplicate_detection=None, duplicate_detection_history_time_window=None, enable_batched_operations=None): """Create a topic entity. :par...
def create_topic( self, topic_name, default_message_time_to_live=None, max_size_in_megabytes=None, requires_duplicate_detection=None, duplicate_detection_history_time_window=None, enable_batched_operations=None): """Create a topic entity. :par...
[ "Create", "a", "topic", "entity", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/common/mixins.py#L116-L152
[ "def", "create_topic", "(", "self", ",", "topic_name", ",", "default_message_time_to_live", "=", "None", ",", "max_size_in_megabytes", "=", "None", ",", "requires_duplicate_detection", "=", "None", ",", "duplicate_detection_history_time_window", "=", "None", ",", "enabl...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusMixin.delete_topic
Delete a topic entity. :param topic_name: The name of the topic to delete. :type topic_name: str :param fail_not_exist: Whether to raise an exception if the named topic is not found. If set to True, a ServiceBusResourceNotFound will be raised. Default value is False. :...
azure-servicebus/azure/servicebus/common/mixins.py
def delete_topic(self, topic_name, fail_not_exist=False): """Delete a topic entity. :param topic_name: The name of the topic to delete. :type topic_name: str :param fail_not_exist: Whether to raise an exception if the named topic is not found. If set to True, a ServiceBusResour...
def delete_topic(self, topic_name, fail_not_exist=False): """Delete a topic entity. :param topic_name: The name of the topic to delete. :type topic_name: str :param fail_not_exist: Whether to raise an exception if the named topic is not found. If set to True, a ServiceBusResour...
[ "Delete", "a", "topic", "entity", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/common/mixins.py#L154-L172
[ "def", "delete_topic", "(", "self", ",", "topic_name", ",", "fail_not_exist", "=", "False", ")", ":", "try", ":", "return", "self", ".", "mgmt_client", ".", "delete_topic", "(", "topic_name", ",", "fail_not_exist", "=", "fail_not_exist", ")", "except", "reques...
d7306fde32f60a293a7567678692bdad31e4b667
test
ServiceBusMixin.create_subscription
Create a subscription entity. :param topic_name: The name of the topic under which to create the subscription. :param subscription_name: The name of the new subscription. :type subscription_name: str :param lock_duration: The lock durection in seconds for each message in the subscriptio...
azure-servicebus/azure/servicebus/common/mixins.py
def create_subscription( self, topic_name, subscription_name, lock_duration=30, requires_session=None, default_message_time_to_live=None, dead_lettering_on_message_expiration=None, dead_lettering_on_filter_evaluation_exceptions=None, enable_batched...
def create_subscription( self, topic_name, subscription_name, lock_duration=30, requires_session=None, default_message_time_to_live=None, dead_lettering_on_message_expiration=None, dead_lettering_on_filter_evaluation_exceptions=None, enable_batched...
[ "Create", "a", "subscription", "entity", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/common/mixins.py#L174-L222
[ "def", "create_subscription", "(", "self", ",", "topic_name", ",", "subscription_name", ",", "lock_duration", "=", "30", ",", "requires_session", "=", "None", ",", "default_message_time_to_live", "=", "None", ",", "dead_lettering_on_message_expiration", "=", "None", "...
d7306fde32f60a293a7567678692bdad31e4b667
test
BaseClient.from_connection_string
Create a Client from a Service Bus connection string. :param conn_str: The connection string. :type conn_str: str :param name: The name of the entity, if the 'EntityName' property is not included in the connection string.
azure-servicebus/azure/servicebus/common/mixins.py
def from_connection_string(cls, conn_str, name=None, **kwargs): """Create a Client from a Service Bus connection string. :param conn_str: The connection string. :type conn_str: str :param name: The name of the entity, if the 'EntityName' property is not included in the connecti...
def from_connection_string(cls, conn_str, name=None, **kwargs): """Create a Client from a Service Bus connection string. :param conn_str: The connection string. :type conn_str: str :param name: The name of the entity, if the 'EntityName' property is not included in the connecti...
[ "Create", "a", "Client", "from", "a", "Service", "Bus", "connection", "string", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/common/mixins.py#L307-L319
[ "def", "from_connection_string", "(", "cls", ",", "conn_str", ",", "name", "=", "None", ",", "*", "*", "kwargs", ")", ":", "address", ",", "policy", ",", "key", ",", "entity", "=", "parse_conn_str", "(", "conn_str", ")", "entity", "=", "name", "or", "e...
d7306fde32f60a293a7567678692bdad31e4b667
test
BaseClient.get_properties
Perform an operation to update the properties of the entity. :returns: The properties of the entity as a dictionary. :rtype: dict[str, Any] :raises: ~azure.servicebus.common.errors.ServiceBusResourceNotFound if the entity does not exist. :raises: ~azure.servicebus.common.errors.ServiceB...
azure-servicebus/azure/servicebus/common/mixins.py
def get_properties(self): """Perform an operation to update the properties of the entity. :returns: The properties of the entity as a dictionary. :rtype: dict[str, Any] :raises: ~azure.servicebus.common.errors.ServiceBusResourceNotFound if the entity does not exist. :raises: ~az...
def get_properties(self): """Perform an operation to update the properties of the entity. :returns: The properties of the entity as a dictionary. :rtype: dict[str, Any] :raises: ~azure.servicebus.common.errors.ServiceBusResourceNotFound if the entity does not exist. :raises: ~az...
[ "Perform", "an", "operation", "to", "update", "the", "properties", "of", "the", "entity", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/common/mixins.py#L324-L346
[ "def", "get_properties", "(", "self", ")", ":", "try", ":", "self", ".", "entity", "=", "self", ".", "_get_entity", "(", ")", "self", ".", "properties", "=", "dict", "(", "self", ".", "entity", ")", "if", "hasattr", "(", "self", ".", "entity", ",", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
SessionMixin.expired
Whether the receivers lock on a particular session has expired. :rtype: bool
azure-servicebus/azure/servicebus/common/mixins.py
def expired(self): """Whether the receivers lock on a particular session has expired. :rtype: bool """ if self.locked_until and self.locked_until <= datetime.datetime.now(): return True return False
def expired(self): """Whether the receivers lock on a particular session has expired. :rtype: bool """ if self.locked_until and self.locked_until <= datetime.datetime.now(): return True return False
[ "Whether", "the", "receivers", "lock", "on", "a", "particular", "session", "has", "expired", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/common/mixins.py#L368-L375
[ "def", "expired", "(", "self", ")", ":", "if", "self", ".", "locked_until", "and", "self", ".", "locked_until", "<=", "datetime", ".", "datetime", ".", "now", "(", ")", ":", "return", "True", "return", "False" ]
d7306fde32f60a293a7567678692bdad31e4b667
test
SenderMixin.queue_message
Queue a message to be sent later. This operation should be followed up with send_pending_messages. :param message: The message to be sent. :type message: ~azure.servicebus.common.message.Message Example: .. literalinclude:: ../examples/test_examples.py :sta...
azure-servicebus/azure/servicebus/common/mixins.py
def queue_message(self, message): """Queue a message to be sent later. This operation should be followed up with send_pending_messages. :param message: The message to be sent. :type message: ~azure.servicebus.common.message.Message Example: .. literalinclude:: ../e...
def queue_message(self, message): """Queue a message to be sent later. This operation should be followed up with send_pending_messages. :param message: The message to be sent. :type message: ~azure.servicebus.common.message.Message Example: .. literalinclude:: ../e...
[ "Queue", "a", "message", "to", "be", "sent", "later", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/common/mixins.py#L398-L420
[ "def", "queue_message", "(", "self", ",", "message", ")", ":", "if", "not", "self", ".", "running", ":", "self", ".", "open", "(", ")", "if", "self", ".", "session_id", "and", "not", "message", ".", "properties", ".", "group_id", ":", "message", ".", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
AutoLockRenew.register
Register a renewable entity for automatic lock renewal. :param renewable: A locked entity that needs to be renewed. :type renewable: ~azure.servicebus.common.message.Message or ~azure.servicebus.receive_handler.SessionReceiver :param timeout: A time in seconds that the lock should be m...
azure-servicebus/azure/servicebus/common/utils.py
def register(self, renewable, timeout=300): """Register a renewable entity for automatic lock renewal. :param renewable: A locked entity that needs to be renewed. :type renewable: ~azure.servicebus.common.message.Message or ~azure.servicebus.receive_handler.SessionReceiver :par...
def register(self, renewable, timeout=300): """Register a renewable entity for automatic lock renewal. :param renewable: A locked entity that needs to be renewed. :type renewable: ~azure.servicebus.common.message.Message or ~azure.servicebus.receive_handler.SessionReceiver :par...
[ "Register", "a", "renewable", "entity", "for", "automatic", "lock", "renewal", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicebus/azure/servicebus/common/utils.py#L154-L165
[ "def", "register", "(", "self", ",", "renewable", ",", "timeout", "=", "300", ")", ":", "starttime", "=", "renewable_start_time", "(", "renewable", ")", "self", ".", "executor", ".", "submit", "(", "self", ".", "_auto_lock_renew", ",", "renewable", ",", "s...
d7306fde32f60a293a7567678692bdad31e4b667
test
SessionOperations.create
Creates a session for a node. :param resource_group_name: The resource group name uniquely identifies the resource group within the user subscriptionId. :type resource_group_name: str :param node_name: The node name (256 characters maximum). :type node_name: str :param ...
azure-mgmt-servermanager/azure/mgmt/servermanager/operations/session_operations.py
def create( self, resource_group_name, node_name, session, user_name=None, password=None, retention_period=None, credential_data_format=None, encryption_certificate_thumbprint=None, custom_headers=None, raw=False, polling=True, **operation_config): """Creates a session for a node. :param re...
def create( self, resource_group_name, node_name, session, user_name=None, password=None, retention_period=None, credential_data_format=None, encryption_certificate_thumbprint=None, custom_headers=None, raw=False, polling=True, **operation_config): """Creates a session for a node. :param re...
[ "Creates", "a", "session", "for", "a", "node", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-servermanager/azure/mgmt/servermanager/operations/session_operations.py#L94-L163
[ "def", "create", "(", "self", ",", "resource_group_name", ",", "node_name", ",", "session", ",", "user_name", "=", "None", ",", "password", "=", "None", ",", "retention_period", "=", "None", ",", "credential_data_format", "=", "None", ",", "encryption_certificat...
d7306fde32f60a293a7567678692bdad31e4b667
test
SubscriptionFactoryOperations.create_subscription
Creates an Azure subscription. :param billing_account_name: The name of the commerce root billing account. :type billing_account_name: str :param invoice_section_name: The name of the invoice section. :type invoice_section_name: str :param body: The subscription creatio...
azure-mgmt-subscription/azure/mgmt/subscription/operations/subscription_factory_operations.py
def create_subscription( self, billing_account_name, invoice_section_name, body, custom_headers=None, raw=False, polling=True, **operation_config): """Creates an Azure subscription. :param billing_account_name: The name of the commerce root billing account. :type billing_ac...
def create_subscription( self, billing_account_name, invoice_section_name, body, custom_headers=None, raw=False, polling=True, **operation_config): """Creates an Azure subscription. :param billing_account_name: The name of the commerce root billing account. :type billing_ac...
[ "Creates", "an", "Azure", "subscription", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-subscription/azure/mgmt/subscription/operations/subscription_factory_operations.py#L94-L150
[ "def", "create_subscription", "(", "self", ",", "billing_account_name", ",", "invoice_section_name", ",", "body", ",", "custom_headers", "=", "None", ",", "raw", "=", "False", ",", "polling", "=", "True", ",", "*", "*", "operation_config", ")", ":", "raw_resul...
d7306fde32f60a293a7567678692bdad31e4b667
test
PyPIClient.get_relevant_versions
Return a tuple: (latest release, latest stable) If there are different, it means the latest is not a stable
azure-sdk-tools/packaging_tools/pypi.py
def get_relevant_versions(self, package_name: str): """Return a tuple: (latest release, latest stable) If there are different, it means the latest is not a stable """ versions = self.get_ordered_versions(package_name) pre_releases = [version for version in versions if not version...
def get_relevant_versions(self, package_name: str): """Return a tuple: (latest release, latest stable) If there are different, it means the latest is not a stable """ versions = self.get_ordered_versions(package_name) pre_releases = [version for version in versions if not version...
[ "Return", "a", "tuple", ":", "(", "latest", "release", "latest", "stable", ")", "If", "there", "are", "different", "it", "means", "the", "latest", "is", "not", "a", "stable" ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-sdk-tools/packaging_tools/pypi.py#L49-L58
[ "def", "get_relevant_versions", "(", "self", ",", "package_name", ":", "str", ")", ":", "versions", "=", "self", ".", "get_ordered_versions", "(", "package_name", ")", "pre_releases", "=", "[", "version", "for", "version", "in", "versions", "if", "not", "versi...
d7306fde32f60a293a7567678692bdad31e4b667
test
LogAnalyticsOperations.export_request_rate_by_interval
Export logs that show Api requests made by this subscription in the given time window to show throttling activities. :param parameters: Parameters supplied to the LogAnalytics getRequestRateByInterval Api. :type parameters: ~azure.mgmt.compute.v2018_04_01.models.RequestRateByI...
azure-mgmt-compute/azure/mgmt/compute/v2018_04_01/operations/log_analytics_operations.py
def export_request_rate_by_interval( self, parameters, location, custom_headers=None, raw=False, polling=True, **operation_config): """Export logs that show Api requests made by this subscription in the given time window to show throttling activities. :param parameters: Parameters s...
def export_request_rate_by_interval( self, parameters, location, custom_headers=None, raw=False, polling=True, **operation_config): """Export logs that show Api requests made by this subscription in the given time window to show throttling activities. :param parameters: Parameters s...
[ "Export", "logs", "that", "show", "Api", "requests", "made", "by", "this", "subscription", "in", "the", "given", "time", "window", "to", "show", "throttling", "activities", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-compute/azure/mgmt/compute/v2018_04_01/operations/log_analytics_operations.py#L91-L140
[ "def", "export_request_rate_by_interval", "(", "self", ",", "parameters", ",", "location", ",", "custom_headers", "=", "None", ",", "raw", "=", "False", ",", "polling", "=", "True", ",", "*", "*", "operation_config", ")", ":", "raw_result", "=", "self", ".",...
d7306fde32f60a293a7567678692bdad31e4b667
test
_handle_output
Scan output for exceptions If there is an output from an add task collection call add it to the results. :param results_queue: Queue containing results of attempted add_collection's :type results_queue: collections.deque :return: list of TaskAddResults :rtype: list[~TaskAddResult]
azure-batch/azure/batch/custom/patch.py
def _handle_output(results_queue): """Scan output for exceptions If there is an output from an add task collection call add it to the results. :param results_queue: Queue containing results of attempted add_collection's :type results_queue: collections.deque :return: list of TaskAddResults :rt...
def _handle_output(results_queue): """Scan output for exceptions If there is an output from an add task collection call add it to the results. :param results_queue: Queue containing results of attempted add_collection's :type results_queue: collections.deque :return: list of TaskAddResults :rt...
[ "Scan", "output", "for", "exceptions" ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-batch/azure/batch/custom/patch.py#L172-L186
[ "def", "_handle_output", "(", "results_queue", ")", ":", "results", "=", "[", "]", "while", "results_queue", ":", "queue_item", "=", "results_queue", ".", "pop", "(", ")", "results", ".", "append", "(", "queue_item", ")", "return", "results" ]
d7306fde32f60a293a7567678692bdad31e4b667
test
_TaskWorkflowManager._bulk_add_tasks
Adds a chunk of tasks to the job Retry chunk if body exceeds the maximum request size and retry tasks if failed due to server errors. :param results_queue: Queue to place the return value of the request :type results_queue: collections.deque :param chunk_tasks_to_add: Chunk of ...
azure-batch/azure/batch/custom/patch.py
def _bulk_add_tasks(self, results_queue, chunk_tasks_to_add): """Adds a chunk of tasks to the job Retry chunk if body exceeds the maximum request size and retry tasks if failed due to server errors. :param results_queue: Queue to place the return value of the request :type resu...
def _bulk_add_tasks(self, results_queue, chunk_tasks_to_add): """Adds a chunk of tasks to the job Retry chunk if body exceeds the maximum request size and retry tasks if failed due to server errors. :param results_queue: Queue to place the return value of the request :type resu...
[ "Adds", "a", "chunk", "of", "tasks", "to", "the", "job" ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-batch/azure/batch/custom/patch.py#L66-L151
[ "def", "_bulk_add_tasks", "(", "self", ",", "results_queue", ",", "chunk_tasks_to_add", ")", ":", "try", ":", "add_collection_response", "=", "self", ".", "_original_add_collection", "(", "self", ".", "_client", ",", "self", ".", "_job_id", ",", "chunk_tasks_to_ad...
d7306fde32f60a293a7567678692bdad31e4b667
test
_TaskWorkflowManager.task_collection_thread_handler
Main method for worker to run Pops a chunk of tasks off the collection of pending tasks to be added and submits them to be added. :param collections.deque results_queue: Queue for worker to output results to
azure-batch/azure/batch/custom/patch.py
def task_collection_thread_handler(self, results_queue): """Main method for worker to run Pops a chunk of tasks off the collection of pending tasks to be added and submits them to be added. :param collections.deque results_queue: Queue for worker to output results to """ # Add ...
def task_collection_thread_handler(self, results_queue): """Main method for worker to run Pops a chunk of tasks off the collection of pending tasks to be added and submits them to be added. :param collections.deque results_queue: Queue for worker to output results to """ # Add ...
[ "Main", "method", "for", "worker", "to", "run" ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-batch/azure/batch/custom/patch.py#L153-L169
[ "def", "task_collection_thread_handler", "(", "self", ",", "results_queue", ")", ":", "# Add tasks until either we run out or we run into an unexpected error", "while", "self", ".", "tasks_to_add", "and", "not", "self", ".", "errors", ":", "max_tasks", "=", "self", ".", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
build_config
Will build the actual config for Jinja2, based on SDK config.
azure-sdk-tools/packaging_tools/__init__.py
def build_config(config : Dict[str, Any]) -> Dict[str, str]: """Will build the actual config for Jinja2, based on SDK config. """ result = config.copy() # Manage the classifier stable/beta is_stable = result.pop("is_stable", False) if is_stable: result["classifier"] = "Development Status...
def build_config(config : Dict[str, Any]) -> Dict[str, str]: """Will build the actual config for Jinja2, based on SDK config. """ result = config.copy() # Manage the classifier stable/beta is_stable = result.pop("is_stable", False) if is_stable: result["classifier"] = "Development Status...
[ "Will", "build", "the", "actual", "config", "for", "Jinja2", "based", "on", "SDK", "config", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-sdk-tools/packaging_tools/__init__.py#L15-L49
[ "def", "build_config", "(", "config", ":", "Dict", "[", "str", ",", "Any", "]", ")", "->", "Dict", "[", "str", ",", "str", "]", ":", "result", "=", "config", ".", "copy", "(", ")", "# Manage the classifier stable/beta", "is_stable", "=", "result", ".", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
ManagementLinkClient.models
Module depends on the API version: * 2016-09-01: :mod:`v2016_09_01.models<azure.mgmt.resource.links.v2016_09_01.models>`
azure-mgmt-resource/azure/mgmt/resource/links/management_link_client.py
def models(cls, api_version=DEFAULT_API_VERSION): """Module depends on the API version: * 2016-09-01: :mod:`v2016_09_01.models<azure.mgmt.resource.links.v2016_09_01.models>` """ if api_version == '2016-09-01': from .v2016_09_01 import models return models ...
def models(cls, api_version=DEFAULT_API_VERSION): """Module depends on the API version: * 2016-09-01: :mod:`v2016_09_01.models<azure.mgmt.resource.links.v2016_09_01.models>` """ if api_version == '2016-09-01': from .v2016_09_01 import models return models ...
[ "Module", "depends", "on", "the", "API", "version", ":" ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-resource/azure/mgmt/resource/links/management_link_client.py#L96-L104
[ "def", "models", "(", "cls", ",", "api_version", "=", "DEFAULT_API_VERSION", ")", ":", "if", "api_version", "==", "'2016-09-01'", ":", "from", ".", "v2016_09_01", "import", "models", "return", "models", "raise", "NotImplementedError", "(", "\"APIVersion {} is not av...
d7306fde32f60a293a7567678692bdad31e4b667
test
GlobalUsersOperations.reset_password
Resets the user password on an environment This operation can take a while to complete. :param user_name: The name of the user. :type user_name: str :param reset_password_payload: Represents the payload for resetting passwords. :type reset_password_payload: ~az...
azure-mgmt-labservices/azure/mgmt/labservices/operations/global_users_operations.py
def reset_password( self, user_name, reset_password_payload, custom_headers=None, raw=False, polling=True, **operation_config): """Resets the user password on an environment This operation can take a while to complete. :param user_name: The name of the user. :type user_name:...
def reset_password( self, user_name, reset_password_payload, custom_headers=None, raw=False, polling=True, **operation_config): """Resets the user password on an environment This operation can take a while to complete. :param user_name: The name of the user. :type user_name:...
[ "Resets", "the", "user", "password", "on", "an", "environment", "This", "operation", "can", "take", "a", "while", "to", "complete", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-labservices/azure/mgmt/labservices/operations/global_users_operations.py#L533-L574
[ "def", "reset_password", "(", "self", ",", "user_name", ",", "reset_password_payload", ",", "custom_headers", "=", "None", ",", "raw", "=", "False", ",", "polling", "=", "True", ",", "*", "*", "operation_config", ")", ":", "raw_result", "=", "self", ".", "...
d7306fde32f60a293a7567678692bdad31e4b667
test
GlobalUsersOperations.start_environment
Starts an environment by starting all resources inside the environment. This operation can take a while to complete. :param user_name: The name of the user. :type user_name: str :param environment_id: The resourceId of the environment :type environment_id: str :param dic...
azure-mgmt-labservices/azure/mgmt/labservices/operations/global_users_operations.py
def start_environment( self, user_name, environment_id, custom_headers=None, raw=False, polling=True, **operation_config): """Starts an environment by starting all resources inside the environment. This operation can take a while to complete. :param user_name: The name of the user. ...
def start_environment( self, user_name, environment_id, custom_headers=None, raw=False, polling=True, **operation_config): """Starts an environment by starting all resources inside the environment. This operation can take a while to complete. :param user_name: The name of the user. ...
[ "Starts", "an", "environment", "by", "starting", "all", "resources", "inside", "the", "environment", ".", "This", "operation", "can", "take", "a", "while", "to", "complete", "." ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-labservices/azure/mgmt/labservices/operations/global_users_operations.py#L619-L658
[ "def", "start_environment", "(", "self", ",", "user_name", ",", "environment_id", ",", "custom_headers", "=", "None", ",", "raw", "=", "False", ",", "polling", "=", "True", ",", "*", "*", "operation_config", ")", ":", "raw_result", "=", "self", ".", "_star...
d7306fde32f60a293a7567678692bdad31e4b667
test
ContainerRegistryManagementClient.models
Module depends on the API version: * 2017-03-01: :mod:`v2017_03_01.models<azure.mgmt.containerregistry.v2017_03_01.models>` * 2017-10-01: :mod:`v2017_10_01.models<azure.mgmt.containerregistry.v2017_10_01.models>` * 2018-02-01-preview: :mod:`v2018_02_01_preview.models<azure.mgmt.contain...
azure-mgmt-containerregistry/azure/mgmt/containerregistry/container_registry_management_client.py
def models(cls, api_version=DEFAULT_API_VERSION): """Module depends on the API version: * 2017-03-01: :mod:`v2017_03_01.models<azure.mgmt.containerregistry.v2017_03_01.models>` * 2017-10-01: :mod:`v2017_10_01.models<azure.mgmt.containerregistry.v2017_10_01.models>` * 2018-02-01...
def models(cls, api_version=DEFAULT_API_VERSION): """Module depends on the API version: * 2017-03-01: :mod:`v2017_03_01.models<azure.mgmt.containerregistry.v2017_03_01.models>` * 2017-10-01: :mod:`v2017_10_01.models<azure.mgmt.containerregistry.v2017_10_01.models>` * 2018-02-01...
[ "Module", "depends", "on", "the", "API", "version", ":" ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-containerregistry/azure/mgmt/containerregistry/container_registry_management_client.py#L95-L115
[ "def", "models", "(", "cls", ",", "api_version", "=", "DEFAULT_API_VERSION", ")", ":", "if", "api_version", "==", "'2017-03-01'", ":", "from", ".", "v2017_03_01", "import", "models", "return", "models", "elif", "api_version", "==", "'2017-10-01'", ":", "from", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
ContainerRegistryManagementClient.build_steps
Instance depends on the API version: * 2018-02-01-preview: :class:`BuildStepsOperations<azure.mgmt.containerregistry.v2018_02_01_preview.operations.BuildStepsOperations>`
azure-mgmt-containerregistry/azure/mgmt/containerregistry/container_registry_management_client.py
def build_steps(self): """Instance depends on the API version: * 2018-02-01-preview: :class:`BuildStepsOperations<azure.mgmt.containerregistry.v2018_02_01_preview.operations.BuildStepsOperations>` """ api_version = self._get_api_version('build_steps') if api_version == '2018-...
def build_steps(self): """Instance depends on the API version: * 2018-02-01-preview: :class:`BuildStepsOperations<azure.mgmt.containerregistry.v2018_02_01_preview.operations.BuildStepsOperations>` """ api_version = self._get_api_version('build_steps') if api_version == '2018-...
[ "Instance", "depends", "on", "the", "API", "version", ":" ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-containerregistry/azure/mgmt/containerregistry/container_registry_management_client.py#L118-L128
[ "def", "build_steps", "(", "self", ")", ":", "api_version", "=", "self", ".", "_get_api_version", "(", "'build_steps'", ")", "if", "api_version", "==", "'2018-02-01-preview'", ":", "from", ".", "v2018_02_01_preview", ".", "operations", "import", "BuildStepsOperation...
d7306fde32f60a293a7567678692bdad31e4b667
test
ContainerRegistryManagementClient.build_tasks
Instance depends on the API version: * 2018-02-01-preview: :class:`BuildTasksOperations<azure.mgmt.containerregistry.v2018_02_01_preview.operations.BuildTasksOperations>`
azure-mgmt-containerregistry/azure/mgmt/containerregistry/container_registry_management_client.py
def build_tasks(self): """Instance depends on the API version: * 2018-02-01-preview: :class:`BuildTasksOperations<azure.mgmt.containerregistry.v2018_02_01_preview.operations.BuildTasksOperations>` """ api_version = self._get_api_version('build_tasks') if api_version == '2018-...
def build_tasks(self): """Instance depends on the API version: * 2018-02-01-preview: :class:`BuildTasksOperations<azure.mgmt.containerregistry.v2018_02_01_preview.operations.BuildTasksOperations>` """ api_version = self._get_api_version('build_tasks') if api_version == '2018-...
[ "Instance", "depends", "on", "the", "API", "version", ":" ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-containerregistry/azure/mgmt/containerregistry/container_registry_management_client.py#L131-L141
[ "def", "build_tasks", "(", "self", ")", ":", "api_version", "=", "self", ".", "_get_api_version", "(", "'build_tasks'", ")", "if", "api_version", "==", "'2018-02-01-preview'", ":", "from", ".", "v2018_02_01_preview", ".", "operations", "import", "BuildTasksOperation...
d7306fde32f60a293a7567678692bdad31e4b667
test
ContainerRegistryManagementClient.builds
Instance depends on the API version: * 2018-02-01-preview: :class:`BuildsOperations<azure.mgmt.containerregistry.v2018_02_01_preview.operations.BuildsOperations>`
azure-mgmt-containerregistry/azure/mgmt/containerregistry/container_registry_management_client.py
def builds(self): """Instance depends on the API version: * 2018-02-01-preview: :class:`BuildsOperations<azure.mgmt.containerregistry.v2018_02_01_preview.operations.BuildsOperations>` """ api_version = self._get_api_version('builds') if api_version == '2018-02-01-preview': ...
def builds(self): """Instance depends on the API version: * 2018-02-01-preview: :class:`BuildsOperations<azure.mgmt.containerregistry.v2018_02_01_preview.operations.BuildsOperations>` """ api_version = self._get_api_version('builds') if api_version == '2018-02-01-preview': ...
[ "Instance", "depends", "on", "the", "API", "version", ":" ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-containerregistry/azure/mgmt/containerregistry/container_registry_management_client.py#L144-L154
[ "def", "builds", "(", "self", ")", ":", "api_version", "=", "self", ".", "_get_api_version", "(", "'builds'", ")", "if", "api_version", "==", "'2018-02-01-preview'", ":", "from", ".", "v2018_02_01_preview", ".", "operations", "import", "BuildsOperations", "as", ...
d7306fde32f60a293a7567678692bdad31e4b667
test
ContainerRegistryManagementClient.operations
Instance depends on the API version: * 2017-03-01: :class:`Operations<azure.mgmt.containerregistry.v2017_03_01.operations.Operations>` * 2017-10-01: :class:`Operations<azure.mgmt.containerregistry.v2017_10_01.operations.Operations>` * 2018-02-01-preview: :class:`Operations<azure.mgmt.c...
azure-mgmt-containerregistry/azure/mgmt/containerregistry/container_registry_management_client.py
def operations(self): """Instance depends on the API version: * 2017-03-01: :class:`Operations<azure.mgmt.containerregistry.v2017_03_01.operations.Operations>` * 2017-10-01: :class:`Operations<azure.mgmt.containerregistry.v2017_10_01.operations.Operations>` * 2018-02-01-preview...
def operations(self): """Instance depends on the API version: * 2017-03-01: :class:`Operations<azure.mgmt.containerregistry.v2017_03_01.operations.Operations>` * 2017-10-01: :class:`Operations<azure.mgmt.containerregistry.v2017_10_01.operations.Operations>` * 2018-02-01-preview...
[ "Instance", "depends", "on", "the", "API", "version", ":" ]
Azure/azure-sdk-for-python
python
https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-mgmt-containerregistry/azure/mgmt/containerregistry/container_registry_management_client.py#L157-L176
[ "def", "operations", "(", "self", ")", ":", "api_version", "=", "self", ".", "_get_api_version", "(", "'operations'", ")", "if", "api_version", "==", "'2017-03-01'", ":", "from", ".", "v2017_03_01", ".", "operations", "import", "Operations", "as", "OperationClas...
d7306fde32f60a293a7567678692bdad31e4b667