How to use azure-batch - 10 common examples

To help you get started, we’ve selected a few azure-batch 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-batch / azure / batch / models / account_list_node_agent_skus_options.py View on Github external
def __init__(self, **kwargs):
        super(AccountListNodeAgentSkusOptions, self).__init__(**kwargs)
        self.filter = kwargs.get('filter', None)
        self.max_results = kwargs.get('max_results', 1000)
        self.timeout = kwargs.get('timeout', 30)
        self.client_request_id = kwargs.get('client_request_id', None)
        self.return_client_request_id = kwargs.get('return_client_request_id', False)
        self.ocp_date = kwargs.get('ocp_date', None)
github Azure / azure-sdk-for-python / azure-batch / azure / batch / models / account_list_pool_node_counts_options.py View on Github external
def __init__(self, **kwargs):
        super(AccountListPoolNodeCountsOptions, self).__init__(**kwargs)
        self.filter = kwargs.get('filter', None)
        self.max_results = kwargs.get('max_results', 10)
        self.timeout = kwargs.get('timeout', 30)
        self.client_request_id = kwargs.get('client_request_id', None)
        self.return_client_request_id = kwargs.get('return_client_request_id', False)
        self.ocp_date = kwargs.get('ocp_date', None)
github Azure / azure-sdk-for-python / azure-batch / azure / batch / models / affinity_information.py View on Github external
def __init__(self, **kwargs):
        super(AffinityInformation, self).__init__(**kwargs)
        self.affinity_id = kwargs.get('affinity_id', None)
github Azure / azure-sdk-for-python / azure-batch / azure / batch / models / application_get_options.py View on Github external
def __init__(self, **kwargs):
        super(ApplicationGetOptions, self).__init__(**kwargs)
        self.timeout = kwargs.get('timeout', 30)
        self.client_request_id = kwargs.get('client_request_id', None)
        self.return_client_request_id = kwargs.get('return_client_request_id', False)
        self.ocp_date = kwargs.get('ocp_date', None)
github Azure / azure-sdk-for-python / azure-batch / azure / batch / models / application_list_options.py View on Github external
def __init__(self, **kwargs):
        super(ApplicationListOptions, self).__init__(**kwargs)
        self.max_results = kwargs.get('max_results', 1000)
        self.timeout = kwargs.get('timeout', 30)
        self.client_request_id = kwargs.get('client_request_id', None)
        self.return_client_request_id = kwargs.get('return_client_request_id', False)
        self.ocp_date = kwargs.get('ocp_date', None)
github Azure / azure-sdk-for-python / azure-batch / azure / batch / models / application_package_reference.py View on Github external
def __init__(self, **kwargs):
        super(ApplicationPackageReference, self).__init__(**kwargs)
        self.application_id = kwargs.get('application_id', None)
        self.version = kwargs.get('version', None)
github Azure / azure-sdk-for-python / azure-batch / azure / batch / models / application_summary.py View on Github external
def __init__(self, **kwargs):
        super(ApplicationSummary, self).__init__(**kwargs)
        self.id = kwargs.get('id', None)
        self.display_name = kwargs.get('display_name', None)
        self.versions = kwargs.get('versions', None)
github Azure / azure-sdk-for-python / azure-batch / azure / batch / models / application_summary_paged.py View on Github external
def __init__(self, *args, **kwargs):

        super(ApplicationSummaryPaged, self).__init__(*args, **kwargs)
github Azure / azure-sdk-for-python / azure-batch / azure / batch / models / authentication_token_settings.py View on Github external
def __init__(self, **kwargs):
        super(AuthenticationTokenSettings, self).__init__(**kwargs)
        self.access = kwargs.get('access', None)
github Azure / azure-sdk-for-python / azure-batch / azure / batch / models / auto_pool_specification.py View on Github external
def __init__(self, **kwargs):
        super(AutoPoolSpecification, self).__init__(**kwargs)
        self.auto_pool_id_prefix = kwargs.get('auto_pool_id_prefix', None)
        self.pool_lifetime_option = kwargs.get('pool_lifetime_option', None)
        self.keep_alive = kwargs.get('keep_alive', None)
        self.pool = kwargs.get('pool', None)

azure-batch

Microsoft Azure Batch Client Library for Python

MIT
Latest version published 1 month ago

Package Health Score

96 / 100
Full package analysis

Popular azure-batch functions