Class SsisPropertyOverride
- java.lang.Object
-
- com.azure.resourcemanager.datafactory.models.SsisPropertyOverride
-
public final class SsisPropertyOverride extends Object
SSIS property override.
-
-
Constructor Summary
Constructors Constructor Description SsisPropertyOverride()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Boolean
isSensitive()
Get the isSensitive property: Whether SSIS package property override value is sensitive data.void
validate()
Validates the instance.Object
value()
Get the value property: SSIS package property override value.SsisPropertyOverride
withIsSensitive(Boolean isSensitive)
Set the isSensitive property: Whether SSIS package property override value is sensitive data.SsisPropertyOverride
withValue(Object value)
Set the value property: SSIS package property override value.
-
-
-
Method Detail
-
value
public Object value()
Get the value property: SSIS package property override value. Type: string (or Expression with resultType string).- Returns:
- the value value.
-
withValue
public SsisPropertyOverride withValue(Object value)
Set the value property: SSIS package property override value. Type: string (or Expression with resultType string).- Parameters:
value
- the value value to set.- Returns:
- the SsisPropertyOverride object itself.
-
isSensitive
public Boolean isSensitive()
Get the isSensitive property: Whether SSIS package property override value is sensitive data. Value will be encrypted in SSISDB if it is true.- Returns:
- the isSensitive value.
-
withIsSensitive
public SsisPropertyOverride withIsSensitive(Boolean isSensitive)
Set the isSensitive property: Whether SSIS package property override value is sensitive data. Value will be encrypted in SSISDB if it is true.- Parameters:
isSensitive
- the isSensitive value to set.- Returns:
- the SsisPropertyOverride object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-