Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,31 @@ public partial interface IWorkflowRunsOperations
/// </exception>
Task<AzureOperationResponse<WorkflowRun>> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, string runName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Deletes a workflow run.
/// </summary>
/// <param name='resourceGroupName'>
/// The resource group name.
/// </param>
/// <param name='workflowName'>
/// The workflow name.
/// </param>
/// <param name='runName'>
/// The workflow run name.
/// </param>
/// <param name='customHeaders'>
/// The headers that will be added to request.
/// </param>
/// <param name='cancellationToken'>
/// The cancellation token.
/// </param>
/// <exception cref="Microsoft.Rest.Azure.CloudException">
/// Thrown when the operation returned an invalid status code
/// </exception>
/// <exception cref="Microsoft.Rest.ValidationException">
/// Thrown when a required parameter is null
/// </exception>
Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string workflowName, string runName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Cancels a workflow run.
/// </summary>
/// <param name='resourceGroupName'>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ public AS2ErrorSettings()
/// </summary>
/// <param name="suspendDuplicateMessage">The value indicating whether
/// to suspend duplicate message.</param>
/// <param name="resendIfMdnNotReceived">The value indicating whether
/// <param name="resendIfMDNNotReceived">The value indicating whether
/// to resend message If MDN is not received.</param>
public AS2ErrorSettings(bool suspendDuplicateMessage, bool resendIfMdnNotReceived)
public AS2ErrorSettings(bool suspendDuplicateMessage, bool resendIfMDNNotReceived)
{
SuspendDuplicateMessage = suspendDuplicateMessage;
ResendIfMdnNotReceived = resendIfMdnNotReceived;
ResendIfMDNNotReceived = resendIfMDNNotReceived;
CustomInit();
}

