Sha256: 0380f087625c8b5597c3f918a5d94fd920f4539442347628d0de43bde8daa3fd
Contents?: true
Size: 1.52 KB
Versions: 2
Compression:
Stored size: 1.52 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ARM::MachineLearning module Models # # Describes the access location for a blob. # class BlobLocation include MsRestAzure include MsRest::JSONable # @return [String] The URI from which the blob is accessible from. For # example, aml://abc for system assets or https://xyz for user assets or # payload. attr_accessor :uri # @return [String] Access credentials for the blob, if applicable (e.g. # blob specified by storage account connection string + blob URI) attr_accessor :credentials # # Mapper for BlobLocation class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'BlobLocation', type: { name: 'Composite', class_name: 'BlobLocation', model_properties: { uri: { required: true, serialized_name: 'uri', type: { name: 'String' } }, credentials: { required: false, serialized_name: 'credentials', type: { name: 'String' } } } } } end end end end
Version data entries
2 entries across 2 versions & 1 rubygems