const ( // DefaultAdlaCatalogDNSSuffix is the default value for adla catalog dns suffix DefaultAdlaCatalogDNSSuffix = "azuredatalakeanalytics.net" )
func UserAgent() string
UserAgent returns the UserAgent string to use when sending http.Requests.
func Version() string
Version returns the semantic version (see http://semver.org) of the client.
ACL a Data Lake Analytics catalog access control list (ACL) entry.
type ACL struct { // AceType - READ-ONLY; the access control list (ACL) entry type. UserObj and GroupObj denote the owning user and group, respectively. Possible values include: 'UserObj', 'GroupObj', 'Other', 'User', 'Group' AceType ACLType `json:"aceType,omitempty"` // PrincipalID - READ-ONLY; the Azure AD object ID of the user or group being specified in the access control list (ACL) entry. PrincipalID *uuid.UUID `json:"principalId,omitempty"` // Permission - READ-ONLY; the permission type of the access control list (ACL) entry. Possible values include: 'None', 'Use', 'Create', 'Drop', 'Alter', 'Write', 'All' Permission PermissionType `json:"permission,omitempty"` }
func (a ACL) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ACL.
ACLCreateOrUpdateParameters the parameters used to create or update an access control list (ACL) entry.
type ACLCreateOrUpdateParameters struct { // AceType - the access control list (ACL) entry type. UserObj and GroupObj denote the owning user and group, respectively. Possible values include: 'UserObj', 'GroupObj', 'Other', 'User', 'Group' AceType ACLType `json:"aceType,omitempty"` // PrincipalID - the Azure AD object ID of the user or group being specified in the access control list (ACL) entry. PrincipalID *uuid.UUID `json:"principalId,omitempty"` // Permission - the permission type of the access control list (ACL) entry. Possible values include: 'None', 'Use', 'Create', 'Drop', 'Alter', 'Write', 'All' Permission PermissionType `json:"permission,omitempty"` }
ACLDeleteParameters the parameters used to delete an access control list (ACL) entry.
type ACLDeleteParameters struct { // AceType - the access control list (ACL) entry type. UserObj and GroupObj denote the owning user and group, respectively. Possible values include: 'UserObj', 'GroupObj', 'Other', 'User', 'Group' AceType ACLType `json:"aceType,omitempty"` // PrincipalID - the Azure AD object ID of the user or group being specified in the access control list (ACL) entry. PrincipalID *uuid.UUID `json:"principalId,omitempty"` }
ACLList a Data Lake Analytics catalog access control list (ACL).
type ACLList struct { autorest.Response `json:"-"` // Value - READ-ONLY; the access control list (ACL). Value *[]ACL `json:"value,omitempty"` // NextLink - the link to the next page of results. NextLink *string `json:"nextLink,omitempty"` }
func (al ACLList) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
func (al ACLList) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ACLList.
ACLListIterator provides access to a complete listing of ACL values.
type ACLListIterator struct {
// contains filtered or unexported fields
}
func NewACLListIterator(page ACLListPage) ACLListIterator
Creates a new instance of the ACLListIterator type.
func (iter *ACLListIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *ACLListIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter ACLListIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter ACLListIterator) Response() ACLList
Response returns the raw server response from the last page request.
func (iter ACLListIterator) Value() ACL
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
ACLListPage contains a page of ACL values.
type ACLListPage struct {
// contains filtered or unexported fields
}
func NewACLListPage(cur ACLList, getNextPage func(context.Context, ACLList) (ACLList, error)) ACLListPage
Creates a new instance of the ACLListPage type.
func (page *ACLListPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *ACLListPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page ACLListPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page ACLListPage) Response() ACLList
Response returns the raw server response from the last page request.
func (page ACLListPage) Values() []ACL
Values returns the slice of values for the current page or nil if there are no values.
ACLType enumerates the values for acl type.
type ACLType string
const ( // Group ... Group ACLType = "Group" // GroupObj ... GroupObj ACLType = "GroupObj" // Other ... Other ACLType = "Other" // User ... User ACLType = "User" // UserObj ... UserObj ACLType = "UserObj" )
func PossibleACLTypeValues() []ACLType
PossibleACLTypeValues returns an array of possible values for the ACLType const type.
BaseClient is the base client for Catalog.
type BaseClient struct { autorest.Client AdlaCatalogDNSSuffix string }
func New() BaseClient
New creates an instance of the BaseClient client.
func NewWithoutDefaults(adlaCatalogDNSSuffix string) BaseClient
NewWithoutDefaults creates an instance of the BaseClient client.
Client is the creates an Azure Data Lake Analytics catalog client.
type Client struct { BaseClient }
func NewClient() Client
NewClient creates an instance of the Client client.
func (client Client) CreateCredential(ctx context.Context, accountName string, databaseName string, credentialName string, parameters DataLakeAnalyticsCatalogCredentialCreateParameters) (result autorest.Response, err error)
CreateCredential creates the specified credential for use with external data sources in the specified database. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database in which to create the credential. Note: This is NOT an external database name, but the name of an existing U-SQL database that should contain the new credential object. credentialName - the name of the credential. parameters - the parameters required to create the credential (name and password)
func (client Client) CreateCredentialPreparer(ctx context.Context, accountName string, databaseName string, credentialName string, parameters DataLakeAnalyticsCatalogCredentialCreateParameters) (*http.Request, error)
CreateCredentialPreparer prepares the CreateCredential request.
func (client Client) CreateCredentialResponder(resp *http.Response) (result autorest.Response, err error)
CreateCredentialResponder handles the response to the CreateCredential request. The method always closes the http.Response Body.
func (client Client) CreateCredentialSender(req *http.Request) (*http.Response, error)
CreateCredentialSender sends the CreateCredential request. The method will close the http.Response Body if it receives an error.
func (client Client) CreateSecret(ctx context.Context, accountName string, databaseName string, secretName string, parameters DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters) (result autorest.Response, err error)
CreateSecret creates the specified secret for use with external data sources in the specified database. This is deprecated and will be removed in the next release. Please use CreateCredential instead. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database in which to create the secret. secretName - the name of the secret. parameters - the parameters required to create the secret (name and password)
func (client Client) CreateSecretPreparer(ctx context.Context, accountName string, databaseName string, secretName string, parameters DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters) (*http.Request, error)
CreateSecretPreparer prepares the CreateSecret request.
func (client Client) CreateSecretResponder(resp *http.Response) (result autorest.Response, err error)
CreateSecretResponder handles the response to the CreateSecret request. The method always closes the http.Response Body.
func (client Client) CreateSecretSender(req *http.Request) (*http.Response, error)
CreateSecretSender sends the CreateSecret request. The method will close the http.Response Body if it receives an error.
func (client Client) DeleteAllSecrets(ctx context.Context, accountName string, databaseName string) (result autorest.Response, err error)
DeleteAllSecrets deletes all secrets in the specified database. This is deprecated and will be removed in the next release. In the future, please only drop individual credentials using DeleteCredential Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the secret.
func (client Client) DeleteAllSecretsPreparer(ctx context.Context, accountName string, databaseName string) (*http.Request, error)
DeleteAllSecretsPreparer prepares the DeleteAllSecrets request.
func (client Client) DeleteAllSecretsResponder(resp *http.Response) (result autorest.Response, err error)
DeleteAllSecretsResponder handles the response to the DeleteAllSecrets request. The method always closes the http.Response Body.
func (client Client) DeleteAllSecretsSender(req *http.Request) (*http.Response, error)
DeleteAllSecretsSender sends the DeleteAllSecrets request. The method will close the http.Response Body if it receives an error.
func (client Client) DeleteCredential(ctx context.Context, accountName string, databaseName string, credentialName string, parameters *DataLakeAnalyticsCatalogCredentialDeleteParameters, cascade *bool) (result autorest.Response, err error)
DeleteCredential deletes the specified credential in the specified database Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the credential. credentialName - the name of the credential to delete parameters - the parameters to delete a credential if the current user is not the account owner. cascade - indicates if the delete should be a cascading delete (which deletes all resources dependent on the credential as well as the credential) or not. If false will fail if there are any resources relying on the credential.
func (client Client) DeleteCredentialPreparer(ctx context.Context, accountName string, databaseName string, credentialName string, parameters *DataLakeAnalyticsCatalogCredentialDeleteParameters, cascade *bool) (*http.Request, error)
DeleteCredentialPreparer prepares the DeleteCredential request.
func (client Client) DeleteCredentialResponder(resp *http.Response) (result autorest.Response, err error)
DeleteCredentialResponder handles the response to the DeleteCredential request. The method always closes the http.Response Body.
func (client Client) DeleteCredentialSender(req *http.Request) (*http.Response, error)
DeleteCredentialSender sends the DeleteCredential request. The method will close the http.Response Body if it receives an error.
func (client Client) DeleteSecret(ctx context.Context, accountName string, databaseName string, secretName string) (result autorest.Response, err error)
DeleteSecret deletes the specified secret in the specified database. This is deprecated and will be removed in the next release. Please use DeleteCredential instead. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the secret. secretName - the name of the secret to delete
func (client Client) DeleteSecretPreparer(ctx context.Context, accountName string, databaseName string, secretName string) (*http.Request, error)
DeleteSecretPreparer prepares the DeleteSecret request.
func (client Client) DeleteSecretResponder(resp *http.Response) (result autorest.Response, err error)
DeleteSecretResponder handles the response to the DeleteSecret request. The method always closes the http.Response Body.
func (client Client) DeleteSecretSender(req *http.Request) (*http.Response, error)
DeleteSecretSender sends the DeleteSecret request. The method will close the http.Response Body if it receives an error.
func (client Client) GetAssembly(ctx context.Context, accountName string, databaseName string, assemblyName string) (result USQLAssembly, err error)
GetAssembly retrieves the specified assembly from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the assembly. assemblyName - the name of the assembly.
func (client Client) GetAssemblyPreparer(ctx context.Context, accountName string, databaseName string, assemblyName string) (*http.Request, error)
GetAssemblyPreparer prepares the GetAssembly request.
func (client Client) GetAssemblyResponder(resp *http.Response) (result USQLAssembly, err error)
GetAssemblyResponder handles the response to the GetAssembly request. The method always closes the http.Response Body.
func (client Client) GetAssemblySender(req *http.Request) (*http.Response, error)
GetAssemblySender sends the GetAssembly request. The method will close the http.Response Body if it receives an error.
func (client Client) GetCredential(ctx context.Context, accountName string, databaseName string, credentialName string) (result USQLCredential, err error)
GetCredential retrieves the specified credential from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the schema. credentialName - the name of the credential.
func (client Client) GetCredentialPreparer(ctx context.Context, accountName string, databaseName string, credentialName string) (*http.Request, error)
GetCredentialPreparer prepares the GetCredential request.
func (client Client) GetCredentialResponder(resp *http.Response) (result USQLCredential, err error)
GetCredentialResponder handles the response to the GetCredential request. The method always closes the http.Response Body.
func (client Client) GetCredentialSender(req *http.Request) (*http.Response, error)
GetCredentialSender sends the GetCredential request. The method will close the http.Response Body if it receives an error.
func (client Client) GetDatabase(ctx context.Context, accountName string, databaseName string) (result USQLDatabase, err error)
GetDatabase retrieves the specified database from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database.
func (client Client) GetDatabasePreparer(ctx context.Context, accountName string, databaseName string) (*http.Request, error)
GetDatabasePreparer prepares the GetDatabase request.
func (client Client) GetDatabaseResponder(resp *http.Response) (result USQLDatabase, err error)
GetDatabaseResponder handles the response to the GetDatabase request. The method always closes the http.Response Body.
func (client Client) GetDatabaseSender(req *http.Request) (*http.Response, error)
GetDatabaseSender sends the GetDatabase request. The method will close the http.Response Body if it receives an error.
func (client Client) GetExternalDataSource(ctx context.Context, accountName string, databaseName string, externalDataSourceName string) (result USQLExternalDataSource, err error)
GetExternalDataSource retrieves the specified external data source from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the external data source. externalDataSourceName - the name of the external data source.
func (client Client) GetExternalDataSourcePreparer(ctx context.Context, accountName string, databaseName string, externalDataSourceName string) (*http.Request, error)
GetExternalDataSourcePreparer prepares the GetExternalDataSource request.
func (client Client) GetExternalDataSourceResponder(resp *http.Response) (result USQLExternalDataSource, err error)
GetExternalDataSourceResponder handles the response to the GetExternalDataSource request. The method always closes the http.Response Body.
func (client Client) GetExternalDataSourceSender(req *http.Request) (*http.Response, error)
GetExternalDataSourceSender sends the GetExternalDataSource request. The method will close the http.Response Body if it receives an error.
func (client Client) GetPackage(ctx context.Context, accountName string, databaseName string, schemaName string, packageName string) (result USQLPackage, err error)
GetPackage retrieves the specified package from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the package. schemaName - the name of the schema containing the package. packageName - the name of the package.
func (client Client) GetPackagePreparer(ctx context.Context, accountName string, databaseName string, schemaName string, packageName string) (*http.Request, error)
GetPackagePreparer prepares the GetPackage request.
func (client Client) GetPackageResponder(resp *http.Response) (result USQLPackage, err error)
GetPackageResponder handles the response to the GetPackage request. The method always closes the http.Response Body.
func (client Client) GetPackageSender(req *http.Request) (*http.Response, error)
GetPackageSender sends the GetPackage request. The method will close the http.Response Body if it receives an error.
func (client Client) GetProcedure(ctx context.Context, accountName string, databaseName string, schemaName string, procedureName string) (result USQLProcedure, err error)
GetProcedure retrieves the specified procedure from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the procedure. schemaName - the name of the schema containing the procedure. procedureName - the name of the procedure.
func (client Client) GetProcedurePreparer(ctx context.Context, accountName string, databaseName string, schemaName string, procedureName string) (*http.Request, error)
GetProcedurePreparer prepares the GetProcedure request.
func (client Client) GetProcedureResponder(resp *http.Response) (result USQLProcedure, err error)
GetProcedureResponder handles the response to the GetProcedure request. The method always closes the http.Response Body.
func (client Client) GetProcedureSender(req *http.Request) (*http.Response, error)
GetProcedureSender sends the GetProcedure request. The method will close the http.Response Body if it receives an error.
func (client Client) GetSchema(ctx context.Context, accountName string, databaseName string, schemaName string) (result USQLSchema, err error)
GetSchema retrieves the specified schema from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the schema. schemaName - the name of the schema.
func (client Client) GetSchemaPreparer(ctx context.Context, accountName string, databaseName string, schemaName string) (*http.Request, error)
GetSchemaPreparer prepares the GetSchema request.
func (client Client) GetSchemaResponder(resp *http.Response) (result USQLSchema, err error)
GetSchemaResponder handles the response to the GetSchema request. The method always closes the http.Response Body.
func (client Client) GetSchemaSender(req *http.Request) (*http.Response, error)
GetSchemaSender sends the GetSchema request. The method will close the http.Response Body if it receives an error.
func (client Client) GetSecret(ctx context.Context, accountName string, databaseName string, secretName string) (result USQLSecret, err error)
GetSecret gets the specified secret in the specified database. This is deprecated and will be removed in the next release. Please use GetCredential instead. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the secret. secretName - the name of the secret to get
func (client Client) GetSecretPreparer(ctx context.Context, accountName string, databaseName string, secretName string) (*http.Request, error)
GetSecretPreparer prepares the GetSecret request.
func (client Client) GetSecretResponder(resp *http.Response) (result USQLSecret, err error)
GetSecretResponder handles the response to the GetSecret request. The method always closes the http.Response Body.
func (client Client) GetSecretSender(req *http.Request) (*http.Response, error)
GetSecretSender sends the GetSecret request. The method will close the http.Response Body if it receives an error.
func (client Client) GetTable(ctx context.Context, accountName string, databaseName string, schemaName string, tableName string) (result USQLTable, err error)
GetTable retrieves the specified table from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the table. schemaName - the name of the schema containing the table. tableName - the name of the table.
func (client Client) GetTablePartition(ctx context.Context, accountName string, databaseName string, schemaName string, tableName string, partitionName string) (result USQLTablePartition, err error)
GetTablePartition retrieves the specified table partition from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the partition. schemaName - the name of the schema containing the partition. tableName - the name of the table containing the partition. partitionName - the name of the table partition.
func (client Client) GetTablePartitionPreparer(ctx context.Context, accountName string, databaseName string, schemaName string, tableName string, partitionName string) (*http.Request, error)
GetTablePartitionPreparer prepares the GetTablePartition request.
func (client Client) GetTablePartitionResponder(resp *http.Response) (result USQLTablePartition, err error)
GetTablePartitionResponder handles the response to the GetTablePartition request. The method always closes the http.Response Body.
func (client Client) GetTablePartitionSender(req *http.Request) (*http.Response, error)
GetTablePartitionSender sends the GetTablePartition request. The method will close the http.Response Body if it receives an error.
func (client Client) GetTablePreparer(ctx context.Context, accountName string, databaseName string, schemaName string, tableName string) (*http.Request, error)
GetTablePreparer prepares the GetTable request.
func (client Client) GetTableResponder(resp *http.Response) (result USQLTable, err error)
GetTableResponder handles the response to the GetTable request. The method always closes the http.Response Body.
func (client Client) GetTableSender(req *http.Request) (*http.Response, error)
GetTableSender sends the GetTable request. The method will close the http.Response Body if it receives an error.
func (client Client) GetTableStatistic(ctx context.Context, accountName string, databaseName string, schemaName string, tableName string, statisticsName string) (result USQLTableStatistics, err error)
GetTableStatistic retrieves the specified table statistics from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the statistics. schemaName - the name of the schema containing the statistics. tableName - the name of the table containing the statistics. statisticsName - the name of the table statistics.
func (client Client) GetTableStatisticPreparer(ctx context.Context, accountName string, databaseName string, schemaName string, tableName string, statisticsName string) (*http.Request, error)
GetTableStatisticPreparer prepares the GetTableStatistic request.
func (client Client) GetTableStatisticResponder(resp *http.Response) (result USQLTableStatistics, err error)
GetTableStatisticResponder handles the response to the GetTableStatistic request. The method always closes the http.Response Body.
func (client Client) GetTableStatisticSender(req *http.Request) (*http.Response, error)
GetTableStatisticSender sends the GetTableStatistic request. The method will close the http.Response Body if it receives an error.
func (client Client) GetTableType(ctx context.Context, accountName string, databaseName string, schemaName string, tableTypeName string) (result USQLTableType, err error)
GetTableType retrieves the specified table type from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the table type. schemaName - the name of the schema containing the table type. tableTypeName - the name of the table type to retrieve.
func (client Client) GetTableTypePreparer(ctx context.Context, accountName string, databaseName string, schemaName string, tableTypeName string) (*http.Request, error)
GetTableTypePreparer prepares the GetTableType request.
func (client Client) GetTableTypeResponder(resp *http.Response) (result USQLTableType, err error)
GetTableTypeResponder handles the response to the GetTableType request. The method always closes the http.Response Body.
func (client Client) GetTableTypeSender(req *http.Request) (*http.Response, error)
GetTableTypeSender sends the GetTableType request. The method will close the http.Response Body if it receives an error.
func (client Client) GetTableValuedFunction(ctx context.Context, accountName string, databaseName string, schemaName string, tableValuedFunctionName string) (result USQLTableValuedFunction, err error)
GetTableValuedFunction retrieves the specified table valued function from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the table valued function. schemaName - the name of the schema containing the table valued function. tableValuedFunctionName - the name of the tableValuedFunction.
func (client Client) GetTableValuedFunctionPreparer(ctx context.Context, accountName string, databaseName string, schemaName string, tableValuedFunctionName string) (*http.Request, error)
GetTableValuedFunctionPreparer prepares the GetTableValuedFunction request.
func (client Client) GetTableValuedFunctionResponder(resp *http.Response) (result USQLTableValuedFunction, err error)
GetTableValuedFunctionResponder handles the response to the GetTableValuedFunction request. The method always closes the http.Response Body.
func (client Client) GetTableValuedFunctionSender(req *http.Request) (*http.Response, error)
GetTableValuedFunctionSender sends the GetTableValuedFunction request. The method will close the http.Response Body if it receives an error.
func (client Client) GetView(ctx context.Context, accountName string, databaseName string, schemaName string, viewName string) (result USQLView, err error)
GetView retrieves the specified view from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the view. schemaName - the name of the schema containing the view. viewName - the name of the view.
func (client Client) GetViewPreparer(ctx context.Context, accountName string, databaseName string, schemaName string, viewName string) (*http.Request, error)
GetViewPreparer prepares the GetView request.
func (client Client) GetViewResponder(resp *http.Response) (result USQLView, err error)
GetViewResponder handles the response to the GetView request. The method always closes the http.Response Body.
func (client Client) GetViewSender(req *http.Request) (*http.Response, error)
GetViewSender sends the GetView request. The method will close the http.Response Body if it receives an error.
func (client Client) GrantACL(ctx context.Context, accountName string, parameters ACLCreateOrUpdateParameters) (result autorest.Response, err error)
GrantACL grants an access control list (ACL) entry to the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. parameters - parameters supplied to create or update an access control list (ACL) entry for a Data Lake Analytics catalog.
func (client Client) GrantACLPreparer(ctx context.Context, accountName string, parameters ACLCreateOrUpdateParameters) (*http.Request, error)
GrantACLPreparer prepares the GrantACL request.
func (client Client) GrantACLResponder(resp *http.Response) (result autorest.Response, err error)
GrantACLResponder handles the response to the GrantACL request. The method always closes the http.Response Body.
func (client Client) GrantACLSender(req *http.Request) (*http.Response, error)
GrantACLSender sends the GrantACL request. The method will close the http.Response Body if it receives an error.
func (client Client) GrantACLToDatabase(ctx context.Context, accountName string, databaseName string, parameters ACLCreateOrUpdateParameters) (result autorest.Response, err error)
GrantACLToDatabase grants an access control list (ACL) entry to the database from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database. parameters - parameters supplied to create or update an access control list (ACL) entry for a database.
func (client Client) GrantACLToDatabasePreparer(ctx context.Context, accountName string, databaseName string, parameters ACLCreateOrUpdateParameters) (*http.Request, error)
GrantACLToDatabasePreparer prepares the GrantACLToDatabase request.
func (client Client) GrantACLToDatabaseResponder(resp *http.Response) (result autorest.Response, err error)
GrantACLToDatabaseResponder handles the response to the GrantACLToDatabase request. The method always closes the http.Response Body.
func (client Client) GrantACLToDatabaseSender(req *http.Request) (*http.Response, error)
GrantACLToDatabaseSender sends the GrantACLToDatabase request. The method will close the http.Response Body if it receives an error.
func (client Client) ListAcls(ctx context.Context, accountName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result ACLListPage, err error)
ListAcls retrieves the list of access control list (ACL) entries for the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. filter - oData filter. Optional. top - the number of items to return. Optional. skip - the number of items to skip over before returning elements. Optional. selectParameter - oData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional. orderby - orderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. Optional. count - the Boolean value of true or false to request a count of the matching resources included with the resources in the response, e.g. Categories?$count=true. Optional.
func (client Client) ListAclsByDatabase(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result ACLListPage, err error)
ListAclsByDatabase retrieves the list of access control list (ACL) entries for the database from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database. filter - oData filter. Optional. top - the number of items to return. Optional. skip - the number of items to skip over before returning elements. Optional. selectParameter - oData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional. orderby - orderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. Optional. count - the Boolean value of true or false to request a count of the matching resources included with the resources in the response, e.g. Categories?$count=true. Optional.
func (client Client) ListAclsByDatabaseComplete(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result ACLListIterator, err error)
ListAclsByDatabaseComplete enumerates all values, automatically crossing page boundaries as required.
func (client Client) ListAclsByDatabasePreparer(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (*http.Request, error)
ListAclsByDatabasePreparer prepares the ListAclsByDatabase request.
func (client Client) ListAclsByDatabaseResponder(resp *http.Response) (result ACLList, err error)
ListAclsByDatabaseResponder handles the response to the ListAclsByDatabase request. The method always closes the http.Response Body.
func (client Client) ListAclsByDatabaseSender(req *http.Request) (*http.Response, error)
ListAclsByDatabaseSender sends the ListAclsByDatabase request. The method will close the http.Response Body if it receives an error.
func (client Client) ListAclsComplete(ctx context.Context, accountName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result ACLListIterator, err error)
ListAclsComplete enumerates all values, automatically crossing page boundaries as required.
func (client Client) ListAclsPreparer(ctx context.Context, accountName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (*http.Request, error)
ListAclsPreparer prepares the ListAcls request.
func (client Client) ListAclsResponder(resp *http.Response) (result ACLList, err error)
ListAclsResponder handles the response to the ListAcls request. The method always closes the http.Response Body.
func (client Client) ListAclsSender(req *http.Request) (*http.Response, error)
ListAclsSender sends the ListAcls request. The method will close the http.Response Body if it receives an error.
func (client Client) ListAssemblies(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLAssemblyListPage, err error)
ListAssemblies retrieves the list of assemblies from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the assembly. filter - oData filter. Optional. top - the number of items to return. Optional. skip - the number of items to skip over before returning elements. Optional. selectParameter - oData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional. orderby - orderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. Optional. count - the Boolean value of true or false to request a count of the matching resources included with the resources in the response, e.g. Categories?$count=true. Optional.
func (client Client) ListAssembliesComplete(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLAssemblyListIterator, err error)
ListAssembliesComplete enumerates all values, automatically crossing page boundaries as required.
func (client Client) ListAssembliesPreparer(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (*http.Request, error)
ListAssembliesPreparer prepares the ListAssemblies request.
func (client Client) ListAssembliesResponder(resp *http.Response) (result USQLAssemblyList, err error)
ListAssembliesResponder handles the response to the ListAssemblies request. The method always closes the http.Response Body.
func (client Client) ListAssembliesSender(req *http.Request) (*http.Response, error)
ListAssembliesSender sends the ListAssemblies request. The method will close the http.Response Body if it receives an error.
func (client Client) ListCredentials(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLCredentialListPage, err error)
ListCredentials retrieves the list of credentials from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the schema. filter - oData filter. Optional. top - the number of items to return. Optional. skip - the number of items to skip over before returning elements. Optional. selectParameter - oData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional. orderby - orderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. Optional. count - the Boolean value of true or false to request a count of the matching resources included with the resources in the response, e.g. Categories?$count=true. Optional.
func (client Client) ListCredentialsComplete(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLCredentialListIterator, err error)
ListCredentialsComplete enumerates all values, automatically crossing page boundaries as required.
func (client Client) ListCredentialsPreparer(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (*http.Request, error)
ListCredentialsPreparer prepares the ListCredentials request.
func (client Client) ListCredentialsResponder(resp *http.Response) (result USQLCredentialList, err error)
ListCredentialsResponder handles the response to the ListCredentials request. The method always closes the http.Response Body.
func (client Client) ListCredentialsSender(req *http.Request) (*http.Response, error)
ListCredentialsSender sends the ListCredentials request. The method will close the http.Response Body if it receives an error.
func (client Client) ListDatabases(ctx context.Context, accountName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLDatabaseListPage, err error)
ListDatabases retrieves the list of databases from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. filter - oData filter. Optional. top - the number of items to return. Optional. skip - the number of items to skip over before returning elements. Optional. selectParameter - oData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional. orderby - orderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. Optional. count - the Boolean value of true or false to request a count of the matching resources included with the resources in the response, e.g. Categories?$count=true. Optional.
func (client Client) ListDatabasesComplete(ctx context.Context, accountName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLDatabaseListIterator, err error)
ListDatabasesComplete enumerates all values, automatically crossing page boundaries as required.
func (client Client) ListDatabasesPreparer(ctx context.Context, accountName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (*http.Request, error)
ListDatabasesPreparer prepares the ListDatabases request.
func (client Client) ListDatabasesResponder(resp *http.Response) (result USQLDatabaseList, err error)
ListDatabasesResponder handles the response to the ListDatabases request. The method always closes the http.Response Body.
func (client Client) ListDatabasesSender(req *http.Request) (*http.Response, error)
ListDatabasesSender sends the ListDatabases request. The method will close the http.Response Body if it receives an error.
func (client Client) ListExternalDataSources(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLExternalDataSourceListPage, err error)
ListExternalDataSources retrieves the list of external data sources from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the external data sources. filter - oData filter. Optional. top - the number of items to return. Optional. skip - the number of items to skip over before returning elements. Optional. selectParameter - oData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional. orderby - orderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. Optional. count - the Boolean value of true or false to request a count of the matching resources included with the resources in the response, e.g. Categories?$count=true. Optional.
func (client Client) ListExternalDataSourcesComplete(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLExternalDataSourceListIterator, err error)
ListExternalDataSourcesComplete enumerates all values, automatically crossing page boundaries as required.
func (client Client) ListExternalDataSourcesPreparer(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (*http.Request, error)
ListExternalDataSourcesPreparer prepares the ListExternalDataSources request.
func (client Client) ListExternalDataSourcesResponder(resp *http.Response) (result USQLExternalDataSourceList, err error)
ListExternalDataSourcesResponder handles the response to the ListExternalDataSources request. The method always closes the http.Response Body.
func (client Client) ListExternalDataSourcesSender(req *http.Request) (*http.Response, error)
ListExternalDataSourcesSender sends the ListExternalDataSources request. The method will close the http.Response Body if it receives an error.
func (client Client) ListPackages(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLPackageListPage, err error)
ListPackages retrieves the list of packages from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the packages. schemaName - the name of the schema containing the packages. filter - oData filter. Optional. top - the number of items to return. Optional. skip - the number of items to skip over before returning elements. Optional. selectParameter - oData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional. orderby - orderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. Optional. count - the Boolean value of true or false to request a count of the matching resources included with the resources in the response, e.g. Categories?$count=true. Optional.
func (client Client) ListPackagesComplete(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLPackageListIterator, err error)
ListPackagesComplete enumerates all values, automatically crossing page boundaries as required.
func (client Client) ListPackagesPreparer(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (*http.Request, error)
ListPackagesPreparer prepares the ListPackages request.
func (client Client) ListPackagesResponder(resp *http.Response) (result USQLPackageList, err error)
ListPackagesResponder handles the response to the ListPackages request. The method always closes the http.Response Body.
func (client Client) ListPackagesSender(req *http.Request) (*http.Response, error)
ListPackagesSender sends the ListPackages request. The method will close the http.Response Body if it receives an error.
func (client Client) ListProcedures(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLProcedureListPage, err error)
ListProcedures retrieves the list of procedures from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the procedures. schemaName - the name of the schema containing the procedures. filter - oData filter. Optional. top - the number of items to return. Optional. skip - the number of items to skip over before returning elements. Optional. selectParameter - oData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional. orderby - orderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. Optional. count - the Boolean value of true or false to request a count of the matching resources included with the resources in the response, e.g. Categories?$count=true. Optional.
func (client Client) ListProceduresComplete(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLProcedureListIterator, err error)
ListProceduresComplete enumerates all values, automatically crossing page boundaries as required.
func (client Client) ListProceduresPreparer(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (*http.Request, error)
ListProceduresPreparer prepares the ListProcedures request.
func (client Client) ListProceduresResponder(resp *http.Response) (result USQLProcedureList, err error)
ListProceduresResponder handles the response to the ListProcedures request. The method always closes the http.Response Body.
func (client Client) ListProceduresSender(req *http.Request) (*http.Response, error)
ListProceduresSender sends the ListProcedures request. The method will close the http.Response Body if it receives an error.
func (client Client) ListSchemas(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLSchemaListPage, err error)
ListSchemas retrieves the list of schemas from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the schema. filter - oData filter. Optional. top - the number of items to return. Optional. skip - the number of items to skip over before returning elements. Optional. selectParameter - oData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional. orderby - orderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. Optional. count - the Boolean value of true or false to request a count of the matching resources included with the resources in the response, e.g. Categories?$count=true. Optional.
func (client Client) ListSchemasComplete(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLSchemaListIterator, err error)
ListSchemasComplete enumerates all values, automatically crossing page boundaries as required.
func (client Client) ListSchemasPreparer(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (*http.Request, error)
ListSchemasPreparer prepares the ListSchemas request.
func (client Client) ListSchemasResponder(resp *http.Response) (result USQLSchemaList, err error)
ListSchemasResponder handles the response to the ListSchemas request. The method always closes the http.Response Body.
func (client Client) ListSchemasSender(req *http.Request) (*http.Response, error)
ListSchemasSender sends the ListSchemas request. The method will close the http.Response Body if it receives an error.
func (client Client) ListTableFragments(ctx context.Context, accountName string, databaseName string, schemaName string, tableName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLTableFragmentListPage, err error)
ListTableFragments retrieves the list of table fragments from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the table fragments. schemaName - the name of the schema containing the table fragments. tableName - the name of the table containing the table fragments. filter - oData filter. Optional. top - the number of items to return. Optional. skip - the number of items to skip over before returning elements. Optional. selectParameter - oData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional. orderby - orderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. Optional. count - the Boolean value of true or false to request a count of the matching resources included with the resources in the response, e.g. Categories?$count=true. Optional.
func (client Client) ListTableFragmentsComplete(ctx context.Context, accountName string, databaseName string, schemaName string, tableName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLTableFragmentListIterator, err error)
ListTableFragmentsComplete enumerates all values, automatically crossing page boundaries as required.
func (client Client) ListTableFragmentsPreparer(ctx context.Context, accountName string, databaseName string, schemaName string, tableName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (*http.Request, error)
ListTableFragmentsPreparer prepares the ListTableFragments request.
func (client Client) ListTableFragmentsResponder(resp *http.Response) (result USQLTableFragmentList, err error)
ListTableFragmentsResponder handles the response to the ListTableFragments request. The method always closes the http.Response Body.
func (client Client) ListTableFragmentsSender(req *http.Request) (*http.Response, error)
ListTableFragmentsSender sends the ListTableFragments request. The method will close the http.Response Body if it receives an error.
func (client Client) ListTablePartitions(ctx context.Context, accountName string, databaseName string, schemaName string, tableName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLTablePartitionListPage, err error)
ListTablePartitions retrieves the list of table partitions from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the partitions. schemaName - the name of the schema containing the partitions. tableName - the name of the table containing the partitions. filter - oData filter. Optional. top - the number of items to return. Optional. skip - the number of items to skip over before returning elements. Optional. selectParameter - oData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional. orderby - orderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. Optional. count - the Boolean value of true or false to request a count of the matching resources included with the resources in the response, e.g. Categories?$count=true. Optional.
func (client Client) ListTablePartitionsComplete(ctx context.Context, accountName string, databaseName string, schemaName string, tableName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLTablePartitionListIterator, err error)
ListTablePartitionsComplete enumerates all values, automatically crossing page boundaries as required.
func (client Client) ListTablePartitionsPreparer(ctx context.Context, accountName string, databaseName string, schemaName string, tableName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (*http.Request, error)
ListTablePartitionsPreparer prepares the ListTablePartitions request.
func (client Client) ListTablePartitionsResponder(resp *http.Response) (result USQLTablePartitionList, err error)
ListTablePartitionsResponder handles the response to the ListTablePartitions request. The method always closes the http.Response Body.
func (client Client) ListTablePartitionsSender(req *http.Request) (*http.Response, error)
ListTablePartitionsSender sends the ListTablePartitions request. The method will close the http.Response Body if it receives an error.
func (client Client) ListTableStatistics(ctx context.Context, accountName string, databaseName string, schemaName string, tableName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLTableStatisticsListPage, err error)
ListTableStatistics retrieves the list of table statistics from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the statistics. schemaName - the name of the schema containing the statistics. tableName - the name of the table containing the statistics. filter - oData filter. Optional. top - the number of items to return. Optional. skip - the number of items to skip over before returning elements. Optional. selectParameter - oData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional. orderby - orderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. Optional. count - the Boolean value of true or false to request a count of the matching resources included with the resources in the response, e.g. Categories?$count=true. Optional.
func (client Client) ListTableStatisticsByDatabase(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLTableStatisticsListPage, err error)
ListTableStatisticsByDatabase retrieves the list of all statistics in a database from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the table statistics. filter - oData filter. Optional. top - the number of items to return. Optional. skip - the number of items to skip over before returning elements. Optional. selectParameter - oData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional. orderby - orderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. Optional. count - the Boolean value of true or false to request a count of the matching resources included with the resources in the response, e.g. Categories?$count=true. Optional.
func (client Client) ListTableStatisticsByDatabaseAndSchema(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLTableStatisticsListPage, err error)
ListTableStatisticsByDatabaseAndSchema retrieves the list of all table statistics within the specified schema from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the statistics. schemaName - the name of the schema containing the statistics. filter - oData filter. Optional. top - the number of items to return. Optional. skip - the number of items to skip over before returning elements. Optional. selectParameter - oData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional. orderby - orderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. Optional. count - the Boolean value of true or false to request a count of the matching resources included with the resources in the response, e.g. Categories?$count=true. Optional.
func (client Client) ListTableStatisticsByDatabaseAndSchemaComplete(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLTableStatisticsListIterator, err error)
ListTableStatisticsByDatabaseAndSchemaComplete enumerates all values, automatically crossing page boundaries as required.
func (client Client) ListTableStatisticsByDatabaseAndSchemaPreparer(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (*http.Request, error)
ListTableStatisticsByDatabaseAndSchemaPreparer prepares the ListTableStatisticsByDatabaseAndSchema request.
func (client Client) ListTableStatisticsByDatabaseAndSchemaResponder(resp *http.Response) (result USQLTableStatisticsList, err error)
ListTableStatisticsByDatabaseAndSchemaResponder handles the response to the ListTableStatisticsByDatabaseAndSchema request. The method always closes the http.Response Body.
func (client Client) ListTableStatisticsByDatabaseAndSchemaSender(req *http.Request) (*http.Response, error)
ListTableStatisticsByDatabaseAndSchemaSender sends the ListTableStatisticsByDatabaseAndSchema request. The method will close the http.Response Body if it receives an error.
func (client Client) ListTableStatisticsByDatabaseComplete(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLTableStatisticsListIterator, err error)
ListTableStatisticsByDatabaseComplete enumerates all values, automatically crossing page boundaries as required.
func (client Client) ListTableStatisticsByDatabasePreparer(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (*http.Request, error)
ListTableStatisticsByDatabasePreparer prepares the ListTableStatisticsByDatabase request.
func (client Client) ListTableStatisticsByDatabaseResponder(resp *http.Response) (result USQLTableStatisticsList, err error)
ListTableStatisticsByDatabaseResponder handles the response to the ListTableStatisticsByDatabase request. The method always closes the http.Response Body.
func (client Client) ListTableStatisticsByDatabaseSender(req *http.Request) (*http.Response, error)
ListTableStatisticsByDatabaseSender sends the ListTableStatisticsByDatabase request. The method will close the http.Response Body if it receives an error.
func (client Client) ListTableStatisticsComplete(ctx context.Context, accountName string, databaseName string, schemaName string, tableName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLTableStatisticsListIterator, err error)
ListTableStatisticsComplete enumerates all values, automatically crossing page boundaries as required.
func (client Client) ListTableStatisticsPreparer(ctx context.Context, accountName string, databaseName string, schemaName string, tableName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (*http.Request, error)
ListTableStatisticsPreparer prepares the ListTableStatistics request.
func (client Client) ListTableStatisticsResponder(resp *http.Response) (result USQLTableStatisticsList, err error)
ListTableStatisticsResponder handles the response to the ListTableStatistics request. The method always closes the http.Response Body.
func (client Client) ListTableStatisticsSender(req *http.Request) (*http.Response, error)
ListTableStatisticsSender sends the ListTableStatistics request. The method will close the http.Response Body if it receives an error.
func (client Client) ListTableTypes(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLTableTypeListPage, err error)
ListTableTypes retrieves the list of table types from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the table types. schemaName - the name of the schema containing the table types. filter - oData filter. Optional. top - the number of items to return. Optional. skip - the number of items to skip over before returning elements. Optional. selectParameter - oData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional. orderby - orderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. Optional. count - the Boolean value of true or false to request a count of the matching resources included with the resources in the response, e.g. Categories?$count=true. Optional.
func (client Client) ListTableTypesComplete(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLTableTypeListIterator, err error)
ListTableTypesComplete enumerates all values, automatically crossing page boundaries as required.
func (client Client) ListTableTypesPreparer(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (*http.Request, error)
ListTableTypesPreparer prepares the ListTableTypes request.
func (client Client) ListTableTypesResponder(resp *http.Response) (result USQLTableTypeList, err error)
ListTableTypesResponder handles the response to the ListTableTypes request. The method always closes the http.Response Body.
func (client Client) ListTableTypesSender(req *http.Request) (*http.Response, error)
ListTableTypesSender sends the ListTableTypes request. The method will close the http.Response Body if it receives an error.
func (client Client) ListTableValuedFunctions(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLTableValuedFunctionListPage, err error)
ListTableValuedFunctions retrieves the list of table valued functions from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the table valued functions. schemaName - the name of the schema containing the table valued functions. filter - oData filter. Optional. top - the number of items to return. Optional. skip - the number of items to skip over before returning elements. Optional. selectParameter - oData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional. orderby - orderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. Optional. count - the Boolean value of true or false to request a count of the matching resources included with the resources in the response, e.g. Categories?$count=true. Optional.
func (client Client) ListTableValuedFunctionsByDatabase(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLTableValuedFunctionListPage, err error)
ListTableValuedFunctionsByDatabase retrieves the list of all table valued functions in a database from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the table valued functions. filter - oData filter. Optional. top - the number of items to return. Optional. skip - the number of items to skip over before returning elements. Optional. selectParameter - oData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional. orderby - orderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. Optional. count - the Boolean value of true or false to request a count of the matching resources included with the resources in the response, e.g. Categories?$count=true. Optional.
func (client Client) ListTableValuedFunctionsByDatabaseComplete(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLTableValuedFunctionListIterator, err error)
ListTableValuedFunctionsByDatabaseComplete enumerates all values, automatically crossing page boundaries as required.
func (client Client) ListTableValuedFunctionsByDatabasePreparer(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (*http.Request, error)
ListTableValuedFunctionsByDatabasePreparer prepares the ListTableValuedFunctionsByDatabase request.
func (client Client) ListTableValuedFunctionsByDatabaseResponder(resp *http.Response) (result USQLTableValuedFunctionList, err error)
ListTableValuedFunctionsByDatabaseResponder handles the response to the ListTableValuedFunctionsByDatabase request. The method always closes the http.Response Body.
func (client Client) ListTableValuedFunctionsByDatabaseSender(req *http.Request) (*http.Response, error)
ListTableValuedFunctionsByDatabaseSender sends the ListTableValuedFunctionsByDatabase request. The method will close the http.Response Body if it receives an error.
func (client Client) ListTableValuedFunctionsComplete(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLTableValuedFunctionListIterator, err error)
ListTableValuedFunctionsComplete enumerates all values, automatically crossing page boundaries as required.
func (client Client) ListTableValuedFunctionsPreparer(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (*http.Request, error)
ListTableValuedFunctionsPreparer prepares the ListTableValuedFunctions request.
func (client Client) ListTableValuedFunctionsResponder(resp *http.Response) (result USQLTableValuedFunctionList, err error)
ListTableValuedFunctionsResponder handles the response to the ListTableValuedFunctions request. The method always closes the http.Response Body.
func (client Client) ListTableValuedFunctionsSender(req *http.Request) (*http.Response, error)
ListTableValuedFunctionsSender sends the ListTableValuedFunctions request. The method will close the http.Response Body if it receives an error.
func (client Client) ListTables(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool, basic *bool) (result USQLTableListPage, err error)
ListTables retrieves the list of tables from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the tables. schemaName - the name of the schema containing the tables. filter - oData filter. Optional. top - the number of items to return. Optional. skip - the number of items to skip over before returning elements. Optional. selectParameter - oData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional. orderby - orderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. Optional. count - the Boolean value of true or false to request a count of the matching resources included with the resources in the response, e.g. Categories?$count=true. Optional. basic - the basic switch indicates what level of information to return when listing tables. When basic is true, only database_name, schema_name, table_name and version are returned for each table, otherwise all table metadata is returned. By default, it is false. Optional.
func (client Client) ListTablesByDatabase(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool, basic *bool) (result USQLTableListPage, err error)
ListTablesByDatabase retrieves the list of all tables in a database from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the tables. filter - oData filter. Optional. top - the number of items to return. Optional. skip - the number of items to skip over before returning elements. Optional. selectParameter - oData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional. orderby - orderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. Optional. count - the Boolean value of true or false to request a count of the matching resources included with the resources in the response, e.g. Categories?$count=true. Optional. basic - the basic switch indicates what level of information to return when listing tables. When basic is true, only database_name, schema_name, table_name and version are returned for each table, otherwise all table metadata is returned. By default, it is false
func (client Client) ListTablesByDatabaseComplete(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool, basic *bool) (result USQLTableListIterator, err error)
ListTablesByDatabaseComplete enumerates all values, automatically crossing page boundaries as required.
func (client Client) ListTablesByDatabasePreparer(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool, basic *bool) (*http.Request, error)
ListTablesByDatabasePreparer prepares the ListTablesByDatabase request.
func (client Client) ListTablesByDatabaseResponder(resp *http.Response) (result USQLTableList, err error)
ListTablesByDatabaseResponder handles the response to the ListTablesByDatabase request. The method always closes the http.Response Body.
func (client Client) ListTablesByDatabaseSender(req *http.Request) (*http.Response, error)
ListTablesByDatabaseSender sends the ListTablesByDatabase request. The method will close the http.Response Body if it receives an error.
func (client Client) ListTablesComplete(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool, basic *bool) (result USQLTableListIterator, err error)
ListTablesComplete enumerates all values, automatically crossing page boundaries as required.
func (client Client) ListTablesPreparer(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool, basic *bool) (*http.Request, error)
ListTablesPreparer prepares the ListTables request.
func (client Client) ListTablesResponder(resp *http.Response) (result USQLTableList, err error)
ListTablesResponder handles the response to the ListTables request. The method always closes the http.Response Body.
func (client Client) ListTablesSender(req *http.Request) (*http.Response, error)
ListTablesSender sends the ListTables request. The method will close the http.Response Body if it receives an error.
func (client Client) ListTypes(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLTypeListPage, err error)
ListTypes retrieves the list of types within the specified database and schema from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the types. schemaName - the name of the schema containing the types. filter - oData filter. Optional. top - the number of items to return. Optional. skip - the number of items to skip over before returning elements. Optional. selectParameter - oData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional. orderby - orderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. Optional. count - the Boolean value of true or false to request a count of the matching resources included with the resources in the response, e.g. Categories?$count=true. Optional.
func (client Client) ListTypesComplete(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLTypeListIterator, err error)
ListTypesComplete enumerates all values, automatically crossing page boundaries as required.
func (client Client) ListTypesPreparer(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (*http.Request, error)
ListTypesPreparer prepares the ListTypes request.
func (client Client) ListTypesResponder(resp *http.Response) (result USQLTypeList, err error)
ListTypesResponder handles the response to the ListTypes request. The method always closes the http.Response Body.
func (client Client) ListTypesSender(req *http.Request) (*http.Response, error)
ListTypesSender sends the ListTypes request. The method will close the http.Response Body if it receives an error.
func (client Client) ListViews(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLViewListPage, err error)
ListViews retrieves the list of views from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the views. schemaName - the name of the schema containing the views. filter - oData filter. Optional. top - the number of items to return. Optional. skip - the number of items to skip over before returning elements. Optional. selectParameter - oData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional. orderby - orderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. Optional. count - the Boolean value of true or false to request a count of the matching resources included with the resources in the response, e.g. Categories?$count=true. Optional.
func (client Client) ListViewsByDatabase(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLViewListPage, err error)
ListViewsByDatabase retrieves the list of all views in a database from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the views. filter - oData filter. Optional. top - the number of items to return. Optional. skip - the number of items to skip over before returning elements. Optional. selectParameter - oData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional. orderby - orderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. Optional. count - the Boolean value of true or false to request a count of the matching resources included with the resources in the response, e.g. Categories?$count=true. Optional.
func (client Client) ListViewsByDatabaseComplete(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLViewListIterator, err error)
ListViewsByDatabaseComplete enumerates all values, automatically crossing page boundaries as required.
func (client Client) ListViewsByDatabasePreparer(ctx context.Context, accountName string, databaseName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (*http.Request, error)
ListViewsByDatabasePreparer prepares the ListViewsByDatabase request.
func (client Client) ListViewsByDatabaseResponder(resp *http.Response) (result USQLViewList, err error)
ListViewsByDatabaseResponder handles the response to the ListViewsByDatabase request. The method always closes the http.Response Body.
func (client Client) ListViewsByDatabaseSender(req *http.Request) (*http.Response, error)
ListViewsByDatabaseSender sends the ListViewsByDatabase request. The method will close the http.Response Body if it receives an error.
func (client Client) ListViewsComplete(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result USQLViewListIterator, err error)
ListViewsComplete enumerates all values, automatically crossing page boundaries as required.
func (client Client) ListViewsPreparer(ctx context.Context, accountName string, databaseName string, schemaName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (*http.Request, error)
ListViewsPreparer prepares the ListViews request.
func (client Client) ListViewsResponder(resp *http.Response) (result USQLViewList, err error)
ListViewsResponder handles the response to the ListViews request. The method always closes the http.Response Body.
func (client Client) ListViewsSender(req *http.Request) (*http.Response, error)
ListViewsSender sends the ListViews request. The method will close the http.Response Body if it receives an error.
func (client Client) PreviewTable(ctx context.Context, accountName string, databaseName string, schemaName string, tableName string, maxRows *int64, maxColumns *int64) (result USQLTablePreview, err error)
PreviewTable retrieves a preview set of rows in given table. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the table. schemaName - the name of the schema containing the table. tableName - the name of the table. maxRows - the maximum number of preview rows to be retrieved. Rows returned may be less than or equal to this number depending on row sizes and number of rows in the table. maxColumns - the maximum number of columns to be retrieved.
func (client Client) PreviewTablePartition(ctx context.Context, accountName string, databaseName string, schemaName string, tableName string, partitionName string, maxRows *int64, maxColumns *int64) (result USQLTablePreview, err error)
PreviewTablePartition retrieves a preview set of rows in given partition. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the partition. schemaName - the name of the schema containing the partition. tableName - the name of the table containing the partition. partitionName - the name of the table partition. maxRows - the maximum number of preview rows to be retrieved.Rows returned may be less than or equal to this number depending on row sizes and number of rows in the partition. maxColumns - the maximum number of columns to be retrieved.
func (client Client) PreviewTablePartitionPreparer(ctx context.Context, accountName string, databaseName string, schemaName string, tableName string, partitionName string, maxRows *int64, maxColumns *int64) (*http.Request, error)
PreviewTablePartitionPreparer prepares the PreviewTablePartition request.
func (client Client) PreviewTablePartitionResponder(resp *http.Response) (result USQLTablePreview, err error)
PreviewTablePartitionResponder handles the response to the PreviewTablePartition request. The method always closes the http.Response Body.
func (client Client) PreviewTablePartitionSender(req *http.Request) (*http.Response, error)
PreviewTablePartitionSender sends the PreviewTablePartition request. The method will close the http.Response Body if it receives an error.
func (client Client) PreviewTablePreparer(ctx context.Context, accountName string, databaseName string, schemaName string, tableName string, maxRows *int64, maxColumns *int64) (*http.Request, error)
PreviewTablePreparer prepares the PreviewTable request.
func (client Client) PreviewTableResponder(resp *http.Response) (result USQLTablePreview, err error)
PreviewTableResponder handles the response to the PreviewTable request. The method always closes the http.Response Body.
func (client Client) PreviewTableSender(req *http.Request) (*http.Response, error)
PreviewTableSender sends the PreviewTable request. The method will close the http.Response Body if it receives an error.
func (client Client) RevokeACL(ctx context.Context, accountName string, parameters ACLDeleteParameters) (result autorest.Response, err error)
RevokeACL revokes an access control list (ACL) entry from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. parameters - parameters supplied to delete an access control list (ACL) entry from a Data Lake Analytics catalog.
func (client Client) RevokeACLFromDatabase(ctx context.Context, accountName string, databaseName string, parameters ACLDeleteParameters) (result autorest.Response, err error)
RevokeACLFromDatabase revokes an access control list (ACL) entry for the database from the Data Lake Analytics catalog. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database. parameters - parameters supplied to delete an access control list (ACL) entry for a database.
func (client Client) RevokeACLFromDatabasePreparer(ctx context.Context, accountName string, databaseName string, parameters ACLDeleteParameters) (*http.Request, error)
RevokeACLFromDatabasePreparer prepares the RevokeACLFromDatabase request.
func (client Client) RevokeACLFromDatabaseResponder(resp *http.Response) (result autorest.Response, err error)
RevokeACLFromDatabaseResponder handles the response to the RevokeACLFromDatabase request. The method always closes the http.Response Body.
func (client Client) RevokeACLFromDatabaseSender(req *http.Request) (*http.Response, error)
RevokeACLFromDatabaseSender sends the RevokeACLFromDatabase request. The method will close the http.Response Body if it receives an error.
func (client Client) RevokeACLPreparer(ctx context.Context, accountName string, parameters ACLDeleteParameters) (*http.Request, error)
RevokeACLPreparer prepares the RevokeACL request.
func (client Client) RevokeACLResponder(resp *http.Response) (result autorest.Response, err error)
RevokeACLResponder handles the response to the RevokeACL request. The method always closes the http.Response Body.
func (client Client) RevokeACLSender(req *http.Request) (*http.Response, error)
RevokeACLSender sends the RevokeACL request. The method will close the http.Response Body if it receives an error.
func (client Client) UpdateCredential(ctx context.Context, accountName string, databaseName string, credentialName string, parameters DataLakeAnalyticsCatalogCredentialUpdateParameters) (result autorest.Response, err error)
UpdateCredential modifies the specified credential for use with external data sources in the specified database Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the credential. credentialName - the name of the credential. parameters - the parameters required to modify the credential (name and password)
func (client Client) UpdateCredentialPreparer(ctx context.Context, accountName string, databaseName string, credentialName string, parameters DataLakeAnalyticsCatalogCredentialUpdateParameters) (*http.Request, error)
UpdateCredentialPreparer prepares the UpdateCredential request.
func (client Client) UpdateCredentialResponder(resp *http.Response) (result autorest.Response, err error)
UpdateCredentialResponder handles the response to the UpdateCredential request. The method always closes the http.Response Body.
func (client Client) UpdateCredentialSender(req *http.Request) (*http.Response, error)
UpdateCredentialSender sends the UpdateCredential request. The method will close the http.Response Body if it receives an error.
func (client Client) UpdateSecret(ctx context.Context, accountName string, databaseName string, secretName string, parameters DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters) (result autorest.Response, err error)
UpdateSecret modifies the specified secret for use with external data sources in the specified database. This is deprecated and will be removed in the next release. Please use UpdateCredential instead. Parameters: accountName - the Azure Data Lake Analytics account upon which to execute catalog operations. databaseName - the name of the database containing the secret. secretName - the name of the secret. parameters - the parameters required to modify the secret (name and password)
func (client Client) UpdateSecretPreparer(ctx context.Context, accountName string, databaseName string, secretName string, parameters DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters) (*http.Request, error)
UpdateSecretPreparer prepares the UpdateSecret request.
func (client Client) UpdateSecretResponder(resp *http.Response) (result autorest.Response, err error)
UpdateSecretResponder handles the response to the UpdateSecret request. The method always closes the http.Response Body.
func (client Client) UpdateSecretSender(req *http.Request) (*http.Response, error)
UpdateSecretSender sends the UpdateSecret request. The method will close the http.Response Body if it receives an error.
DataLakeAnalyticsCatalogCredentialCreateParameters data Lake Analytics catalog credential creation parameters.
type DataLakeAnalyticsCatalogCredentialCreateParameters struct { // Password - the password for the credential and user with access to the data source. Password *string `json:"password,omitempty"` // URI - the URI identifier for the data source this credential can connect to in the format <hostname>:<port> URI *string `json:"uri,omitempty"` // UserID - the object identifier for the user associated with this credential with access to the data source. UserID *string `json:"userId,omitempty"` }
DataLakeAnalyticsCatalogCredentialDeleteParameters data Lake Analytics catalog credential deletion parameters.
type DataLakeAnalyticsCatalogCredentialDeleteParameters struct { // Password - the current password for the credential and user with access to the data source. This is required if the requester is not the account owner. Password *string `json:"password,omitempty"` }
DataLakeAnalyticsCatalogCredentialUpdateParameters data Lake Analytics catalog credential update parameters.
type DataLakeAnalyticsCatalogCredentialUpdateParameters struct { // Password - the current password for the credential and user with access to the data source. This is required if the requester is not the account owner. Password *string `json:"password,omitempty"` // NewPassword - the new password for the credential and user with access to the data source. NewPassword *string `json:"newPassword,omitempty"` // URI - the URI identifier for the data source this credential can connect to in the format <hostname>:<port> URI *string `json:"uri,omitempty"` // UserID - the object identifier for the user associated with this credential with access to the data source. UserID *string `json:"userId,omitempty"` }
DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters data Lake Analytics catalog secret creation and update parameters. This is deprecated and will be removed in the next release. Please use DataLakeAnalyticsCatalogCredentialCreateOrUpdateParameters instead.
type DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters struct { // Password - the password for the secret to pass in Password *string `json:"password,omitempty"` // URI - the URI identifier for the secret in the format <hostname>:<port> URI *string `json:"uri,omitempty"` }
DdlName a Data Lake Analytics DDL name item.
type DdlName struct { // FirstPart - the name of the table associated with this database and schema. FirstPart *string `json:"firstPart,omitempty"` // SecondPart - the name of the table associated with this database and schema. SecondPart *string `json:"secondPart,omitempty"` // ThirdPart - the name of the table associated with this database and schema. ThirdPart *string `json:"thirdPart,omitempty"` // Server - the name of the table associated with this database and schema. Server *string `json:"server,omitempty"` }
EntityID a Data Lake Analytics catalog entity identifier object.
type EntityID struct { // Name - the name of the external table associated with this database, schema and table. Name *DdlName `json:"name,omitempty"` // Version - the version of the external data source. Version *uuid.UUID `json:"version,omitempty"` }
ExternalTable a Data Lake Analytics catalog external table item.
type ExternalTable struct { // TableName - the name of the table associated with this database and schema. TableName *string `json:"tableName,omitempty"` // DataSource - the data source associated with this external table. DataSource *EntityID `json:"dataSource,omitempty"` }
FileType enumerates the values for file type.
type FileType string
const ( // Assembly ... Assembly FileType = "Assembly" // Nodeploy ... Nodeploy FileType = "Nodeploy" // Resource ... Resource FileType = "Resource" )
func PossibleFileTypeValues() []FileType
PossibleFileTypeValues returns an array of possible values for the FileType const type.
Item a Data Lake Analytics catalog item.
type Item struct { // ComputeAccountName - the name of the Data Lake Analytics account. ComputeAccountName *string `json:"computeAccountName,omitempty"` // Version - the version of the catalog item. Version *uuid.UUID `json:"version,omitempty"` }
ItemList a Data Lake Analytics catalog item list.
type ItemList struct { // NextLink - the link to the next page of results. NextLink *string `json:"nextLink,omitempty"` }
PermissionType enumerates the values for permission type.
type PermissionType string
const ( // All ... All PermissionType = "All" // Alter ... Alter PermissionType = "Alter" // Create ... Create PermissionType = "Create" // Drop ... Drop PermissionType = "Drop" // None ... None PermissionType = "None" // Use ... Use PermissionType = "Use" // Write ... Write PermissionType = "Write" )
func PossiblePermissionTypeValues() []PermissionType
PossiblePermissionTypeValues returns an array of possible values for the PermissionType const type.
TypeFieldInfo a Data Lake Analytics catalog type field information item.
type TypeFieldInfo struct { // Name - the name of the field associated with this type. Name *string `json:"name,omitempty"` // Type - the type of the field. Type *string `json:"type,omitempty"` }
USQLAssembly a Data Lake Analytics catalog U-SQL Assembly.
type USQLAssembly struct { autorest.Response `json:"-"` // DatabaseName - the name of the database. DatabaseName *string `json:"databaseName,omitempty"` // Name - the name of the assembly. Name *string `json:"assemblyName,omitempty"` // ClrName - the name of the CLR. ClrName *string `json:"clrName,omitempty"` // IsVisible - the switch indicating if this assembly is visible or not. IsVisible *bool `json:"isVisible,omitempty"` // IsUserDefined - the switch indicating if this assembly is user defined or not. IsUserDefined *bool `json:"isUserDefined,omitempty"` // Files - the list of files associated with the assembly Files *[]USQLAssemblyFileInfo `json:"files,omitempty"` // Dependencies - the list of dependencies associated with the assembly Dependencies *[]USQLAssemblyDependencyInfo `json:"dependencies,omitempty"` // ComputeAccountName - the name of the Data Lake Analytics account. ComputeAccountName *string `json:"computeAccountName,omitempty"` // Version - the version of the catalog item. Version *uuid.UUID `json:"version,omitempty"` }
USQLAssemblyClr a Data Lake Analytics catalog U-SQL assembly CLR item.
type USQLAssemblyClr struct { // DatabaseName - the name of the database. DatabaseName *string `json:"databaseName,omitempty"` // Name - the name of the assembly. Name *string `json:"assemblyClrName,omitempty"` // ClrName - the name of the CLR. ClrName *string `json:"clrName,omitempty"` // ComputeAccountName - the name of the Data Lake Analytics account. ComputeAccountName *string `json:"computeAccountName,omitempty"` // Version - the version of the catalog item. Version *uuid.UUID `json:"version,omitempty"` }
USQLAssemblyDependencyInfo a Data Lake Analytics catalog U-SQL dependency information item.
type USQLAssemblyDependencyInfo struct { // EntityID - the EntityId of the dependency. EntityID *EntityID `json:"entityId,omitempty"` }
USQLAssemblyFileInfo a Data Lake Analytics catalog U-SQL assembly file information item.
type USQLAssemblyFileInfo struct { // Type - the assembly file type. Possible values include: 'Assembly', 'Resource', 'Nodeploy' Type FileType `json:"type,omitempty"` // OriginalPath - The original path to the assembly file. OriginalPath *string `json:"originalPath,omitempty"` // ContentPath - The content path to the assembly file. ContentPath *string `json:"contentPath,omitempty"` }
USQLAssemblyList a Data Lake Analytics catalog U-SQL assembly CLR item list.
type USQLAssemblyList struct { autorest.Response `json:"-"` // Value - READ-ONLY; the list of assemblies in the database Value *[]USQLAssemblyClr `json:"value,omitempty"` // NextLink - the link to the next page of results. NextLink *string `json:"nextLink,omitempty"` }
func (usal USQLAssemblyList) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
func (usal USQLAssemblyList) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for USQLAssemblyList.
USQLAssemblyListIterator provides access to a complete listing of USQLAssemblyClr values.
type USQLAssemblyListIterator struct {
// contains filtered or unexported fields
}
func NewUSQLAssemblyListIterator(page USQLAssemblyListPage) USQLAssemblyListIterator
Creates a new instance of the USQLAssemblyListIterator type.
func (iter *USQLAssemblyListIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *USQLAssemblyListIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter USQLAssemblyListIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter USQLAssemblyListIterator) Response() USQLAssemblyList
Response returns the raw server response from the last page request.
func (iter USQLAssemblyListIterator) Value() USQLAssemblyClr
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
USQLAssemblyListPage contains a page of USQLAssemblyClr values.
type USQLAssemblyListPage struct {
// contains filtered or unexported fields
}
func NewUSQLAssemblyListPage(cur USQLAssemblyList, getNextPage func(context.Context, USQLAssemblyList) (USQLAssemblyList, error)) USQLAssemblyListPage
Creates a new instance of the USQLAssemblyListPage type.
func (page *USQLAssemblyListPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *USQLAssemblyListPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page USQLAssemblyListPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page USQLAssemblyListPage) Response() USQLAssemblyList
Response returns the raw server response from the last page request.
func (page USQLAssemblyListPage) Values() []USQLAssemblyClr
Values returns the slice of values for the current page or nil if there are no values.
USQLCredential a Data Lake Analytics catalog U-SQL credential item.
type USQLCredential struct { autorest.Response `json:"-"` // Name - the name of the credential. Name *string `json:"credentialName,omitempty"` // ComputeAccountName - the name of the Data Lake Analytics account. ComputeAccountName *string `json:"computeAccountName,omitempty"` // Version - the version of the catalog item. Version *uuid.UUID `json:"version,omitempty"` }
USQLCredentialList a Data Lake Analytics catalog U-SQL credential item list.
type USQLCredentialList struct { autorest.Response `json:"-"` // Value - READ-ONLY; the list of credentials in the database Value *[]USQLCredential `json:"value,omitempty"` // NextLink - the link to the next page of results. NextLink *string `json:"nextLink,omitempty"` }
func (uscl USQLCredentialList) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
func (uscl USQLCredentialList) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for USQLCredentialList.
USQLCredentialListIterator provides access to a complete listing of USQLCredential values.
type USQLCredentialListIterator struct {
// contains filtered or unexported fields
}
func NewUSQLCredentialListIterator(page USQLCredentialListPage) USQLCredentialListIterator
Creates a new instance of the USQLCredentialListIterator type.
func (iter *USQLCredentialListIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *USQLCredentialListIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter USQLCredentialListIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter USQLCredentialListIterator) Response() USQLCredentialList
Response returns the raw server response from the last page request.
func (iter USQLCredentialListIterator) Value() USQLCredential
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
USQLCredentialListPage contains a page of USQLCredential values.
type USQLCredentialListPage struct {
// contains filtered or unexported fields
}
func NewUSQLCredentialListPage(cur USQLCredentialList, getNextPage func(context.Context, USQLCredentialList) (USQLCredentialList, error)) USQLCredentialListPage
Creates a new instance of the USQLCredentialListPage type.
func (page *USQLCredentialListPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *USQLCredentialListPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page USQLCredentialListPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page USQLCredentialListPage) Response() USQLCredentialList
Response returns the raw server response from the last page request.
func (page USQLCredentialListPage) Values() []USQLCredential
Values returns the slice of values for the current page or nil if there are no values.
USQLDatabase a Data Lake Analytics catalog U-SQL database item.
type USQLDatabase struct { autorest.Response `json:"-"` // Name - the name of the database. Name *string `json:"databaseName,omitempty"` // ComputeAccountName - the name of the Data Lake Analytics account. ComputeAccountName *string `json:"computeAccountName,omitempty"` // Version - the version of the catalog item. Version *uuid.UUID `json:"version,omitempty"` }
USQLDatabaseList a Data Lake Analytics catalog U-SQL database item list.
type USQLDatabaseList struct { autorest.Response `json:"-"` // Value - READ-ONLY; the list of databases Value *[]USQLDatabase `json:"value,omitempty"` // NextLink - the link to the next page of results. NextLink *string `json:"nextLink,omitempty"` }
func (usdl USQLDatabaseList) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
func (usdl USQLDatabaseList) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for USQLDatabaseList.
USQLDatabaseListIterator provides access to a complete listing of USQLDatabase values.
type USQLDatabaseListIterator struct {
// contains filtered or unexported fields
}
func NewUSQLDatabaseListIterator(page USQLDatabaseListPage) USQLDatabaseListIterator
Creates a new instance of the USQLDatabaseListIterator type.
func (iter *USQLDatabaseListIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *USQLDatabaseListIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter USQLDatabaseListIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter USQLDatabaseListIterator) Response() USQLDatabaseList
Response returns the raw server response from the last page request.
func (iter USQLDatabaseListIterator) Value() USQLDatabase
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
USQLDatabaseListPage contains a page of USQLDatabase values.
type USQLDatabaseListPage struct {
// contains filtered or unexported fields
}
func NewUSQLDatabaseListPage(cur USQLDatabaseList, getNextPage func(context.Context, USQLDatabaseList) (USQLDatabaseList, error)) USQLDatabaseListPage
Creates a new instance of the USQLDatabaseListPage type.
func (page *USQLDatabaseListPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *USQLDatabaseListPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page USQLDatabaseListPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page USQLDatabaseListPage) Response() USQLDatabaseList
Response returns the raw server response from the last page request.
func (page USQLDatabaseListPage) Values() []USQLDatabase
Values returns the slice of values for the current page or nil if there are no values.
USQLDirectedColumn a Data Lake Analytics catalog U-SQL directed column item.
type USQLDirectedColumn struct { // Name - the name of the index in the table. Name *string `json:"name,omitempty"` // Descending - the switch indicating if the index is descending or not. Descending *bool `json:"descending,omitempty"` }
USQLDistributionInfo a Data Lake Analytics catalog U-SQL distribution information object.
type USQLDistributionInfo struct { // Type - the type of this distribution. Type *int32 `json:"type,omitempty"` // Keys - the list of directed columns in the distribution Keys *[]USQLDirectedColumn `json:"keys,omitempty"` // Count - the count of indices using this distribution. Count *int32 `json:"count,omitempty"` // DynamicCount - the dynamic count of indices using this distribution. DynamicCount *int32 `json:"dynamicCount,omitempty"` }
USQLExternalDataSource a Data Lake Analytics catalog U-SQL external datasource item.
type USQLExternalDataSource struct { autorest.Response `json:"-"` // DatabaseName - the name of the database. DatabaseName *string `json:"databaseName,omitempty"` // Name - the name of the external data source. Name *string `json:"externalDataSourceName,omitempty"` // Provider - the name of the provider for the external data source. Provider *string `json:"provider,omitempty"` // ProviderString - the name of the provider string for the external data source. ProviderString *string `json:"providerString,omitempty"` // PushdownTypes - the list of types to push down from the external data source. PushdownTypes *[]string `json:"pushdownTypes,omitempty"` // ComputeAccountName - the name of the Data Lake Analytics account. ComputeAccountName *string `json:"computeAccountName,omitempty"` // Version - the version of the catalog item. Version *uuid.UUID `json:"version,omitempty"` }
USQLExternalDataSourceList a Data Lake Analytics catalog U-SQL external datasource item list.
type USQLExternalDataSourceList struct { autorest.Response `json:"-"` // Value - READ-ONLY; the list of external data sources in the database Value *[]USQLExternalDataSource `json:"value,omitempty"` // NextLink - the link to the next page of results. NextLink *string `json:"nextLink,omitempty"` }
func (usedsl USQLExternalDataSourceList) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
func (usedsl USQLExternalDataSourceList) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for USQLExternalDataSourceList.
USQLExternalDataSourceListIterator provides access to a complete listing of USQLExternalDataSource values.
type USQLExternalDataSourceListIterator struct {
// contains filtered or unexported fields
}
func NewUSQLExternalDataSourceListIterator(page USQLExternalDataSourceListPage) USQLExternalDataSourceListIterator
Creates a new instance of the USQLExternalDataSourceListIterator type.
func (iter *USQLExternalDataSourceListIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *USQLExternalDataSourceListIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter USQLExternalDataSourceListIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter USQLExternalDataSourceListIterator) Response() USQLExternalDataSourceList
Response returns the raw server response from the last page request.
func (iter USQLExternalDataSourceListIterator) Value() USQLExternalDataSource
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
USQLExternalDataSourceListPage contains a page of USQLExternalDataSource values.
type USQLExternalDataSourceListPage struct {
// contains filtered or unexported fields
}
func NewUSQLExternalDataSourceListPage(cur USQLExternalDataSourceList, getNextPage func(context.Context, USQLExternalDataSourceList) (USQLExternalDataSourceList, error)) USQLExternalDataSourceListPage
Creates a new instance of the USQLExternalDataSourceListPage type.
func (page *USQLExternalDataSourceListPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *USQLExternalDataSourceListPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page USQLExternalDataSourceListPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page USQLExternalDataSourceListPage) Response() USQLExternalDataSourceList
Response returns the raw server response from the last page request.
func (page USQLExternalDataSourceListPage) Values() []USQLExternalDataSource
Values returns the slice of values for the current page or nil if there are no values.
USQLIndex a Data Lake Analytics catalog U-SQL table index item.
type USQLIndex struct { // Name - the name of the index in the table. Name *string `json:"name,omitempty"` // IndexKeys - the list of directed columns in the index IndexKeys *[]USQLDirectedColumn `json:"indexKeys,omitempty"` // Columns - the list of columns in the index Columns *[]string `json:"columns,omitempty"` // DistributionInfo - the distributions info of the index DistributionInfo *USQLDistributionInfo `json:"distributionInfo,omitempty"` // PartitionFunction - partition function ID for the index. PartitionFunction *uuid.UUID `json:"partitionFunction,omitempty"` // PartitionKeyList - the list of partition keys in the index PartitionKeyList *[]string `json:"partitionKeyList,omitempty"` // StreamNames - the list of full paths to the streams that contain this index in the DataLake account. StreamNames *[]string `json:"streamNames,omitempty"` // IsColumnstore - the switch indicating if this index is a columnstore index. IsColumnstore *bool `json:"isColumnstore,omitempty"` // IndexID - the ID of this index within the table. IndexID *int32 `json:"indexId,omitempty"` // IsUnique - the switch indicating if this index is a unique index. IsUnique *bool `json:"isUnique,omitempty"` }
USQLPackage a Data Lake Analytics catalog U-SQL package item.
type USQLPackage struct { autorest.Response `json:"-"` // DatabaseName - the name of the database containing the package. DatabaseName *string `json:"databaseName,omitempty"` // SchemaName - the name of the schema associated with this package and database. SchemaName *string `json:"schemaName,omitempty"` // Name - the name of the package. Name *string `json:"packageName,omitempty"` // Definition - the definition of the package. Definition *string `json:"definition,omitempty"` // ComputeAccountName - the name of the Data Lake Analytics account. ComputeAccountName *string `json:"computeAccountName,omitempty"` // Version - the version of the catalog item. Version *uuid.UUID `json:"version,omitempty"` }
USQLPackageList a Data Lake Analytics catalog U-SQL package item list.
type USQLPackageList struct { autorest.Response `json:"-"` // Value - READ-ONLY; the list of packages in the database and schema combination Value *[]USQLPackage `json:"value,omitempty"` // NextLink - the link to the next page of results. NextLink *string `json:"nextLink,omitempty"` }
func (uspl USQLPackageList) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
func (uspl USQLPackageList) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for USQLPackageList.
USQLPackageListIterator provides access to a complete listing of USQLPackage values.
type USQLPackageListIterator struct {
// contains filtered or unexported fields
}
func NewUSQLPackageListIterator(page USQLPackageListPage) USQLPackageListIterator
Creates a new instance of the USQLPackageListIterator type.
func (iter *USQLPackageListIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *USQLPackageListIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter USQLPackageListIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter USQLPackageListIterator) Response() USQLPackageList
Response returns the raw server response from the last page request.
func (iter USQLPackageListIterator) Value() USQLPackage
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
USQLPackageListPage contains a page of USQLPackage values.
type USQLPackageListPage struct {
// contains filtered or unexported fields
}
func NewUSQLPackageListPage(cur USQLPackageList, getNextPage func(context.Context, USQLPackageList) (USQLPackageList, error)) USQLPackageListPage
Creates a new instance of the USQLPackageListPage type.
func (page *USQLPackageListPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *USQLPackageListPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page USQLPackageListPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page USQLPackageListPage) Response() USQLPackageList
Response returns the raw server response from the last page request.
func (page USQLPackageListPage) Values() []USQLPackage
Values returns the slice of values for the current page or nil if there are no values.
USQLProcedure a Data Lake Analytics catalog U-SQL procedure item.
type USQLProcedure struct { autorest.Response `json:"-"` // DatabaseName - the name of the database. DatabaseName *string `json:"databaseName,omitempty"` // SchemaName - the name of the schema associated with this procedure and database. SchemaName *string `json:"schemaName,omitempty"` // Name - the name of the procedure. Name *string `json:"procName,omitempty"` // Definition - the defined query of the procedure. Definition *string `json:"definition,omitempty"` // ComputeAccountName - the name of the Data Lake Analytics account. ComputeAccountName *string `json:"computeAccountName,omitempty"` // Version - the version of the catalog item. Version *uuid.UUID `json:"version,omitempty"` }
USQLProcedureList a Data Lake Analytics catalog U-SQL procedure item list.
type USQLProcedureList struct { autorest.Response `json:"-"` // Value - READ-ONLY; the list of procedure in the database and schema combination Value *[]USQLProcedure `json:"value,omitempty"` // NextLink - the link to the next page of results. NextLink *string `json:"nextLink,omitempty"` }
func (uspl USQLProcedureList) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
func (uspl USQLProcedureList) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for USQLProcedureList.
USQLProcedureListIterator provides access to a complete listing of USQLProcedure values.
type USQLProcedureListIterator struct {
// contains filtered or unexported fields
}
func NewUSQLProcedureListIterator(page USQLProcedureListPage) USQLProcedureListIterator
Creates a new instance of the USQLProcedureListIterator type.
func (iter *USQLProcedureListIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *USQLProcedureListIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter USQLProcedureListIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter USQLProcedureListIterator) Response() USQLProcedureList
Response returns the raw server response from the last page request.
func (iter USQLProcedureListIterator) Value() USQLProcedure
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
USQLProcedureListPage contains a page of USQLProcedure values.
type USQLProcedureListPage struct {
// contains filtered or unexported fields
}
func NewUSQLProcedureListPage(cur USQLProcedureList, getNextPage func(context.Context, USQLProcedureList) (USQLProcedureList, error)) USQLProcedureListPage
Creates a new instance of the USQLProcedureListPage type.
func (page *USQLProcedureListPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *USQLProcedureListPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page USQLProcedureListPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page USQLProcedureListPage) Response() USQLProcedureList
Response returns the raw server response from the last page request.
func (page USQLProcedureListPage) Values() []USQLProcedure
Values returns the slice of values for the current page or nil if there are no values.
USQLSchema a Data Lake Analytics catalog U-SQL schema item.
type USQLSchema struct { autorest.Response `json:"-"` // DatabaseName - the name of the database. DatabaseName *string `json:"databaseName,omitempty"` // Name - the name of the schema. Name *string `json:"schemaName,omitempty"` // ComputeAccountName - the name of the Data Lake Analytics account. ComputeAccountName *string `json:"computeAccountName,omitempty"` // Version - the version of the catalog item. Version *uuid.UUID `json:"version,omitempty"` }
USQLSchemaList a Data Lake Analytics catalog U-SQL schema item list.
type USQLSchemaList struct { autorest.Response `json:"-"` // Value - READ-ONLY; the list of schemas in the database Value *[]USQLSchema `json:"value,omitempty"` // NextLink - the link to the next page of results. NextLink *string `json:"nextLink,omitempty"` }
func (ussl USQLSchemaList) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
func (ussl USQLSchemaList) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for USQLSchemaList.
USQLSchemaListIterator provides access to a complete listing of USQLSchema values.
type USQLSchemaListIterator struct {
// contains filtered or unexported fields
}
func NewUSQLSchemaListIterator(page USQLSchemaListPage) USQLSchemaListIterator
Creates a new instance of the USQLSchemaListIterator type.
func (iter *USQLSchemaListIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *USQLSchemaListIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter USQLSchemaListIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter USQLSchemaListIterator) Response() USQLSchemaList
Response returns the raw server response from the last page request.
func (iter USQLSchemaListIterator) Value() USQLSchema
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
USQLSchemaListPage contains a page of USQLSchema values.
type USQLSchemaListPage struct {
// contains filtered or unexported fields
}
func NewUSQLSchemaListPage(cur USQLSchemaList, getNextPage func(context.Context, USQLSchemaList) (USQLSchemaList, error)) USQLSchemaListPage
Creates a new instance of the USQLSchemaListPage type.
func (page *USQLSchemaListPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *USQLSchemaListPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page USQLSchemaListPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page USQLSchemaListPage) Response() USQLSchemaList
Response returns the raw server response from the last page request.
func (page USQLSchemaListPage) Values() []USQLSchema
Values returns the slice of values for the current page or nil if there are no values.
USQLSecret a Data Lake Analytics catalog U-SQL secret item.
type USQLSecret struct { autorest.Response `json:"-"` // DatabaseName - the name of the database. DatabaseName *string `json:"databaseName,omitempty"` // Name - the name of the secret. Name *string `json:"secretName,omitempty"` // CreationTime - the creation time of the credential object. This is the only information returned about a secret from a GET. CreationTime *date.Time `json:"creationTime,omitempty"` // URI - the URI identifier for the secret in the format <hostname>:<port> URI *string `json:"uri,omitempty"` // Password - the password for the secret to pass in Password *string `json:"password,omitempty"` // ComputeAccountName - the name of the Data Lake Analytics account. ComputeAccountName *string `json:"computeAccountName,omitempty"` // Version - the version of the catalog item. Version *uuid.UUID `json:"version,omitempty"` }
USQLTable a Data Lake Analytics catalog U-SQL table item.
type USQLTable struct { autorest.Response `json:"-"` // DatabaseName - the name of the database. DatabaseName *string `json:"databaseName,omitempty"` // SchemaName - the name of the schema associated with this table and database. SchemaName *string `json:"schemaName,omitempty"` // Name - the name of the table. Name *string `json:"tableName,omitempty"` // ColumnList - the list of columns in this table ColumnList *[]USQLTableColumn `json:"columnList,omitempty"` // IndexList - the list of indices in this table IndexList *[]USQLIndex `json:"indexList,omitempty"` // PartitionKeyList - the list of partition keys in the table PartitionKeyList *[]string `json:"partitionKeyList,omitempty"` // ExternalTable - the external table associated with the table. ExternalTable *ExternalTable `json:"externalTable,omitempty"` // DistributionInfo - the distributions info of the table DistributionInfo *USQLDistributionInfo `json:"distributionInfo,omitempty"` // ComputeAccountName - the name of the Data Lake Analytics account. ComputeAccountName *string `json:"computeAccountName,omitempty"` // Version - the version of the catalog item. Version *uuid.UUID `json:"version,omitempty"` }
USQLTableColumn a Data Lake Analytics catalog U-SQL table column item.
type USQLTableColumn struct { // Name - the name of the column in the table. Name *string `json:"name,omitempty"` // Type - the object type of the specified column (such as System.String). Type *string `json:"type,omitempty"` }
USQLTableFragment a Data Lake Analytics catalog U-SQL table fragment item.
type USQLTableFragment struct { // ParentID - the parent object Id of the table fragment. The parent could be a table or table partition. ParentID *uuid.UUID `json:"parentId,omitempty"` // FragmentID - the version of the catalog item. FragmentID *uuid.UUID `json:"fragmentId,omitempty"` // IndexID - the ordinal of the index which contains the table fragment. IndexID *int32 `json:"indexId,omitempty"` // Size - the data size of the table fragment in bytes. Size *int64 `json:"size,omitempty"` // RowCount - the number of rows in the table fragment. RowCount *int64 `json:"rowCount,omitempty"` // CreateDate - the creation time of the table fragment. CreateDate *date.Time `json:"createDate,omitempty"` // StreamPath - the relative path for the table fragment location. StreamPath *string `json:"streamPath,omitempty"` }
USQLTableFragmentList a Data Lake Analytics catalog U-SQL table fragment item list.
type USQLTableFragmentList struct { autorest.Response `json:"-"` // Value - READ-ONLY; the list of table fragments in the database, schema and table combination Value *[]USQLTableFragment `json:"value,omitempty"` // NextLink - the link to the next page of results. NextLink *string `json:"nextLink,omitempty"` }
func (ustfl USQLTableFragmentList) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
func (ustfl USQLTableFragmentList) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for USQLTableFragmentList.
USQLTableFragmentListIterator provides access to a complete listing of USQLTableFragment values.
type USQLTableFragmentListIterator struct {
// contains filtered or unexported fields
}
func NewUSQLTableFragmentListIterator(page USQLTableFragmentListPage) USQLTableFragmentListIterator
Creates a new instance of the USQLTableFragmentListIterator type.
func (iter *USQLTableFragmentListIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *USQLTableFragmentListIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter USQLTableFragmentListIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter USQLTableFragmentListIterator) Response() USQLTableFragmentList
Response returns the raw server response from the last page request.
func (iter USQLTableFragmentListIterator) Value() USQLTableFragment
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
USQLTableFragmentListPage contains a page of USQLTableFragment values.
type USQLTableFragmentListPage struct {
// contains filtered or unexported fields
}
func NewUSQLTableFragmentListPage(cur USQLTableFragmentList, getNextPage func(context.Context, USQLTableFragmentList) (USQLTableFragmentList, error)) USQLTableFragmentListPage
Creates a new instance of the USQLTableFragmentListPage type.
func (page *USQLTableFragmentListPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *USQLTableFragmentListPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page USQLTableFragmentListPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page USQLTableFragmentListPage) Response() USQLTableFragmentList
Response returns the raw server response from the last page request.
func (page USQLTableFragmentListPage) Values() []USQLTableFragment
Values returns the slice of values for the current page or nil if there are no values.
USQLTableList a Data Lake Analytics catalog U-SQL table item list.
type USQLTableList struct { autorest.Response `json:"-"` // Value - READ-ONLY; the list of tables in the database and schema combination Value *[]USQLTable `json:"value,omitempty"` // NextLink - the link to the next page of results. NextLink *string `json:"nextLink,omitempty"` }
func (ustl USQLTableList) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
func (ustl USQLTableList) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for USQLTableList.
USQLTableListIterator provides access to a complete listing of USQLTable values.
type USQLTableListIterator struct {
// contains filtered or unexported fields
}
func NewUSQLTableListIterator(page USQLTableListPage) USQLTableListIterator
Creates a new instance of the USQLTableListIterator type.
func (iter *USQLTableListIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *USQLTableListIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter USQLTableListIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter USQLTableListIterator) Response() USQLTableList
Response returns the raw server response from the last page request.
func (iter USQLTableListIterator) Value() USQLTable
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
USQLTableListPage contains a page of USQLTable values.
type USQLTableListPage struct {
// contains filtered or unexported fields
}
func NewUSQLTableListPage(cur USQLTableList, getNextPage func(context.Context, USQLTableList) (USQLTableList, error)) USQLTableListPage
Creates a new instance of the USQLTableListPage type.
func (page *USQLTableListPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *USQLTableListPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page USQLTableListPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page USQLTableListPage) Response() USQLTableList
Response returns the raw server response from the last page request.
func (page USQLTableListPage) Values() []USQLTable
Values returns the slice of values for the current page or nil if there are no values.
USQLTablePartition a Data Lake Analytics catalog U-SQL table partition item.
type USQLTablePartition struct { autorest.Response `json:"-"` // DatabaseName - the name of the database. DatabaseName *string `json:"databaseName,omitempty"` // SchemaName - the name of the schema associated with this table partition and database. SchemaName *string `json:"schemaName,omitempty"` // Name - the name of the table partition. Name *string `json:"partitionName,omitempty"` // ParentName - the Ddl object of the partition's parent. ParentName *DdlName `json:"parentName,omitempty"` // IndexID - the index ID for this partition. IndexID *int32 `json:"indexId,omitempty"` // Label - the list of labels associated with this partition. Label *[]string `json:"label,omitempty"` // CreateDate - the creation time of the partition CreateDate *date.Time `json:"createDate,omitempty"` // ComputeAccountName - the name of the Data Lake Analytics account. ComputeAccountName *string `json:"computeAccountName,omitempty"` // Version - the version of the catalog item. Version *uuid.UUID `json:"version,omitempty"` }
USQLTablePartitionList a Data Lake Analytics catalog U-SQL table partition item list.
type USQLTablePartitionList struct { autorest.Response `json:"-"` // Value - READ-ONLY; the list of table partitions in the database, schema and table combination Value *[]USQLTablePartition `json:"value,omitempty"` // NextLink - the link to the next page of results. NextLink *string `json:"nextLink,omitempty"` }
func (ustpl USQLTablePartitionList) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
func (ustpl USQLTablePartitionList) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for USQLTablePartitionList.
USQLTablePartitionListIterator provides access to a complete listing of USQLTablePartition values.
type USQLTablePartitionListIterator struct {
// contains filtered or unexported fields
}
func NewUSQLTablePartitionListIterator(page USQLTablePartitionListPage) USQLTablePartitionListIterator
Creates a new instance of the USQLTablePartitionListIterator type.
func (iter *USQLTablePartitionListIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *USQLTablePartitionListIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter USQLTablePartitionListIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter USQLTablePartitionListIterator) Response() USQLTablePartitionList
Response returns the raw server response from the last page request.
func (iter USQLTablePartitionListIterator) Value() USQLTablePartition
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
USQLTablePartitionListPage contains a page of USQLTablePartition values.
type USQLTablePartitionListPage struct {
// contains filtered or unexported fields
}
func NewUSQLTablePartitionListPage(cur USQLTablePartitionList, getNextPage func(context.Context, USQLTablePartitionList) (USQLTablePartitionList, error)) USQLTablePartitionListPage
Creates a new instance of the USQLTablePartitionListPage type.
func (page *USQLTablePartitionListPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *USQLTablePartitionListPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page USQLTablePartitionListPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page USQLTablePartitionListPage) Response() USQLTablePartitionList
Response returns the raw server response from the last page request.
func (page USQLTablePartitionListPage) Values() []USQLTablePartition
Values returns the slice of values for the current page or nil if there are no values.
USQLTablePreview a Data Lake Analytics catalog table or partition preview rows item.
type USQLTablePreview struct { autorest.Response `json:"-"` // TotalRowCount - the total number of rows in the table or partition. TotalRowCount *int64 `json:"totalRowCount,omitempty"` // TotalColumnCount - the total number of columns in the table or partition. TotalColumnCount *int64 `json:"totalColumnCount,omitempty"` // Rows - the rows of the table or partition preview, where each row is an array of string representations the row's values. Note: Byte arrays will appear as base-64 encoded values, SqlMap and SqlArray objects will appear as escaped JSON objects, and DateTime objects will appear as ISO formatted UTC date-times. Rows *[][]string `json:"rows,omitempty"` // Truncated - true if the amount of data in the response is less than expected due to the preview operation's size limitations. This can occur if the requested rows or row counts are too large. Truncated *bool `json:"truncated,omitempty"` // Schema - the schema of the table or partition. Schema *[]USQLTableColumn `json:"schema,omitempty"` }
USQLTableStatistics a Data Lake Analytics catalog U-SQL table statistics item.
type USQLTableStatistics struct { autorest.Response `json:"-"` // DatabaseName - the name of the database. DatabaseName *string `json:"databaseName,omitempty"` // SchemaName - the name of the schema associated with this table and database. SchemaName *string `json:"schemaName,omitempty"` // TableName - the name of the table. TableName *string `json:"tableName,omitempty"` // Name - the name of the table statistics. Name *string `json:"statisticsName,omitempty"` // UserStatName - the name of the user statistics. UserStatName *string `json:"userStatName,omitempty"` // StatDataPath - the path to the statistics data. StatDataPath *string `json:"statDataPath,omitempty"` // CreateTime - the creation time of the statistics. CreateTime *date.Time `json:"createTime,omitempty"` // UpdateTime - the last time the statistics were updated. UpdateTime *date.Time `json:"updateTime,omitempty"` // IsUserCreated - the switch indicating if these statistics are user created. IsUserCreated *bool `json:"isUserCreated,omitempty"` // IsAutoCreated - the switch indicating if these statistics are automatically created. IsAutoCreated *bool `json:"isAutoCreated,omitempty"` // HasFilter - the switch indicating if these statistics have a filter. HasFilter *bool `json:"hasFilter,omitempty"` // FilterDefinition - the filter definition for the statistics. FilterDefinition *string `json:"filterDefinition,omitempty"` // ColNames - the list of column names associated with these statistics. ColNames *[]string `json:"colNames,omitempty"` // ComputeAccountName - the name of the Data Lake Analytics account. ComputeAccountName *string `json:"computeAccountName,omitempty"` // Version - the version of the catalog item. Version *uuid.UUID `json:"version,omitempty"` }
USQLTableStatisticsList a Data Lake Analytics catalog U-SQL table statistics item list.
type USQLTableStatisticsList struct { autorest.Response `json:"-"` // Value - READ-ONLY; the list of table statistics in the database, schema and table combination Value *[]USQLTableStatistics `json:"value,omitempty"` // NextLink - the link to the next page of results. NextLink *string `json:"nextLink,omitempty"` }
func (ustsl USQLTableStatisticsList) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
func (ustsl USQLTableStatisticsList) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for USQLTableStatisticsList.
USQLTableStatisticsListIterator provides access to a complete listing of USQLTableStatistics values.
type USQLTableStatisticsListIterator struct {
// contains filtered or unexported fields
}
func NewUSQLTableStatisticsListIterator(page USQLTableStatisticsListPage) USQLTableStatisticsListIterator
Creates a new instance of the USQLTableStatisticsListIterator type.
func (iter *USQLTableStatisticsListIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *USQLTableStatisticsListIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter USQLTableStatisticsListIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter USQLTableStatisticsListIterator) Response() USQLTableStatisticsList
Response returns the raw server response from the last page request.
func (iter USQLTableStatisticsListIterator) Value() USQLTableStatistics
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
USQLTableStatisticsListPage contains a page of USQLTableStatistics values.
type USQLTableStatisticsListPage struct {
// contains filtered or unexported fields
}
func NewUSQLTableStatisticsListPage(cur USQLTableStatisticsList, getNextPage func(context.Context, USQLTableStatisticsList) (USQLTableStatisticsList, error)) USQLTableStatisticsListPage
Creates a new instance of the USQLTableStatisticsListPage type.
func (page *USQLTableStatisticsListPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *USQLTableStatisticsListPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page USQLTableStatisticsListPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page USQLTableStatisticsListPage) Response() USQLTableStatisticsList
Response returns the raw server response from the last page request.
func (page USQLTableStatisticsListPage) Values() []USQLTableStatistics
Values returns the slice of values for the current page or nil if there are no values.
USQLTableType a Data Lake Analytics catalog U-SQL table type item.
type USQLTableType struct { autorest.Response `json:"-"` // Columns - READ-ONLY; the type field information associated with this table type. Columns *[]TypeFieldInfo `json:"columns,omitempty"` // DatabaseName - the name of the database. DatabaseName *string `json:"databaseName,omitempty"` // SchemaName - the name of the schema associated with this table and database. SchemaName *string `json:"schemaName,omitempty"` // Name - the name of type for this type. Name *string `json:"typeName,omitempty"` // TypeFamily - the type family for this type. TypeFamily *string `json:"typeFamily,omitempty"` // CSharpName - the C# name for this type. CSharpName *string `json:"cSharpName,omitempty"` // FullCSharpName - the fully qualified C# name for this type. FullCSharpName *string `json:"fullCSharpName,omitempty"` // SystemTypeID - the system type ID for this type. SystemTypeID *int32 `json:"systemTypeId,omitempty"` // UserTypeID - the user type ID for this type. UserTypeID *int32 `json:"userTypeId,omitempty"` // SchemaID - the schema ID for this type. SchemaID *int32 `json:"schemaId,omitempty"` // PrincipalID - the principal ID for this type. PrincipalID *int32 `json:"principalId,omitempty"` // IsNullable - The switch indicating if this type is nullable. IsNullable *bool `json:"isNullable,omitempty"` // IsUserDefined - The switch indicating if this type is user defined. IsUserDefined *bool `json:"isUserDefined,omitempty"` // IsAssemblyType - The switch indicating if this type is an assembly type. IsAssemblyType *bool `json:"isAssemblyType,omitempty"` // IsTableType - The switch indicating if this type is a table type. IsTableType *bool `json:"isTableType,omitempty"` // IsComplexType - The switch indicating if this type is a complex type. IsComplexType *bool `json:"isComplexType,omitempty"` // ComputeAccountName - the name of the Data Lake Analytics account. ComputeAccountName *string `json:"computeAccountName,omitempty"` // Version - the version of the catalog item. Version *uuid.UUID `json:"version,omitempty"` }
func (ustt USQLTableType) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for USQLTableType.
USQLTableTypeList a Data Lake Analytics catalog U-SQL table type item list.
type USQLTableTypeList struct { autorest.Response `json:"-"` // Value - READ-ONLY; the list of table types in the database and schema combination Value *[]USQLTableType `json:"value,omitempty"` // NextLink - the link to the next page of results. NextLink *string `json:"nextLink,omitempty"` }
func (usttl USQLTableTypeList) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
func (usttl USQLTableTypeList) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for USQLTableTypeList.
USQLTableTypeListIterator provides access to a complete listing of USQLTableType values.
type USQLTableTypeListIterator struct {
// contains filtered or unexported fields
}
func NewUSQLTableTypeListIterator(page USQLTableTypeListPage) USQLTableTypeListIterator
Creates a new instance of the USQLTableTypeListIterator type.
func (iter *USQLTableTypeListIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *USQLTableTypeListIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter USQLTableTypeListIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter USQLTableTypeListIterator) Response() USQLTableTypeList
Response returns the raw server response from the last page request.
func (iter USQLTableTypeListIterator) Value() USQLTableType
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
USQLTableTypeListPage contains a page of USQLTableType values.
type USQLTableTypeListPage struct {
// contains filtered or unexported fields
}
func NewUSQLTableTypeListPage(cur USQLTableTypeList, getNextPage func(context.Context, USQLTableTypeList) (USQLTableTypeList, error)) USQLTableTypeListPage
Creates a new instance of the USQLTableTypeListPage type.
func (page *USQLTableTypeListPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *USQLTableTypeListPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page USQLTableTypeListPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page USQLTableTypeListPage) Response() USQLTableTypeList
Response returns the raw server response from the last page request.
func (page USQLTableTypeListPage) Values() []USQLTableType
Values returns the slice of values for the current page or nil if there are no values.
USQLTableValuedFunction a Data Lake Analytics catalog U-SQL table valued function item.
type USQLTableValuedFunction struct { autorest.Response `json:"-"` // DatabaseName - the name of the database. DatabaseName *string `json:"databaseName,omitempty"` // SchemaName - the name of the schema associated with this database. SchemaName *string `json:"schemaName,omitempty"` // Name - the name of the table valued function. Name *string `json:"tvfName,omitempty"` // Definition - the definition of the table valued function. Definition *string `json:"definition,omitempty"` // ComputeAccountName - the name of the Data Lake Analytics account. ComputeAccountName *string `json:"computeAccountName,omitempty"` // Version - the version of the catalog item. Version *uuid.UUID `json:"version,omitempty"` }
USQLTableValuedFunctionList a Data Lake Analytics catalog U-SQL table valued function item list.
type USQLTableValuedFunctionList struct { autorest.Response `json:"-"` // Value - READ-ONLY; the list of table valued functions in the database and schema combination Value *[]USQLTableValuedFunction `json:"value,omitempty"` // NextLink - the link to the next page of results. NextLink *string `json:"nextLink,omitempty"` }
func (ustvfl USQLTableValuedFunctionList) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
func (ustvfl USQLTableValuedFunctionList) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for USQLTableValuedFunctionList.
USQLTableValuedFunctionListIterator provides access to a complete listing of USQLTableValuedFunction values.
type USQLTableValuedFunctionListIterator struct {
// contains filtered or unexported fields
}
func NewUSQLTableValuedFunctionListIterator(page USQLTableValuedFunctionListPage) USQLTableValuedFunctionListIterator
Creates a new instance of the USQLTableValuedFunctionListIterator type.
func (iter *USQLTableValuedFunctionListIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *USQLTableValuedFunctionListIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter USQLTableValuedFunctionListIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter USQLTableValuedFunctionListIterator) Response() USQLTableValuedFunctionList
Response returns the raw server response from the last page request.
func (iter USQLTableValuedFunctionListIterator) Value() USQLTableValuedFunction
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
USQLTableValuedFunctionListPage contains a page of USQLTableValuedFunction values.
type USQLTableValuedFunctionListPage struct {
// contains filtered or unexported fields
}
func NewUSQLTableValuedFunctionListPage(cur USQLTableValuedFunctionList, getNextPage func(context.Context, USQLTableValuedFunctionList) (USQLTableValuedFunctionList, error)) USQLTableValuedFunctionListPage
Creates a new instance of the USQLTableValuedFunctionListPage type.
func (page *USQLTableValuedFunctionListPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *USQLTableValuedFunctionListPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page USQLTableValuedFunctionListPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page USQLTableValuedFunctionListPage) Response() USQLTableValuedFunctionList
Response returns the raw server response from the last page request.
func (page USQLTableValuedFunctionListPage) Values() []USQLTableValuedFunction
Values returns the slice of values for the current page or nil if there are no values.
USQLType a Data Lake Analytics catalog U-SQL type item.
type USQLType struct { // DatabaseName - the name of the database. DatabaseName *string `json:"databaseName,omitempty"` // SchemaName - the name of the schema associated with this table and database. SchemaName *string `json:"schemaName,omitempty"` // Name - the name of type for this type. Name *string `json:"typeName,omitempty"` // TypeFamily - the type family for this type. TypeFamily *string `json:"typeFamily,omitempty"` // CSharpName - the C# name for this type. CSharpName *string `json:"cSharpName,omitempty"` // FullCSharpName - the fully qualified C# name for this type. FullCSharpName *string `json:"fullCSharpName,omitempty"` // SystemTypeID - the system type ID for this type. SystemTypeID *int32 `json:"systemTypeId,omitempty"` // UserTypeID - the user type ID for this type. UserTypeID *int32 `json:"userTypeId,omitempty"` // SchemaID - the schema ID for this type. SchemaID *int32 `json:"schemaId,omitempty"` // PrincipalID - the principal ID for this type. PrincipalID *int32 `json:"principalId,omitempty"` // IsNullable - The switch indicating if this type is nullable. IsNullable *bool `json:"isNullable,omitempty"` // IsUserDefined - The switch indicating if this type is user defined. IsUserDefined *bool `json:"isUserDefined,omitempty"` // IsAssemblyType - The switch indicating if this type is an assembly type. IsAssemblyType *bool `json:"isAssemblyType,omitempty"` // IsTableType - The switch indicating if this type is a table type. IsTableType *bool `json:"isTableType,omitempty"` // IsComplexType - The switch indicating if this type is a complex type. IsComplexType *bool `json:"isComplexType,omitempty"` // ComputeAccountName - the name of the Data Lake Analytics account. ComputeAccountName *string `json:"computeAccountName,omitempty"` // Version - the version of the catalog item. Version *uuid.UUID `json:"version,omitempty"` }
USQLTypeList a Data Lake Analytics catalog U-SQL type item list.
type USQLTypeList struct { autorest.Response `json:"-"` // Value - READ-ONLY; the list of types in the database and schema combination Value *[]USQLType `json:"value,omitempty"` // NextLink - the link to the next page of results. NextLink *string `json:"nextLink,omitempty"` }
func (ustl USQLTypeList) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
func (ustl USQLTypeList) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for USQLTypeList.
USQLTypeListIterator provides access to a complete listing of USQLType values.
type USQLTypeListIterator struct {
// contains filtered or unexported fields
}
func NewUSQLTypeListIterator(page USQLTypeListPage) USQLTypeListIterator
Creates a new instance of the USQLTypeListIterator type.
func (iter *USQLTypeListIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *USQLTypeListIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter USQLTypeListIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter USQLTypeListIterator) Response() USQLTypeList
Response returns the raw server response from the last page request.
func (iter USQLTypeListIterator) Value() USQLType
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
USQLTypeListPage contains a page of USQLType values.
type USQLTypeListPage struct {
// contains filtered or unexported fields
}
func NewUSQLTypeListPage(cur USQLTypeList, getNextPage func(context.Context, USQLTypeList) (USQLTypeList, error)) USQLTypeListPage
Creates a new instance of the USQLTypeListPage type.
func (page *USQLTypeListPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *USQLTypeListPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page USQLTypeListPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page USQLTypeListPage) Response() USQLTypeList
Response returns the raw server response from the last page request.
func (page USQLTypeListPage) Values() []USQLType
Values returns the slice of values for the current page or nil if there are no values.
USQLView a Data Lake Analytics catalog U-SQL view item.
type USQLView struct { autorest.Response `json:"-"` // DatabaseName - the name of the database. DatabaseName *string `json:"databaseName,omitempty"` // SchemaName - the name of the schema associated with this view and database. SchemaName *string `json:"schemaName,omitempty"` // Name - the name of the view. Name *string `json:"viewName,omitempty"` // Definition - the defined query of the view. Definition *string `json:"definition,omitempty"` // ComputeAccountName - the name of the Data Lake Analytics account. ComputeAccountName *string `json:"computeAccountName,omitempty"` // Version - the version of the catalog item. Version *uuid.UUID `json:"version,omitempty"` }
USQLViewList a Data Lake Analytics catalog U-SQL view item list.
type USQLViewList struct { autorest.Response `json:"-"` // Value - READ-ONLY; the list of view in the database and schema combination Value *[]USQLView `json:"value,omitempty"` // NextLink - the link to the next page of results. NextLink *string `json:"nextLink,omitempty"` }
func (usvl USQLViewList) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
func (usvl USQLViewList) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for USQLViewList.
USQLViewListIterator provides access to a complete listing of USQLView values.
type USQLViewListIterator struct {
// contains filtered or unexported fields
}
func NewUSQLViewListIterator(page USQLViewListPage) USQLViewListIterator
Creates a new instance of the USQLViewListIterator type.
func (iter *USQLViewListIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *USQLViewListIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter USQLViewListIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter USQLViewListIterator) Response() USQLViewList
Response returns the raw server response from the last page request.
func (iter USQLViewListIterator) Value() USQLView
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
USQLViewListPage contains a page of USQLView values.
type USQLViewListPage struct {
// contains filtered or unexported fields
}
func NewUSQLViewListPage(cur USQLViewList, getNextPage func(context.Context, USQLViewList) (USQLViewList, error)) USQLViewListPage
Creates a new instance of the USQLViewListPage type.
func (page *USQLViewListPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *USQLViewListPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page USQLViewListPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page USQLViewListPage) Response() USQLViewList
Response returns the raw server response from the last page request.
func (page USQLViewListPage) Values() []USQLView
Values returns the slice of values for the current page or nil if there are no values.
Name | Synopsis |
---|---|
.. | |
catalogapi |