Class SsisObjectMetadata
- java.lang.Object
-
- com.azure.resourcemanager.datafactory.models.SsisObjectMetadata
-
- Direct Known Subclasses:
SsisEnvironment
,SsisFolder
,SsisPackage
,SsisProject
public class SsisObjectMetadata extends Object
SSIS object metadata.
-
-
Constructor Summary
Constructors Constructor Description SsisObjectMetadata()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
description()
Get the description property: Metadata description.Long
id()
Get the id property: Metadata id.String
name()
Get the name property: Metadata name.void
validate()
Validates the instance.SsisObjectMetadata
withDescription(String description)
Set the description property: Metadata description.SsisObjectMetadata
withId(Long id)
Set the id property: Metadata id.SsisObjectMetadata
withName(String name)
Set the name property: Metadata name.
-
-
-
Method Detail
-
id
public Long id()
Get the id property: Metadata id.- Returns:
- the id value.
-
withId
public SsisObjectMetadata withId(Long id)
Set the id property: Metadata id.- Parameters:
id
- the id value to set.- Returns:
- the SsisObjectMetadata object itself.
-
name
public String name()
Get the name property: Metadata name.- Returns:
- the name value.
-
withName
public SsisObjectMetadata withName(String name)
Set the name property: Metadata name.- Parameters:
name
- the name value to set.- Returns:
- the SsisObjectMetadata object itself.
-
description
public String description()
Get the description property: Metadata description.- Returns:
- the description value.
-
withDescription
public SsisObjectMetadata withDescription(String description)
Set the description property: Metadata description.- Parameters:
description
- the description value to set.- Returns:
- the SsisObjectMetadata object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-