desc stringlengths 3 26.7k | decl stringlengths 11 7.89k | bodies stringlengths 8 553k |
|---|---|---|
'Creates or updates an express route circuit.
:param resource_group_name: The name of the resource group.
:type resource_group_name: str
:param circuit_name: The name of the circuit.
:type circuit_name: str
:param parameters: Parameters supplied to the create or update express
route circuit operation.
:type parameters:... | def create_or_update(self, resource_group_name, circuit_name, parameters, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'circuitName': self._serialize.url('circuit_name', circu... |
'Gets the currently advertised ARP table associated with the express
route circuit in a resource group.
:param resource_group_name: The name of the resource group.
:type resource_group_name: str
:param circuit_name: The name of the express route circuit.
:type circuit_name: str
:param peering_name: The name of the peer... | def list_arp_table(self, resource_group_name, circuit_name, peering_name, device_path, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/arpTables/{devicePath}'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'circuitNa... |
'Gets the currently advertised routes table associated with the express
route circuit in a resource group.
:param resource_group_name: The name of the resource group.
:type resource_group_name: str
:param circuit_name: The name of the express route circuit.
:type circuit_name: str
:param peering_name: The name of the p... | def list_routes_table(self, resource_group_name, circuit_name, peering_name, device_path, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/routeTables/{devicePath}'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'circuit... |
'Gets the currently advertised routes table summary associated with the
express route circuit in a resource group.
:param resource_group_name: The name of the resource group.
:type resource_group_name: str
:param circuit_name: The name of the express route circuit.
:type circuit_name: str
:param peering_name: The name ... | def list_routes_table_summary(self, resource_group_name, circuit_name, peering_name, device_path, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/routeTablesSummary/{devicePath}'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), '... |
'Gets all the stats from an express route circuit in a resource group.
:param resource_group_name: The name of the resource group.
:type resource_group_name: str
:param circuit_name: The name of the express route circuit.
:type circuit_name: str
:param dict custom_headers: headers that will be added to the request
:par... | def get_stats(self, resource_group_name, circuit_name, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/stats'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'circuitName': self._serialize.url('circuit_name',... |
'Gets all stats from an express route circuit in a resource group.
:param resource_group_name: The name of the resource group.
:type resource_group_name: str
:param circuit_name: The name of the express route circuit.
:type circuit_name: str
:param peering_name: The name of the peering.
:type peering_name: str
:param d... | def get_peering_stats(self, resource_group_name, circuit_name, peering_name, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/stats'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'circuitName': self._serial... |
'Gets all the express route circuits in a resource group.
:param resource_group_name: The name of the resource group.
:type resource_group_name: str
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
deserialized response
:param operation_con... | def list(self, resource_group_name, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', res... |
'Gets all the express route circuits in a subscription.
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
deserialized response
:param operation_config: :ref:`Operation configuration
overrides<msrest:optionsforoperations>`.
:rtype: :class:`E... | def list_all(self, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/subscriptions/{subscriptionId}/providers/Microsoft.Network/expressRouteCircuits'
path_format_arguments = {'subscriptionId': self._serialize.url('self.config.subscription_id', self.config.subscription_id, 'str... |
'Return distribution full name with - replaced with _'
| @property
def wheel_dist_name(self):
| return '-'.join((safer_name(self.distribution.get_name()), safer_version(self.distribution.get_version())))
|
'Return archive name without extension'
| def get_archive_basename(self):
| (impl_tag, abi_tag, plat_tag) = self.get_tag()
archive_basename = ('%s-%s-%s-%s' % (self.wheel_dist_name, impl_tag, abi_tag, plat_tag))
return archive_basename
|
'Return license filename from a license-file key in setup.cfg, or None.'
| def license_file(self):
| metadata = self.distribution.get_option_dict('metadata')
if (not ('license_file' in metadata)):
return None
return metadata['license_file'][1]
|
'Generate requirements from setup.cfg as
(\'Requires-Dist\', \'requirement; qualifier\') tuples. From a metadata
section in setup.cfg:
[metadata]
provides-extra = extra1
extra2
requires-dist = requirement; qualifier
another; qualifier2
unqualified
Yields
(\'Provides-Extra\', \'extra1\'),
(\'Provides-Extra\', \'extra2\'... | def setupcfg_requirements(self):
| metadata = self.distribution.get_option_dict('metadata')
for (key, title) in (('provides_extra', 'Provides-Extra'), ('requires_dist', 'Requires-Dist')):
if (not (key in metadata)):
continue
field = metadata[key]
for line in field[1].splitlines():
line = line.strip... |
'Add additional requirements from setup.cfg to file metadata_path'
| def add_requirements(self, metadata_path):
| additional = list(self.setupcfg_requirements())
if (not additional):
return
pkg_info = read_pkg_info(metadata_path)
if (('Provides-Extra' in pkg_info) or ('Requires-Dist' in pkg_info)):
warnings.warn('setup.cfg requirements overwrite values from setup.py')
del pkg_... |
'Convert an .egg-info directory into a .dist-info directory'
| def egg2dist(self, egginfo_path, distinfo_path):
| def adios(p):
'Appropriately delete directory, file or link.'
if (os.path.exists(p) and (not os.path.islink(p)) and os.path.isdir(p)):
shutil.rmtree(p)
elif os.path.exists(p):
os.unlink(p)
adios(distinfo_path)
if (not os.path.exists(egginfo_path... |
'Create or update a web service. This call will overwrite an existing
web service. Note that there is no warning or confirmation. This is a
nonrecoverable operation. If your intent is to create a new web
service, call the Get operation first to verify that it does not exist.
:param resource_group_name: Name of the reso... | def create_or_update(self, resource_group_name, web_service_name, create_or_update_payload, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'webServiceName': self._serialize.url('web_service_nam... |
'Gets the Web Service Definiton as specified by a subscription, resource
group, and name. Note that the storage credentials and web service keys
are not returned by this call. To get the web service access keys, call
List Keys.
:param resource_group_name: Name of the resource group in which the
web service is located.
... | def get(self, resource_group_name, web_service_name, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'webServiceName': self._serialize.url('web_service_nam... |
'Modifies an existing web service resource. The PATCH API call is an
asynchronous operation. To determine whether it has completed
successfully, you must perform a Get operation.
:param resource_group_name: Name of the resource group in which the
web service is located.
:type resource_group_name: str
:param web_service... | def patch(self, resource_group_name, web_service_name, patch_payload, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'webServiceName': self._serialize.url('web_service_nam... |
'Deletes the specified web service.
:param resource_group_name: Name of the resource group in which the
web service is located.
:type resource_group_name: str
:param web_service_name: The name of the web service.
:type web_service_name: str
:param dict custom_headers: headers that will be added to the request
:param bo... | def remove(self, resource_group_name, web_service_name, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'webServiceName': self._serialize.url('web_service_nam... |
'Gets the access keys for the specified web service.
:param resource_group_name: Name of the resource group in which the
web service is located.
:type resource_group_name: str
:param web_service_name: The name of the web service.
:type web_service_name: str
:param dict custom_headers: headers that will be added to the ... | def list_keys(self, resource_group_name, web_service_name, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}/listKeys'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'webServiceName': self._serialize.url('web_se... |
'Gets the web services in the specified resource group.
:param resource_group_name: Name of the resource group in which the
web service is located.
:type resource_group_name: str
:param skiptoken: Continuation token for pagination.
:type skiptoken: str
:param dict custom_headers: headers that will be added to the reque... | def list_by_resource_group(self, resource_group_name, skiptoken=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', reso... |
'Gets the web services in the specified subscription.
:param skiptoken: Continuation token for pagination.
:type skiptoken: str
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
deserialized response
:param operation_config: :ref:`Operation ... | def list(self, skiptoken=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/subscriptions/{subscriptionId}/providers/Microsoft.MachineLearning/webServices'
path_format_arguments = {'subscriptionId': self._serialize.url('self.config.subscription_id', self.config.subscription_id, 'str'... |
'Gets the first page of Data Lake Analytics accounts, if any, within a
specific resource group. This includes a link to the next page, if any.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param filter: OData filter. Optio... | def list_by_resource_group(self, resource_group_name, filter=None, top=None, skip=None, select=None, orderby=None, count=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resou... |
'Gets the first page of Data Lake Analytics accounts, if any, within the
current subscription. This includes a link to the next page, if any.
:param filter: OData filter. Optional.
:type filter: str
:param top: The number of items to return. Optional.
:type top: int
:param skip: The number of items to skip over before ... | def list(self, filter=None, top=None, skip=None, select=None, orderby=None, count=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/subscriptions/{subscriptionId}/providers/Microsoft.DataLakeAnalytics/accounts'
path_format_arguments = {'subscriptionId': self._serialize.url('self.config.subscription_id', self.config.subscription_id, 'str')... |
'Gets details of the specified Data Lake Analytics account.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param account_name: The name of the Data Lake Analytics account to
retrieve.
:type account_name: str
:param dict cus... | def get(self, resource_group_name, account_name, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'accountName': self._serialize.url('account_name', account... |
'Begins the delete delete process for the Data Lake Analytics account
object specified by the account name.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param account_name: The name of the Data Lake Analytics account to
d... | def delete(self, resource_group_name, account_name, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'accountName': self._serialize.url('account_name', account... |
'Creates the specified Data Lake Analytics account. This supplies the
user with computation services for Data Lake Analytics workloads.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.the account will be
associated with.
:type resource_group_name: str
:para... | def create(self, resource_group_name, account_name, parameters, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'accountName': self._serialize.url('account_name', account... |
'Updates the Data Lake Analytics account object specified by the
accountName with the contents of the account object.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param account_name: The name of the Data Lake Analytics ac... | def update(self, resource_group_name, account_name, parameters=None, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'accountName': self._serialize.url('account_name', account... |
'Gets the specified Data Lake Store account details in the specified
Data Lake Analytics account.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param account_name: The name of the Data Lake Analytics account from
which to ... | def get(self, resource_group_name, account_name, data_lake_store_account_name, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/DataLakeStoreAccounts/{dataLakeStoreAccountName}'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'accountN... |
'Updates the Data Lake Analytics account specified to remove the
specified Data Lake Store account.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param account_name: The name of the Data Lake Analytics account from
which t... | def delete(self, resource_group_name, account_name, data_lake_store_account_name, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/DataLakeStoreAccounts/{dataLakeStoreAccountName}'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'accountN... |
'Updates the specified Data Lake Analytics account to include the
additional Data Lake Store account.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param account_name: The name of the Data Lake Analytics account to
which t... | def add(self, resource_group_name, account_name, data_lake_store_account_name, suffix=None, custom_headers=None, raw=False, **operation_config):
| parameters = None
if (suffix is not None):
parameters = models.AddDataLakeStoreParameters(suffix=suffix)
url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/DataLakeStoreAccounts/{dataLakeStoreAccountName}'
path_f... |
'Gets the first page of Data Lake Store accounts linked to the specified
Data Lake Analytics account. The response includes a link to the next
page, if any.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param account_name:... | def list_by_account(self, resource_group_name, account_name, filter=None, top=None, skip=None, select=None, orderby=None, count=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/DataLakeStoreAccounts/'
path_format_arguments = {'resourceGroupName': self._seria... |
'Creates or updates the specified compute policy. During update, the
compute policy with the specified name will be replaced with this new
compute policy. An account supports, at most, 50 policies.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type reso... | def create_or_update(self, resource_group_name, account_name, compute_policy_name, parameters, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/computePolicies/{computePolicyName}'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'accountName': self._s... |
'Updates the specified compute policy.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param account_name: The name of the Data Lake Analytics account to
which to update the compute policy.
:type account_name: str
:param com... | def update(self, resource_group_name, account_name, compute_policy_name, max_degree_of_parallelism_per_job=None, min_priority_per_job=None, custom_headers=None, raw=False, **operation_config):
| parameters = None
if ((max_degree_of_parallelism_per_job is not None) or (min_priority_per_job is not None)):
parameters = models.ComputePolicy(max_degree_of_parallelism_per_job=max_degree_of_parallelism_per_job, min_priority_per_job=min_priority_per_job)
url = '/subscriptions/{subscriptionId}/resou... |
'Deletes the specified compute policy from the specified Data Lake
Analytics account.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param account_name: The name of the Data Lake Analytics account from
which to delete the c... | def delete(self, resource_group_name, account_name, compute_policy_name, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/computePolicies/{computePolicyName}'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'accountName': self._s... |
'Gets the specified Data Lake Analytics compute policy.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param account_name: The name of the Data Lake Analytics account from
which to get the compute policy.
:type account_name... | def get(self, resource_group_name, account_name, compute_policy_name, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/computePolicies/{computePolicyName}'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'accountName': self._s... |
'Lists the Data Lake Analytics compute policies within the specified
Data Lake Analytics account. An account supports, at most, 50 policies.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param account_name: The name of the... | def list_by_account(self, resource_group_name, account_name, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/computePolicies'
path_format_arguments = {'resourceGroupName': self._serialize.ur... |
'Gets the specified Azure Storage account linked to the given Data Lake
Analytics account.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param account_name: The name of the Data Lake Analytics account from
which to retriev... | def get(self, resource_group_name, account_name, storage_account_name, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/StorageAccounts/{storageAccountName}'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'accountName': self._... |
'Updates the specified Data Lake Analytics account to remove an Azure
Storage account.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param account_name: The name of the Data Lake Analytics account from
which to remove the ... | def delete(self, resource_group_name, account_name, storage_account_name, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/StorageAccounts/{storageAccountName}'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'accountName': self._... |
'Updates the Data Lake Analytics account to replace Azure Storage blob
account details, such as the access key and/or suffix.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param account_name: The name of the Data Lake Anal... | def update(self, resource_group_name, account_name, storage_account_name, access_key=None, suffix=None, custom_headers=None, raw=False, **operation_config):
| parameters = None
if ((access_key is not None) or (suffix is not None)):
parameters = models.UpdateStorageAccountParameters(access_key=access_key, suffix=suffix)
url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/Sto... |
'Updates the specified Data Lake Analytics account to add an Azure
Storage account.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param account_name: The name of the Data Lake Analytics account to
which to add the Azure St... | def add(self, resource_group_name, account_name, storage_account_name, access_key, suffix=None, custom_headers=None, raw=False, **operation_config):
| parameters = models.AddStorageAccountParameters(access_key=access_key, suffix=suffix)
url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/StorageAccounts/{storageAccountName}'
path_format_arguments = {'resourceGroupName': sel... |
'Gets the specified Azure Storage container associated with the given
Data Lake Analytics and Azure Storage accounts.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param account_name: The name of the Data Lake Analytics ac... | def get_storage_container(self, resource_group_name, account_name, storage_account_name, container_name, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/StorageAccounts/{storageAccountName}/Containers/{containerName}'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 's... |
'Lists the Azure Storage containers, if any, associated with the
specified Data Lake Analytics and Azure Storage account combination.
The response includes a link to the next page of results, if any.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type re... | def list_storage_containers(self, resource_group_name, account_name, storage_account_name, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/StorageAccounts/{storageAccountName}/Containers'
path_format_arguments = {'resour... |
'Gets the SAS token associated with the specified Data Lake Analytics
and Azure Storage account and container combination.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param account_name: The name of the Data Lake Analyti... | def list_sas_tokens(self, resource_group_name, account_name, storage_account_name, container_name, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/StorageAccounts/{storageAccountName}/Containers/{containerName}/listSasTokens'
pa... |
'Gets the first page of Azure Storage accounts, if any, linked to the
specified Data Lake Analytics account. The response includes a link to
the next page, if any.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param accoun... | def list_by_account(self, resource_group_name, account_name, filter=None, top=None, skip=None, select=None, orderby=None, count=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/StorageAccounts/'
path_format_arguments = {'resourceGroupName': self._serialize.u... |
'Creates or updates the specified firewall rule. During update, the
firewall rule with the specified name will be replaced with this new
firewall rule.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param account_name: The ... | def create_or_update(self, resource_group_name, account_name, firewall_rule_name, parameters, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/firewallRules/{firewallRuleName}'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'accountName': self._seri... |
'Updates the specified firewall rule.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param account_name: The name of the Data Lake Analytics account to
which to update the firewall rule.
:type account_name: str
:param firew... | def update(self, resource_group_name, account_name, firewall_rule_name, start_ip_address=None, end_ip_address=None, custom_headers=None, raw=False, **operation_config):
| parameters = None
if ((start_ip_address is not None) or (end_ip_address is not None)):
parameters = models.UpdateFirewallRuleParameters(start_ip_address=start_ip_address, end_ip_address=end_ip_address)
url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Data... |
'Deletes the specified firewall rule from the specified Data Lake
Analytics account.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param account_name: The name of the Data Lake Analytics account from
which to delete the fi... | def delete(self, resource_group_name, account_name, firewall_rule_name, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/firewallRules/{firewallRuleName}'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'accountName': self._seri... |
'Gets the specified Data Lake Analytics firewall rule.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param account_name: The name of the Data Lake Analytics account from
which to get the firewall rule.
:type account_name: ... | def get(self, resource_group_name, account_name, firewall_rule_name, custom_headers=None, raw=False, **operation_config):
| url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/firewallRules/{firewallRuleName}'
path_format_arguments = {'resourceGroupName': self._serialize.url('resource_group_name', resource_group_name, 'str'), 'accountName': self._seri... |
'Lists the Data Lake Analytics firewall rules within the specified Data
Lake Analytics account.
:param resource_group_name: The name of the Azure resource group that
contains the Data Lake Analytics account.
:type resource_group_name: str
:param account_name: The name of the Data Lake Analytics account from
which to ge... | def list_by_account(self, resource_group_name, account_name, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/firewallRules'
path_format_arguments = {'resourceGroupName': self._serialize.url(... |
'Creates the specified secret for use with external data sources in the
specified database. This is deprecated and will be removed in the next
release. Please use CreateCredential instead.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param... | def create_secret(self, account_name, database_name, secret_name, password, uri=None, custom_headers=None, raw=False, **operation_config):
| parameters = models.DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters(password=password, uri=uri)
url = '/catalog/usql/databases/{databaseName}/secrets/{secretName}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix'... |
'Modifies the specified secret for use with external data sources in the
specified database. This is deprecated and will be removed in the next
release. Please use UpdateCredential instead.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:para... | def update_secret(self, account_name, database_name, secret_name, password, uri=None, custom_headers=None, raw=False, **operation_config):
| parameters = models.DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters(password=password, uri=uri)
url = '/catalog/usql/databases/{databaseName}/secrets/{secretName}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix'... |
'Gets the specified secret in the specified database. This is deprecated
and will be removed in the next release. Please use GetCredential
instead.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database ... | def get_secret(self, account_name, database_name, secret_name, custom_headers=None, raw=False, **operation_config):
| url = '/catalog/usql/databases/{databaseName}/secrets/{secretName}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url('self.config.adla_catalog_dns_suffix', self.config.adla_catalog_dns_suffix, 'str', sk... |
'Deletes the specified secret in the specified database. This is
deprecated and will be removed in the next release. Please use
DeleteCredential instead.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the dat... | def delete_secret(self, account_name, database_name, secret_name, custom_headers=None, raw=False, **operation_config):
| url = '/catalog/usql/databases/{databaseName}/secrets/{secretName}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url('self.config.adla_catalog_dns_suffix', self.config.adla_catalog_dns_suffix, 'str', sk... |
'Deletes all secrets in the specified database. This is deprecated and
will be removed in the next release. In the future, please only drop
individual credentials using DeleteCredential.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param d... | def delete_all_secrets(self, account_name, database_name, custom_headers=None, raw=False, **operation_config):
| url = '/catalog/usql/databases/{databaseName}/secrets'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url('self.config.adla_catalog_dns_suffix', self.config.adla_catalog_dns_suffix, 'str', skip_quote=True... |
'Creates the specified credential for use with external data sources in
the specified database.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database in which to create the
credential. Note: This is NOT... | def create_credential(self, account_name, database_name, credential_name, parameters, custom_headers=None, raw=False, **operation_config):
| url = '/catalog/usql/databases/{databaseName}/credentials/{credentialName}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url('self.config.adla_catalog_dns_suffix', self.config.adla_catalog_dns_suffix, '... |
'Modifies the specified credential for use with external data sources in
the specified database.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the
credential.
:type database_name: str... | def update_credential(self, account_name, database_name, credential_name, parameters, custom_headers=None, raw=False, **operation_config):
| url = '/catalog/usql/databases/{databaseName}/credentials/{credentialName}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url('self.config.adla_catalog_dns_suffix', self.config.adla_catalog_dns_suffix, '... |
'Retrieves the specified credential from the Data Lake Analytics
catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the schema.
:type database_name: str
:param credential_name: Th... | def get_credential(self, account_name, database_name, credential_name, custom_headers=None, raw=False, **operation_config):
| url = '/catalog/usql/databases/{databaseName}/credentials/{credentialName}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url('self.config.adla_catalog_dns_suffix', self.config.adla_catalog_dns_suffix, '... |
'Deletes the specified credential in the specified database.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the
credential.
:type database_name: str
:param credential_name: The name of... | def delete_credential(self, account_name, database_name, credential_name, cascade=False, password=None, custom_headers=None, raw=False, **operation_config):
| parameters = None
if (password is not None):
parameters = models.DataLakeAnalyticsCatalogCredentialDeleteParameters(password=password)
url = '/catalog/usql/databases/{databaseName}/credentials/{credentialName}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_n... |
'Retrieves the list of credentials from the Data Lake Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the schema.
:type database_name: str
:param filter: OData filter... | def list_credentials(self, account_name, database_name, filter=None, top=None, skip=None, select=None, orderby=None, count=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/catalog/usql/databases/{databaseName}/credentials'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.ur... |
'Retrieves the specified external data source from the Data Lake
Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the external
data source.
:type database_name: str
:p... | def get_external_data_source(self, account_name, database_name, external_data_source_name, custom_headers=None, raw=False, **operation_config):
| url = '/catalog/usql/databases/{databaseName}/externaldatasources/{externalDataSourceName}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url('self.config.adla_catalog_dns_suffix', self.config.adla_catal... |
'Retrieves the list of external data sources from the Data Lake
Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the external
data sources.
:type database_name: str
:p... | def list_external_data_sources(self, account_name, database_name, filter=None, top=None, skip=None, select=None, orderby=None, count=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/catalog/usql/databases/{databaseName}/externaldatasources'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._seri... |
'Retrieves the specified procedure from the Data Lake Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the
procedure.
:type database_name: str
:param schema_name: The ... | def get_procedure(self, account_name, database_name, schema_name, procedure_name, custom_headers=None, raw=False, **operation_config):
| url = '/catalog/usql/databases/{databaseName}/schemas/{schemaName}/procedures/{procedureName}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url('self.config.adla_catalog_dns_suffix', self.config.adla_ca... |
'Retrieves the list of procedures from the Data Lake Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the
procedures.
:type database_name: str
:param schema_name: The ... | def list_procedures(self, account_name, database_name, schema_name, filter=None, top=None, skip=None, select=None, orderby=None, count=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/catalog/usql/databases/{databaseName}/schemas/{schemaName}/procedures'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix'... |
'Retrieves the specified table from the Data Lake Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the table.
:type database_name: str
:param schema_name: The name of ... | def get_table(self, account_name, database_name, schema_name, table_name, custom_headers=None, raw=False, **operation_config):
| url = '/catalog/usql/databases/{databaseName}/schemas/{schemaName}/tables/{tableName}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url('self.config.adla_catalog_dns_suffix', self.config.adla_catalog_dn... |
'Retrieves the list of tables from the Data Lake Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the tables.
:type database_name: str
:param schema_name: The name of ... | def list_tables(self, account_name, database_name, schema_name, filter=None, top=None, skip=None, select=None, orderby=None, count=None, basic=False, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/catalog/usql/databases/{databaseName}/schemas/{schemaName}/tables'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': se... |
'Retrieves the list of all table statistics within the specified schema
from the Data Lake Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the
statistics.
:type datab... | def list_table_statistics_by_database_and_schema(self, account_name, database_name, schema_name, filter=None, top=None, skip=None, select=None, orderby=None, count=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/catalog/usql/databases/{databaseName}/schemas/{schemaName}/statistics'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix'... |
'Retrieves the specified table type from the Data Lake Analytics
catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the table
type.
:type database_name: str
:param schema_name: Th... | def get_table_type(self, account_name, database_name, schema_name, table_type_name, custom_headers=None, raw=False, **operation_config):
| url = '/catalog/usql/databases/{databaseName}/schemas/{schemaName}/tabletypes/{tableTypeName}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url('self.config.adla_catalog_dns_suffix', self.config.adla_ca... |
'Retrieves the list of table types from the Data Lake Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the table
types.
:type database_name: str
:param schema_name: Th... | def list_table_types(self, account_name, database_name, schema_name, filter=None, top=None, skip=None, select=None, orderby=None, count=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/catalog/usql/databases/{databaseName}/schemas/{schemaName}/tabletypes'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix'... |
'Retrieves the specified package from the Data Lake Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the package.
:type database_name: str
:param schema_name: The name... | def get_package(self, account_name, database_name, schema_name, package_name, custom_headers=None, raw=False, **operation_config):
| url = '/catalog/usql/databases/{databaseName}/schemas/{schemaName}/packages/{packageName}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url('self.config.adla_catalog_dns_suffix', self.config.adla_catalo... |
'Retrieves the list of packages from the Data Lake Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the
packages.
:type database_name: str
:param schema_name: The name... | def list_packages(self, account_name, database_name, schema_name, filter=None, top=None, skip=None, select=None, orderby=None, count=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/catalog/usql/databases/{databaseName}/schemas/{schemaName}/packages'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': ... |
'Retrieves the specified view from the Data Lake Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the view.
:type database_name: str
:param schema_name: The name of th... | def get_view(self, account_name, database_name, schema_name, view_name, custom_headers=None, raw=False, **operation_config):
| url = '/catalog/usql/databases/{databaseName}/schemas/{schemaName}/views/{viewName}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url('self.config.adla_catalog_dns_suffix', self.config.adla_catalog_dns_... |
'Retrieves the list of views from the Data Lake Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the views.
:type database_name: str
:param schema_name: The name of th... | def list_views(self, account_name, database_name, schema_name, filter=None, top=None, skip=None, select=None, orderby=None, count=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/catalog/usql/databases/{databaseName}/schemas/{schemaName}/views'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': sel... |
'Retrieves the specified table statistics from the Data Lake Analytics
catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the
statistics.
:type database_name: str
:param schema_na... | def get_table_statistic(self, account_name, database_name, schema_name, table_name, statistics_name, custom_headers=None, raw=False, **operation_config):
| url = '/catalog/usql/databases/{databaseName}/schemas/{schemaName}/tables/{tableName}/statistics/{statisticsName}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url('self.config.adla_catalog_dns_suffix',... |
'Retrieves the list of table statistics from the Data Lake Analytics
catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the
statistics.
:type database_name: str
:param schema_name... | def list_table_statistics(self, account_name, database_name, schema_name, table_name, filter=None, top=None, skip=None, select=None, orderby=None, count=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/catalog/usql/databases/{databaseName}/schemas/{schemaName}/tables/{tableName}/statistics'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'ad... |
'Retrieves the specified table partition from the Data Lake Analytics
catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the
partition.
:type database_name: str
:param schema_name... | def get_table_partition(self, account_name, database_name, schema_name, table_name, partition_name, custom_headers=None, raw=False, **operation_config):
| url = '/catalog/usql/databases/{databaseName}/schemas/{schemaName}/tables/{tableName}/partitions/{partitionName}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url('self.config.adla_catalog_dns_suffix', ... |
'Retrieves the list of table partitions from the Data Lake Analytics
catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the
partitions.
:type database_name: str
:param schema_name... | def list_table_partitions(self, account_name, database_name, schema_name, table_name, filter=None, top=None, skip=None, select=None, orderby=None, count=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/catalog/usql/databases/{databaseName}/schemas/{schemaName}/tables/{tableName}/partitions'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'ad... |
'Retrieves the list of types within the specified database and schema
from the Data Lake Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the types.
:type database_nam... | def list_types(self, account_name, database_name, schema_name, filter=None, top=None, skip=None, select=None, orderby=None, count=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/catalog/usql/databases/{databaseName}/schemas/{schemaName}/types'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': sel... |
'Retrieves the specified table valued function from the Data Lake
Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the table
valued function.
:type database_name: str
... | def get_table_valued_function(self, account_name, database_name, schema_name, table_valued_function_name, custom_headers=None, raw=False, **operation_config):
| url = '/catalog/usql/databases/{databaseName}/schemas/{schemaName}/tablevaluedfunctions/{tableValuedFunctionName}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url('self.config.adla_catalog_dns_suffix',... |
'Retrieves the list of table valued functions from the Data Lake
Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the table
valued functions.
:type database_name: str
... | def list_table_valued_functions(self, account_name, database_name, schema_name, filter=None, top=None, skip=None, select=None, orderby=None, count=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/catalog/usql/databases/{databaseName}/schemas/{schemaName}/tablevaluedfunctions'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalog... |
'Retrieves the specified assembly from the Data Lake Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the
assembly.
:type database_name: str
:param assembly_name: The ... | def get_assembly(self, account_name, database_name, assembly_name, custom_headers=None, raw=False, **operation_config):
| url = '/catalog/usql/databases/{databaseName}/assemblies/{assemblyName}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url('self.config.adla_catalog_dns_suffix', self.config.adla_catalog_dns_suffix, 'str... |
'Retrieves the list of assemblies from the Data Lake Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the
assembly.
:type database_name: str
:param filter: OData filte... | def list_assemblies(self, account_name, database_name, filter=None, top=None, skip=None, select=None, orderby=None, count=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/catalog/usql/databases/{databaseName}/assemblies'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url... |
'Retrieves the specified schema from the Data Lake Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the schema.
:type database_name: str
:param schema_name: The name o... | def get_schema(self, account_name, database_name, schema_name, custom_headers=None, raw=False, **operation_config):
| url = '/catalog/usql/databases/{databaseName}/schemas/{schemaName}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url('self.config.adla_catalog_dns_suffix', self.config.adla_catalog_dns_suffix, 'str', sk... |
'Retrieves the list of schemas from the Data Lake Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the schema.
:type database_name: str
:param filter: OData filter. Op... | def list_schemas(self, account_name, database_name, filter=None, top=None, skip=None, select=None, orderby=None, count=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/catalog/usql/databases/{databaseName}/schemas'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url('s... |
'Retrieves the list of all statistics in a database from the Data Lake
Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the table
statistics.
:type database_name: str
... | def list_table_statistics_by_database(self, account_name, database_name, filter=None, top=None, skip=None, select=None, orderby=None, count=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/catalog/usql/databases/{databaseName}/statistics'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url... |
'Retrieves the list of all tables in a database from the Data Lake
Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the tables.
:type database_name: str
:param filter:... | def list_tables_by_database(self, account_name, database_name, filter=None, top=None, skip=None, select=None, orderby=None, count=None, basic=False, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/catalog/usql/databases/{databaseName}/tables'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url('se... |
'Retrieves the list of all table valued functions in a database from the
Data Lake Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the table
valued functions.
:type d... | def list_table_valued_functions_by_database(self, account_name, database_name, filter=None, top=None, skip=None, select=None, orderby=None, count=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/catalog/usql/databases/{databaseName}/tablevaluedfunctions'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._ser... |
'Retrieves the list of all views in a database from the Data Lake
Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database containing the views.
:type database_name: str
:param filter: O... | def list_views_by_database(self, account_name, database_name, filter=None, top=None, skip=None, select=None, orderby=None, count=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/catalog/usql/databases/{databaseName}/views'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url('sel... |
'Retrieves the specified database from the Data Lake Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param database_name: The name of the database.
:type database_name: str
:param dict custom_headers: headers that will be a... | def get_database(self, account_name, database_name, custom_headers=None, raw=False, **operation_config):
| url = '/catalog/usql/databases/{databaseName}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url('self.config.adla_catalog_dns_suffix', self.config.adla_catalog_dns_suffix, 'str', skip_quote=True), 'data... |
'Retrieves the list of databases from the Data Lake Analytics catalog.
:param account_name: The Azure Data Lake Analytics account upon which
to execute catalog operations.
:type account_name: str
:param filter: OData filter. Optional.
:type filter: str
:param top: The number of items to return. Optional.
:type top: int... | def list_databases(self, account_name, filter=None, top=None, skip=None, select=None, orderby=None, count=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/catalog/usql/databases'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaCatalogDnsSuffix': self._serialize.url('self.config.adla_catalog... |
'Lists all pipelines.
:param account_name: The Azure Data Lake Analytics account to execute
job operations on.
:type account_name: str
:param start_date_time: The start date for when to get the list of
pipelines. The startDateTime and endDateTime can be no more than 30
days apart.
:type start_date_time: datetime
:param... | def list(self, account_name, start_date_time=None, end_date_time=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/pipelines'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaJobDnsSuffix': self._serialize.url('self.config.adla_job_dns_suffix', self.co... |
'Gets the Pipeline information for the specified pipeline ID.
:param account_name: The Azure Data Lake Analytics account to execute
job operations on.
:type account_name: str
:param pipeline_identity: Pipeline ID.
:type pipeline_identity: str
:param start_date_time: The start date for when to get the pipeline
and aggre... | def get(self, account_name, pipeline_identity, start_date_time=None, end_date_time=None, custom_headers=None, raw=False, **operation_config):
| url = '/pipelines/{pipelineIdentity}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaJobDnsSuffix': self._serialize.url('self.config.adla_job_dns_suffix', self.config.adla_job_dns_suffix, 'str', skip_quote=True), 'pipelineIdentity': self._... |
'Gets statistics of the specified job.
:param account_name: The Azure Data Lake Analytics account to execute
job operations on.
:type account_name: str
:param job_identity: Job Information ID.
:type job_identity: str
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the dire... | def get_statistics(self, account_name, job_identity, custom_headers=None, raw=False, **operation_config):
| url = '/Jobs/{jobIdentity}/GetStatistics'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaJobDnsSuffix': self._serialize.url('self.config.adla_job_dns_suffix', self.config.adla_job_dns_suffix, 'str', skip_quote=True), 'jobIdentity': self._s... |
'Gets the job debug data information specified by the job ID.
:param account_name: The Azure Data Lake Analytics account to execute
job operations on.
:type account_name: str
:param job_identity: JobInfo ID.
:type job_identity: str
:param dict custom_headers: headers that will be added to the request
:param bool raw: r... | def get_debug_data_path(self, account_name, job_identity, custom_headers=None, raw=False, **operation_config):
| url = '/Jobs/{jobIdentity}/GetDebugDataPath'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaJobDnsSuffix': self._serialize.url('self.config.adla_job_dns_suffix', self.config.adla_job_dns_suffix, 'str', skip_quote=True), 'jobIdentity': self... |
'Builds (compiles) the specified job in the specified Data Lake
Analytics account for job correctness and validation.
:param account_name: The Azure Data Lake Analytics account to execute
job operations on.
:type account_name: str
:param parameters: The parameters to build a job.
:type parameters: :class:`JobInformatio... | def build(self, account_name, parameters, custom_headers=None, raw=False, **operation_config):
| url = '/BuildJob'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaJobDnsSuffix': self._serialize.url('self.config.adla_job_dns_suffix', self.config.adla_job_dns_suffix, 'str', skip_quote=True)}
url = self._client.format_url(url, **path_... |
'Cancels the running job specified by the job ID.
:param account_name: The Azure Data Lake Analytics account to execute
job operations on.
:type account_name: str
:param job_identity: JobInfo ID to cancel.
:type job_identity: str
:param dict custom_headers: headers that will be added to the request
:param bool raw: ret... | def cancel(self, account_name, job_identity, custom_headers=None, raw=False, **operation_config):
| url = '/Jobs/{jobIdentity}/CancelJob'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaJobDnsSuffix': self._serialize.url('self.config.adla_job_dns_suffix', self.config.adla_job_dns_suffix, 'str', skip_quote=True), 'jobIdentity': self._seria... |
'Gets the job information for the specified job ID.
:param account_name: The Azure Data Lake Analytics account to execute
job operations on.
:type account_name: str
:param job_identity: JobInfo ID.
:type job_identity: str
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the... | def get(self, account_name, job_identity, custom_headers=None, raw=False, **operation_config):
| url = '/Jobs/{jobIdentity}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaJobDnsSuffix': self._serialize.url('self.config.adla_job_dns_suffix', self.config.adla_job_dns_suffix, 'str', skip_quote=True), 'jobIdentity': self._serialize.url('... |
'Submits a job to the specified Data Lake Analytics account.
:param account_name: The Azure Data Lake Analytics account to execute
job operations on.
:type account_name: str
:param job_identity: The job ID (a GUID) for the job being submitted.
:type job_identity: str
:param parameters: The parameters to submit a job.
:... | def create(self, account_name, job_identity, parameters, custom_headers=None, raw=False, **operation_config):
| url = '/Jobs/{jobIdentity}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaJobDnsSuffix': self._serialize.url('self.config.adla_job_dns_suffix', self.config.adla_job_dns_suffix, 'str', skip_quote=True), 'jobIdentity': self._serialize.url('... |
'Lists the jobs, if any, associated with the specified Data Lake
Analytics account. The response includes a link to the next page of
results, if any.
:param account_name: The Azure Data Lake Analytics account to execute
job operations on.
:type account_name: str
:param filter: OData filter. Optional.
:type filter: str
... | def list(self, account_name, filter=None, top=None, skip=None, select=None, orderby=None, count=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/Jobs'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaJobDnsSuffix': self._serialize.url('self.config.adla_job_dns_suffix', self.config.... |
'Lists all recurrences.
:param account_name: The Azure Data Lake Analytics account to execute
job operations on.
:type account_name: str
:param start_date_time: The start date for when to get the list of
recurrences. The startDateTime and endDateTime can be no more than 30
days apart.
:type start_date_time: datetime
:p... | def list(self, account_name, start_date_time=None, end_date_time=None, custom_headers=None, raw=False, **operation_config):
| def internal_paging(next_link=None, raw=False):
if (not next_link):
url = '/recurrences'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaJobDnsSuffix': self._serialize.url('self.config.adla_job_dns_suffix', self.... |
'Gets the recurrence information for the specified recurrence ID.
:param account_name: The Azure Data Lake Analytics account to execute
job operations on.
:type account_name: str
:param recurrence_identity: Recurrence ID.
:type recurrence_identity: str
:param start_date_time: The start date for when to get the recurren... | def get(self, account_name, recurrence_identity, start_date_time=None, end_date_time=None, custom_headers=None, raw=False, **operation_config):
| url = '/recurrences/{recurrenceIdentity}'
path_format_arguments = {'accountName': self._serialize.url('account_name', account_name, 'str', skip_quote=True), 'adlaJobDnsSuffix': self._serialize.url('self.config.adla_job_dns_suffix', self.config.adla_job_dns_suffix, 'str', skip_quote=True), 'recurrenceIdentity': ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.