Package detail

@azure/arm-cosmosdb

Azure472.8kMIT16.3.0

A generated SDK for CosmosDBManagementClient.

node, azure, typescript, browser

readme

Azure SDK for JavaScript

Packages Dependencies DependencyGraph

This repository is for the Azure SDK for JavaScript (Node.js & Browser). It contains libraries for the breadth of Azure services. Management libraries are packages that you would use to provision and manage Azure resources. Client libraries are packages that you would use to consume these resources and interact with them.

Getting started

A few helpful resources to get started are:

  • The readme for each package contains code samples and package information. This readme can be found in the corresponding package folder under the folder of the service of your choice in the /sdk folder of this repository. The same readme file can be found on the landing page for the package in npm.
  • The API reference documentation of the latest versions of these packages, can be found at our public developer docs.
  • The API reference documentation of older versions, can be found in our versioned developer docs.

Each service might have a number of libraries available from each of the following categories:

NOTE: Some of these packages have beta versions. If you need to ensure your code is ready for production, use one of the stable, non-beta packages.

Client

Given an Azure resource already exists, you would use the client libraries to consume it and interact with it. Most of these libraries follow the Azure SDK Design Guidelines for JavaScript & TypeScript and share a number of core functionalities such as retries, logging, transport protocols, authentication protocols, etc. Others will be updated in the near future to follow the guidelines as well.

To get a list of all client libraries that follow the new guidelines, please visit our Azure SDK releases page.

Management

Management libraries enable you to provision and manage Azure resources via the Azure Resource Manager i.e. ARM. You can recognize these libraries by @azure/arm- in their package names. These are purely auto-generated based on the swagger files that represent the APIs for resource management.

Newer versions of these libraries follow the Azure SDK Design Guidelines for TypeScript. These new versions provide a number of core capabilities that are shared amongst all Azure SDKs, including the intuitive Azure Identity library, an HTTP Pipeline with custom policies, error-handling, distributed tracing, and much more. A few helpful resources to get started with these are:

NOTE: If you are experiencing authentication issues with the management libraries after upgrading certain packages, it's possible that you upgraded to the new versions of SDK without changing the authentication code, please refer to the migration guide mentioned above for proper instructions.

Need help?

Data Collection

The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may turn off the telemetry as described below. You can learn more about data collection and use in the help documentation and Microsoft’s privacy statement. For more information on the data collected by the Azure SDK, please visit the Telemetry Guidelines page.

Telemetry Configuration

Telemetry collection is on by default.

To opt out, you can disable telemetry at client construction. Create a custom HTTP pipeline policy that removes the user agent string, and then pass that policy into the additionalPolicies option during client creation. This will disable telemetry for all methods in the client. Do this for every new client.

The example below uses the @azure/keyvault-secrets package. In your code, you can replace @azure/keyvault-secrets with the package you are using.

import { SecretClient } from "@azure/keyvault-secrets";
import { ManagedIdentityCredential } from "@azure/identity";

function removeUserAgentPolicy() {
  return {
    name: "removeUserAgentPolicy",
    sendRequest(request, next) {
      request.headers.delete("User-Agent");
      return next(request);
    },
  };
}

/**
 * Creates a SecretClient with managed identity authentication and empty user agent
 * @param keyvaultUri - The URI of the Azure Key Vault
 * @returns configured SecretClient instance
 */
function createSecretClientWithManagedIdentity(
  keyvaultUri: string
): SecretClient {
  // Create ManagedIdentityCredential for managed identity authentication
  const credential = new ManagedIdentityCredential();

  // Create secret client with managed identity and empty user agent
  const secretClient = new SecretClient(keyvaultUri, credential, {
    additionalPolicies: [
      {
        position: "perCall",
        policy: removeUserAgentPolicy(),
      },
    ],
  });

  return secretClient;
}

// Usage example
const keyvaultUri = "https://your-keyvault-name.vault.azure.net";
const secretClient = createSecretClientWithManagedIdentity(keyvaultUri);

// Now you can use the secret client to perform operations
// For example:
// const secretValue = await secretClient.getSecret("your-secret-name");

Community

Try our community resources.

Reporting security issues and security bugs

Security issues and bugs should be reported privately, via email, to the Microsoft Security Response Center (MSRC) secure@microsoft.com. You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Further information, including the MSRC PGP key, can be found in the Security TechCenter.

Contributing

For details on contributing to this repository, see the contributing guide.

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repositories using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information, see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

changelog

Release History

16.3.0 (2025-05-15)

Features Added

  • Added Interface FullTextPath
  • Added Interface FullTextPolicy
  • Interface SqlContainerResource has a new optional parameter fullTextPolicy

16.3.0-beta.1 (2024-12-19)

Compared with version 16.2.0

Features Added

  • Added operation group ChaosFault
  • Added operation group DataTransferJobs
  • Added operation group GraphResources
  • Added operation group NetworkSecurityPerimeterConfigurations
  • Added operation group ThroughputPool
  • Added operation group ThroughputPoolAccount
  • Added operation group ThroughputPoolAccounts
  • Added operation group ThroughputPools
  • Added operation CassandraClusters.beginInvokeCommandAsync
  • Added operation CassandraClusters.beginInvokeCommandAsyncAndWait
  • Added operation CassandraClusters.getBackup
  • Added operation CassandraClusters.getCommandAsync
  • Added operation CassandraClusters.listBackups
  • Added operation CassandraClusters.listCommand
  • Added operation CassandraResources.beginCreateUpdateCassandraView
  • Added operation CassandraResources.beginCreateUpdateCassandraViewAndWait
  • Added operation CassandraResources.beginDeleteCassandraView
  • Added operation CassandraResources.beginDeleteCassandraViewAndWait
  • Added operation CassandraResources.beginMigrateCassandraViewToAutoscale
  • Added operation CassandraResources.beginMigrateCassandraViewToAutoscaleAndWait
  • Added operation CassandraResources.beginMigrateCassandraViewToManualThroughput
  • Added operation CassandraResources.beginMigrateCassandraViewToManualThroughputAndWait
  • Added operation CassandraResources.beginUpdateCassandraViewThroughput
  • Added operation CassandraResources.beginUpdateCassandraViewThroughputAndWait
  • Added operation CassandraResources.getCassandraView
  • Added operation CassandraResources.getCassandraViewThroughput
  • Added operation CassandraResources.listCassandraViews
  • Added operation MongoDBResources.beginListMongoDBCollectionPartitionMerge
  • Added operation MongoDBResources.beginListMongoDBCollectionPartitionMergeAndWait
  • Added operation MongoDBResources.beginMongoDBContainerRedistributeThroughput
  • Added operation MongoDBResources.beginMongoDBContainerRedistributeThroughputAndWait
  • Added operation MongoDBResources.beginMongoDBContainerRetrieveThroughputDistribution
  • Added operation MongoDBResources.beginMongoDBContainerRetrieveThroughputDistributionAndWait
  • Added operation MongoDBResources.beginMongoDBDatabasePartitionMerge
  • Added operation MongoDBResources.beginMongoDBDatabasePartitionMergeAndWait
  • Added operation MongoDBResources.beginMongoDBDatabaseRedistributeThroughput
  • Added operation MongoDBResources.beginMongoDBDatabaseRedistributeThroughputAndWait
  • Added operation MongoDBResources.beginMongoDBDatabaseRetrieveThroughputDistribution
  • Added operation MongoDBResources.beginMongoDBDatabaseRetrieveThroughputDistributionAndWait
  • Added operation SqlResources.beginListSqlContainerPartitionMerge
  • Added operation SqlResources.beginListSqlContainerPartitionMergeAndWait
  • Added operation SqlResources.beginSqlContainerRedistributeThroughput
  • Added operation SqlResources.beginSqlContainerRedistributeThroughputAndWait
  • Added operation SqlResources.beginSqlContainerRetrieveThroughputDistribution
  • Added operation SqlResources.beginSqlContainerRetrieveThroughputDistributionAndWait
  • Added operation SqlResources.beginSqlDatabasePartitionMerge
  • Added operation SqlResources.beginSqlDatabasePartitionMergeAndWait
  • Added operation SqlResources.beginSqlDatabaseRedistributeThroughput
  • Added operation SqlResources.beginSqlDatabaseRedistributeThroughputAndWait
  • Added operation SqlResources.beginSqlDatabaseRetrieveThroughputDistribution
  • Added operation SqlResources.beginSqlDatabaseRetrieveThroughputDistributionAndWait
  • Added operation TableResources.beginCreateUpdateTableRoleAssignment
  • Added operation TableResources.beginCreateUpdateTableRoleAssignmentAndWait
  • Added operation TableResources.beginCreateUpdateTableRoleDefinition
  • Added operation TableResources.beginCreateUpdateTableRoleDefinitionAndWait
  • Added operation TableResources.beginDeleteTableRoleAssignment
  • Added operation TableResources.beginDeleteTableRoleAssignmentAndWait
  • Added operation TableResources.beginDeleteTableRoleDefinition
  • Added operation TableResources.beginDeleteTableRoleDefinitionAndWait
  • Added operation TableResources.getTableRoleAssignment
  • Added operation TableResources.getTableRoleDefinition
  • Added operation TableResources.listTableRoleAssignments
  • Added operation TableResources.listTableRoleDefinitions
  • Added Interface AccessRule
  • Added Interface AccessRuleProperties
  • Added Interface AccessRulePropertiesSubscriptionsItem
  • Added Interface AzureBlobDataTransferDataSourceSink
  • Added Interface BackupResource
  • Added Interface BackupSchedule
  • Added Interface BaseCosmosDataTransferDataSourceSink
  • Added Interface CapacityModeChangeTransitionState
  • Added Interface CassandraClustersGetBackupOptionalParams
  • Added Interface CassandraClustersGetCommandAsyncOptionalParams
  • Added Interface CassandraClustersInvokeCommandAsyncHeaders
  • Added Interface CassandraClustersInvokeCommandAsyncOptionalParams
  • Added Interface CassandraClustersListBackupsOptionalParams
  • Added Interface CassandraClustersListCommandOptionalParams
  • Added Interface CassandraResourcesCreateUpdateCassandraViewHeaders
  • Added Interface CassandraResourcesCreateUpdateCassandraViewOptionalParams
  • Added Interface CassandraResourcesDeleteCassandraViewHeaders
  • Added Interface CassandraResourcesDeleteCassandraViewOptionalParams
  • Added Interface CassandraResourcesGetCassandraViewOptionalParams
  • Added Interface CassandraResourcesGetCassandraViewThroughputOptionalParams
  • Added Interface CassandraResourcesListCassandraViewsOptionalParams
  • Added Interface CassandraResourcesMigrateCassandraViewToAutoscaleHeaders
  • Added Interface CassandraResourcesMigrateCassandraViewToAutoscaleOptionalParams
  • Added Interface CassandraResourcesMigrateCassandraViewToManualThroughputHeaders
  • Added Interface CassandraResourcesMigrateCassandraViewToManualThroughputOptionalParams
  • Added Interface CassandraResourcesUpdateCassandraViewThroughputHeaders
  • Added Interface CassandraResourcesUpdateCassandraViewThroughputOptionalParams
  • Added Interface CassandraViewCreateUpdateParameters
  • Added Interface CassandraViewGetPropertiesOptions
  • Added Interface CassandraViewGetPropertiesResource
  • Added Interface CassandraViewGetResults
  • Added Interface CassandraViewListResult
  • Added Interface CassandraViewResource
  • Added Interface ChaosFaultEnableDisableOptionalParams
  • Added Interface ChaosFaultGetOptionalParams
  • Added Interface ChaosFaultListNextOptionalParams
  • Added Interface ChaosFaultListOptionalParams
  • Added Interface ChaosFaultListResponse
  • Added Interface ChaosFaultResource
  • Added Interface CommandAsyncPostBody
  • Added Interface CommandPublicResource
  • Added Interface CosmosCassandraDataTransferDataSourceSink
  • Added Interface CosmosMongoDataTransferDataSourceSink
  • Added Interface CosmosMongoVCoreDataTransferDataSourceSink
  • Added Interface CosmosSqlDataTransferDataSourceSink
  • Added Interface CreateJobRequest
  • Added Interface DataTransferDataSourceSink
  • Added Interface DataTransferJobFeedResults
  • Added Interface DataTransferJobGetResults
  • Added Interface DataTransferJobProperties
  • Added Interface DataTransferJobsCancelOptionalParams
  • Added Interface DataTransferJobsCompleteOptionalParams
  • Added Interface DataTransferJobsCreateOptionalParams
  • Added Interface DataTransferJobsGetOptionalParams
  • Added Interface DataTransferJobsListByDatabaseAccountNextOptionalParams
  • Added Interface DataTransferJobsListByDatabaseAccountOptionalParams
  • Added Interface DataTransferJobsPauseOptionalParams
  • Added Interface DataTransferJobsResumeOptionalParams
  • Added Interface DiagnosticLogSettings
  • Added Interface GraphResource
  • Added Interface GraphResourceCreateUpdateParameters
  • Added Interface GraphResourceGetPropertiesOptions
  • Added Interface GraphResourceGetPropertiesResource
  • Added Interface GraphResourceGetResults
  • Added Interface GraphResourcesCreateUpdateGraphHeaders
  • Added Interface GraphResourcesCreateUpdateGraphOptionalParams
  • Added Interface GraphResourcesDeleteGraphResourceHeaders
  • Added Interface GraphResourcesDeleteGraphResourceOptionalParams
  • Added Interface GraphResourcesGetGraphOptionalParams
  • Added Interface GraphResourcesListGraphsOptionalParams
  • Added Interface GraphResourcesListResult
  • Added Interface ListBackups
  • Added Interface ListCommands
  • Added Interface MaterializedViewDefinition
  • Added Interface MergeParameters
  • Added Interface MongoDBResourcesListMongoDBCollectionPartitionMergeHeaders
  • Added Interface MongoDBResourcesListMongoDBCollectionPartitionMergeOptionalParams
  • Added Interface MongoDBResourcesMongoDBContainerRedistributeThroughputHeaders
  • Added Interface MongoDBResourcesMongoDBContainerRedistributeThroughputOptionalParams
  • Added Interface MongoDBResourcesMongoDBContainerRetrieveThroughputDistributionHeaders
  • Added Interface MongoDBResourcesMongoDBContainerRetrieveThroughputDistributionOptionalParams
  • Added Interface MongoDBResourcesMongoDBDatabasePartitionMergeHeaders
  • Added Interface MongoDBResourcesMongoDBDatabasePartitionMergeOptionalParams
  • Added Interface MongoDBResourcesMongoDBDatabaseRedistributeThroughputHeaders
  • Added Interface MongoDBResourcesMongoDBDatabaseRedistributeThroughputOptionalParams
  • Added Interface MongoDBResourcesMongoDBDatabaseRetrieveThroughputDistributionHeaders
  • Added Interface MongoDBResourcesMongoDBDatabaseRetrieveThroughputDistributionOptionalParams
  • Added Interface NetworkSecurityPerimeter
  • Added Interface NetworkSecurityPerimeterConfiguration
  • Added Interface NetworkSecurityPerimeterConfigurationListResult
  • Added Interface NetworkSecurityPerimeterConfigurationProperties
  • Added Interface NetworkSecurityPerimeterConfigurationsGetOptionalParams
  • Added Interface NetworkSecurityPerimeterConfigurationsListNextOptionalParams
  • Added Interface NetworkSecurityPerimeterConfigurationsListOptionalParams
  • Added Interface NetworkSecurityPerimeterConfigurationsReconcileHeaders
  • Added Interface NetworkSecurityPerimeterConfigurationsReconcileOptionalParams
  • Added Interface NetworkSecurityProfile
  • Added Interface PermissionAutoGenerated
  • Added Interface PhysicalPartitionId
  • Added Interface PhysicalPartitionStorageInfo
  • Added Interface PhysicalPartitionStorageInfoCollection
  • Added Interface PhysicalPartitionThroughputInfoProperties
  • Added Interface PhysicalPartitionThroughputInfoResource
  • Added Interface PhysicalPartitionThroughputInfoResult
  • Added Interface PhysicalPartitionThroughputInfoResultPropertiesResource
  • Added Interface ProvisioningIssue
  • Added Interface ProvisioningIssueProperties
  • Added Interface RedistributeThroughputParameters
  • Added Interface RedistributeThroughputPropertiesResource
  • Added Interface ResourceAssociation
  • Added Interface RetrieveThroughputParameters
  • Added Interface RetrieveThroughputPropertiesResource
  • Added Interface SqlResourcesListSqlContainerPartitionMergeHeaders
  • Added Interface SqlResourcesListSqlContainerPartitionMergeOptionalParams
  • Added Interface SqlResourcesSqlContainerRedistributeThroughputHeaders
  • Added Interface SqlResourcesSqlContainerRedistributeThroughputOptionalParams
  • Added Interface SqlResourcesSqlContainerRetrieveThroughputDistributionHeaders
  • Added Interface SqlResourcesSqlContainerRetrieveThroughputDistributionOptionalParams
  • Added Interface SqlResourcesSqlDatabasePartitionMergeHeaders
  • Added Interface SqlResourcesSqlDatabasePartitionMergeOptionalParams
  • Added Interface SqlResourcesSqlDatabaseRedistributeThroughputHeaders
  • Added Interface SqlResourcesSqlDatabaseRedistributeThroughputOptionalParams
  • Added Interface SqlResourcesSqlDatabaseRetrieveThroughputDistributionHeaders
  • Added Interface SqlResourcesSqlDatabaseRetrieveThroughputDistributionOptionalParams
  • Added Interface TableResourcesCreateUpdateTableRoleAssignmentHeaders
  • Added Interface TableResourcesCreateUpdateTableRoleAssignmentOptionalParams
  • Added Interface TableResourcesCreateUpdateTableRoleDefinitionHeaders
  • Added Interface TableResourcesCreateUpdateTableRoleDefinitionOptionalParams
  • Added Interface TableResourcesDeleteTableRoleAssignmentHeaders
  • Added Interface TableResourcesDeleteTableRoleAssignmentOptionalParams
  • Added Interface TableResourcesDeleteTableRoleDefinitionHeaders
  • Added Interface TableResourcesDeleteTableRoleDefinitionOptionalParams
  • Added Interface TableResourcesGetTableRoleAssignmentOptionalParams
  • Added Interface TableResourcesGetTableRoleDefinitionOptionalParams
  • Added Interface TableResourcesListTableRoleAssignmentsOptionalParams
  • Added Interface TableResourcesListTableRoleDefinitionsOptionalParams
  • Added Interface TableRoleAssignmentListResult
  • Added Interface TableRoleAssignmentResource
  • Added Interface TableRoleDefinitionListResult
  • Added Interface TableRoleDefinitionResource
  • Added Interface ThroughputBucketResource
  • Added Interface ThroughputPoolAccountCreateOptionalParams
  • Added Interface ThroughputPoolAccountCreateParameters
  • Added Interface ThroughputPoolAccountDeleteHeaders
  • Added Interface ThroughputPoolAccountDeleteOptionalParams
  • Added Interface ThroughputPoolAccountGetOptionalParams
  • Added Interface ThroughputPoolAccountResource
  • Added Interface ThroughputPoolAccountsListNextOptionalParams
  • Added Interface ThroughputPoolAccountsListOptionalParams
  • Added Interface ThroughputPoolAccountsListResult
  • Added Interface ThroughputPoolCreateOrUpdateOptionalParams
  • Added Interface ThroughputPoolDeleteHeaders
  • Added Interface ThroughputPoolDeleteOptionalParams
  • Added Interface ThroughputPoolGetOptionalParams
  • Added Interface ThroughputPoolResource
  • Added Interface ThroughputPoolsListByResourceGroupNextOptionalParams
  • Added Interface ThroughputPoolsListByResourceGroupOptionalParams
  • Added Interface ThroughputPoolsListNextOptionalParams
  • Added Interface ThroughputPoolsListOptionalParams
  • Added Interface ThroughputPoolsListResult
  • Added Interface ThroughputPoolUpdate
  • Added Interface ThroughputPoolUpdateHeaders
  • Added Interface ThroughputPoolUpdateOptionalParams
  • Added Interface TrackedResource
  • Added Type Alias AccessRuleDirection
  • Added Type Alias AutoReplicate
  • Added Type Alias BackupState
  • Added Type Alias BaseCosmosDataTransferDataSourceSinkUnion
  • Added Type Alias CapacityMode
  • Added Type Alias CapacityModeTransitionStatus
  • Added Type Alias CassandraClustersGetBackupResponse
  • Added Type Alias CassandraClustersGetCommandAsyncResponse
  • Added Type Alias CassandraClustersInvokeCommandAsyncResponse
  • Added Type Alias CassandraClustersListBackupsResponse
  • Added Type Alias CassandraClustersListCommandResponse
  • Added Type Alias CassandraResourcesCreateUpdateCassandraViewResponse
  • Added Type Alias CassandraResourcesGetCassandraViewResponse
  • Added Type Alias CassandraResourcesGetCassandraViewThroughputResponse
  • Added Type Alias CassandraResourcesListCassandraViewsResponse
  • Added Type Alias CassandraResourcesMigrateCassandraViewToAutoscaleResponse
  • Added Type Alias CassandraResourcesMigrateCassandraViewToManualThroughputResponse
  • Added Type Alias CassandraResourcesUpdateCassandraViewThroughputResponse
  • Added Type Alias ChaosFaultEnableDisableResponse
  • Added Type Alias ChaosFaultGetResponse
  • Added Type Alias ChaosFaultListNextResponse
  • Added Type Alias ChaosFaultListOperationResponse
  • Added Type Alias ClusterType
  • Added Type Alias CommandStatus
  • Added Type Alias DataTransferComponent
  • Added Type Alias DataTransferDataSourceSinkUnion
  • Added Type Alias DataTransferJobMode
  • Added Type Alias DataTransferJobsCancelResponse
  • Added Type Alias DataTransferJobsCompleteResponse
  • Added Type Alias DataTransferJobsCreateResponse
  • Added Type Alias DataTransferJobsGetResponse
  • Added Type Alias DataTransferJobsListByDatabaseAccountNextResponse
  • Added Type Alias DataTransferJobsListByDatabaseAccountResponse
  • Added Type Alias DataTransferJobsPauseResponse
  • Added Type Alias DataTransferJobsResumeResponse
  • Added Type Alias DefaultPriorityLevel
  • Added Type Alias EnableFullTextQuery
  • Added Type Alias GraphResourcesCreateUpdateGraphResponse
  • Added Type Alias GraphResourcesGetGraphResponse
  • Added Type Alias GraphResourcesListGraphsResponse
  • Added Type Alias IssueType
  • Added Type Alias MongoDBResourcesListMongoDBCollectionPartitionMergeResponse
  • Added Type Alias MongoDBResourcesMongoDBContainerRedistributeThroughputResponse
  • Added Type Alias MongoDBResourcesMongoDBContainerRetrieveThroughputDistributionResponse
  • Added Type Alias MongoDBResourcesMongoDBDatabasePartitionMergeResponse
  • Added Type Alias MongoDBResourcesMongoDBDatabaseRedistributeThroughputResponse
  • Added Type Alias MongoDBResourcesMongoDBDatabaseRetrieveThroughputDistributionResponse
  • Added Type Alias NetworkSecurityPerimeterConfigurationProvisioningState
  • Added Type Alias NetworkSecurityPerimeterConfigurationsGetResponse
  • Added Type Alias NetworkSecurityPerimeterConfigurationsListNextResponse
  • Added Type Alias NetworkSecurityPerimeterConfigurationsListResponse
  • Added Type Alias NetworkSecurityPerimeterConfigurationsReconcileResponse
  • Added Type Alias ResourceAssociationAccessMode
  • Added Type Alias ScheduledEventStrategy
  • Added Type Alias Severity
  • Added Type Alias SqlResourcesListSqlContainerPartitionMergeResponse
  • Added Type Alias SqlResourcesSqlContainerRedistributeThroughputResponse
  • Added Type Alias SqlResourcesSqlContainerRetrieveThroughputDistributionResponse
  • Added Type Alias SqlResourcesSqlDatabasePartitionMergeResponse
  • Added Type Alias SqlResourcesSqlDatabaseRedistributeThroughputResponse
  • Added Type Alias SqlResourcesSqlDatabaseRetrieveThroughputDistributionResponse
  • Added Type Alias SupportedActions
  • Added Type Alias TableResourcesCreateUpdateTableRoleAssignmentResponse
  • Added Type Alias TableResourcesCreateUpdateTableRoleDefinitionResponse
  • Added Type Alias TableResourcesGetTableRoleAssignmentResponse
  • Added Type Alias TableResourcesGetTableRoleDefinitionResponse
  • Added Type Alias TableResourcesListTableRoleAssignmentsResponse
  • Added Type Alias TableResourcesListTableRoleDefinitionsResponse
  • Added Type Alias ThroughputPolicyType
  • Added Type Alias ThroughputPoolAccountCreateResponse
  • Added Type Alias ThroughputPoolAccountDeleteResponse
  • Added Type Alias ThroughputPoolAccountGetResponse
  • Added Type Alias ThroughputPoolAccountsListNextResponse
  • Added Type Alias ThroughputPoolAccountsListResponse
  • Added Type Alias ThroughputPoolCreateOrUpdateResponse
  • Added Type Alias ThroughputPoolDeleteResponse
  • Added Type Alias ThroughputPoolGetResponse
  • Added Type Alias ThroughputPoolsListByResourceGroupNextResponse
  • Added Type Alias ThroughputPoolsListByResourceGroupResponse
  • Added Type Alias ThroughputPoolsListNextResponse
  • Added Type Alias ThroughputPoolsListResponse
  • Added Type Alias ThroughputPoolUpdateResponse
  • Interface ARMResourceProperties has a new optional parameter identity
  • Interface CassandraClustersDeallocateOptionalParams has a new optional parameter xMsForceDeallocate
  • Interface ClusterResourceProperties has a new optional parameter autoReplicate
  • Interface ClusterResourceProperties has a new optional parameter backupSchedules
  • Interface ClusterResourceProperties has a new optional parameter clusterType
  • Interface ClusterResourceProperties has a new optional parameter extensions
  • Interface ClusterResourceProperties has a new optional parameter externalDataCenters
  • Interface ClusterResourceProperties has a new optional parameter scheduledEventStrategy
  • Interface ComponentsM9L909SchemasCassandraclusterpublicstatusPropertiesDatacentersItemsPropertiesNodesItems has a new optional parameter isLatestModel
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter capacityMode
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter defaultPriorityLevel
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter diagnosticLogSettings
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter enableMaterializedViews
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter enablePriorityBasedExecution
  • Interface DatabaseAccountGetResults has a new optional parameter capacityMode
  • Interface DatabaseAccountGetResults has a new optional parameter capacityModeChangeTransitionState
  • Interface DatabaseAccountGetResults has a new optional parameter defaultPriorityLevel
  • Interface DatabaseAccountGetResults has a new optional parameter diagnosticLogSettings
  • Interface DatabaseAccountGetResults has a new optional parameter enableMaterializedViews
  • Interface DatabaseAccountGetResults has a new optional parameter enablePriorityBasedExecution
  • Interface DatabaseAccountUpdateParameters has a new optional parameter capacityMode
  • Interface DatabaseAccountUpdateParameters has a new optional parameter defaultPriorityLevel
  • Interface DatabaseAccountUpdateParameters has a new optional parameter diagnosticLogSettings
  • Interface DatabaseAccountUpdateParameters has a new optional parameter enableMaterializedViews
  • Interface DatabaseAccountUpdateParameters has a new optional parameter enablePriorityBasedExecution
  • Interface Resource has a new optional parameter systemData
  • Interface RestoreParameters has a new optional parameter sourceBackupLocation
  • Interface SqlContainerResource has a new optional parameter materializedViewDefinition
  • Interface ThroughputSettingsResource has a new optional parameter throughputBuckets
  • Added Enum KnownAccessRuleDirection
  • Added Enum KnownAutoReplicate
  • Added Enum KnownBackupState
  • Added Enum KnownCapacityMode
  • Added Enum KnownCapacityModeTransitionStatus
  • Added Enum KnownClusterType
  • Added Enum KnownCommandStatus
  • Added Enum KnownDataTransferComponent
  • Added Enum KnownDataTransferJobMode
  • Added Enum KnownDefaultPriorityLevel
  • Added Enum KnownIssueType
  • Added Enum KnownNetworkSecurityPerimeterConfigurationProvisioningState
  • Added Enum KnownResourceAssociationAccessMode
  • Added Enum KnownScheduledEventStrategy
  • Added Enum KnownSeverity
  • Added Enum KnownThroughputPolicyType
  • Enum KnownStatus has a new value Canceled
  • Enum KnownStatus has a new value Failed
  • Enum KnownStatus has a new value Succeeded
  • Enum KnownStatus has a new value Updating

