# 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
[docs]class AzureMLWebServiceFile(Model):
"""Azure ML WebService Input/Output file.
All required parameters must be populated in order to send to Azure.
:param file_path: Required. The relative file path, including container
name, in the Azure Blob Storage specified by the LinkedService. Type:
string (or Expression with resultType string).
:type file_path: object
:param linked_service_name: Required. Reference to an Azure Storage
LinkedService, where Azure ML WebService Input/Output file located.
:type linked_service_name:
~azure.mgmt.datafactory.models.LinkedServiceReference
"""
_validation = {
'file_path': {'required': True},
'linked_service_name': {'required': True},
}
_attribute_map = {
'file_path': {'key': 'filePath', 'type': 'object'},
'linked_service_name': {'key': 'linkedServiceName', 'type': 'LinkedServiceReference'},
}
def __init__(self, *, file_path, linked_service_name, **kwargs) -> None:
super(AzureMLWebServiceFile, self).__init__(**kwargs)
self.file_path = file_path
self.linked_service_name = linked_service_name