共用方式為


ThroughputSettingsResource Constructors

Definition

Overloads

ThroughputSettingsResource()

Initializes a new instance of the ThroughputSettingsResource class.

ThroughputSettingsResource(Nullable<Int32>, AutoscaleSettingsResource, String, String)

Initializes a new instance of the ThroughputSettingsResource class.

ThroughputSettingsResource()

Initializes a new instance of the ThroughputSettingsResource class.

public ThroughputSettingsResource ();
Public Sub New ()

Applies to

ThroughputSettingsResource(Nullable<Int32>, AutoscaleSettingsResource, String, String)

Initializes a new instance of the ThroughputSettingsResource class.

public ThroughputSettingsResource (int? throughput = default, Microsoft.Azure.Management.CosmosDB.Models.AutoscaleSettingsResource autoscaleSettings = default, string minimumThroughput = default, string offerReplacePending = default);
new Microsoft.Azure.Management.CosmosDB.Models.ThroughputSettingsResource : Nullable<int> * Microsoft.Azure.Management.CosmosDB.Models.AutoscaleSettingsResource * string * string -> Microsoft.Azure.Management.CosmosDB.Models.ThroughputSettingsResource
Public Sub New (Optional throughput As Nullable(Of Integer) = Nothing, Optional autoscaleSettings As AutoscaleSettingsResource = Nothing, Optional minimumThroughput As String = Nothing, Optional offerReplacePending As String = Nothing)

Parameters

throughput
Nullable<Int32>

Value of the Cosmos DB resource throughput. Either throughput is required or autoscaleSettings is required, but not both.

autoscaleSettings
AutoscaleSettingsResource

Cosmos DB resource for autoscale settings. Either throughput is required or autoscaleSettings is required, but not both.

minimumThroughput
String

The minimum throughput of the resource

offerReplacePending
String

The throughput replace is pending

Applies to