16.2.0 (2024-12-09)

Features Added

  • Added Interface VectorEmbedding
  • Added Interface VectorEmbeddingPolicy
  • Added Interface VectorIndex
  • Added Type Alias DistanceFunction
  • Added Type Alias VectorDataType
  • Added Type Alias VectorIndexType
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter enablePerRegionPerPartitionAutoscale
  • Interface DatabaseAccountGetResults has a new optional parameter enablePerRegionPerPartitionAutoscale
  • Interface DatabaseAccountUpdateParameters has a new optional parameter enablePerRegionPerPartitionAutoscale
  • Interface IndexingPolicy has a new optional parameter vectorIndexes
  • Interface SqlContainerResource has a new optional parameter vectorEmbeddingPolicy
  • Added Enum KnownDistanceFunction
  • Added Enum KnownVectorDataType
  • Added Enum KnownVectorIndexType

17.0.0-beta.1 (2024-10-29)

Compared with version 16.1.0

Features Added

  • Added operation group ChaosFault
  • Added operation group DataTransferJobs
  • Added operation group GraphResources
  • Added operation group NetworkSecurityPerimeterConfigurations
  • Added operation group ThroughputPool
  • Added operation group ThroughputPoolAccount
  • Added operation group ThroughputPoolAccounts
  • Added operation group ThroughputPools
  • Added operation CassandraClusters.beginInvokeCommandAsync
  • Added operation CassandraClusters.beginInvokeCommandAsyncAndWait
  • Added operation CassandraClusters.getBackup
  • Added operation CassandraClusters.getCommandAsync
  • Added operation CassandraClusters.listBackups
  • Added operation CassandraClusters.listCommand
  • Added operation CassandraResources.beginCreateUpdateCassandraView
  • Added operation CassandraResources.beginCreateUpdateCassandraViewAndWait
  • Added operation CassandraResources.beginDeleteCassandraView
  • Added operation CassandraResources.beginDeleteCassandraViewAndWait
  • Added operation CassandraResources.beginMigrateCassandraViewToAutoscale
  • Added operation CassandraResources.beginMigrateCassandraViewToAutoscaleAndWait
  • Added operation CassandraResources.beginMigrateCassandraViewToManualThroughput
  • Added operation CassandraResources.beginMigrateCassandraViewToManualThroughputAndWait
  • Added operation CassandraResources.beginUpdateCassandraViewThroughput
  • Added operation CassandraResources.beginUpdateCassandraViewThroughputAndWait
  • Added operation CassandraResources.getCassandraView
  • Added operation CassandraResources.getCassandraViewThroughput
  • Added operation CassandraResources.listCassandraViews
  • Added operation MongoDBResources.beginListMongoDBCollectionPartitionMerge
  • Added operation MongoDBResources.beginListMongoDBCollectionPartitionMergeAndWait
  • Added operation MongoDBResources.beginMongoDBContainerRedistributeThroughput
  • Added operation MongoDBResources.beginMongoDBContainerRedistributeThroughputAndWait
  • Added operation MongoDBResources.beginMongoDBContainerRetrieveThroughputDistribution
  • Added operation MongoDBResources.beginMongoDBContainerRetrieveThroughputDistributionAndWait
  • Added operation MongoDBResources.beginMongoDBDatabasePartitionMerge
  • Added operation MongoDBResources.beginMongoDBDatabasePartitionMergeAndWait
  • Added operation MongoDBResources.beginMongoDBDatabaseRedistributeThroughput
  • Added operation MongoDBResources.beginMongoDBDatabaseRedistributeThroughputAndWait
  • Added operation MongoDBResources.beginMongoDBDatabaseRetrieveThroughputDistribution
  • Added operation MongoDBResources.beginMongoDBDatabaseRetrieveThroughputDistributionAndWait
  • Added operation SqlResources.beginListSqlContainerPartitionMerge
  • Added operation SqlResources.beginListSqlContainerPartitionMergeAndWait
  • Added operation SqlResources.beginSqlContainerRedistributeThroughput
  • Added operation SqlResources.beginSqlContainerRedistributeThroughputAndWait
  • Added operation SqlResources.beginSqlContainerRetrieveThroughputDistribution
  • Added operation SqlResources.beginSqlContainerRetrieveThroughputDistributionAndWait
  • Added operation SqlResources.beginSqlDatabasePartitionMerge
  • Added operation SqlResources.beginSqlDatabasePartitionMergeAndWait
  • Added operation SqlResources.beginSqlDatabaseRedistributeThroughput
  • Added operation SqlResources.beginSqlDatabaseRedistributeThroughputAndWait
  • Added operation SqlResources.beginSqlDatabaseRetrieveThroughputDistribution
  • Added operation SqlResources.beginSqlDatabaseRetrieveThroughputDistributionAndWait
  • Added Interface AccessRule
  • Added Interface AccessRuleProperties
  • Added Interface AccessRulePropertiesSubscriptionsItem
  • Added Interface AzureBlobDataTransferDataSourceSink
  • Added Interface BackupResource
  • Added Interface BackupSchedule
  • Added Interface BaseCosmosDataTransferDataSourceSink
  • Added Interface CapacityModeChangeTransitionState
  • Added Interface CassandraClustersGetBackupOptionalParams
  • Added Interface CassandraClustersGetCommandAsyncOptionalParams
  • Added Interface CassandraClustersInvokeCommandAsyncHeaders
  • Added Interface CassandraClustersInvokeCommandAsyncOptionalParams
  • Added Interface CassandraClustersListBackupsOptionalParams
  • Added Interface CassandraClustersListCommandOptionalParams
  • Added Interface CassandraResourcesCreateUpdateCassandraViewHeaders
  • Added Interface CassandraResourcesCreateUpdateCassandraViewOptionalParams
  • Added Interface CassandraResourcesDeleteCassandraViewHeaders
  • Added Interface CassandraResourcesDeleteCassandraViewOptionalParams
  • Added Interface CassandraResourcesGetCassandraViewOptionalParams
  • Added Interface CassandraResourcesGetCassandraViewThroughputOptionalParams
  • Added Interface CassandraResourcesListCassandraViewsOptionalParams
  • Added Interface CassandraResourcesMigrateCassandraViewToAutoscaleHeaders
  • Added Interface CassandraResourcesMigrateCassandraViewToAutoscaleOptionalParams
  • Added Interface CassandraResourcesMigrateCassandraViewToManualThroughputHeaders
  • Added Interface CassandraResourcesMigrateCassandraViewToManualThroughputOptionalParams
  • Added Interface CassandraResourcesUpdateCassandraViewThroughputHeaders
  • Added Interface CassandraResourcesUpdateCassandraViewThroughputOptionalParams
  • Added Interface CassandraViewCreateUpdateParameters
  • Added Interface CassandraViewGetPropertiesOptions
  • Added Interface CassandraViewGetPropertiesResource
  • Added Interface CassandraViewGetResults
  • Added Interface CassandraViewListResult
  • Added Interface CassandraViewResource
  • Added Interface ChaosFaultEnableDisableOptionalParams
  • Added Interface ChaosFaultGetOptionalParams
  • Added Interface ChaosFaultListNextOptionalParams
  • Added Interface ChaosFaultListOptionalParams
  • Added Interface ChaosFaultListResponse
  • Added Interface ChaosFaultResource
  • Added Interface CommandPublicResource
  • Added Interface CosmosCassandraDataTransferDataSourceSink
  • Added Interface CosmosMongoDataTransferDataSourceSink
  • Added Interface CosmosMongoVCoreDataTransferDataSourceSink
  • Added Interface CosmosSqlDataTransferDataSourceSink
  • Added Interface CreateJobRequest
  • Added Interface DataTransferDataSourceSink
  • Added Interface DataTransferJobFeedResults
  • Added Interface DataTransferJobGetResults
  • Added Interface DataTransferJobProperties
  • Added Interface DataTransferJobsCancelOptionalParams
  • Added Interface DataTransferJobsCompleteOptionalParams
  • Added Interface DataTransferJobsCreateOptionalParams
  • Added Interface DataTransferJobsGetOptionalParams
  • Added Interface DataTransferJobsListByDatabaseAccountNextOptionalParams
  • Added Interface DataTransferJobsListByDatabaseAccountOptionalParams
  • Added Interface DataTransferJobsPauseOptionalParams
  • Added Interface DataTransferJobsResumeOptionalParams
  • Added Interface DiagnosticLogSettings
  • Added Interface GraphResource
  • Added Interface GraphResourceCreateUpdateParameters
  • Added Interface GraphResourceGetPropertiesOptions
  • Added Interface GraphResourceGetPropertiesResource
  • Added Interface GraphResourceGetResults
  • Added Interface GraphResourcesCreateUpdateGraphHeaders
  • Added Interface GraphResourcesCreateUpdateGraphOptionalParams
  • Added Interface GraphResourcesDeleteGraphResourceHeaders
  • Added Interface GraphResourcesDeleteGraphResourceOptionalParams
  • Added Interface GraphResourcesGetGraphOptionalParams
  • Added Interface GraphResourcesListGraphsOptionalParams
  • Added Interface GraphResourcesListResult
  • Added Interface ListBackups
  • Added Interface ListCommands
  • Added Interface MaterializedViewDefinition
  • Added Interface MergeParameters
  • Added Interface MongoDBResourcesListMongoDBCollectionPartitionMergeHeaders
  • Added Interface MongoDBResourcesListMongoDBCollectionPartitionMergeOptionalParams
  • Added Interface MongoDBResourcesMongoDBContainerRedistributeThroughputHeaders
  • Added Interface MongoDBResourcesMongoDBContainerRedistributeThroughputOptionalParams
  • Added Interface MongoDBResourcesMongoDBContainerRetrieveThroughputDistributionHeaders
  • Added Interface MongoDBResourcesMongoDBContainerRetrieveThroughputDistributionOptionalParams
  • Added Interface MongoDBResourcesMongoDBDatabasePartitionMergeHeaders
  • Added Interface MongoDBResourcesMongoDBDatabasePartitionMergeOptionalParams
  • Added Interface MongoDBResourcesMongoDBDatabaseRedistributeThroughputHeaders
  • Added Interface MongoDBResourcesMongoDBDatabaseRedistributeThroughputOptionalParams
  • Added Interface MongoDBResourcesMongoDBDatabaseRetrieveThroughputDistributionHeaders
  • Added Interface MongoDBResourcesMongoDBDatabaseRetrieveThroughputDistributionOptionalParams
  • Added Interface NetworkSecurityPerimeter
  • Added Interface NetworkSecurityPerimeterConfiguration
  • Added Interface NetworkSecurityPerimeterConfigurationListResult
  • Added Interface NetworkSecurityPerimeterConfigurationProperties
  • Added Interface NetworkSecurityPerimeterConfigurationsGetOptionalParams
  • Added Interface NetworkSecurityPerimeterConfigurationsListNextOptionalParams
  • Added Interface NetworkSecurityPerimeterConfigurationsListOptionalParams
  • Added Interface NetworkSecurityPerimeterConfigurationsReconcileHeaders
  • Added Interface NetworkSecurityPerimeterConfigurationsReconcileOptionalParams
  • Added Interface NetworkSecurityProfile
  • Added Interface PhysicalPartitionId
  • Added Interface PhysicalPartitionStorageInfo
  • Added Interface PhysicalPartitionStorageInfoCollection
  • Added Interface PhysicalPartitionThroughputInfoProperties
  • Added Interface PhysicalPartitionThroughputInfoResource
  • Added Interface PhysicalPartitionThroughputInfoResult
  • Added Interface PhysicalPartitionThroughputInfoResultPropertiesResource
  • Added Interface ProvisioningIssue
  • Added Interface ProvisioningIssueProperties
  • Added Interface RedistributeThroughputParameters
  • Added Interface RedistributeThroughputPropertiesResource
  • Added Interface ResourceAssociation
  • Added Interface RetrieveThroughputParameters
  • Added Interface RetrieveThroughputPropertiesResource
  • Added Interface SqlResourcesListSqlContainerPartitionMergeHeaders
  • Added Interface SqlResourcesListSqlContainerPartitionMergeOptionalParams
  • Added Interface SqlResourcesSqlContainerRedistributeThroughputHeaders
  • Added Interface SqlResourcesSqlContainerRedistributeThroughputOptionalParams
  • Added Interface SqlResourcesSqlContainerRetrieveThroughputDistributionHeaders
  • Added Interface SqlResourcesSqlContainerRetrieveThroughputDistributionOptionalParams
  • Added Interface SqlResourcesSqlDatabasePartitionMergeHeaders
  • Added Interface SqlResourcesSqlDatabasePartitionMergeOptionalParams
  • Added Interface SqlResourcesSqlDatabaseRedistributeThroughputHeaders
  • Added Interface SqlResourcesSqlDatabaseRedistributeThroughputOptionalParams
  • Added Interface SqlResourcesSqlDatabaseRetrieveThroughputDistributionHeaders
  • Added Interface SqlResourcesSqlDatabaseRetrieveThroughputDistributionOptionalParams
  • Added Interface ThroughputPoolAccountCreateOptionalParams
  • Added Interface ThroughputPoolAccountCreateParameters
  • Added Interface ThroughputPoolAccountDeleteHeaders
  • Added Interface ThroughputPoolAccountDeleteOptionalParams
  • Added Interface ThroughputPoolAccountGetOptionalParams
  • Added Interface ThroughputPoolAccountResource
  • Added Interface ThroughputPoolAccountsListNextOptionalParams
  • Added Interface ThroughputPoolAccountsListOptionalParams
  • Added Interface ThroughputPoolAccountsListResult
  • Added Interface ThroughputPoolCreateOrUpdateOptionalParams
  • Added Interface ThroughputPoolDeleteHeaders
  • Added Interface ThroughputPoolDeleteOptionalParams
  • Added Interface ThroughputPoolGetOptionalParams
  • Added Interface ThroughputPoolResource
  • Added Interface ThroughputPoolsListByResourceGroupNextOptionalParams
  • Added Interface ThroughputPoolsListByResourceGroupOptionalParams
  • Added Interface ThroughputPoolsListNextOptionalParams
  • Added Interface ThroughputPoolsListOptionalParams
  • Added Interface ThroughputPoolsListResult
  • Added Interface ThroughputPoolUpdate
  • Added Interface ThroughputPoolUpdateHeaders
  • Added Interface ThroughputPoolUpdateOptionalParams
  • Added Interface TrackedResource
  • Added Type Alias AccessRuleDirection
  • Added Type Alias AutoReplicate
  • Added Type Alias BackupState
  • Added Type Alias BaseCosmosDataTransferDataSourceSinkUnion
  • Added Type Alias CapacityMode
  • Added Type Alias CapacityModeTransitionStatus
  • Added Type Alias CassandraClustersGetBackupResponse
  • Added Type Alias CassandraClustersGetCommandAsyncResponse
  • Added Type Alias CassandraClustersInvokeCommandAsyncResponse
  • Added Type Alias CassandraClustersListBackupsResponse
  • Added Type Alias CassandraClustersListCommandResponse
  • Added Type Alias CassandraResourcesCreateUpdateCassandraViewResponse
  • Added Type Alias CassandraResourcesGetCassandraViewResponse
  • Added Type Alias CassandraResourcesGetCassandraViewThroughputResponse
  • Added Type Alias CassandraResourcesListCassandraViewsResponse
  • Added Type Alias CassandraResourcesMigrateCassandraViewToAutoscaleResponse
  • Added Type Alias CassandraResourcesMigrateCassandraViewToManualThroughputResponse
  • Added Type Alias CassandraResourcesUpdateCassandraViewThroughputResponse
  • Added Type Alias ChaosFaultEnableDisableResponse
  • Added Type Alias ChaosFaultGetResponse
  • Added Type Alias ChaosFaultListNextResponse
  • Added Type Alias ChaosFaultListOperationResponse
  • Added Type Alias ClusterType
  • Added Type Alias CommandStatus
  • Added Type Alias DataTransferComponent
  • Added Type Alias DataTransferDataSourceSinkUnion
  • Added Type Alias DataTransferJobMode
  • Added Type Alias DataTransferJobsCancelResponse
  • Added Type Alias DataTransferJobsCompleteResponse
  • Added Type Alias DataTransferJobsCreateResponse
  • Added Type Alias DataTransferJobsGetResponse
  • Added Type Alias DataTransferJobsListByDatabaseAccountNextResponse
  • Added Type Alias DataTransferJobsListByDatabaseAccountResponse
  • Added Type Alias DataTransferJobsPauseResponse
  • Added Type Alias DataTransferJobsResumeResponse
  • Added Type Alias DefaultPriorityLevel
  • Added Type Alias EnableFullTextQuery
  • Added Type Alias GraphResourcesCreateUpdateGraphResponse
  • Added Type Alias GraphResourcesGetGraphResponse
  • Added Type Alias GraphResourcesListGraphsResponse
  • Added Type Alias IssueType
  • Added Type Alias MongoDBResourcesListMongoDBCollectionPartitionMergeResponse
  • Added Type Alias MongoDBResourcesMongoDBContainerRedistributeThroughputResponse
  • Added Type Alias MongoDBResourcesMongoDBContainerRetrieveThroughputDistributionResponse
  • Added Type Alias MongoDBResourcesMongoDBDatabasePartitionMergeResponse
  • Added Type Alias MongoDBResourcesMongoDBDatabaseRedistributeThroughputResponse
  • Added Type Alias MongoDBResourcesMongoDBDatabaseRetrieveThroughputDistributionResponse
  • Added Type Alias NetworkSecurityPerimeterConfigurationProvisioningState
  • Added Type Alias NetworkSecurityPerimeterConfigurationsGetResponse
  • Added Type Alias NetworkSecurityPerimeterConfigurationsListNextResponse
  • Added Type Alias NetworkSecurityPerimeterConfigurationsListResponse
  • Added Type Alias NetworkSecurityPerimeterConfigurationsReconcileResponse
  • Added Type Alias ResourceAssociationAccessMode
  • Added Type Alias ScheduledEventStrategy
  • Added Type Alias Severity
  • Added Type Alias SqlResourcesListSqlContainerPartitionMergeResponse
  • Added Type Alias SqlResourcesSqlContainerRedistributeThroughputResponse
  • Added Type Alias SqlResourcesSqlContainerRetrieveThroughputDistributionResponse
  • Added Type Alias SqlResourcesSqlDatabasePartitionMergeResponse
  • Added Type Alias SqlResourcesSqlDatabaseRedistributeThroughputResponse
  • Added Type Alias SqlResourcesSqlDatabaseRetrieveThroughputDistributionResponse
  • Added Type Alias SupportedActions
  • Added Type Alias ThroughputPolicyType
  • Added Type Alias ThroughputPoolAccountCreateResponse
  • Added Type Alias ThroughputPoolAccountDeleteResponse
  • Added Type Alias ThroughputPoolAccountGetResponse
  • Added Type Alias ThroughputPoolAccountsListNextResponse
  • Added Type Alias ThroughputPoolAccountsListResponse
  • Added Type Alias ThroughputPoolCreateOrUpdateResponse
  • Added Type Alias ThroughputPoolDeleteResponse
  • Added Type Alias ThroughputPoolGetResponse
  • Added Type Alias ThroughputPoolsListByResourceGroupNextResponse
  • Added Type Alias ThroughputPoolsListByResourceGroupResponse
  • Added Type Alias ThroughputPoolsListNextResponse
  • Added Type Alias ThroughputPoolsListResponse
  • Added Type Alias ThroughputPoolUpdateResponse
  • Interface ARMResourceProperties has a new optional parameter identity
  • Interface CassandraClustersDeallocateOptionalParams has a new optional parameter xMsForceDeallocate
  • Interface ClusterResourceProperties has a new optional parameter autoReplicate
  • Interface ClusterResourceProperties has a new optional parameter backupSchedules
  • Interface ClusterResourceProperties has a new optional parameter clusterType
  • Interface ClusterResourceProperties has a new optional parameter extensions
  • Interface ClusterResourceProperties has a new optional parameter externalDataCenters
  • Interface ClusterResourceProperties has a new optional parameter scheduledEventStrategy
  • Interface CommandPostBody has a new optional parameter readWrite
  • Interface ComponentsM9L909SchemasCassandraclusterpublicstatusPropertiesDatacentersItemsPropertiesNodesItems has a new optional parameter isLatestModel
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter capacityMode
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter defaultPriorityLevel
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter diagnosticLogSettings
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter enableMaterializedViews
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter enablePerRegionPerPartitionAutoscale
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter enablePriorityBasedExecution
  • Interface DatabaseAccountGetResults has a new optional parameter capacityMode
  • Interface DatabaseAccountGetResults has a new optional parameter capacityModeChangeTransitionState
  • Interface DatabaseAccountGetResults has a new optional parameter defaultPriorityLevel
  • Interface DatabaseAccountGetResults has a new optional parameter diagnosticLogSettings
  • Interface DatabaseAccountGetResults has a new optional parameter enableMaterializedViews
  • Interface DatabaseAccountGetResults has a new optional parameter enablePerRegionPerPartitionAutoscale
  • Interface DatabaseAccountGetResults has a new optional parameter enablePriorityBasedExecution
  • Interface DatabaseAccountUpdateParameters has a new optional parameter capacityMode
  • Interface DatabaseAccountUpdateParameters has a new optional parameter defaultPriorityLevel
  • Interface DatabaseAccountUpdateParameters has a new optional parameter diagnosticLogSettings
  • Interface DatabaseAccountUpdateParameters has a new optional parameter enableMaterializedViews
  • Interface DatabaseAccountUpdateParameters has a new optional parameter enablePerRegionPerPartitionAutoscale
  • Interface DatabaseAccountUpdateParameters has a new optional parameter enablePriorityBasedExecution
  • Interface Resource has a new optional parameter systemData
  • Interface RestoreParameters has a new optional parameter sourceBackupLocation
  • Interface SqlContainerResource has a new optional parameter materializedViewDefinition
  • Added Enum KnownAccessRuleDirection
  • Added Enum KnownAutoReplicate
  • Added Enum KnownBackupState
  • Added Enum KnownCapacityMode
  • Added Enum KnownCapacityModeTransitionStatus
  • Added Enum KnownClusterType
  • Added Enum KnownCommandStatus
  • Added Enum KnownDataTransferComponent
  • Added Enum KnownDataTransferJobMode
  • Added Enum KnownDefaultPriorityLevel
  • Added Enum KnownIssueType
  • Added Enum KnownNetworkSecurityPerimeterConfigurationProvisioningState
  • Added Enum KnownResourceAssociationAccessMode
  • Added Enum KnownScheduledEventStrategy
  • Added Enum KnownSeverity
  • Added Enum KnownThroughputPolicyType
  • Enum KnownStatus has a new value Canceled
  • Enum KnownStatus has a new value Failed
  • Enum KnownStatus has a new value Succeeded
  • Enum KnownStatus has a new value Updating

