C# Class Microsoft.Azure.Commands.DataLakeAnalytics.Models.DataLakeAnalyticsClient

ファイルを表示 Open project: Azure/azure-powershell

Public Methods

Method Description
AddDataLakeStoreAccount ( string resourceGroupName, string accountName, DataLakeStoreAccountInfo storageToAdd ) : void
AddStorageAccount ( string resourceGroupName, string accountName, StorageAccountInfo storageToAdd ) : void
BuildJob ( string accountName, JobInformation jobToBuild ) : JobInformation
CancelJob ( string accountName, System.Guid jobId ) : void
CreateCredential ( string accountName, string databaseName, string credentialName, string userId, string password, string hostUri ) : void
CreateOrUpdateAccount ( string resourceGroupName, string accountName, string location, DataLakeStoreAccountInfo defaultDataLakeStoreAccount = null, IList additionalDataLakeStoreAccounts = null, IList additionalStorageAccounts = null, Hashtable customTags = null ) : Microsoft.Azure.Management.DataLake.Analytics.Models.DataLakeAnalyticsAccount
CreateSecret ( string accountName, string databaseName, string secretName, string password, string hostUri ) : Microsoft.Azure.Management.DataLake.AnalyticsCatalog.Models.USqlSecret
DataLakeAnalyticsClient ( Microsoft.Azure.Common.Authentication.Models.AzureContext context ) : Microsoft.Azure.Commands.Common.Authentication.Models
DeleteAccount ( string resourceGroupName, string accountName ) : void
DeleteCredential ( string accountName, string databaseName, string credentialName, string password = null ) : void
DeleteSecret ( string accountName, string databaseName, string secretName ) : void
GetAccount ( string resourceGroupName, string accountName ) : Microsoft.Azure.Management.DataLake.Analytics.Models.DataLakeAnalyticsAccount
GetAllDataSources ( string resourceGroupName, string accountName ) : IEnumerable
GetCatalogItem ( string accountName, CatalogPathInstance path, DataLakeAnalyticsEnums itemType ) : IList
GetDataLakeStoreAccount ( string resourceGroupName, string accountName, string dataLakeStoreAccountName ) : DataLakeStoreAccountInfo
GetDebugDataPaths ( string accountName, System.Guid jobId ) : Microsoft.Azure.Management.DataLake.AnalyticsJob.Models.JobDataPath
GetJob ( string accountName, System.Guid jobId ) : JobInformation
GetJobStatistics ( string accountName, System.Guid jobId ) : Microsoft.Azure.Management.DataLake.AnalyticsJob.Models.JobStatistics
GetSecret ( string accountName, string databaseName, string secretName ) : Microsoft.Azure.Management.DataLake.AnalyticsCatalog.Models.USqlSecret
GetStorageAccount ( string resourceGroupName, string accountName, string storageAccountName ) : StorageAccountInfo
ListAccounts ( string resourceGroupName, string filter, int top, int skip ) : List
ListDataLakeStoreAccounts ( string resourceGroupName, string accountName ) : IEnumerable
ListJobs ( string accountName, string filter, int top, int skip ) : List
ListStorageAccounts ( string resourceGroupName, string accountName ) : IEnumerable
RemoveDataLakeStoreAccount ( string resourceGroupName, string accountName, string dataLakeStoreAccountName ) : void
RemoveStorageAccount ( string resourceGroupName, string accountName, string storageAccountName ) : void
SetDefaultDataLakeStoreAccount ( string resourceGroupName, string accountName, DataLakeStoreAccountInfo storageToSet ) : void
SetStorageAccount ( string resourceGroupName, string accountName, StorageAccountInfo storageToSet ) : void
SubmitJob ( string accountName, JobInformation jobToSubmit ) : JobInformation
TestAccount ( string resourceGroupName, string accountName ) : bool
TestCatalogItem ( string accountName, CatalogPathInstance path, DataLakeAnalyticsEnums itemType ) : bool
UpdateCredentialPassword ( string accountName, string databaseName, string credentialName, string userId, string password, string newPassword, string hostUri ) : void
UpdateSecret ( string accountName, string databaseName, string secretName, string password, string hostUri ) : Microsoft.Azure.Management.DataLake.AnalyticsCatalog.Models.USqlSecret

