1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
# 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 msrest.serialization import Model
class UploadBatchServiceLogsResult(Model):
"""The result of uploading Batch service log files from a specific compute
node.
All required parameters must be populated in order to send to Azure.
:param virtual_directory_name: Required. The virtual directory within
Azure Blob Storage container to which the Batch Service log file(s) will
be uploaded. The virtual directory name is part of the blob name for each
log file uploaded, and it is built based poolId, nodeId and a unique
identifier.
:type virtual_directory_name: str
:param number_of_files_uploaded: Required. The number of log files which
will be uploaded.
:type number_of_files_uploaded: int
"""
_validation = {
'virtual_directory_name': {'required': True},
'number_of_files_uploaded': {'required': True},
}
_attribute_map = {
'virtual_directory_name': {'key': 'virtualDirectoryName', 'type': 'str'},
'number_of_files_uploaded': {'key': 'numberOfFilesUploaded', 'type': 'int'},
}
def __init__(self, *, virtual_directory_name: str, number_of_files_uploaded: int, **kwargs) -> None:
super(UploadBatchServiceLogsResult, self).__init__(**kwargs)
self.virtual_directory_name = virtual_directory_name
self.number_of_files_uploaded = number_of_files_uploaded
|