Class FactoryUpdateParameters
- java.lang.Object
-
- com.azure.resourcemanager.datafactory.models.FactoryUpdateParameters
-
public final class FactoryUpdateParameters extends Object
Parameters for updating a factory resource.
-
-
Constructor Summary
Constructors Constructor Description FactoryUpdateParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FactoryIdentity
identity()
Get the identity property: Managed service identity of the factory.PublicNetworkAccess
publicNetworkAccess()
Get the publicNetworkAccess property: Whether or not public network access is allowed for the data factory.Map<String,String>
tags()
Get the tags property: The resource tags.void
validate()
Validates the instance.FactoryUpdateParameters
withIdentity(FactoryIdentity identity)
Set the identity property: Managed service identity of the factory.FactoryUpdateParameters
withPublicNetworkAccess(PublicNetworkAccess publicNetworkAccess)
Set the publicNetworkAccess property: Whether or not public network access is allowed for the data factory.FactoryUpdateParameters
withTags(Map<String,String> tags)
Set the tags property: The resource tags.
-
-
-
Method Detail
-
tags
public Map<String,String> tags()
Get the tags property: The resource tags.- Returns:
- the tags value.
-
withTags
public FactoryUpdateParameters withTags(Map<String,String> tags)
Set the tags property: The resource tags.- Parameters:
tags
- the tags value to set.- Returns:
- the FactoryUpdateParameters object itself.
-
identity
public FactoryIdentity identity()
Get the identity property: Managed service identity of the factory.- Returns:
- the identity value.
-
withIdentity
public FactoryUpdateParameters withIdentity(FactoryIdentity identity)
Set the identity property: Managed service identity of the factory.- Parameters:
identity
- the identity value to set.- Returns:
- the FactoryUpdateParameters object itself.
-
publicNetworkAccess
public PublicNetworkAccess publicNetworkAccess()
Get the publicNetworkAccess property: Whether or not public network access is allowed for the data factory.- Returns:
- the publicNetworkAccess value.
-
withPublicNetworkAccess
public FactoryUpdateParameters withPublicNetworkAccess(PublicNetworkAccess publicNetworkAccess)
Set the publicNetworkAccess property: Whether or not public network access is allowed for the data factory.- Parameters:
publicNetworkAccess
- the publicNetworkAccess value to set.- Returns:
- the FactoryUpdateParameters object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-