Breaking Changes

  • Interface CommandPostBody no longer has parameter readwrite
  • Type of parameter arguments of interface CommandPostBody is changed from {
    [propertyName: string]: string;
} to Record<string, unknown>

16.1.0 (2024-10-08)

Features Added

  • Added Interface ErrorAdditionalInfo
  • Added Interface ErrorDetail
  • Interface ErrorResponse has a new optional parameter error
  • Interface RestoreParametersBase has a new optional parameter restoreWithTtlDisabled
  • Enum KnownServerVersion has a new value Seven0
  • Interface ErrorResponse no longer has parameter code
  • Interface ErrorResponse no longer has parameter message

16.0.0 (2024-06-24)

Features Added

  • Added Interface DataTransferServiceResourceCreateUpdateProperties
  • Added Interface GraphAPIComputeServiceResourceCreateUpdateProperties
  • Added Interface MaterializedViewsBuilderServiceResourceCreateUpdateProperties
  • Added Interface ServiceResourceCreateUpdateProperties
  • Added Interface SqlDedicatedGatewayServiceResourceCreateUpdateProperties
  • Added Type Alias AzureConnectionType
  • Added Type Alias DedicatedGatewayType
  • Added Type Alias ServiceResourceCreateUpdatePropertiesUnion
  • Interface ClusterResourceProperties has a new optional parameter azureConnectionMethod
  • Interface ClusterResourceProperties has a new optional parameter privateLinkResourceId
  • Interface DataCenterResourceProperties has a new optional parameter privateEndpointIpAddress
  • Interface ServiceResourceCreateUpdateParameters has a new optional parameter properties
  • Interface SqlDedicatedGatewayServiceResourceProperties has a new optional parameter dedicatedGatewayType
  • Added Enum KnownAzureConnectionType
  • Added Enum KnownDedicatedGatewayType
  • Enum KnownServerVersion has a new value Five0
  • Enum KnownServerVersion has a new value Six0

Breaking Changes

  • Interface ServiceResourceCreateUpdateParameters no longer has parameter instanceCount
  • Interface ServiceResourceCreateUpdateParameters no longer has parameter instanceSize
  • Interface ServiceResourceCreateUpdateParameters no longer has parameter serviceType

16.0.0-beta.8 (2024-06-17)

Compared with version 15.6.0

