| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | using System; |
| | 9 | |
|
| | 10 | | namespace Azure.Analytics.Synapse.Artifacts.Models |
| | 11 | | { |
| | 12 | | /// <summary> SSIS property override. </summary> |
| | 13 | | public partial class SsisPropertyOverride |
| | 14 | | { |
| | 15 | | /// <summary> Initializes a new instance of SsisPropertyOverride. </summary> |
| | 16 | | /// <param name="value"> SSIS package property override value. Type: string (or Expression with resultType strin |
| | 17 | | /// <exception cref="ArgumentNullException"> <paramref name="value"/> is null. </exception> |
| 0 | 18 | | public SsisPropertyOverride(object value) |
| | 19 | | { |
| 0 | 20 | | if (value == null) |
| | 21 | | { |
| 0 | 22 | | throw new ArgumentNullException(nameof(value)); |
| | 23 | | } |
| | 24 | |
|
| 0 | 25 | | Value = value; |
| 0 | 26 | | } |
| | 27 | |
|
| | 28 | | /// <summary> Initializes a new instance of SsisPropertyOverride. </summary> |
| | 29 | | /// <param name="value"> SSIS package property override value. Type: string (or Expression with resultType strin |
| | 30 | | /// <param name="isSensitive"> Whether SSIS package property override value is sensitive data. Value will be enc |
| 0 | 31 | | internal SsisPropertyOverride(object value, bool? isSensitive) |
| | 32 | | { |
| 0 | 33 | | Value = value; |
| 0 | 34 | | IsSensitive = isSensitive; |
| 0 | 35 | | } |
| | 36 | |
|
| | 37 | | /// <summary> SSIS package property override value. Type: string (or Expression with resultType string). </summa |
| 0 | 38 | | public object Value { get; set; } |
| | 39 | | /// <summary> Whether SSIS package property override value is sensitive data. Value will be encrypted in SSISDB |
| 0 | 40 | | public bool? IsSensitive { get; set; } |
| | 41 | | } |
| | 42 | | } |