Expand All @@ -56,8 +56,8 @@ public AS2ErrorSettings(bool suspendDuplicateMessage, bool resendIfMdnNotReceive
/// Gets or sets the value indicating whether to resend message If MDN
/// is not received.
/// </summary>
[JsonProperty(PropertyName = "resendIfMdnNotReceived")]
public bool ResendIfMdnNotReceived { get; set; }
[JsonProperty(PropertyName = "resendIfMDNNotReceived")]
public bool ResendIfMDNNotReceived { get; set; }

/// <summary>
/// Validate the object.
Expand Down
42 changes: 21 additions & 21 deletions src/SDKs/Logic/Management.Logic/Generated/Models/AS2MdnSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ public AS2MdnSettings()
/// <summary>
/// Initializes a new instance of the AS2MdnSettings class.
/// </summary>
/// <param name="needMdn">The value indicating whether to send or
/// <param name="needMDN">The value indicating whether to send or
/// request a MDN.</param>
/// <param name="signMdn">The value indicating whether the MDN needs to
/// <param name="signMDN">The value indicating whether the MDN needs to
/// be signed or not.</param>
/// <param name="sendMdnAsynchronously">The value indicating whether to
/// <param name="sendMDNAsynchronously">The value indicating whether to
/// send the asynchronous MDN.</param>
/// <param name="signOutboundMdnIfOptional">The value indicating
/// <param name="signOutboundMDNIfOptional">The value indicating
/// whether to sign the outbound MDN if optional.</param>
/// <param name="sendInboundMdnToMessageBox">The value indicating
/// <param name="sendInboundMDNToMessageBox">The value indicating
/// whether to send inbound MDN to message box.</param>
/// <param name="micHashingAlgorithm">The signing or hashing algorithm.
/// Possible values include: 'NotSpecified', 'None', 'MD5', 'SHA1',
Expand All @@ -47,16 +47,16 @@ public AS2MdnSettings()
/// <param name="dispositionNotificationTo">The disposition
/// notification to header value.</param>
/// <param name="mdnText">The MDN text.</param>
public AS2MdnSettings(bool needMdn, bool signMdn, bool sendMdnAsynchronously, bool signOutboundMdnIfOptional, bool sendInboundMdnToMessageBox, string micHashingAlgorithm, string receiptDeliveryUrl = default(string), string dispositionNotificationTo = default(string), string mdnText = default(string))
public AS2MdnSettings(bool needMDN, bool signMDN, bool sendMDNAsynchronously, bool signOutboundMDNIfOptional, bool sendInboundMDNToMessageBox, string micHashingAlgorithm, string receiptDeliveryUrl = default(string), string dispositionNotificationTo = default(string), string mdnText = default(string))
{
NeedMdn = needMdn;
SignMdn = signMdn;
SendMdnAsynchronously = sendMdnAsynchronously;
NeedMDN = needMDN;
SignMDN = signMDN;
SendMDNAsynchronously = sendMDNAsynchronously;
ReceiptDeliveryUrl = receiptDeliveryUrl;
DispositionNotificationTo = dispositionNotificationTo;
SignOutboundMdnIfOptional = signOutboundMdnIfOptional;
SignOutboundMDNIfOptional = signOutboundMDNIfOptional;
MdnText = mdnText;
SendInboundMdnToMessageBox = sendInboundMdnToMessageBox;
SendInboundMDNToMessageBox = sendInboundMDNToMessageBox;
MicHashingAlgorithm = micHashingAlgorithm;
CustomInit();
}
Expand All @@ -69,22 +69,22 @@ public AS2MdnSettings()
/// <summary>
/// Gets or sets the value indicating whether to send or request a MDN.
/// </summary>
[JsonProperty(PropertyName = "needMdn")]
public bool NeedMdn { get; set; }
[JsonProperty(PropertyName = "needMDN")]
public bool NeedMDN { get; set; }

/// <summary>
/// Gets or sets the value indicating whether the MDN needs to be
/// signed or not.
/// </summary>
[JsonProperty(PropertyName = "signMdn")]
public bool SignMdn { get; set; }
[JsonProperty(PropertyName = "signMDN")]
public bool SignMDN { get; set; }

/// <summary>
/// Gets or sets the value indicating whether to send the asynchronous
/// MDN.
/// </summary>
[JsonProperty(PropertyName = "sendMdnAsynchronously")]
public bool SendMdnAsynchronously { get; set; }
[JsonProperty(PropertyName = "sendMDNAsynchronously")]
public bool SendMDNAsynchronously { get; set; }

/// <summary>
/// Gets or sets the receipt delivery URL.
Expand All @@ -102,8 +102,8 @@ public AS2MdnSettings()
/// Gets or sets the value indicating whether to sign the outbound MDN
/// if optional.
/// </summary>
[JsonProperty(PropertyName = "signOutboundMdnIfOptional")]
public bool SignOutboundMdnIfOptional { get; set; }
[JsonProperty(PropertyName = "signOutboundMDNIfOptional")]
public bool SignOutboundMDNIfOptional { get; set; }

/// <summary>
/// Gets or sets the MDN text.
Expand All @@ -115,8 +115,8 @@ public AS2MdnSettings()
/// Gets or sets the value indicating whether to send inbound MDN to
/// message box.
/// </summary>
[JsonProperty(PropertyName = "sendInboundMdnToMessageBox")]
public bool SendInboundMdnToMessageBox { get; set; }
[JsonProperty(PropertyName = "sendInboundMDNToMessageBox")]
public bool SendInboundMDNToMessageBox { get; set; }

/// <summary>
/// Gets or sets the signing or hashing algorithm. Possible values
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,21 @@ public AS2SecuritySettings()
/// </summary>
/// <param name="overrideGroupSigningCertificate">The value indicating
/// whether to send or request a MDN.</param>
/// <param name="enableNrrForInboundEncodedMessages">The value
/// <param name="enableNRRForInboundEncodedMessages">The value
/// indicating whether to enable NRR for inbound encoded
/// messages.</param>
/// <param name="enableNrrForInboundDecodedMessages">The value
/// <param name="enableNRRForInboundDecodedMessages">The value
/// indicating whether to enable NRR for inbound decoded
/// messages.</param>
/// <param name="enableNrrForOutboundMdn">The value indicating whether
/// <param name="enableNRRForOutboundMDN">The value indicating whether
/// to enable NRR for outbound MDN.</param>
/// <param name="enableNrrForOutboundEncodedMessages">The value
/// <param name="enableNRRForOutboundEncodedMessages">The value
/// indicating whether to enable NRR for outbound encoded
/// messages.</param>
/// <param name="enableNrrForOutboundDecodedMessages">The value
/// <param name="enableNRRForOutboundDecodedMessages">The value
/// indicating whether to enable NRR for outbound decoded
/// messages.</param>
/// <param name="enableNrrForInboundMdn">The value indicating whether
/// <param name="enableNRRForInboundMDN">The value indicating whether
/// to enable NRR for inbound MDN.</param>
/// <param name="signingCertificateName">The name of the signing
/// certificate.</param>
Expand All @@ -54,17 +54,17 @@ public AS2SecuritySettings()
/// <param name="sha2AlgorithmFormat">The Sha2 algorithm format. Valid
/// values are Sha2, ShaHashSize, ShaHyphenHashSize,
/// Sha2UnderscoreHashSize.</param>
public AS2SecuritySettings(bool overrideGroupSigningCertificate, bool enableNrrForInboundEncodedMessages, bool enableNrrForInboundDecodedMessages, bool enableNrrForOutboundMdn, bool enableNrrForOutboundEncodedMessages, bool enableNrrForOutboundDecodedMessages, bool enableNrrForInboundMdn, string signingCertificateName = default(string), string encryptionCertificateName = default(string), string sha2AlgorithmFormat = default(string))
public AS2SecuritySettings(bool overrideGroupSigningCertificate, bool enableNRRForInboundEncodedMessages, bool enableNRRForInboundDecodedMessages, bool enableNRRForOutboundMDN, bool enableNRRForOutboundEncodedMessages, bool enableNRRForOutboundDecodedMessages, bool enableNRRForInboundMDN, string signingCertificateName = default(string), string encryptionCertificateName = default(string), string sha2AlgorithmFormat = default(string))
{
OverrideGroupSigningCertificate = overrideGroupSigningCertificate;
SigningCertificateName = signingCertificateName;
EncryptionCertificateName = encryptionCertificateName;
EnableNrrForInboundEncodedMessages = enableNrrForInboundEncodedMessages;
EnableNrrForInboundDecodedMessages = enableNrrForInboundDecodedMessages;
EnableNrrForOutboundMdn = enableNrrForOutboundMdn;
EnableNrrForOutboundEncodedMessages = enableNrrForOutboundEncodedMessages;
EnableNrrForOutboundDecodedMessages = enableNrrForOutboundDecodedMessages;
EnableNrrForInboundMdn = enableNrrForInboundMdn;
EnableNRRForInboundEncodedMessages = enableNRRForInboundEncodedMessages;
EnableNRRForInboundDecodedMessages = enableNRRForInboundDecodedMessages;
EnableNRRForOutboundMDN = enableNRRForOutboundMDN;
EnableNRRForOutboundEncodedMessages = enableNRRForOutboundEncodedMessages;
EnableNRRForOutboundDecodedMessages = enableNRRForOutboundDecodedMessages;
EnableNRRForInboundMDN = enableNRRForInboundMDN;
Sha2AlgorithmFormat = sha2AlgorithmFormat;
CustomInit();
}
Expand Down Expand Up @@ -96,43 +96,43 @@ public AS2SecuritySettings()
/// Gets or sets the value indicating whether to enable NRR for inbound
/// encoded messages.
/// </summary>
[JsonProperty(PropertyName = "enableNrrForInboundEncodedMessages")]
public bool EnableNrrForInboundEncodedMessages { get; set; }
[JsonProperty(PropertyName = "enableNRRForInboundEncodedMessages")]
public bool EnableNRRForInboundEncodedMessages { get; set; }

/// <summary>
/// Gets or sets the value indicating whether to enable NRR for inbound
/// decoded messages.
/// </summary>
[JsonProperty(PropertyName = "enableNrrForInboundDecodedMessages")]
public bool EnableNrrForInboundDecodedMessages { get; set; }
[JsonProperty(PropertyName = "enableNRRForInboundDecodedMessages")]
public bool EnableNRRForInboundDecodedMessages { get; set; }

/// <summary>
/// Gets or sets the value indicating whether to enable NRR for
/// outbound MDN.
/// </summary>
[JsonProperty(PropertyName = "enableNrrForOutboundMdn")]
public bool EnableNrrForOutboundMdn { get; set; }
[JsonProperty(PropertyName = "enableNRRForOutboundMDN")]
public bool EnableNRRForOutboundMDN { get; set; }

/// <summary>
/// Gets or sets the value indicating whether to enable NRR for
/// outbound encoded messages.
/// </summary>
[JsonProperty(PropertyName = "enableNrrForOutboundEncodedMessages")]
public bool EnableNrrForOutboundEncodedMessages { get; set; }
[JsonProperty(PropertyName = "enableNRRForOutboundEncodedMessages")]
public bool EnableNRRForOutboundEncodedMessages { get; set; }

/// <summary>
/// Gets or sets the value indicating whether to enable NRR for
/// outbound decoded messages.
/// </summary>
[JsonProperty(PropertyName = "enableNrrForOutboundDecodedMessages")]
public bool EnableNrrForOutboundDecodedMessages { get; set; }
[JsonProperty(PropertyName = "enableNRRForOutboundDecodedMessages")]
public bool EnableNRRForOutboundDecodedMessages { get; set; }

/// <summary>
/// Gets or sets the value indicating whether to enable NRR for inbound
/// MDN.
/// </summary>
[JsonProperty(PropertyName = "enableNrrForInboundMdn")]
public bool EnableNrrForInboundMdn { get; set; }
[JsonProperty(PropertyName = "enableNRRForInboundMDN")]
public bool EnableNRRForInboundMDN { get; set; }

/// <summary>
/// Gets or sets the Sha2 algorithm format. Valid values are Sha2,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ public EdifactValidationOverride()
/// settings has to be applied.</param>
/// <param name="enforceCharacterSet">The value indicating whether to
/// validate character Set.</param>
/// <param name="validateEdiTypes">The value indicating whether to
/// <param name="validateEDITypes">The value indicating whether to
/// validate EDI types.</param>
/// <param name="validateXsdTypes">The value indicating whether to
/// <param name="validateXSDTypes">The value indicating whether to
/// validate XSD types.</param>
/// <param name="allowLeadingAndTrailingSpacesAndZeroes">The value
/// indicating whether to allow leading and trailing spaces and
Expand All @@ -47,12 +47,12 @@ public EdifactValidationOverride()
/// <param name="trimLeadingAndTrailingSpacesAndZeroes">The value
/// indicating whether to trim leading and trailing spaces and
/// zeroes.</param>
public EdifactValidationOverride(string messageId, bool enforceCharacterSet, bool validateEdiTypes, bool validateXsdTypes, bool allowLeadingAndTrailingSpacesAndZeroes, string trailingSeparatorPolicy, bool trimLeadingAndTrailingSpacesAndZeroes)
public EdifactValidationOverride(string messageId, bool enforceCharacterSet, bool validateEDITypes, bool validateXSDTypes, bool allowLeadingAndTrailingSpacesAndZeroes, string trailingSeparatorPolicy, bool trimLeadingAndTrailingSpacesAndZeroes)
{
MessageId = messageId;
EnforceCharacterSet = enforceCharacterSet;
ValidateEdiTypes = validateEdiTypes;
ValidateXsdTypes = validateXsdTypes;
ValidateEDITypes = validateEDITypes;
ValidateXSDTypes = validateXSDTypes;
AllowLeadingAndTrailingSpacesAndZeroes = allowLeadingAndTrailingSpacesAndZeroes;
TrailingSeparatorPolicy = trailingSeparatorPolicy;
TrimLeadingAndTrailingSpacesAndZeroes = trimLeadingAndTrailingSpacesAndZeroes;
Expand Down Expand Up @@ -81,14 +81,14 @@ public EdifactValidationOverride(string messageId, bool enforceCharacterSet, boo
/// <summary>
/// Gets or sets the value indicating whether to validate EDI types.
/// </summary>
[JsonProperty(PropertyName = "validateEdiTypes")]
public bool ValidateEdiTypes { get; set; }
[JsonProperty(PropertyName = "validateEDITypes")]
public bool ValidateEDITypes { get; set; }

/// <summary>
/// Gets or sets the value indicating whether to validate XSD types.
/// </summary>
[JsonProperty(PropertyName = "validateXsdTypes")]
public bool ValidateXsdTypes { get; set; }
[JsonProperty(PropertyName = "validateXSDTypes")]
public bool ValidateXSDTypes { get; set; }

/// <summary>
/// Gets or sets the value indicating whether to allow leading and
Expand Down
Loading