Features Added

  • Added operation group DataTransferJobs
  • Added operation group GraphResources
  • Added operation group NetworkSecurityPerimeterConfigurations
  • Added operation group ThroughputPool
  • Added operation group ThroughputPoolAccount
  • Added operation group ThroughputPoolAccounts
  • Added operation group ThroughputPools
  • Added operation CassandraClusters.beginInvokeCommandAsync
  • Added operation CassandraClusters.beginInvokeCommandAsyncAndWait
  • Added operation CassandraClusters.getBackup
  • Added operation CassandraClusters.getCommandAsync
  • Added operation CassandraClusters.listBackups
  • Added operation CassandraClusters.listCommand
  • Added operation CassandraResources.beginCreateUpdateCassandraView
  • Added operation CassandraResources.beginCreateUpdateCassandraViewAndWait
  • Added operation CassandraResources.beginDeleteCassandraView
  • Added operation CassandraResources.beginDeleteCassandraViewAndWait
  • Added operation CassandraResources.beginMigrateCassandraViewToAutoscale
  • Added operation CassandraResources.beginMigrateCassandraViewToAutoscaleAndWait
  • Added operation CassandraResources.beginMigrateCassandraViewToManualThroughput
  • Added operation CassandraResources.beginMigrateCassandraViewToManualThroughputAndWait
  • Added operation CassandraResources.beginUpdateCassandraViewThroughput
  • Added operation CassandraResources.beginUpdateCassandraViewThroughputAndWait
  • Added operation CassandraResources.getCassandraView
  • Added operation CassandraResources.getCassandraViewThroughput
  • Added operation CassandraResources.listCassandraViews
  • Added operation MongoDBResources.beginListMongoDBCollectionPartitionMerge
  • Added operation MongoDBResources.beginListMongoDBCollectionPartitionMergeAndWait
  • Added operation MongoDBResources.beginMongoDBContainerRedistributeThroughput
  • Added operation MongoDBResources.beginMongoDBContainerRedistributeThroughputAndWait
  • Added operation MongoDBResources.beginMongoDBContainerRetrieveThroughputDistribution
  • Added operation MongoDBResources.beginMongoDBContainerRetrieveThroughputDistributionAndWait
  • Added operation MongoDBResources.beginMongoDBDatabasePartitionMerge
  • Added operation MongoDBResources.beginMongoDBDatabasePartitionMergeAndWait
  • Added operation MongoDBResources.beginMongoDBDatabaseRedistributeThroughput
  • Added operation MongoDBResources.beginMongoDBDatabaseRedistributeThroughputAndWait
  • Added operation MongoDBResources.beginMongoDBDatabaseRetrieveThroughputDistribution
  • Added operation MongoDBResources.beginMongoDBDatabaseRetrieveThroughputDistributionAndWait
  • Added operation SqlResources.beginListSqlContainerPartitionMerge
  • Added operation SqlResources.beginListSqlContainerPartitionMergeAndWait
  • Added operation SqlResources.beginSqlContainerRedistributeThroughput
  • Added operation SqlResources.beginSqlContainerRedistributeThroughputAndWait
  • Added operation SqlResources.beginSqlContainerRetrieveThroughputDistribution
  • Added operation SqlResources.beginSqlContainerRetrieveThroughputDistributionAndWait
  • Added operation SqlResources.beginSqlDatabasePartitionMerge
  • Added operation SqlResources.beginSqlDatabasePartitionMergeAndWait
  • Added operation SqlResources.beginSqlDatabaseRedistributeThroughput
  • Added operation SqlResources.beginSqlDatabaseRedistributeThroughputAndWait
  • Added operation SqlResources.beginSqlDatabaseRetrieveThroughputDistribution
  • Added operation SqlResources.beginSqlDatabaseRetrieveThroughputDistributionAndWait
  • Added Interface AccessRule
  • Added Interface AccessRuleProperties
  • Added Interface AccessRulePropertiesSubscriptionsItem
  • Added Interface AzureBlobDataTransferDataSourceSink
  • Added Interface BackupResource
  • Added Interface BackupSchedule
  • Added Interface BaseCosmosDataTransferDataSourceSink
  • Added Interface CapacityModeChangeTransitionState
  • Added Interface CassandraClustersGetBackupOptionalParams
  • Added Interface CassandraClustersGetCommandAsyncOptionalParams
  • Added Interface CassandraClustersInvokeCommandAsyncHeaders
  • Added Interface CassandraClustersInvokeCommandAsyncOptionalParams
  • Added Interface CassandraClustersListBackupsOptionalParams
  • Added Interface CassandraClustersListCommandOptionalParams
  • Added Interface CassandraResourcesCreateUpdateCassandraViewHeaders
  • Added Interface CassandraResourcesCreateUpdateCassandraViewOptionalParams
  • Added Interface CassandraResourcesDeleteCassandraViewHeaders
  • Added Interface CassandraResourcesDeleteCassandraViewOptionalParams
  • Added Interface CassandraResourcesGetCassandraViewOptionalParams
  • Added Interface CassandraResourcesGetCassandraViewThroughputOptionalParams
  • Added Interface CassandraResourcesListCassandraViewsOptionalParams
  • Added Interface CassandraResourcesMigrateCassandraViewToAutoscaleHeaders
  • Added Interface CassandraResourcesMigrateCassandraViewToAutoscaleOptionalParams
  • Added Interface CassandraResourcesMigrateCassandraViewToManualThroughputHeaders
  • Added Interface CassandraResourcesMigrateCassandraViewToManualThroughputOptionalParams
  • Added Interface CassandraResourcesUpdateCassandraViewThroughputHeaders
  • Added Interface CassandraResourcesUpdateCassandraViewThroughputOptionalParams
  • Added Interface CassandraViewCreateUpdateParameters
  • Added Interface CassandraViewGetPropertiesOptions
  • Added Interface CassandraViewGetPropertiesResource
  • Added Interface CassandraViewGetResults
  • Added Interface CassandraViewListResult
  • Added Interface CassandraViewResource
  • Added Interface CommandPublicResource
  • Added Interface CosmosCassandraDataTransferDataSourceSink
  • Added Interface CosmosMongoDataTransferDataSourceSink
  • Added Interface CosmosSqlDataTransferDataSourceSink
  • Added Interface CreateJobRequest
  • Added Interface DataTransferDataSourceSink
  • Added Interface DataTransferJobFeedResults
  • Added Interface DataTransferJobGetResults
  • Added Interface DataTransferJobProperties
  • Added Interface DataTransferJobsCancelOptionalParams
  • Added Interface DataTransferJobsCompleteOptionalParams
  • Added Interface DataTransferJobsCreateOptionalParams
  • Added Interface DataTransferJobsGetOptionalParams
  • Added Interface DataTransferJobsListByDatabaseAccountNextOptionalParams
  • Added Interface DataTransferJobsListByDatabaseAccountOptionalParams
  • Added Interface DataTransferJobsPauseOptionalParams
  • Added Interface DataTransferJobsResumeOptionalParams
  • Added Interface DataTransferServiceResourceCreateUpdateProperties
  • Added Interface DiagnosticLogSettings
  • Added Interface ErrorAdditionalInfo
  • Added Interface ErrorDetail
  • Added Interface ErrorResponseAutoGenerated
  • Added Interface GraphAPIComputeServiceResourceCreateUpdateProperties
  • Added Interface GraphResource
  • Added Interface GraphResourceCreateUpdateParameters
  • Added Interface GraphResourceGetPropertiesOptions
  • Added Interface GraphResourceGetPropertiesResource
  • Added Interface GraphResourceGetResults
  • Added Interface GraphResourcesCreateUpdateGraphHeaders
  • Added Interface GraphResourcesCreateUpdateGraphOptionalParams
  • Added Interface GraphResourcesDeleteGraphResourceHeaders
  • Added Interface GraphResourcesDeleteGraphResourceOptionalParams
  • Added Interface GraphResourcesGetGraphOptionalParams
  • Added Interface GraphResourcesListGraphsOptionalParams
  • Added Interface GraphResourcesListResult
  • Added Interface ListBackups
  • Added Interface ListCommands
  • Added Interface MaterializedViewDefinition
  • Added Interface MaterializedViewsBuilderServiceResourceCreateUpdateProperties
  • Added Interface MergeParameters
  • Added Interface MongoDBResourcesListMongoDBCollectionPartitionMergeHeaders
  • Added Interface MongoDBResourcesListMongoDBCollectionPartitionMergeOptionalParams
  • Added Interface MongoDBResourcesMongoDBContainerRedistributeThroughputHeaders
  • Added Interface MongoDBResourcesMongoDBContainerRedistributeThroughputOptionalParams
  • Added Interface MongoDBResourcesMongoDBContainerRetrieveThroughputDistributionHeaders
  • Added Interface MongoDBResourcesMongoDBContainerRetrieveThroughputDistributionOptionalParams
  • Added Interface MongoDBResourcesMongoDBDatabasePartitionMergeHeaders
  • Added Interface MongoDBResourcesMongoDBDatabasePartitionMergeOptionalParams
  • Added Interface MongoDBResourcesMongoDBDatabaseRedistributeThroughputHeaders
  • Added Interface MongoDBResourcesMongoDBDatabaseRedistributeThroughputOptionalParams
  • Added Interface MongoDBResourcesMongoDBDatabaseRetrieveThroughputDistributionHeaders
  • Added Interface MongoDBResourcesMongoDBDatabaseRetrieveThroughputDistributionOptionalParams
  • Added Interface NetworkSecurityPerimeter
  • Added Interface NetworkSecurityPerimeterConfiguration
  • Added Interface NetworkSecurityPerimeterConfigurationListResult
  • Added Interface NetworkSecurityPerimeterConfigurationProperties
  • Added Interface NetworkSecurityPerimeterConfigurationsGetOptionalParams
  • Added Interface NetworkSecurityPerimeterConfigurationsListNextOptionalParams
  • Added Interface NetworkSecurityPerimeterConfigurationsListOptionalParams
  • Added Interface NetworkSecurityPerimeterConfigurationsReconcileHeaders
  • Added Interface NetworkSecurityPerimeterConfigurationsReconcileOptionalParams
  • Added Interface NetworkSecurityProfile
  • Added Interface PhysicalPartitionId
  • Added Interface PhysicalPartitionStorageInfo
  • Added Interface PhysicalPartitionStorageInfoCollection
  • Added Interface PhysicalPartitionThroughputInfoProperties
  • Added Interface PhysicalPartitionThroughputInfoResource
  • Added Interface PhysicalPartitionThroughputInfoResult
  • Added Interface PhysicalPartitionThroughputInfoResultPropertiesResource
  • Added Interface ProvisioningIssue
  • Added Interface ProvisioningIssueProperties
  • Added Interface RedistributeThroughputParameters
  • Added Interface RedistributeThroughputPropertiesResource
  • Added Interface ResourceAssociation
  • Added Interface RetrieveThroughputParameters
  • Added Interface RetrieveThroughputPropertiesResource
  • Added Interface ServiceResourceCreateUpdateProperties
  • Added Interface SqlDedicatedGatewayServiceResourceCreateUpdateProperties
  • Added Interface SqlResourcesListSqlContainerPartitionMergeHeaders
  • Added Interface SqlResourcesListSqlContainerPartitionMergeOptionalParams
  • Added Interface SqlResourcesSqlContainerRedistributeThroughputHeaders
  • Added Interface SqlResourcesSqlContainerRedistributeThroughputOptionalParams
  • Added Interface SqlResourcesSqlContainerRetrieveThroughputDistributionHeaders
  • Added Interface SqlResourcesSqlContainerRetrieveThroughputDistributionOptionalParams
  • Added Interface SqlResourcesSqlDatabasePartitionMergeHeaders
  • Added Interface SqlResourcesSqlDatabasePartitionMergeOptionalParams
  • Added Interface SqlResourcesSqlDatabaseRedistributeThroughputHeaders
  • Added Interface SqlResourcesSqlDatabaseRedistributeThroughputOptionalParams
  • Added Interface SqlResourcesSqlDatabaseRetrieveThroughputDistributionHeaders
  • Added Interface SqlResourcesSqlDatabaseRetrieveThroughputDistributionOptionalParams
  • Added Interface ThroughputPoolAccountCreateOptionalParams
  • Added Interface ThroughputPoolAccountCreateParameters
  • Added Interface ThroughputPoolAccountDeleteHeaders
  • Added Interface ThroughputPoolAccountDeleteOptionalParams
  • Added Interface ThroughputPoolAccountGetOptionalParams
  • Added Interface ThroughputPoolAccountResource
  • Added Interface ThroughputPoolAccountsListNextOptionalParams
  • Added Interface ThroughputPoolAccountsListOptionalParams
  • Added Interface ThroughputPoolAccountsListResult
  • Added Interface ThroughputPoolCreateOrUpdateOptionalParams
  • Added Interface ThroughputPoolDeleteHeaders
  • Added Interface ThroughputPoolDeleteOptionalParams
  • Added Interface ThroughputPoolGetOptionalParams
  • Added Interface ThroughputPoolResource
  • Added Interface ThroughputPoolsListByResourceGroupNextOptionalParams
  • Added Interface ThroughputPoolsListByResourceGroupOptionalParams
  • Added Interface ThroughputPoolsListNextOptionalParams
  • Added Interface ThroughputPoolsListOptionalParams
  • Added Interface ThroughputPoolsListResult
  • Added Interface ThroughputPoolUpdate
  • Added Interface ThroughputPoolUpdateHeaders
  • Added Interface ThroughputPoolUpdateOptionalParams
  • Added Interface TrackedResource
  • Added Type Alias AccessRuleDirection
  • Added Type Alias AutoReplicate
  • Added Type Alias AzureConnectionType
  • Added Type Alias BackupState
  • Added Type Alias BaseCosmosDataTransferDataSourceSinkUnion
  • Added Type Alias CapacityMode
  • Added Type Alias CapacityModeTransitionStatus
  • Added Type Alias CassandraClustersGetBackupResponse
  • Added Type Alias CassandraClustersGetCommandAsyncResponse
  • Added Type Alias CassandraClustersInvokeCommandAsyncResponse
  • Added Type Alias CassandraClustersListBackupsResponse
  • Added Type Alias CassandraClustersListCommandResponse
  • Added Type Alias CassandraResourcesCreateUpdateCassandraViewResponse
  • Added Type Alias CassandraResourcesGetCassandraViewResponse
  • Added Type Alias CassandraResourcesGetCassandraViewThroughputResponse
  • Added Type Alias CassandraResourcesListCassandraViewsResponse
  • Added Type Alias CassandraResourcesMigrateCassandraViewToAutoscaleResponse
  • Added Type Alias CassandraResourcesMigrateCassandraViewToManualThroughputResponse
  • Added Type Alias CassandraResourcesUpdateCassandraViewThroughputResponse
  • Added Type Alias ClusterType
  • Added Type Alias CommandStatus
  • Added Type Alias DataTransferComponent
  • Added Type Alias DataTransferDataSourceSinkUnion
  • Added Type Alias DataTransferJobMode
  • Added Type Alias DataTransferJobsCancelResponse
  • Added Type Alias DataTransferJobsCompleteResponse
  • Added Type Alias DataTransferJobsCreateResponse
  • Added Type Alias DataTransferJobsGetResponse
  • Added Type Alias DataTransferJobsListByDatabaseAccountNextResponse
  • Added Type Alias DataTransferJobsListByDatabaseAccountResponse
  • Added Type Alias DataTransferJobsPauseResponse
  • Added Type Alias DataTransferJobsResumeResponse
  • Added Type Alias DedicatedGatewayType
  • Added Type Alias DefaultPriorityLevel
  • Added Type Alias EnableFullTextQuery
  • Added Type Alias GraphResourcesCreateUpdateGraphResponse
  • Added Type Alias GraphResourcesGetGraphResponse
  • Added Type Alias GraphResourcesListGraphsResponse
  • Added Type Alias IssueType
  • Added Type Alias MongoDBResourcesListMongoDBCollectionPartitionMergeResponse
  • Added Type Alias MongoDBResourcesMongoDBContainerRedistributeThroughputResponse
  • Added Type Alias MongoDBResourcesMongoDBContainerRetrieveThroughputDistributionResponse
  • Added Type Alias MongoDBResourcesMongoDBDatabasePartitionMergeResponse
  • Added Type Alias MongoDBResourcesMongoDBDatabaseRedistributeThroughputResponse
  • Added Type Alias MongoDBResourcesMongoDBDatabaseRetrieveThroughputDistributionResponse
  • Added Type Alias NetworkSecurityPerimeterConfigurationProvisioningState
  • Added Type Alias NetworkSecurityPerimeterConfigurationsGetResponse
  • Added Type Alias NetworkSecurityPerimeterConfigurationsListNextResponse
  • Added Type Alias NetworkSecurityPerimeterConfigurationsListResponse
  • Added Type Alias NetworkSecurityPerimeterConfigurationsReconcileResponse
  • Added Type Alias ResourceAssociationAccessMode
  • Added Type Alias ScheduledEventStrategy
  • Added Type Alias ServiceResourceCreateUpdatePropertiesUnion
  • Added Type Alias Severity
  • Added Type Alias SqlResourcesListSqlContainerPartitionMergeResponse
  • Added Type Alias SqlResourcesSqlContainerRedistributeThroughputResponse
  • Added Type Alias SqlResourcesSqlContainerRetrieveThroughputDistributionResponse
  • Added Type Alias SqlResourcesSqlDatabasePartitionMergeResponse
  • Added Type Alias SqlResourcesSqlDatabaseRedistributeThroughputResponse
  • Added Type Alias SqlResourcesSqlDatabaseRetrieveThroughputDistributionResponse
  • Added Type Alias ThroughputPolicyType
  • Added Type Alias ThroughputPoolAccountCreateResponse
  • Added Type Alias ThroughputPoolAccountDeleteResponse
  • Added Type Alias ThroughputPoolAccountGetResponse
  • Added Type Alias ThroughputPoolAccountsListNextResponse
  • Added Type Alias ThroughputPoolAccountsListResponse
  • Added Type Alias ThroughputPoolCreateOrUpdateResponse
  • Added Type Alias ThroughputPoolDeleteResponse
  • Added Type Alias ThroughputPoolGetResponse
  • Added Type Alias ThroughputPoolsListByResourceGroupNextResponse
  • Added Type Alias ThroughputPoolsListByResourceGroupResponse
  • Added Type Alias ThroughputPoolsListNextResponse
  • Added Type Alias ThroughputPoolsListResponse
  • Added Type Alias ThroughputPoolUpdateResponse
  • Interface ARMResourceProperties has a new optional parameter identity
  • Interface CassandraClustersDeallocateOptionalParams has a new optional parameter xMsForceDeallocate
  • Interface ClusterResourceProperties has a new optional parameter autoReplicate
  • Interface ClusterResourceProperties has a new optional parameter azureConnectionMethod
  • Interface ClusterResourceProperties has a new optional parameter backupSchedules
  • Interface ClusterResourceProperties has a new optional parameter clusterType
  • Interface ClusterResourceProperties has a new optional parameter extensions
  • Interface ClusterResourceProperties has a new optional parameter externalDataCenters
  • Interface ClusterResourceProperties has a new optional parameter privateLinkResourceId
  • Interface ClusterResourceProperties has a new optional parameter scheduledEventStrategy
  • Interface CommandPostBody has a new optional parameter readWrite
  • Interface ComponentsM9L909SchemasCassandraclusterpublicstatusPropertiesDatacentersItemsPropertiesNodesItems has a new optional parameter isLatestModel
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter capacityMode
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter defaultPriorityLevel
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter diagnosticLogSettings
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter enableMaterializedViews
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter enablePerRegionPerPartitionAutoscale
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter enablePriorityBasedExecution
  • Interface DatabaseAccountGetResults has a new optional parameter capacityMode
  • Interface DatabaseAccountGetResults has a new optional parameter capacityModeChangeTransitionState
  • Interface DatabaseAccountGetResults has a new optional parameter defaultPriorityLevel
  • Interface DatabaseAccountGetResults has a new optional parameter diagnosticLogSettings
  • Interface DatabaseAccountGetResults has a new optional parameter enableMaterializedViews
  • Interface DatabaseAccountGetResults has a new optional parameter enablePerRegionPerPartitionAutoscale
  • Interface DatabaseAccountGetResults has a new optional parameter enablePriorityBasedExecution
  • Interface DatabaseAccountUpdateParameters has a new optional parameter capacityMode
  • Interface DatabaseAccountUpdateParameters has a new optional parameter defaultPriorityLevel
  • Interface DatabaseAccountUpdateParameters has a new optional parameter diagnosticLogSettings
  • Interface DatabaseAccountUpdateParameters has a new optional parameter enableMaterializedViews
  • Interface DatabaseAccountUpdateParameters has a new optional parameter enablePerRegionPerPartitionAutoscale
  • Interface DatabaseAccountUpdateParameters has a new optional parameter enablePriorityBasedExecution
  • Interface DataCenterResourceProperties has a new optional parameter privateEndpointIpAddress
  • Interface ErrorResponse has a new optional parameter error
  • Interface Resource has a new optional parameter systemData
  • Interface RestoreParameters has a new optional parameter sourceBackupLocation
  • Interface RestoreParametersBase has a new optional parameter restoreWithTtlDisabled
  • Interface ServiceResourceCreateUpdateParameters has a new optional parameter properties
  • Interface SqlContainerResource has a new optional parameter materializedViewDefinition
  • Interface SqlDedicatedGatewayServiceResourceProperties has a new optional parameter dedicatedGatewayType
  • Added Enum KnownAccessRuleDirection
  • Added Enum KnownAutoReplicate
  • Added Enum KnownAzureConnectionType
  • Added Enum KnownBackupState
  • Added Enum KnownCapacityMode
  • Added Enum KnownCapacityModeTransitionStatus
  • Added Enum KnownClusterType
  • Added Enum KnownCommandStatus
  • Added Enum KnownDataTransferComponent
  • Added Enum KnownDataTransferJobMode
  • Added Enum KnownDedicatedGatewayType
  • Added Enum KnownDefaultPriorityLevel
  • Added Enum KnownIssueType
  • Added Enum KnownNetworkSecurityPerimeterConfigurationProvisioningState
  • Added Enum KnownResourceAssociationAccessMode
  • Added Enum KnownScheduledEventStrategy
  • Added Enum KnownSeverity
  • Added Enum KnownThroughputPolicyType
  • Enum KnownServerVersion has a new value Five0
  • Enum KnownServerVersion has a new value Six0
  • Enum KnownStatus has a new value Canceled
  • Enum KnownStatus has a new value Failed
  • Enum KnownStatus has a new value Succeeded
  • Enum KnownStatus has a new value Updating