Private Methods

Method Description
GetAssemblies ( string accountName, string databaseName ) : IList
GetAssembly ( string accountName, string databaseName, string assemblyName ) : Microsoft.Azure.Management.DataLake.AnalyticsCatalog.Models.USqlAssembly
GetCredential ( string accountName, string databaseName, string credName ) : ObsoleteUSqlCredential
GetCredentials ( string accountName, string databaseName ) : IList
GetDatabase ( string accountName, string databaseName ) : Microsoft.Azure.Management.DataLake.AnalyticsCatalog.Models.USqlDatabase
GetDatabases ( string accountName ) : IList
GetExternalDataSource ( string accountName, string databaseName, string dataSourceName ) : Microsoft.Azure.Management.DataLake.AnalyticsCatalog.Models.USqlExternalDataSource
GetExternalDataSources ( string accountName, string databaseName ) : IList
GetProcedure ( string accountName, string databaseName, string schemaName, string procName ) : Microsoft.Azure.Management.DataLake.AnalyticsCatalog.Models.USqlProcedure
GetProcedures ( string accountName, string databaseName, string schemaName ) : IList
GetResourceGroupByAccountName ( string accountName ) : string
GetSchema ( string accountName, string databaseName, string schemaName ) : Microsoft.Azure.Management.DataLake.AnalyticsCatalog.Models.USqlSchema
GetSchemas ( string accountName, string databaseName ) : IList
GetTable ( string accountName, string databaseName, string schemaName, string tableName ) : Microsoft.Azure.Management.DataLake.AnalyticsCatalog.Models.USqlTable
GetTablePartition ( string accountName, string databaseName, string schemaName, string tableName, string partitionName ) : USqlTablePartition
GetTablePartitions ( string accountName, string databaseName, string schemaName, string tableName ) : IList
GetTableStatistic ( string accountName, string databaseName, string schemaName, string tableName, string statisticsName ) : Microsoft.Azure.Management.DataLake.AnalyticsCatalog.Models.USqlTableStatistics
GetTableStatistics ( string accountName, string databaseName, string schemaName, string tableName ) : IList
GetTableValuedFunction ( string accountName, string databaseName, string schemaName, string tableValuedFunctionName ) : Microsoft.Azure.Management.DataLake.AnalyticsCatalog.Models.USqlTableValuedFunction
GetTableValuedFunctions ( string accountName, string databaseName, string schemaName ) : IList
GetTables ( string accountName, string databaseName, string schemaName ) : IList
GetTypes ( string accountName, string databaseName, string schemaName ) : IList
GetView ( string accountName, string databaseName, string schemaName, string viewName ) : Microsoft.Azure.Management.DataLake.AnalyticsCatalog.Models.USqlView
GetViews ( string accountName, string databaseName, string schemaName ) : IList
IsCatalogItemOrList ( CatalogPathInstance path, DataLakeAnalyticsEnums type ) : bool
ListAccountsWithNextLink ( string nextLink ) : IPage
ListJobsWithNextLink ( string nextLink ) : IPage

Method Details

AddDataLakeStoreAccount() public method

public AddDataLakeStoreAccount ( string resourceGroupName, string accountName, DataLakeStoreAccountInfo storageToAdd ) : void
resourceGroupName string
accountName string
storageToAdd DataLakeStoreAccountInfo
return void

AddStorageAccount() public method

public AddStorageAccount ( string resourceGroupName, string accountName, StorageAccountInfo storageToAdd ) : void
resourceGroupName string
accountName string
storageToAdd StorageAccountInfo
return void

