How to use the azure-mgmt-datalake-analytics.azure.mgmt.datalake.analytics.job.models.base_job_parameters.BaseJobParameters function in azure-mgmt-datalake-analytics

To help you get started, we’ve selected a few azure-mgmt-datalake-analytics examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Azure / azure-sdk-for-python / azure-mgmt-datalake-analytics / azure / mgmt / datalake / analytics / job / models / base_job_parameters.py View on Github external
def __init__(self, **kwargs):
        super(BaseJobParameters, self).__init__(**kwargs)
        self.type = kwargs.get('type', None)
        self.properties = kwargs.get('properties', None)
github Azure / azure-sdk-for-python / azure-mgmt-datalake-analytics / azure / mgmt / datalake / analytics / job / models / create_job_parameters.py View on Github external
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from .base_job_parameters import BaseJobParameters


class CreateJobParameters(BaseJobParameters):
    """The parameters used to submit a new Data Lake Analytics job.

    All required parameters must be populated in order to send to Azure.

    :param type: Required. The job type of the current job (Hive, USql, or
     Scope (for internal use only)). Possible values include: 'USql', 'Hive',
     'Scope'
    :type type: str or ~azure.mgmt.datalake.analytics.job.models.JobType
    :param properties: Required. The job specific properties.
    :type properties:
     ~azure.mgmt.datalake.analytics.job.models.CreateJobProperties
    :param name: Required. The friendly name of the job to submit.
    :type name: str
    :param degree_of_parallelism: The degree of parallelism to use for this
     job. This must be greater than 0, if set to less than 0 it will default to
     1. Default value: 1 .
github Azure / azure-sdk-for-python / azure-mgmt-datalake-analytics / azure / mgmt / datalake / analytics / job / models / build_job_parameters.py View on Github external
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from .base_job_parameters import BaseJobParameters


class BuildJobParameters(BaseJobParameters):
    """The parameters used to build a new Data Lake Analytics job.

    All required parameters must be populated in order to send to Azure.

    :param type: Required. The job type of the current job (Hive, USql, or
     Scope (for internal use only)). Possible values include: 'USql', 'Hive',
     'Scope'
    :type type: str or ~azure.mgmt.datalake.analytics.job.models.JobType
    :param properties: Required. The job specific properties.
    :type properties:
     ~azure.mgmt.datalake.analytics.job.models.CreateJobProperties
    :param name: The friendly name of the job to build.
    :type name: str
    """

    _validation = {

azure-mgmt-datalake-analytics

Microsoft Azure Data Lake Analytics Management Client Library for Python

MIT
Latest version published 6 years ago

Package Health Score

82 / 100
Full package analysis

Popular azure-mgmt-datalake-analytics functions