Breaking Changes

  • Interface CommandPostBody no longer has parameter readwrite
  • Interface ErrorResponse no longer has parameter code
  • Interface ErrorResponse no longer has parameter message
  • Interface ServiceResourceCreateUpdateParameters no longer has parameter instanceCount
  • Interface ServiceResourceCreateUpdateParameters no longer has parameter instanceSize
  • Interface ServiceResourceCreateUpdateParameters no longer has parameter serviceType
  • Type of parameter error of interface CloudError is changed from ErrorResponse to ErrorResponseAutoGenerated
  • Type of parameter arguments of interface CommandPostBody is changed from {
    [propertyName: string]: string;
} to Record<string, unknown>

16.0.0-beta.7 (2024-03-08)

Features Added

  • Added operation group DataTransferJobs
  • Added operation group GraphResources
  • Added operation group MongoClusters
  • Added operation group ThroughputPool
  • Added operation group ThroughputPoolAccount
  • Added operation group ThroughputPoolAccounts
  • Added operation group ThroughputPools
  • Added operation CassandraClusters.beginInvokeCommandAsync
  • Added operation CassandraClusters.beginInvokeCommandAsyncAndWait
  • Added operation CassandraClusters.getBackup
  • Added operation CassandraClusters.getCommandAsync
  • Added operation CassandraClusters.listBackups
  • Added operation CassandraClusters.listCommand
  • Added operation CassandraResources.beginCreateUpdateCassandraView
  • Added operation CassandraResources.beginCreateUpdateCassandraViewAndWait
  • Added operation CassandraResources.beginDeleteCassandraView
  • Added operation CassandraResources.beginDeleteCassandraViewAndWait
  • Added operation CassandraResources.beginMigrateCassandraViewToAutoscale
  • Added operation CassandraResources.beginMigrateCassandraViewToAutoscaleAndWait
  • Added operation CassandraResources.beginMigrateCassandraViewToManualThroughput
  • Added operation CassandraResources.beginMigrateCassandraViewToManualThroughputAndWait
  • Added operation CassandraResources.beginUpdateCassandraViewThroughput
  • Added operation CassandraResources.beginUpdateCassandraViewThroughputAndWait
  • Added operation CassandraResources.getCassandraView
  • Added operation CassandraResources.getCassandraViewThroughput
  • Added operation CassandraResources.listCassandraViews
  • Added operation MongoDBResources.beginListMongoDBCollectionPartitionMerge
  • Added operation MongoDBResources.beginListMongoDBCollectionPartitionMergeAndWait
  • Added operation MongoDBResources.beginMongoDBContainerRedistributeThroughput
  • Added operation MongoDBResources.beginMongoDBContainerRedistributeThroughputAndWait
  • Added operation MongoDBResources.beginMongoDBContainerRetrieveThroughputDistribution
  • Added operation MongoDBResources.beginMongoDBContainerRetrieveThroughputDistributionAndWait
  • Added operation MongoDBResources.beginMongoDBDatabasePartitionMerge
  • Added operation MongoDBResources.beginMongoDBDatabasePartitionMergeAndWait
  • Added operation MongoDBResources.beginMongoDBDatabaseRedistributeThroughput
  • Added operation MongoDBResources.beginMongoDBDatabaseRedistributeThroughputAndWait
  • Added operation MongoDBResources.beginMongoDBDatabaseRetrieveThroughputDistribution
  • Added operation MongoDBResources.beginMongoDBDatabaseRetrieveThroughputDistributionAndWait
  • Added operation SqlResources.beginListSqlContainerPartitionMerge
  • Added operation SqlResources.beginListSqlContainerPartitionMergeAndWait
  • Added operation SqlResources.beginSqlContainerRedistributeThroughput
  • Added operation SqlResources.beginSqlContainerRedistributeThroughputAndWait
  • Added operation SqlResources.beginSqlContainerRetrieveThroughputDistribution
  • Added operation SqlResources.beginSqlContainerRetrieveThroughputDistributionAndWait
  • Added operation SqlResources.beginSqlDatabasePartitionMerge
  • Added operation SqlResources.beginSqlDatabasePartitionMergeAndWait
  • Added operation SqlResources.beginSqlDatabaseRedistributeThroughput
  • Added operation SqlResources.beginSqlDatabaseRedistributeThroughputAndWait
  • Added operation SqlResources.beginSqlDatabaseRetrieveThroughputDistribution
  • Added operation SqlResources.beginSqlDatabaseRetrieveThroughputDistributionAndWait
  • Added Interface AzureBlobDataTransferDataSourceSink
  • Added Interface BackupResource
  • Added Interface BackupSchedule
  • Added Interface BaseCosmosDataTransferDataSourceSink
  • Added Interface CassandraClustersGetBackupOptionalParams
  • Added Interface CassandraClustersGetCommandAsyncOptionalParams
  • Added Interface CassandraClustersInvokeCommandAsyncHeaders
  • Added Interface CassandraClustersInvokeCommandAsyncOptionalParams
  • Added Interface CassandraClustersListBackupsOptionalParams
  • Added Interface CassandraClustersListCommandOptionalParams
  • Added Interface CassandraResourcesCreateUpdateCassandraViewHeaders
  • Added Interface CassandraResourcesCreateUpdateCassandraViewOptionalParams
  • Added Interface CassandraResourcesDeleteCassandraViewHeaders
  • Added Interface CassandraResourcesDeleteCassandraViewOptionalParams
  • Added Interface CassandraResourcesGetCassandraViewOptionalParams
  • Added Interface CassandraResourcesGetCassandraViewThroughputOptionalParams
  • Added Interface CassandraResourcesListCassandraViewsOptionalParams
  • Added Interface CassandraResourcesMigrateCassandraViewToAutoscaleHeaders
  • Added Interface CassandraResourcesMigrateCassandraViewToAutoscaleOptionalParams
  • Added Interface CassandraResourcesMigrateCassandraViewToManualThroughputHeaders
  • Added Interface CassandraResourcesMigrateCassandraViewToManualThroughputOptionalParams
  • Added Interface CassandraResourcesUpdateCassandraViewThroughputHeaders
  • Added Interface CassandraResourcesUpdateCassandraViewThroughputOptionalParams
  • Added Interface CassandraViewCreateUpdateParameters
  • Added Interface CassandraViewGetPropertiesOptions
  • Added Interface CassandraViewGetPropertiesResource
  • Added Interface CassandraViewGetResults
  • Added Interface CassandraViewListResult
  • Added Interface CassandraViewResource
  • Added Interface CheckNameAvailabilityRequest
  • Added Interface CheckNameAvailabilityResponse
  • Added Interface CommandPublicResource
  • Added Interface ConnectionString
  • Added Interface CosmosCassandraDataTransferDataSourceSink
  • Added Interface CosmosMongoDataTransferDataSourceSink
  • Added Interface CosmosSqlDataTransferDataSourceSink
  • Added Interface CreateJobRequest
  • Added Interface DataTransferDataSourceSink
  • Added Interface DataTransferJobFeedResults
  • Added Interface DataTransferJobGetResults
  • Added Interface DataTransferJobProperties
  • Added Interface DataTransferJobsCancelOptionalParams
  • Added Interface DataTransferJobsCompleteOptionalParams
  • Added Interface DataTransferJobsCreateOptionalParams
  • Added Interface DataTransferJobsGetOptionalParams
  • Added Interface DataTransferJobsListByDatabaseAccountNextOptionalParams
  • Added Interface DataTransferJobsListByDatabaseAccountOptionalParams
  • Added Interface DataTransferJobsPauseOptionalParams
  • Added Interface DataTransferJobsResumeOptionalParams
  • Added Interface DiagnosticLogSettings
  • Added Interface ErrorAdditionalInfo
  • Added Interface ErrorDetail
  • Added Interface ErrorResponseAutoGenerated
  • Added Interface FirewallRule
  • Added Interface FirewallRuleListResult
  • Added Interface GraphResource
  • Added Interface GraphResourceCreateUpdateParameters
  • Added Interface GraphResourceGetPropertiesOptions
  • Added Interface GraphResourceGetPropertiesResource
  • Added Interface GraphResourceGetResults
  • Added Interface GraphResourcesCreateUpdateGraphHeaders
  • Added Interface GraphResourcesCreateUpdateGraphOptionalParams
  • Added Interface GraphResourcesDeleteGraphResourceHeaders
  • Added Interface GraphResourcesDeleteGraphResourceOptionalParams
  • Added Interface GraphResourcesGetGraphOptionalParams
  • Added Interface GraphResourcesListGraphsOptionalParams
  • Added Interface GraphResourcesListResult
  • Added Interface ListBackups
  • Added Interface ListCommands
  • Added Interface ListConnectionStringsResult
  • Added Interface MaterializedViewDefinition
  • Added Interface MergeParameters
  • Added Interface MongoCluster
  • Added Interface MongoClusterListResult
  • Added Interface MongoClusterRestoreParameters
  • Added Interface MongoClustersCheckNameAvailabilityOptionalParams
  • Added Interface MongoClustersCreateOrUpdateFirewallRuleOptionalParams
  • Added Interface MongoClustersCreateOrUpdateOptionalParams
  • Added Interface MongoClustersDeleteFirewallRuleHeaders
  • Added Interface MongoClustersDeleteFirewallRuleOptionalParams
  • Added Interface MongoClustersDeleteHeaders
  • Added Interface MongoClustersDeleteOptionalParams
  • Added Interface MongoClustersGetFirewallRuleOptionalParams
  • Added Interface MongoClustersGetOptionalParams
  • Added Interface MongoClustersListByResourceGroupNextOptionalParams
  • Added Interface MongoClustersListByResourceGroupOptionalParams
  • Added Interface MongoClustersListConnectionStringsOptionalParams
  • Added Interface MongoClustersListFirewallRulesNextOptionalParams
  • Added Interface MongoClustersListFirewallRulesOptionalParams
  • Added Interface MongoClustersListNextOptionalParams
  • Added Interface MongoClustersListOptionalParams
  • Added Interface MongoClustersUpdateHeaders
  • Added Interface MongoClustersUpdateOptionalParams
  • Added Interface MongoClusterUpdate
  • Added Interface MongoDBResourcesListMongoDBCollectionPartitionMergeHeaders
  • Added Interface MongoDBResourcesListMongoDBCollectionPartitionMergeOptionalParams
  • Added Interface MongoDBResourcesMongoDBContainerRedistributeThroughputHeaders
  • Added Interface MongoDBResourcesMongoDBContainerRedistributeThroughputOptionalParams
  • Added Interface MongoDBResourcesMongoDBContainerRetrieveThroughputDistributionHeaders
  • Added Interface MongoDBResourcesMongoDBContainerRetrieveThroughputDistributionOptionalParams
  • Added Interface MongoDBResourcesMongoDBDatabasePartitionMergeHeaders
  • Added Interface MongoDBResourcesMongoDBDatabasePartitionMergeOptionalParams
  • Added Interface MongoDBResourcesMongoDBDatabaseRedistributeThroughputHeaders
  • Added Interface MongoDBResourcesMongoDBDatabaseRedistributeThroughputOptionalParams
  • Added Interface MongoDBResourcesMongoDBDatabaseRetrieveThroughputDistributionHeaders
  • Added Interface MongoDBResourcesMongoDBDatabaseRetrieveThroughputDistributionOptionalParams
  • Added Interface NodeGroupProperties
  • Added Interface NodeGroupSpec
  • Added Interface PhysicalPartitionId
  • Added Interface PhysicalPartitionStorageInfo
  • Added Interface PhysicalPartitionStorageInfoCollection
  • Added Interface PhysicalPartitionThroughputInfoProperties
  • Added Interface PhysicalPartitionThroughputInfoResource
  • Added Interface PhysicalPartitionThroughputInfoResult
  • Added Interface PhysicalPartitionThroughputInfoResultPropertiesResource
  • Added Interface RedistributeThroughputParameters
  • Added Interface RedistributeThroughputPropertiesResource
  • Added Interface RetrieveThroughputParameters
  • Added Interface RetrieveThroughputPropertiesResource
  • Added Interface SqlResourcesListSqlContainerPartitionMergeHeaders
  • Added Interface SqlResourcesListSqlContainerPartitionMergeOptionalParams
  • Added Interface SqlResourcesSqlContainerRedistributeThroughputHeaders
  • Added Interface SqlResourcesSqlContainerRedistributeThroughputOptionalParams
  • Added Interface SqlResourcesSqlContainerRetrieveThroughputDistributionHeaders
  • Added Interface SqlResourcesSqlContainerRetrieveThroughputDistributionOptionalParams
  • Added Interface SqlResourcesSqlDatabasePartitionMergeHeaders
  • Added Interface SqlResourcesSqlDatabasePartitionMergeOptionalParams
  • Added Interface SqlResourcesSqlDatabaseRedistributeThroughputHeaders
  • Added Interface SqlResourcesSqlDatabaseRedistributeThroughputOptionalParams
  • Added Interface SqlResourcesSqlDatabaseRetrieveThroughputDistributionHeaders
  • Added Interface SqlResourcesSqlDatabaseRetrieveThroughputDistributionOptionalParams
  • Added Interface ThroughputPoolAccountCreateOptionalParams
  • Added Interface ThroughputPoolAccountCreateParameters
  • Added Interface ThroughputPoolAccountDeleteHeaders
  • Added Interface ThroughputPoolAccountDeleteOptionalParams
  • Added Interface ThroughputPoolAccountGetOptionalParams
  • Added Interface ThroughputPoolAccountResource
  • Added Interface ThroughputPoolAccountsListNextOptionalParams
  • Added Interface ThroughputPoolAccountsListOptionalParams
  • Added Interface ThroughputPoolAccountsListResult
  • Added Interface ThroughputPoolCreateOrUpdateOptionalParams
  • Added Interface ThroughputPoolDeleteHeaders
  • Added Interface ThroughputPoolDeleteOptionalParams
  • Added Interface ThroughputPoolGetOptionalParams
  • Added Interface ThroughputPoolResource
  • Added Interface ThroughputPoolsListByResourceGroupNextOptionalParams
  • Added Interface ThroughputPoolsListByResourceGroupOptionalParams
  • Added Interface ThroughputPoolsListNextOptionalParams
  • Added Interface ThroughputPoolsListOptionalParams
  • Added Interface ThroughputPoolsListResult
  • Added Interface ThroughputPoolUpdate
  • Added Interface ThroughputPoolUpdateHeaders
  • Added Interface ThroughputPoolUpdateOptionalParams
  • Added Interface TrackedResource
  • Added Type Alias AutoReplicate
  • Added Type Alias AzureConnectionType
  • Added Type Alias BackupState
  • Added Type Alias BaseCosmosDataTransferDataSourceSinkUnion
  • Added Type Alias CassandraClustersGetBackupResponse
  • Added Type Alias CassandraClustersGetCommandAsyncResponse
  • Added Type Alias CassandraClustersInvokeCommandAsyncResponse
  • Added Type Alias CassandraClustersListBackupsResponse
  • Added Type Alias CassandraClustersListCommandResponse
  • Added Type Alias CassandraResourcesCreateUpdateCassandraViewResponse
  • Added Type Alias CassandraResourcesGetCassandraViewResponse
  • Added Type Alias CassandraResourcesGetCassandraViewThroughputResponse
  • Added Type Alias CassandraResourcesListCassandraViewsResponse
  • Added Type Alias CassandraResourcesMigrateCassandraViewToAutoscaleResponse
  • Added Type Alias CassandraResourcesMigrateCassandraViewToManualThroughputResponse
  • Added Type Alias CassandraResourcesUpdateCassandraViewThroughputResponse
  • Added Type Alias CheckNameAvailabilityReason
  • Added Type Alias ClusterType
  • Added Type Alias CommandStatus
  • Added Type Alias DataTransferComponent
  • Added Type Alias DataTransferDataSourceSinkUnion
  • Added Type Alias DataTransferJobMode
  • Added Type Alias DataTransferJobsCancelResponse
  • Added Type Alias DataTransferJobsCompleteResponse
  • Added Type Alias DataTransferJobsCreateResponse
  • Added Type Alias DataTransferJobsGetResponse
  • Added Type Alias DataTransferJobsListByDatabaseAccountNextResponse
  • Added Type Alias DataTransferJobsListByDatabaseAccountResponse
  • Added Type Alias DataTransferJobsPauseResponse
  • Added Type Alias DataTransferJobsResumeResponse
  • Added Type Alias DefaultPriorityLevel
  • Added Type Alias EnableFullTextQuery
  • Added Type Alias GraphResourcesCreateUpdateGraphResponse
  • Added Type Alias GraphResourcesGetGraphResponse
  • Added Type Alias GraphResourcesListGraphsResponse
  • Added Type Alias MongoClustersCheckNameAvailabilityResponse
  • Added Type Alias MongoClustersCreateOrUpdateFirewallRuleResponse
  • Added Type Alias MongoClustersCreateOrUpdateResponse
  • Added Type Alias MongoClustersDeleteFirewallRuleResponse
  • Added Type Alias MongoClustersDeleteResponse
  • Added Type Alias MongoClustersGetFirewallRuleResponse
  • Added Type Alias MongoClustersGetResponse
  • Added Type Alias MongoClustersListByResourceGroupNextResponse
  • Added Type Alias MongoClustersListByResourceGroupResponse
  • Added Type Alias MongoClustersListConnectionStringsResponse
  • Added Type Alias MongoClustersListFirewallRulesNextResponse
  • Added Type Alias MongoClustersListFirewallRulesResponse
  • Added Type Alias MongoClustersListNextResponse
  • Added Type Alias MongoClustersListResponse
  • Added Type Alias MongoClusterStatus
  • Added Type Alias MongoClustersUpdateResponse
  • Added Type Alias MongoDBResourcesListMongoDBCollectionPartitionMergeResponse
  • Added Type Alias MongoDBResourcesMongoDBContainerRedistributeThroughputResponse
  • Added Type Alias MongoDBResourcesMongoDBContainerRetrieveThroughputDistributionResponse
  • Added Type Alias MongoDBResourcesMongoDBDatabasePartitionMergeResponse
  • Added Type Alias MongoDBResourcesMongoDBDatabaseRedistributeThroughputResponse
  • Added Type Alias MongoDBResourcesMongoDBDatabaseRetrieveThroughputDistributionResponse
  • Added Type Alias NodeKind
  • Added Type Alias ProvisioningState
  • Added Type Alias ScheduledEventStrategy
  • Added Type Alias SqlResourcesListSqlContainerPartitionMergeResponse
  • Added Type Alias SqlResourcesSqlContainerRedistributeThroughputResponse
  • Added Type Alias SqlResourcesSqlContainerRetrieveThroughputDistributionResponse
  • Added Type Alias SqlResourcesSqlDatabasePartitionMergeResponse
  • Added Type Alias SqlResourcesSqlDatabaseRedistributeThroughputResponse
  • Added Type Alias SqlResourcesSqlDatabaseRetrieveThroughputDistributionResponse
  • Added Type Alias ThroughputPolicyType
  • Added Type Alias ThroughputPoolAccountCreateResponse
  • Added Type Alias ThroughputPoolAccountDeleteResponse
  • Added Type Alias ThroughputPoolAccountGetResponse
  • Added Type Alias ThroughputPoolAccountsListNextResponse
  • Added Type Alias ThroughputPoolAccountsListResponse
  • Added Type Alias ThroughputPoolCreateOrUpdateResponse
  • Added Type Alias ThroughputPoolDeleteResponse
  • Added Type Alias ThroughputPoolGetResponse
  • Added Type Alias ThroughputPoolsListByResourceGroupNextResponse
  • Added Type Alias ThroughputPoolsListByResourceGroupResponse
  • Added Type Alias ThroughputPoolsListNextResponse
  • Added Type Alias ThroughputPoolsListResponse
  • Added Type Alias ThroughputPoolUpdateResponse
  • Interface ARMResourceProperties has a new optional parameter identity
  • Interface CassandraClustersDeallocateOptionalParams has a new optional parameter xMsForceDeallocate
  • Interface ClusterResourceProperties has a new optional parameter autoReplicate
  • Interface ClusterResourceProperties has a new optional parameter azureConnectionMethod
  • Interface ClusterResourceProperties has a new optional parameter backupSchedules
  • Interface ClusterResourceProperties has a new optional parameter clusterType
  • Interface ClusterResourceProperties has a new optional parameter extensions
  • Interface ClusterResourceProperties has a new optional parameter externalDataCenters
  • Interface ClusterResourceProperties has a new optional parameter privateLinkResourceId
  • Interface ClusterResourceProperties has a new optional parameter scheduledEventStrategy
  • Interface CommandPostBody has a new optional parameter readWrite
  • Interface ComponentsM9L909SchemasCassandraclusterpublicstatusPropertiesDatacentersItemsPropertiesNodesItems has a new optional parameter isLatestModel
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter defaultPriorityLevel
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter diagnosticLogSettings
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter enableMaterializedViews
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter enablePerRegionPerPartitionAutoscale
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter enablePriorityBasedExecution
  • Interface DatabaseAccountGetResults has a new optional parameter defaultPriorityLevel
  • Interface DatabaseAccountGetResults has a new optional parameter diagnosticLogSettings
  • Interface DatabaseAccountGetResults has a new optional parameter enableMaterializedViews
  • Interface DatabaseAccountGetResults has a new optional parameter enablePerRegionPerPartitionAutoscale
  • Interface DatabaseAccountGetResults has a new optional parameter enablePriorityBasedExecution
  • Interface DatabaseAccountUpdateParameters has a new optional parameter defaultPriorityLevel
  • Interface DatabaseAccountUpdateParameters has a new optional parameter diagnosticLogSettings
  • Interface DatabaseAccountUpdateParameters has a new optional parameter enableMaterializedViews
  • Interface DatabaseAccountUpdateParameters has a new optional parameter enablePerRegionPerPartitionAutoscale
  • Interface DatabaseAccountUpdateParameters has a new optional parameter enablePriorityBasedExecution
  • Interface DataCenterResourceProperties has a new optional parameter privateEndpointIpAddress
  • Interface Resource has a new optional parameter systemData
  • Interface RestoreParameters has a new optional parameter sourceBackupLocation
  • Interface RestoreParametersBase has a new optional parameter restoreWithTtlDisabled
  • Interface SqlContainerResource has a new optional parameter materializedViewDefinition
  • Added Enum KnownAutoReplicate
  • Added Enum KnownAzureConnectionType
  • Added Enum KnownBackupState
  • Added Enum KnownCheckNameAvailabilityReason
  • Added Enum KnownClusterType
  • Added Enum KnownCommandStatus
  • Added Enum KnownDataTransferComponent
  • Added Enum KnownDataTransferJobMode
  • Added Enum KnownDefaultPriorityLevel
  • Added Enum KnownMongoClusterStatus
  • Added Enum KnownNodeKind
  • Added Enum KnownProvisioningState
  • Added Enum KnownScheduledEventStrategy
  • Added Enum KnownThroughputPolicyType
  • Enum KnownCreateMode has a new value PointInTimeRestore
  • Enum KnownStatus has a new value Canceled
  • Enum KnownStatus has a new value Failed
  • Enum KnownStatus has a new value Succeeded
  • Enum KnownStatus has a new value Updating
  • Type of parameter arguments of interface CommandPostBody is changed from {
    [propertyName: string]: string;
} to Record<string, unknown>