BuildJob() public method

public BuildJob ( string accountName, JobInformation jobToBuild ) : JobInformation
accountName string
jobToBuild JobInformation
return JobInformation

CancelJob() public method

public CancelJob ( string accountName, System.Guid jobId ) : void
accountName string
jobId System.Guid
return void

CreateCredential() public method

public CreateCredential ( string accountName, string databaseName, string credentialName, string userId, string password, string hostUri ) : void
accountName string
databaseName string
credentialName string
userId string
password string
hostUri string
return void

CreateOrUpdateAccount() public method

public CreateOrUpdateAccount ( string resourceGroupName, string accountName, string location, DataLakeStoreAccountInfo defaultDataLakeStoreAccount = null, IList additionalDataLakeStoreAccounts = null, IList additionalStorageAccounts = null, Hashtable customTags = null ) : Microsoft.Azure.Management.DataLake.Analytics.Models.DataLakeAnalyticsAccount
resourceGroupName string
accountName string
location string
defaultDataLakeStoreAccount DataLakeStoreAccountInfo
additionalDataLakeStoreAccounts IList
additionalStorageAccounts IList
customTags System.Collections.Hashtable
return Microsoft.Azure.Management.DataLake.Analytics.Models.DataLakeAnalyticsAccount

CreateSecret() public method

public CreateSecret ( string accountName, string databaseName, string secretName, string password, string hostUri ) : Microsoft.Azure.Management.DataLake.AnalyticsCatalog.Models.USqlSecret
accountName string
databaseName string
secretName string
password string
hostUri string
return Microsoft.Azure.Management.DataLake.AnalyticsCatalog.Models.USqlSecret

DataLakeAnalyticsClient() public method

public DataLakeAnalyticsClient ( Microsoft.Azure.Common.Authentication.Models.AzureContext context ) : Microsoft.Azure.Commands.Common.Authentication.Models
context Microsoft.Azure.Common.Authentication.Models.AzureContext
return Microsoft.Azure.Commands.Common.Authentication.Models

DeleteAccount() public method

public DeleteAccount ( string resourceGroupName, string accountName ) : void
resourceGroupName string
accountName string
return void

DeleteCredential() public method

public DeleteCredential ( string accountName, string databaseName, string credentialName, string password = null ) : void
accountName string
databaseName string
credentialName string
password string
return void

DeleteSecret() public method

public DeleteSecret ( string accountName, string databaseName, string secretName ) : void
accountName string
databaseName string
secretName string
return void

GetAccount() public method

public GetAccount ( string resourceGroupName, string accountName ) : Microsoft.Azure.Management.DataLake.Analytics.Models.DataLakeAnalyticsAccount
resourceGroupName string
accountName string
return Microsoft.Azure.Management.DataLake.Analytics.Models.DataLakeAnalyticsAccount

GetAllDataSources() public method

public GetAllDataSources ( string resourceGroupName, string accountName ) : IEnumerable
resourceGroupName string
accountName string
return IEnumerable

GetCatalogItem() public method

public GetCatalogItem ( string accountName, CatalogPathInstance path, DataLakeAnalyticsEnums itemType ) : IList
accountName string
path CatalogPathInstance
itemType DataLakeAnalyticsEnums
return IList

GetDataLakeStoreAccount() public method

public GetDataLakeStoreAccount ( string resourceGroupName, string accountName, string dataLakeStoreAccountName ) : DataLakeStoreAccountInfo
resourceGroupName string
accountName string
dataLakeStoreAccountName string
return DataLakeStoreAccountInfo

GetDebugDataPaths() public method

public GetDebugDataPaths ( string accountName, System.Guid jobId ) : Microsoft.Azure.Management.DataLake.AnalyticsJob.Models.JobDataPath
accountName string
jobId System.Guid
return Microsoft.Azure.Management.DataLake.AnalyticsJob.Models.JobDataPath

