@@ -941,6 +941,20 @@ export interface RecoverableSqlPoolListResult {
941941 readonly nextLink ?: string ;
942942}
943943
944+ /** A list of the server's dedicated sql minimal tls settings. */
945+ export interface DedicatedSQLminimalTlsSettingsListResult {
946+ /**
947+ * Array of results.
948+ * NOTE: This property will not be serialized. It can only be populated by the server.
949+ */
950+ readonly value ?: DedicatedSQLminimalTlsSettings [ ] ;
951+ /**
952+ * Link to retrieve next page of results.
953+ * NOTE: This property will not be serialized. It can only be populated by the server.
954+ */
955+ readonly nextLink ?: string ;
956+ }
957+
944958/** List of workspaces */
945959export interface WorkspaceInfoListResult {
946960 /** Link to the next page of results */
@@ -1987,6 +2001,12 @@ export interface TopQueriesListResult {
19872001 value : TopQueries [ ] ;
19882002}
19892003
2004+ /** Dedicated SQL minimal tls settings patch info */
2005+ export interface DedicatedSQLminimalTlsSettingsPatchInfo {
2006+ /** minimal tls version */
2007+ minimalTlsVersion ?: string ;
2008+ }
2009+
19902010/** The compute resource properties for managed integration runtime. */
19912011export interface IntegrationRuntimeComputeProperties {
19922012 /** Describes unknown properties. The value of an unknown property can be of "any" type. */
@@ -3725,6 +3745,17 @@ export type RecoverableSqlPool = ProxyResource & {
37253745 readonly lastAvailableBackupDate ?: Date ;
37263746} ;
37273747
3748+ /** Dedicated Sql Minimal Tls Settings Info */
3749+ export type DedicatedSQLminimalTlsSettings = ProxyResource & {
3750+ /**
3751+ * Resource location.
3752+ * NOTE: This property will not be serialized. It can only be populated by the server.
3753+ */
3754+ readonly location ?: string ;
3755+ /** The minimal tls version of the sql server. */
3756+ minimalTlsVersion ?: string ;
3757+ } ;
3758+
37283759/** Workspace active directory administrator */
37293760export type WorkspaceAadAdminInfo = ProxyResource & {
37303761 /** Tenant ID of the workspace active directory administrator */
@@ -4750,6 +4781,20 @@ export enum KnownServerKeyType {
47504781 */
47514782export type ServerKeyType = string ;
47524783
4784+ /** Known values of {@link DedicatedSQLMinimalTlsSettingsName} that the service accepts. */
4785+ export enum KnownDedicatedSQLMinimalTlsSettingsName {
4786+ Default = "default"
4787+ }
4788+
4789+ /**
4790+ * Defines values for DedicatedSQLMinimalTlsSettingsName. \
4791+ * {@link KnownDedicatedSQLMinimalTlsSettingsName} can be used interchangeably with DedicatedSQLMinimalTlsSettingsName,
4792+ * this enum contains the known values that the service supports.
4793+ * ### Known values supported by the service
4794+ * **default**
4795+ */
4796+ export type DedicatedSQLMinimalTlsSettingsName = string ;
4797+
47534798/** Known values of {@link WorkspacePublicNetworkAccess} that the service accepts. */
47544799export enum KnownWorkspacePublicNetworkAccess {
47554800 Enabled = "Enabled" ,
@@ -6902,6 +6947,39 @@ export interface WorkspaceManagedSqlServerRecoverableSqlPoolsListNextOptionalPar
69026947/** Contains response data for the listNext operation. */
69036948export type WorkspaceManagedSqlServerRecoverableSqlPoolsListNextResponse = RecoverableSqlPoolListResult ;
69046949
6950+ /** Optional parameters. */
6951+ export interface WorkspaceManagedSqlServerDedicatedSQLminimalTlsSettingsUpdateOptionalParams
6952+ extends coreClient . OperationOptions {
6953+ /** Delay to wait until next poll, in milliseconds. */
6954+ updateIntervalInMs ?: number ;
6955+ /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
6956+ resumeFrom ?: string ;
6957+ }
6958+
6959+ /** Contains response data for the update operation. */
6960+ export type WorkspaceManagedSqlServerDedicatedSQLminimalTlsSettingsUpdateResponse = DedicatedSQLminimalTlsSettings ;
6961+
6962+ /** Optional parameters. */
6963+ export interface WorkspaceManagedSqlServerDedicatedSQLminimalTlsSettingsGetOptionalParams
6964+ extends coreClient . OperationOptions { }
6965+
6966+ /** Contains response data for the get operation. */
6967+ export type WorkspaceManagedSqlServerDedicatedSQLminimalTlsSettingsGetResponse = DedicatedSQLminimalTlsSettings ;
6968+
6969+ /** Optional parameters. */
6970+ export interface WorkspaceManagedSqlServerDedicatedSQLminimalTlsSettingsListOptionalParams
6971+ extends coreClient . OperationOptions { }
6972+
6973+ /** Contains response data for the list operation. */
6974+ export type WorkspaceManagedSqlServerDedicatedSQLminimalTlsSettingsListResponse = DedicatedSQLminimalTlsSettingsListResult ;
6975+
6976+ /** Optional parameters. */
6977+ export interface WorkspaceManagedSqlServerDedicatedSQLminimalTlsSettingsListNextOptionalParams
6978+ extends coreClient . OperationOptions { }
6979+
6980+ /** Contains response data for the listNext operation. */
6981+ export type WorkspaceManagedSqlServerDedicatedSQLminimalTlsSettingsListNextResponse = DedicatedSQLminimalTlsSettingsListResult ;
6982+
69056983/** Optional parameters. */
69066984export interface WorkspacesListByResourceGroupOptionalParams
69076985 extends coreClient . OperationOptions { }
0 commit comments