Breaking Changes

  • Interface CommandPostBody no longer has parameter readwrite

15.6.0 (2023-12-25)

Features Added

  • Added Interface ComputedProperty
  • Added Interface ResourceRestoreParameters
  • Added Interface RestoreParametersBase
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter customerManagedKeyStatus
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter enableBurstCapacity
  • Interface DatabaseAccountGetResults has a new optional parameter customerManagedKeyStatus
  • Interface DatabaseAccountGetResults has a new optional parameter enableBurstCapacity
  • Interface DatabaseAccountUpdateParameters has a new optional parameter customerManagedKeyStatus
  • Interface DatabaseAccountUpdateParameters has a new optional parameter enableBurstCapacity
  • Interface GremlinDatabaseResource has a new optional parameter createMode
  • Interface GremlinDatabaseResource has a new optional parameter restoreParameters
  • Interface GremlinGraphResource has a new optional parameter createMode
  • Interface GremlinGraphResource has a new optional parameter restoreParameters
  • Interface MongoDBCollectionResource has a new optional parameter createMode
  • Interface MongoDBCollectionResource has a new optional parameter restoreParameters
  • Interface MongoDBDatabaseResource has a new optional parameter createMode
  • Interface MongoDBDatabaseResource has a new optional parameter restoreParameters
  • Interface RestorableGremlinDatabasePropertiesResource has a new optional parameter canUndelete
  • Interface RestorableGremlinDatabasePropertiesResource has a new optional parameter canUndeleteReason
  • Interface RestorableGremlinGraphPropertiesResource has a new optional parameter canUndelete
  • Interface RestorableGremlinGraphPropertiesResource has a new optional parameter canUndeleteReason
  • Interface RestorableMongodbCollectionPropertiesResource has a new optional parameter canUndelete
  • Interface RestorableMongodbCollectionPropertiesResource has a new optional parameter canUndeleteReason
  • Interface RestorableMongodbDatabasePropertiesResource has a new optional parameter canUndelete
  • Interface RestorableMongodbDatabasePropertiesResource has a new optional parameter canUndeleteReason
  • Interface RestorableSqlContainerPropertiesResource has a new optional parameter canUndelete
  • Interface RestorableSqlContainerPropertiesResource has a new optional parameter canUndeleteReason
  • Interface RestorableSqlDatabasePropertiesResource has a new optional parameter canUndelete
  • Interface RestorableSqlDatabasePropertiesResource has a new optional parameter canUndeleteReason
  • Interface RestorableTablePropertiesResource has a new optional parameter canUndelete
  • Interface RestorableTablePropertiesResource has a new optional parameter canUndeleteReason
  • Interface SqlContainerResource has a new optional parameter computedProperties
  • Interface SqlContainerResource has a new optional parameter createMode
  • Interface SqlContainerResource has a new optional parameter restoreParameters
  • Interface SqlDatabaseResource has a new optional parameter createMode
  • Interface SqlDatabaseResource has a new optional parameter restoreParameters
  • Interface TableResource has a new optional parameter createMode
  • Interface TableResource has a new optional parameter restoreParameters
  • Enum KnownOperationType has a new value Recreate

15.6.0-beta.1 (2023-11-21)