GetJob() public method

public GetJob ( string accountName, System.Guid jobId ) : JobInformation
accountName string
jobId System.Guid
return JobInformation

GetJobStatistics() public method

public GetJobStatistics ( string accountName, System.Guid jobId ) : Microsoft.Azure.Management.DataLake.AnalyticsJob.Models.JobStatistics
accountName string
jobId System.Guid
return Microsoft.Azure.Management.DataLake.AnalyticsJob.Models.JobStatistics

GetSecret() public method

public GetSecret ( string accountName, string databaseName, string secretName ) : Microsoft.Azure.Management.DataLake.AnalyticsCatalog.Models.USqlSecret
accountName string
databaseName string
secretName string
return Microsoft.Azure.Management.DataLake.AnalyticsCatalog.Models.USqlSecret

GetStorageAccount() public method

public GetStorageAccount ( string resourceGroupName, string accountName, string storageAccountName ) : StorageAccountInfo
resourceGroupName string
accountName string
storageAccountName string
return StorageAccountInfo

ListAccounts() public method

public ListAccounts ( string resourceGroupName, string filter, int top, int skip ) : List
resourceGroupName string
filter string
top int
skip int
return List

ListDataLakeStoreAccounts() public method

public ListDataLakeStoreAccounts ( string resourceGroupName, string accountName ) : IEnumerable
resourceGroupName string
accountName string
return IEnumerable

ListJobs() public method

public ListJobs ( string accountName, string filter, int top, int skip ) : List
accountName string
filter string
top int
skip int
return List

ListStorageAccounts() public method

public ListStorageAccounts ( string resourceGroupName, string accountName ) : IEnumerable
resourceGroupName string
accountName string
return IEnumerable

RemoveDataLakeStoreAccount() public method

public RemoveDataLakeStoreAccount ( string resourceGroupName, string accountName, string dataLakeStoreAccountName ) : void
resourceGroupName string
accountName string
dataLakeStoreAccountName string
return void

RemoveStorageAccount() public method

public RemoveStorageAccount ( string resourceGroupName, string accountName, string storageAccountName ) : void
resourceGroupName string
accountName string
storageAccountName string
return void

SetDefaultDataLakeStoreAccount() public method

public SetDefaultDataLakeStoreAccount ( string resourceGroupName, string accountName, DataLakeStoreAccountInfo storageToSet ) : void
resourceGroupName string
accountName string
storageToSet DataLakeStoreAccountInfo
return void

SetStorageAccount() public method

public SetStorageAccount ( string resourceGroupName, string accountName, StorageAccountInfo storageToSet ) : void
resourceGroupName string
accountName string
storageToSet StorageAccountInfo
return void

SubmitJob() public method

public SubmitJob ( string accountName, JobInformation jobToSubmit ) : JobInformation
accountName string
jobToSubmit JobInformation
return JobInformation

TestAccount() public method

public TestAccount ( string resourceGroupName, string accountName ) : bool
resourceGroupName string
accountName string
return bool

TestCatalogItem() public method

public TestCatalogItem ( string accountName, CatalogPathInstance path, DataLakeAnalyticsEnums itemType ) : bool
accountName string
path CatalogPathInstance
itemType DataLakeAnalyticsEnums
return bool

UpdateCredentialPassword() public method

public UpdateCredentialPassword ( string accountName, string databaseName, string credentialName, string userId, string password, string newPassword, string hostUri ) : void
accountName string
databaseName string
credentialName string
userId string
password string
newPassword string
hostUri string
return void

UpdateSecret() public method

public UpdateSecret ( string accountName, string databaseName, string secretName, string password, string hostUri ) : Microsoft.Azure.Management.DataLake.AnalyticsCatalog.Models.USqlSecret
accountName string
databaseName string
secretName string
password string
hostUri string
return Microsoft.Azure.Management.DataLake.AnalyticsCatalog.Models.USqlSecret