Package version:

Interface TableServices

Interface representing a TableServices.

interface TableServices {
    getServiceProperties(resourceGroupName: string, accountName: string, options?: TableServicesGetServicePropertiesOptionalParams): Promise<TableServiceProperties>;
    list(resourceGroupName: string, accountName: string, options?: TableServicesListOptionalParams): Promise<ListTableServices>;
    setServiceProperties(resourceGroupName: string, accountName: string, parameters: TableServiceProperties, options?: TableServicesSetServicePropertiesOptionalParams): Promise<TableServiceProperties>;
}

Methods

  • Gets the properties of a storage account’s Table service, including properties for Storage Analytics and CORS (Cross-Origin Resource Sharing) rules.

    Parameters

    • resourceGroupName: string

      The name of the resource group within the user's subscription. The name is case insensitive.

    • accountName: string

      The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.

    • Optionaloptions: TableServicesGetServicePropertiesOptionalParams

      The options parameters.

    Returns Promise<TableServiceProperties>

  • List all table services for the storage account.

    Parameters

    • resourceGroupName: string

      The name of the resource group within the user's subscription. The name is case insensitive.

    • accountName: string

      The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.

    • Optionaloptions: TableServicesListOptionalParams

      The options parameters.

    Returns Promise<ListTableServices>

  • Sets the properties of a storage account’s Table service, including properties for Storage Analytics and CORS (Cross-Origin Resource Sharing) rules.

    Parameters

    • resourceGroupName: string

      The name of the resource group within the user's subscription. The name is case insensitive.

    • accountName: string

      The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.

    • parameters: TableServiceProperties

      The properties of a storage account’s Table service, only properties for Storage Analytics and CORS (Cross-Origin Resource Sharing) rules can be specified.

    • Optionaloptions: TableServicesSetServicePropertiesOptionalParams

      The options parameters.

    Returns Promise<TableServiceProperties>