Features Added

  • Added operation group DataTransferJobs
  • Added operation group GraphResources
  • Added operation group MongoClusters
  • Added operation CassandraClusters.getBackup
  • Added operation CassandraClusters.listBackups
  • Added operation CassandraResources.beginCreateUpdateCassandraView
  • Added operation CassandraResources.beginCreateUpdateCassandraViewAndWait
  • Added operation CassandraResources.beginDeleteCassandraView
  • Added operation CassandraResources.beginDeleteCassandraViewAndWait
  • Added operation CassandraResources.beginMigrateCassandraViewToAutoscale
  • Added operation CassandraResources.beginMigrateCassandraViewToAutoscaleAndWait
  • Added operation CassandraResources.beginMigrateCassandraViewToManualThroughput
  • Added operation CassandraResources.beginMigrateCassandraViewToManualThroughputAndWait
  • Added operation CassandraResources.beginUpdateCassandraViewThroughput
  • Added operation CassandraResources.beginUpdateCassandraViewThroughputAndWait
  • Added operation CassandraResources.getCassandraView
  • Added operation CassandraResources.getCassandraViewThroughput
  • Added operation CassandraResources.listCassandraViews
  • Added operation MongoDBResources.beginListMongoDBCollectionPartitionMerge
  • Added operation MongoDBResources.beginListMongoDBCollectionPartitionMergeAndWait
  • Added operation MongoDBResources.beginMongoDBContainerRedistributeThroughput
  • Added operation MongoDBResources.beginMongoDBContainerRedistributeThroughputAndWait
  • Added operation MongoDBResources.beginMongoDBContainerRetrieveThroughputDistribution
  • Added operation MongoDBResources.beginMongoDBContainerRetrieveThroughputDistributionAndWait
  • Added operation MongoDBResources.beginMongoDBDatabasePartitionMerge
  • Added operation MongoDBResources.beginMongoDBDatabasePartitionMergeAndWait
  • Added operation MongoDBResources.beginMongoDBDatabaseRedistributeThroughput
  • Added operation MongoDBResources.beginMongoDBDatabaseRedistributeThroughputAndWait
  • Added operation MongoDBResources.beginMongoDBDatabaseRetrieveThroughputDistribution
  • Added operation MongoDBResources.beginMongoDBDatabaseRetrieveThroughputDistributionAndWait
  • Added operation SqlResources.beginListSqlContainerPartitionMerge
  • Added operation SqlResources.beginListSqlContainerPartitionMergeAndWait
  • Added operation SqlResources.beginSqlContainerRedistributeThroughput
  • Added operation SqlResources.beginSqlContainerRedistributeThroughputAndWait
  • Added operation SqlResources.beginSqlContainerRetrieveThroughputDistribution
  • Added operation SqlResources.beginSqlContainerRetrieveThroughputDistributionAndWait
  • Added operation SqlResources.beginSqlDatabasePartitionMerge
  • Added operation SqlResources.beginSqlDatabasePartitionMergeAndWait
  • Added operation SqlResources.beginSqlDatabaseRedistributeThroughput
  • Added operation SqlResources.beginSqlDatabaseRedistributeThroughputAndWait
  • Added operation SqlResources.beginSqlDatabaseRetrieveThroughputDistribution
  • Added operation SqlResources.beginSqlDatabaseRetrieveThroughputDistributionAndWait
  • Added Interface AzureBlobDataTransferDataSourceSink
  • Added Interface BackupResource
  • Added Interface BackupSchedule
  • Added Interface BaseCosmosDataTransferDataSourceSink
  • Added Interface CassandraClustersGetBackupOptionalParams
  • Added Interface CassandraClustersListBackupsOptionalParams
  • Added Interface CassandraResourcesCreateUpdateCassandraViewHeaders
  • Added Interface CassandraResourcesCreateUpdateCassandraViewOptionalParams
  • Added Interface CassandraResourcesDeleteCassandraViewHeaders
  • Added Interface CassandraResourcesDeleteCassandraViewOptionalParams
  • Added Interface CassandraResourcesGetCassandraViewOptionalParams
  • Added Interface CassandraResourcesGetCassandraViewThroughputOptionalParams
  • Added Interface CassandraResourcesListCassandraViewsOptionalParams
  • Added Interface CassandraResourcesMigrateCassandraViewToAutoscaleHeaders
  • Added Interface CassandraResourcesMigrateCassandraViewToAutoscaleOptionalParams
  • Added Interface CassandraResourcesMigrateCassandraViewToManualThroughputHeaders
  • Added Interface CassandraResourcesMigrateCassandraViewToManualThroughputOptionalParams
  • Added Interface CassandraResourcesUpdateCassandraViewThroughputHeaders
  • Added Interface CassandraResourcesUpdateCassandraViewThroughputOptionalParams
  • Added Interface CassandraViewCreateUpdateParameters
  • Added Interface CassandraViewGetPropertiesOptions
  • Added Interface CassandraViewGetPropertiesResource
  • Added Interface CassandraViewGetResults
  • Added Interface CassandraViewListResult
  • Added Interface CassandraViewResource
  • Added Interface CheckNameAvailabilityRequest
  • Added Interface CheckNameAvailabilityResponse
  • Added Interface ConnectionString
  • Added Interface CosmosCassandraDataTransferDataSourceSink
  • Added Interface CosmosMongoDataTransferDataSourceSink
  • Added Interface CosmosSqlDataTransferDataSourceSink
  • Added Interface CreateJobRequest
  • Added Interface DataTransferDataSourceSink
  • Added Interface DataTransferJobFeedResults
  • Added Interface DataTransferJobGetResults
  • Added Interface DataTransferJobProperties
  • Added Interface DataTransferJobsCancelOptionalParams
  • Added Interface DataTransferJobsCreateOptionalParams
  • Added Interface DataTransferJobsGetOptionalParams
  • Added Interface DataTransferJobsListByDatabaseAccountNextOptionalParams
  • Added Interface DataTransferJobsListByDatabaseAccountOptionalParams
  • Added Interface DataTransferJobsPauseOptionalParams
  • Added Interface DataTransferJobsResumeOptionalParams
  • Added Interface DiagnosticLogSettings
  • Added Interface ErrorAdditionalInfo
  • Added Interface ErrorDetail
  • Added Interface ErrorResponseAutoGenerated
  • Added Interface FirewallRule
  • Added Interface FirewallRuleListResult
  • Added Interface GraphResource
  • Added Interface GraphResourceCreateUpdateParameters
  • Added Interface GraphResourceGetPropertiesOptions
  • Added Interface GraphResourceGetPropertiesResource
  • Added Interface GraphResourceGetResults
  • Added Interface GraphResourcesCreateUpdateGraphHeaders
  • Added Interface GraphResourcesCreateUpdateGraphOptionalParams
  • Added Interface GraphResourcesDeleteGraphResourceHeaders
  • Added Interface GraphResourcesDeleteGraphResourceOptionalParams
  • Added Interface GraphResourcesGetGraphOptionalParams
  • Added Interface GraphResourcesListGraphsOptionalParams
  • Added Interface GraphResourcesListResult
  • Added Interface ListBackups
  • Added Interface ListConnectionStringsResult
  • Added Interface MaterializedViewDefinition
  • Added Interface MergeParameters
  • Added Interface MongoCluster
  • Added Interface MongoClusterListResult
  • Added Interface MongoClusterRestoreParameters
  • Added Interface MongoClustersCheckNameAvailabilityOptionalParams
  • Added Interface MongoClustersCreateOrUpdateFirewallRuleOptionalParams
  • Added Interface MongoClustersCreateOrUpdateOptionalParams
  • Added Interface MongoClustersDeleteFirewallRuleHeaders
  • Added Interface MongoClustersDeleteFirewallRuleOptionalParams
  • Added Interface MongoClustersDeleteHeaders
  • Added Interface MongoClustersDeleteOptionalParams
  • Added Interface MongoClustersGetFirewallRuleOptionalParams
  • Added Interface MongoClustersGetOptionalParams
  • Added Interface MongoClustersListByResourceGroupNextOptionalParams
  • Added Interface MongoClustersListByResourceGroupOptionalParams
  • Added Interface MongoClustersListConnectionStringsOptionalParams
  • Added Interface MongoClustersListFirewallRulesNextOptionalParams
  • Added Interface MongoClustersListFirewallRulesOptionalParams
  • Added Interface MongoClustersListNextOptionalParams
  • Added Interface MongoClustersListOptionalParams
  • Added Interface MongoClustersUpdateHeaders
  • Added Interface MongoClustersUpdateOptionalParams
  • Added Interface MongoClusterUpdate
  • Added Interface MongoDBResourcesListMongoDBCollectionPartitionMergeHeaders
  • Added Interface MongoDBResourcesListMongoDBCollectionPartitionMergeOptionalParams
  • Added Interface MongoDBResourcesMongoDBContainerRedistributeThroughputHeaders
  • Added Interface MongoDBResourcesMongoDBContainerRedistributeThroughputOptionalParams
  • Added Interface MongoDBResourcesMongoDBContainerRetrieveThroughputDistributionHeaders
  • Added Interface MongoDBResourcesMongoDBContainerRetrieveThroughputDistributionOptionalParams
  • Added Interface MongoDBResourcesMongoDBDatabasePartitionMergeHeaders
  • Added Interface MongoDBResourcesMongoDBDatabasePartitionMergeOptionalParams
  • Added Interface MongoDBResourcesMongoDBDatabaseRedistributeThroughputHeaders
  • Added Interface MongoDBResourcesMongoDBDatabaseRedistributeThroughputOptionalParams
  • Added Interface MongoDBResourcesMongoDBDatabaseRetrieveThroughputDistributionHeaders
  • Added Interface MongoDBResourcesMongoDBDatabaseRetrieveThroughputDistributionOptionalParams
  • Added Interface NodeGroupProperties
  • Added Interface NodeGroupSpec
  • Added Interface PhysicalPartitionId
  • Added Interface PhysicalPartitionStorageInfo
  • Added Interface PhysicalPartitionStorageInfoCollection
  • Added Interface PhysicalPartitionThroughputInfoProperties
  • Added Interface PhysicalPartitionThroughputInfoResource
  • Added Interface PhysicalPartitionThroughputInfoResult
  • Added Interface PhysicalPartitionThroughputInfoResultPropertiesResource
  • Added Interface ProxyResourceAutoGenerated
  • Added Interface RedistributeThroughputParameters
  • Added Interface RedistributeThroughputPropertiesResource
  • Added Interface ResourceAutoGenerated
  • Added Interface ResourceRestoreParameters
  • Added Interface RestoreParametersBase
  • Added Interface RetrieveThroughputParameters
  • Added Interface RetrieveThroughputPropertiesResource
  • Added Interface SqlResourcesListSqlContainerPartitionMergeHeaders
  • Added Interface SqlResourcesListSqlContainerPartitionMergeOptionalParams
  • Added Interface SqlResourcesSqlContainerRedistributeThroughputHeaders
  • Added Interface SqlResourcesSqlContainerRedistributeThroughputOptionalParams
  • Added Interface SqlResourcesSqlContainerRetrieveThroughputDistributionHeaders
  • Added Interface SqlResourcesSqlContainerRetrieveThroughputDistributionOptionalParams
  • Added Interface SqlResourcesSqlDatabasePartitionMergeHeaders
  • Added Interface SqlResourcesSqlDatabasePartitionMergeOptionalParams
  • Added Interface SqlResourcesSqlDatabaseRedistributeThroughputHeaders
  • Added Interface SqlResourcesSqlDatabaseRedistributeThroughputOptionalParams
  • Added Interface SqlResourcesSqlDatabaseRetrieveThroughputDistributionHeaders
  • Added Interface SqlResourcesSqlDatabaseRetrieveThroughputDistributionOptionalParams
  • Added Interface TrackedResource
  • Added Type Alias BackupState
  • Added Type Alias CassandraClustersGetBackupResponse
  • Added Type Alias CassandraClustersListBackupsResponse
  • Added Type Alias CassandraResourcesCreateUpdateCassandraViewResponse
  • Added Type Alias CassandraResourcesGetCassandraViewResponse
  • Added Type Alias CassandraResourcesGetCassandraViewThroughputResponse
  • Added Type Alias CassandraResourcesListCassandraViewsResponse
  • Added Type Alias CassandraResourcesMigrateCassandraViewToAutoscaleResponse
  • Added Type Alias CassandraResourcesMigrateCassandraViewToManualThroughputResponse
  • Added Type Alias CassandraResourcesUpdateCassandraViewThroughputResponse
  • Added Type Alias CheckNameAvailabilityReason
  • Added Type Alias ClusterType
  • Added Type Alias CustomerManagedKeyStatus
  • Added Type Alias DataTransferComponent
  • Added Type Alias DataTransferDataSourceSinkUnion
  • Added Type Alias DataTransferJobsCancelResponse
  • Added Type Alias DataTransferJobsCreateResponse
  • Added Type Alias DataTransferJobsGetResponse
  • Added Type Alias DataTransferJobsListByDatabaseAccountNextResponse
  • Added Type Alias DataTransferJobsListByDatabaseAccountResponse
  • Added Type Alias DataTransferJobsPauseResponse
  • Added Type Alias DataTransferJobsResumeResponse
  • Added Type Alias DefaultPriorityLevel
  • Added Type Alias EnableFullTextQuery
  • Added Type Alias GraphResourcesCreateUpdateGraphResponse
  • Added Type Alias GraphResourcesGetGraphResponse
  • Added Type Alias GraphResourcesListGraphsResponse
  • Added Type Alias MongoClustersCheckNameAvailabilityResponse
  • Added Type Alias MongoClustersCreateOrUpdateFirewallRuleResponse
  • Added Type Alias MongoClustersCreateOrUpdateResponse
  • Added Type Alias MongoClustersDeleteFirewallRuleResponse
  • Added Type Alias MongoClustersDeleteResponse
  • Added Type Alias MongoClustersGetFirewallRuleResponse
  • Added Type Alias MongoClustersGetResponse
  • Added Type Alias MongoClustersListByResourceGroupNextResponse
  • Added Type Alias MongoClustersListByResourceGroupResponse
  • Added Type Alias MongoClustersListConnectionStringsResponse
  • Added Type Alias MongoClustersListFirewallRulesNextResponse
  • Added Type Alias MongoClustersListFirewallRulesResponse
  • Added Type Alias MongoClustersListNextResponse
  • Added Type Alias MongoClustersListResponse
  • Added Type Alias MongoClusterStatus
  • Added Type Alias MongoClustersUpdateResponse
  • Added Type Alias MongoDBResourcesListMongoDBCollectionPartitionMergeResponse
  • Added Type Alias MongoDBResourcesMongoDBContainerRedistributeThroughputResponse
  • Added Type Alias MongoDBResourcesMongoDBContainerRetrieveThroughputDistributionResponse
  • Added Type Alias MongoDBResourcesMongoDBDatabasePartitionMergeResponse
  • Added Type Alias MongoDBResourcesMongoDBDatabaseRedistributeThroughputResponse
  • Added Type Alias MongoDBResourcesMongoDBDatabaseRetrieveThroughputDistributionResponse
  • Added Type Alias NodeKind
  • Added Type Alias ProvisioningState
  • Added Type Alias SqlResourcesListSqlContainerPartitionMergeResponse
  • Added Type Alias SqlResourcesSqlContainerRedistributeThroughputResponse
  • Added Type Alias SqlResourcesSqlContainerRetrieveThroughputDistributionResponse
  • Added Type Alias SqlResourcesSqlDatabasePartitionMergeResponse
  • Added Type Alias SqlResourcesSqlDatabaseRedistributeThroughputResponse
  • Added Type Alias SqlResourcesSqlDatabaseRetrieveThroughputDistributionResponse
  • Added Type Alias ThroughputPolicyType
  • Interface ARMResourceProperties has a new optional parameter identity
  • Interface CassandraClustersDeallocateOptionalParams has a new optional parameter xMsForceDeallocate
  • Interface ClusterResourceProperties has a new optional parameter backupSchedules
  • Interface ClusterResourceProperties has a new optional parameter clusterType
  • Interface ClusterResourceProperties has a new optional parameter extensions
  • Interface ComponentsM9L909SchemasCassandraclusterpublicstatusPropertiesDatacentersItemsPropertiesNodesItems has a new optional parameter isLatestModel
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter customerManagedKeyStatus
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter defaultPriorityLevel
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter diagnosticLogSettings
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter enableBurstCapacity
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter enableMaterializedViews
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter enablePriorityBasedExecution
  • Interface DatabaseAccountGetResults has a new optional parameter customerManagedKeyStatus
  • Interface DatabaseAccountGetResults has a new optional parameter defaultPriorityLevel
  • Interface DatabaseAccountGetResults has a new optional parameter diagnosticLogSettings
  • Interface DatabaseAccountGetResults has a new optional parameter enableBurstCapacity
  • Interface DatabaseAccountGetResults has a new optional parameter enableMaterializedViews
  • Interface DatabaseAccountGetResults has a new optional parameter enablePriorityBasedExecution
  • Interface DatabaseAccountUpdateParameters has a new optional parameter customerManagedKeyStatus
  • Interface DatabaseAccountUpdateParameters has a new optional parameter defaultPriorityLevel
  • Interface DatabaseAccountUpdateParameters has a new optional parameter diagnosticLogSettings
  • Interface DatabaseAccountUpdateParameters has a new optional parameter enableBurstCapacity
  • Interface DatabaseAccountUpdateParameters has a new optional parameter enableMaterializedViews
  • Interface DatabaseAccountUpdateParameters has a new optional parameter enablePriorityBasedExecution
  • Interface GremlinDatabaseResource has a new optional parameter createMode
  • Interface GremlinDatabaseResource has a new optional parameter restoreParameters
  • Interface GremlinGraphResource has a new optional parameter createMode
  • Interface GremlinGraphResource has a new optional parameter restoreParameters
  • Interface MongoDBCollectionResource has a new optional parameter createMode
  • Interface MongoDBCollectionResource has a new optional parameter restoreParameters
  • Interface MongoDBDatabaseResource has a new optional parameter createMode
  • Interface MongoDBDatabaseResource has a new optional parameter restoreParameters
  • Interface RestoreParameters has a new optional parameter sourceBackupLocation
  • Interface SqlContainerResource has a new optional parameter createMode
  • Interface SqlContainerResource has a new optional parameter materializedViewDefinition
  • Interface SqlContainerResource has a new optional parameter restoreParameters
  • Interface SqlDatabaseResource has a new optional parameter createMode
  • Interface SqlDatabaseResource has a new optional parameter restoreParameters
  • Interface TableResource has a new optional parameter createMode
  • Interface TableResource has a new optional parameter restoreParameters
  • Added Enum KnownBackupState
  • Added Enum KnownCheckNameAvailabilityReason
  • Added Enum KnownClusterType
  • Added Enum KnownCustomerManagedKeyStatus
  • Added Enum KnownDataTransferComponent
  • Added Enum KnownDefaultPriorityLevel
  • Added Enum KnownMongoClusterStatus
  • Added Enum KnownNodeKind
  • Added Enum KnownProvisioningState
  • Added Enum KnownThroughputPolicyType
  • Enum KnownCreateMode has a new value PointInTimeRestore
  • Enum KnownOperationType has a new value Recreate

15.5.0 (2023-05-11)

Features Added

  • Added Interface ContinuousModeProperties
  • Added Type Alias ContinuousTier
  • Interface ContinuousModeBackupPolicy has a new optional parameter continuousModeProperties
  • Interface RestorableDatabaseAccountGetResult has a new optional parameter oldestRestorableTime
  • Interface ThroughputSettingsResource has a new optional parameter instantMaximumThroughput
  • Interface ThroughputSettingsResource has a new optional parameter softAllowedMaximumThroughput
  • Added Enum KnownContinuousTier
  • Enum KnownPublicNetworkAccess has a new value SecuredByPerimeter

15.4.0 (2023-04-23)

Features Added

  • Added Interface AuthenticationMethodLdapProperties
  • Added Interface CassandraError
  • Added Type Alias Kind
  • Added Type Alias Status
  • Added Type Alias Type
  • Interface CassandraClusterPublicStatus has a new optional parameter errors
  • Interface ClusterResourceProperties has a new optional parameter provisionError
  • Interface ComponentsM9L909SchemasCassandraclusterpublicstatusPropertiesDatacentersItemsPropertiesNodesItems has a new optional parameter cassandraProcessStatus
  • Interface DatabaseAccountConnectionString has a new optional parameter keyKind
  • Interface DatabaseAccountConnectionString has a new optional parameter type
  • Interface DataCenterResourceProperties has a new optional parameter authenticationMethodLdapProperties
  • Interface DataCenterResourceProperties has a new optional parameter deallocated
  • Interface DataCenterResourceProperties has a new optional parameter provisionError
  • Interface LocationProperties has a new optional parameter isSubscriptionRegionAccessAllowedForAz
  • Interface LocationProperties has a new optional parameter isSubscriptionRegionAccessAllowedForRegular
  • Interface LocationProperties has a new optional parameter status
  • Added Enum KnownKind
  • Added Enum KnownStatus
  • Added Enum KnownType
  • Enum KnownAuthenticationMethod has a new value Ldap

15.3.0 (2023-02-10)

