-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
CosmosDBSqlDatabasePropertiesConfig.cs
29 lines (24 loc) · 1.31 KB
/
CosmosDBSqlDatabasePropertiesConfig.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
using System.Collections.Generic;
namespace Azure.ResourceManager.CosmosDB.Models
{
/// <summary> The CosmosDBSqlDatabasePropertiesConfig. </summary>
public partial class CosmosDBSqlDatabasePropertiesConfig : CosmosDBBaseConfig
{
/// <summary> Initializes a new instance of <see cref="CosmosDBSqlDatabasePropertiesConfig"/>. </summary>
public CosmosDBSqlDatabasePropertiesConfig()
{
}
/// <summary> Initializes a new instance of <see cref="CosmosDBSqlDatabasePropertiesConfig"/>. </summary>
/// <param name="throughput"> Value of the Cosmos DB resource throughput or autoscaleSettings. Use the ThroughputSetting resource when retrieving offer details. </param>
/// <param name="autoscaleSettings"> Specifies the Autoscale settings. </param>
/// <param name="serializedAdditionalRawData"> Keeps track of any properties unknown to the library. </param>
internal CosmosDBSqlDatabasePropertiesConfig(int? throughput, AutoscaleSettings autoscaleSettings, IDictionary<string, BinaryData> serializedAdditionalRawData) : base(throughput, autoscaleSettings, serializedAdditionalRawData)
{
}
}
}