SaveConfigurationParameter Constructors

Definition

Overloads

SaveConfigurationParameter()

Initializes a new instance of the SaveConfigurationParameter class.

SaveConfigurationParameter(String, Nullable<Boolean>)

Initializes a new instance of the SaveConfigurationParameter class.

SaveConfigurationParameter()

Initializes a new instance of the SaveConfigurationParameter class.

public SaveConfigurationParameter ();
Public Sub New ()

Applies to

SaveConfigurationParameter(String, Nullable<Boolean>)

Initializes a new instance of the SaveConfigurationParameter class.

public SaveConfigurationParameter (string branch, bool? force = default);
new Microsoft.Azure.Management.ApiManagement.Models.SaveConfigurationParameter : string * Nullable<bool> -> Microsoft.Azure.Management.ApiManagement.Models.SaveConfigurationParameter
Public Sub New (branch As String, Optional force As Nullable(Of Boolean) = Nothing)

Parameters

branch
String

The name of the Git branch in which to commit the current configuration snapshot.

force
Nullable<Boolean>

The value if true, the current configuration database is committed to the Git repository, even if the Git repository has newer changes that would be overwritten.

Applies to