Features Added

  • Added operation group RestorableGremlinDatabases
  • Added operation group RestorableGremlinGraphs
  • Added operation group RestorableGremlinResources
  • Added operation group RestorableTableResources
  • Added operation group RestorableTables
  • Added operation GremlinResources.beginRetrieveContinuousBackupInformation
  • Added operation GremlinResources.beginRetrieveContinuousBackupInformationAndWait
  • Added operation SqlResources.beginCreateUpdateClientEncryptionKey
  • Added operation SqlResources.beginCreateUpdateClientEncryptionKeyAndWait
  • Added operation SqlResources.getClientEncryptionKey
  • Added operation SqlResources.listClientEncryptionKeys
  • Added operation TableResources.beginRetrieveContinuousBackupInformation
  • Added operation TableResources.beginRetrieveContinuousBackupInformationAndWait
  • Added Interface CassandraResourcesCreateUpdateCassandraKeyspaceHeaders
  • Added Interface CassandraResourcesCreateUpdateCassandraTableHeaders
  • Added Interface CassandraResourcesDeleteCassandraKeyspaceHeaders
  • Added Interface CassandraResourcesDeleteCassandraTableHeaders
  • Added Interface CassandraResourcesMigrateCassandraKeyspaceToAutoscaleHeaders
  • Added Interface CassandraResourcesMigrateCassandraKeyspaceToManualThroughputHeaders
  • Added Interface CassandraResourcesMigrateCassandraTableToAutoscaleHeaders
  • Added Interface CassandraResourcesMigrateCassandraTableToManualThroughputHeaders
  • Added Interface CassandraResourcesUpdateCassandraKeyspaceThroughputHeaders
  • Added Interface CassandraResourcesUpdateCassandraTableThroughputHeaders
  • Added Interface ClientEncryptionIncludedPath
  • Added Interface ClientEncryptionKeyCreateUpdateParameters
  • Added Interface ClientEncryptionKeyGetPropertiesResource
  • Added Interface ClientEncryptionKeyGetResults
  • Added Interface ClientEncryptionKeyResource
  • Added Interface ClientEncryptionKeysListResult
  • Added Interface ClientEncryptionPolicy
  • Added Interface DatabaseAccountsDeleteHeaders
  • Added Interface DatabaseAccountsFailoverPriorityChangeHeaders
  • Added Interface DatabaseAccountsOfflineRegionHeaders
  • Added Interface DatabaseAccountsOnlineRegionHeaders
  • Added Interface DatabaseAccountsRegenerateKeyHeaders
  • Added Interface GremlinDatabaseRestoreResource
  • Added Interface GremlinResourcesCreateUpdateGremlinDatabaseHeaders
  • Added Interface GremlinResourcesCreateUpdateGremlinGraphHeaders
  • Added Interface GremlinResourcesDeleteGremlinDatabaseHeaders
  • Added Interface GremlinResourcesDeleteGremlinGraphHeaders
  • Added Interface GremlinResourcesMigrateGremlinDatabaseToAutoscaleHeaders
  • Added Interface GremlinResourcesMigrateGremlinDatabaseToManualThroughputHeaders
  • Added Interface GremlinResourcesMigrateGremlinGraphToAutoscaleHeaders
  • Added Interface GremlinResourcesMigrateGremlinGraphToManualThroughputHeaders
  • Added Interface GremlinResourcesRetrieveContinuousBackupInformationOptionalParams
  • Added Interface GremlinResourcesUpdateGremlinDatabaseThroughputHeaders
  • Added Interface GremlinResourcesUpdateGremlinGraphThroughputHeaders
  • Added Interface KeyWrapMetadata
  • Added Interface MongoDBResourcesCreateUpdateMongoDBCollectionHeaders
  • Added Interface MongoDBResourcesCreateUpdateMongoDBDatabaseHeaders
  • Added Interface MongoDBResourcesDeleteMongoDBCollectionHeaders
  • Added Interface MongoDBResourcesDeleteMongoDBDatabaseHeaders
  • Added Interface MongoDBResourcesMigrateMongoDBCollectionToAutoscaleHeaders
  • Added Interface MongoDBResourcesMigrateMongoDBCollectionToManualThroughputHeaders
  • Added Interface MongoDBResourcesMigrateMongoDBDatabaseToAutoscaleHeaders
  • Added Interface MongoDBResourcesMigrateMongoDBDatabaseToManualThroughputHeaders
  • Added Interface MongoDBResourcesUpdateMongoDBCollectionThroughputHeaders
  • Added Interface MongoDBResourcesUpdateMongoDBDatabaseThroughputHeaders
  • Added Interface RestorableGremlinDatabaseGetResult
  • Added Interface RestorableGremlinDatabasePropertiesResource
  • Added Interface RestorableGremlinDatabasesListOptionalParams
  • Added Interface RestorableGremlinDatabasesListResult
  • Added Interface RestorableGremlinGraphGetResult
  • Added Interface RestorableGremlinGraphPropertiesResource
  • Added Interface RestorableGremlinGraphsListOptionalParams
  • Added Interface RestorableGremlinGraphsListResult
  • Added Interface RestorableGremlinResourcesGetResult
  • Added Interface RestorableGremlinResourcesListOptionalParams
  • Added Interface RestorableGremlinResourcesListResult
  • Added Interface RestorableTableGetResult
  • Added Interface RestorableTablePropertiesResource
  • Added Interface RestorableTableResourcesGetResult
  • Added Interface RestorableTableResourcesListOptionalParams
  • Added Interface RestorableTableResourcesListResult
  • Added Interface RestorableTablesListOptionalParams
  • Added Interface RestorableTablesListResult
  • Added Interface ServiceCreateHeaders
  • Added Interface ServiceDeleteHeaders
  • Added Interface SqlResourcesCreateUpdateClientEncryptionKeyHeaders
  • Added Interface SqlResourcesCreateUpdateClientEncryptionKeyOptionalParams
  • Added Interface SqlResourcesCreateUpdateSqlContainerHeaders
  • Added Interface SqlResourcesCreateUpdateSqlDatabaseHeaders
  • Added Interface SqlResourcesCreateUpdateSqlStoredProcedureHeaders
  • Added Interface SqlResourcesCreateUpdateSqlTriggerHeaders
  • Added Interface SqlResourcesCreateUpdateSqlUserDefinedFunctionHeaders
  • Added Interface SqlResourcesDeleteSqlContainerHeaders
  • Added Interface SqlResourcesDeleteSqlDatabaseHeaders
  • Added Interface SqlResourcesDeleteSqlStoredProcedureHeaders
  • Added Interface SqlResourcesDeleteSqlTriggerHeaders
  • Added Interface SqlResourcesDeleteSqlUserDefinedFunctionHeaders
  • Added Interface SqlResourcesGetClientEncryptionKeyOptionalParams
  • Added Interface SqlResourcesListClientEncryptionKeysOptionalParams
  • Added Interface SqlResourcesMigrateSqlContainerToAutoscaleHeaders
  • Added Interface SqlResourcesMigrateSqlContainerToManualThroughputHeaders
  • Added Interface SqlResourcesMigrateSqlDatabaseToAutoscaleHeaders
  • Added Interface SqlResourcesMigrateSqlDatabaseToManualThroughputHeaders
  • Added Interface SqlResourcesUpdateSqlContainerThroughputHeaders
  • Added Interface SqlResourcesUpdateSqlDatabaseThroughputHeaders
  • Added Interface TableResourcesCreateUpdateTableHeaders
  • Added Interface TableResourcesDeleteTableHeaders
  • Added Interface TableResourcesMigrateTableToAutoscaleHeaders
  • Added Interface TableResourcesMigrateTableToManualThroughputHeaders
  • Added Interface TableResourcesRetrieveContinuousBackupInformationOptionalParams
  • Added Interface TableResourcesUpdateTableThroughputHeaders
  • Added Type Alias CassandraResourcesDeleteCassandraKeyspaceResponse
  • Added Type Alias CassandraResourcesDeleteCassandraTableResponse
  • Added Type Alias DatabaseAccountsDeleteResponse
  • Added Type Alias DatabaseAccountsFailoverPriorityChangeResponse
  • Added Type Alias GremlinResourcesDeleteGremlinDatabaseResponse
  • Added Type Alias GremlinResourcesDeleteGremlinGraphResponse
  • Added Type Alias GremlinResourcesRetrieveContinuousBackupInformationResponse
  • Added Type Alias MinimalTlsVersion
  • Added Type Alias MongoDBResourcesDeleteMongoDBCollectionResponse
  • Added Type Alias MongoDBResourcesDeleteMongoDBDatabaseResponse
  • Added Type Alias RestorableGremlinDatabasesListResponse
  • Added Type Alias RestorableGremlinGraphsListResponse
  • Added Type Alias RestorableGremlinResourcesListResponse
  • Added Type Alias RestorableTableResourcesListResponse
  • Added Type Alias RestorableTablesListResponse
  • Added Type Alias SqlResourcesCreateUpdateClientEncryptionKeyResponse
  • Added Type Alias SqlResourcesDeleteSqlContainerResponse
  • Added Type Alias SqlResourcesDeleteSqlDatabaseResponse
  • Added Type Alias SqlResourcesDeleteSqlStoredProcedureResponse
  • Added Type Alias SqlResourcesDeleteSqlTriggerResponse
  • Added Type Alias SqlResourcesDeleteSqlUserDefinedFunctionResponse
  • Added Type Alias SqlResourcesGetClientEncryptionKeyResponse
  • Added Type Alias SqlResourcesListClientEncryptionKeysResponse
  • Added Type Alias TableResourcesDeleteTableResponse
  • Added Type Alias TableResourcesRetrieveContinuousBackupInformationResponse
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter minimalTlsVersion
  • Interface DatabaseAccountGetResults has a new optional parameter minimalTlsVersion
  • Interface DatabaseAccountUpdateParameters has a new optional parameter minimalTlsVersion
  • Interface RestorableMongodbCollectionsListOptionalParams has a new optional parameter endTime
  • Interface RestorableMongodbCollectionsListOptionalParams has a new optional parameter startTime
  • Interface RestoreParameters has a new optional parameter gremlinDatabasesToRestore
  • Interface RestoreParameters has a new optional parameter tablesToRestore
  • Interface SqlContainerResource has a new optional parameter clientEncryptionPolicy
  • Added Enum KnownMinimalTlsVersion
  • Added function getContinuationToken

15.2.0 (2022-09-05)

Features Added

  • Added operation MongoDBResources.beginCreateUpdateMongoRoleDefinition
  • Added operation MongoDBResources.beginCreateUpdateMongoRoleDefinitionAndWait
  • Added operation MongoDBResources.beginCreateUpdateMongoUserDefinition
  • Added operation MongoDBResources.beginCreateUpdateMongoUserDefinitionAndWait
  • Added operation MongoDBResources.beginDeleteMongoRoleDefinition
  • Added operation MongoDBResources.beginDeleteMongoRoleDefinitionAndWait
  • Added operation MongoDBResources.beginDeleteMongoUserDefinition
  • Added operation MongoDBResources.beginDeleteMongoUserDefinitionAndWait
  • Added operation MongoDBResources.getMongoRoleDefinition
  • Added operation MongoDBResources.getMongoUserDefinition
  • Added operation MongoDBResources.listMongoRoleDefinitions
  • Added operation MongoDBResources.listMongoUserDefinitions
  • Added Interface AccountKeyMetadata
  • Added Interface DatabaseAccountKeysMetadata
  • Added Interface MongoDBResourcesCreateUpdateMongoRoleDefinitionOptionalParams
  • Added Interface MongoDBResourcesCreateUpdateMongoUserDefinitionOptionalParams
  • Added Interface MongoDBResourcesDeleteMongoRoleDefinitionOptionalParams
  • Added Interface MongoDBResourcesDeleteMongoUserDefinitionOptionalParams
  • Added Interface MongoDBResourcesGetMongoRoleDefinitionOptionalParams
  • Added Interface MongoDBResourcesGetMongoUserDefinitionOptionalParams
  • Added Interface MongoDBResourcesListMongoRoleDefinitionsOptionalParams
  • Added Interface MongoDBResourcesListMongoUserDefinitionsOptionalParams
  • Added Interface MongoRoleDefinitionCreateUpdateParameters
  • Added Interface MongoRoleDefinitionGetResults
  • Added Interface MongoRoleDefinitionListResult
  • Added Interface MongoUserDefinitionCreateUpdateParameters
  • Added Interface MongoUserDefinitionGetResults
  • Added Interface MongoUserDefinitionListResult
  • Added Interface Privilege
  • Added Interface PrivilegeResource
  • Added Interface Role
  • Added Type Alias MongoDBResourcesCreateUpdateMongoRoleDefinitionResponse
  • Added Type Alias MongoDBResourcesCreateUpdateMongoUserDefinitionResponse
  • Added Type Alias MongoDBResourcesGetMongoRoleDefinitionResponse
  • Added Type Alias MongoDBResourcesGetMongoUserDefinitionResponse
  • Added Type Alias MongoDBResourcesListMongoRoleDefinitionsResponse
  • Added Type Alias MongoDBResourcesListMongoUserDefinitionsResponse
  • Added Type Alias MongoRoleDefinitionType
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter enablePartitionMerge
  • Interface DatabaseAccountCreateUpdateParameters has a new optional parameter keysMetadata
  • Interface DatabaseAccountGetResults has a new optional parameter enablePartitionMerge
  • Interface DatabaseAccountGetResults has a new optional parameter keysMetadata
  • Interface DatabaseAccountUpdateParameters has a new optional parameter enablePartitionMerge
  • Interface DatabaseAccountUpdateParameters has a new optional parameter keysMetadata

15.1.0 (2022-07-18)

Features Added

  • Added operation group Service
  • Added Interface CassandraKeyspaceCreateUpdateParameters
  • Added Interface CassandraKeyspaceGetPropertiesOptions
  • Added Interface CassandraKeyspaceGetPropertiesResource
  • Added Interface CassandraKeyspaceGetResults
  • Added Interface CassandraTableCreateUpdateParameters
  • Added Interface CassandraTableGetPropertiesOptions
  • Added Interface CassandraTableGetPropertiesResource
  • Added Interface CassandraTableGetResults
  • Added Interface ClusterResource
  • Added Interface ContinuousModeBackupPolicy
  • Added Interface DatabaseAccountCreateUpdateParameters
  • Added Interface DatabaseAccountGetResults
  • Added Interface DatabaseAccountListKeysResult
  • Added Interface DataCenterResource
  • Added Interface DataTransferRegionalServiceResource
  • Added Interface DataTransferServiceResource
  • Added Interface DataTransferServiceResourceProperties
  • Added Interface GraphAPIComputeRegionalServiceResource
  • Added Interface GraphAPIComputeServiceResource
  • Added Interface GraphAPIComputeServiceResourceProperties
  • Added Interface GremlinDatabaseCreateUpdateParameters
  • Added Interface GremlinDatabaseGetPropertiesOptions
  • Added Interface GremlinDatabaseGetPropertiesResource
  • Added Interface GremlinDatabaseGetResults
  • Added Interface GremlinGraphCreateUpdateParameters
  • Added Interface GremlinGraphGetPropertiesOptions
  • Added Interface GremlinGraphGetPropertiesResource
  • Added Interface GremlinGraphGetResults
  • Added Interface LocationGetResult
  • Added Interface MaterializedViewsBuilderRegionalServiceResource
  • Added Interface MaterializedViewsBuilderServiceResource
  • Added Interface MaterializedViewsBuilderServiceResourceProperties
  • Added Interface MongoDBCollectionCreateUpdateParameters
  • Added Interface MongoDBCollectionGetPropertiesOptions
  • Added Interface MongoDBCollectionGetPropertiesResource
  • Added Interface MongoDBCollectionGetResults
  • Added Interface MongoDBDatabaseCreateUpdateParameters
  • Added Interface MongoDBDatabaseGetPropertiesOptions
  • Added Interface MongoDBDatabaseGetPropertiesResource
  • Added Interface MongoDBDatabaseGetResults
  • Added Interface NotebookWorkspace
  • Added Interface NotebookWorkspaceCreateUpdateParameters
  • Added Interface PartitionMetric
  • Added Interface PartitionUsage
  • Added Interface PercentileMetricValue
  • Added Interface PeriodicModeBackupPolicy
  • Added Interface PrivateEndpointConnection
  • Added Interface PrivateLinkResource
  • Added Interface ProxyResource
  • Added Interface RegionalServiceResource
  • Added Interface RestorableMongodbResourcesGetResult
  • Added Interface RestorableSqlContainerPropertiesResourceContainer
  • Added Interface RestorableSqlDatabasePropertiesResourceDatabase
  • Added Interface RestorableSqlResourcesGetResult
  • Added Interface ServiceCreateOptionalParams
  • Added Interface ServiceDeleteOptionalParams
  • Added Interface ServiceGetOptionalParams
  • Added Interface ServiceListOptionalParams
  • Added Interface ServiceResource
  • Added Interface ServiceResourceCreateUpdateParameters
  • Added Interface ServiceResourceListResult
  • Added Interface ServiceResourceProperties
  • Added Interface SqlContainerCreateUpdateParameters
  • Added Interface SqlContainerGetPropertiesOptions
  • Added Interface SqlContainerGetPropertiesResource
  • Added Interface SqlContainerGetResults
  • Added Interface SqlDatabaseCreateUpdateParameters
  • Added Interface SqlDatabaseGetPropertiesOptions
  • Added Interface SqlDatabaseGetPropertiesResource
  • Added Interface SqlDatabaseGetResults
  • Added Interface SqlDedicatedGatewayRegionalServiceResource
  • Added Interface SqlDedicatedGatewayServiceResource
  • Added Interface SqlDedicatedGatewayServiceResourceProperties
  • Added Interface SqlRoleAssignmentGetResults
  • Added Interface SqlRoleDefinitionGetResults
  • Added Interface SqlStoredProcedureCreateUpdateParameters
  • Added Interface SqlStoredProcedureGetPropertiesResource
  • Added Interface SqlStoredProcedureGetResults
  • Added Interface SqlTriggerCreateUpdateParameters
  • Added Interface SqlTriggerGetPropertiesResource
  • Added Interface SqlTriggerGetResults
  • Added Interface SqlUserDefinedFunctionCreateUpdateParameters
  • Added Interface SqlUserDefinedFunctionGetPropertiesResource
  • Added Interface SqlUserDefinedFunctionGetResults
  • Added Interface TableCreateUpdateParameters
  • Added Interface TableGetPropertiesOptions
  • Added Interface TableGetPropertiesResource
  • Added Interface TableGetResults
  • Added Interface ThroughputSettingsGetPropertiesResource
  • Added Interface ThroughputSettingsGetResults
  • Added Interface ThroughputSettingsUpdateParameters
  • Added Type Alias ServiceCreateResponse
  • Added Type Alias ServiceGetResponse
  • Added Type Alias ServiceListResponse
  • Added Type Alias ServiceResourcePropertiesUnion
  • Added Type Alias ServiceSize
  • Added Type Alias ServiceStatus
  • Added Type Alias ServiceType
  • Interface GremlinGraphResource has a new optional parameter analyticalStorageTtl
  • Class CosmosDBManagementClient has a new parameter service
  • Added Enum KnownServiceSize
  • Added Enum KnownServiceStatus
  • Added Enum KnownServiceType
  • Enum KnownServerVersion has a new value Four2

15.0.0 (2021-12-09)

The package of @azure/arm-cosmosdb is using our next generation design principles since version 15.0.0, which contains breaking changes.

To understand the detail of the change, please refer to Changelog.

To migrate the existing applications to the latest version, please refer to Migration Guide.

To learn more, please refer to our documentation Quick Start.