class Azure::MachineLearningServices::Mgmt::V2019_05_01::Models::DatabricksComputeSecrets
Secrets related to a Machine Learning compute based on Databricks
.
Attributes
computeType[RW]
databricks_access_token[RW]
@return [String] access token for databricks account.
Private Class Methods
mapper()
click to toggle source
Mapper for DatabricksComputeSecrets
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-05-01/generated/azure_mgmt_machine_learning_services/models/databricks_compute_secrets.rb, line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Databricks', type: { name: 'Composite', class_name: 'DatabricksComputeSecrets', model_properties: { computeType: { client_side_validation: true, required: true, serialized_name: 'computeType', type: { name: 'String' } }, databricks_access_token: { client_side_validation: true, required: false, serialized_name: 'databricksAccessToken', type: { name: 'String' } } } } } end
new()
click to toggle source
# File lib/2019-05-01/generated/azure_mgmt_machine_learning_services/models/databricks_compute_secrets.rb, line 16 def initialize @computeType = "Databricks" end