Class OperationDisplay
- java.lang.Object
-
- com.azure.resourcemanager.datafactory.models.OperationDisplay
-
public final class OperationDisplay extends Object
Metadata associated with the operation.
-
-
Constructor Summary
Constructors Constructor Description OperationDisplay()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
description()
Get the description property: The description of the operation.String
operation()
Get the operation property: The type of operation: get, read, delete, etc.String
provider()
Get the provider property: The name of the provider.String
resource()
Get the resource property: The name of the resource type on which the operation is performed.void
validate()
Validates the instance.OperationDisplay
withDescription(String description)
Set the description property: The description of the operation.OperationDisplay
withOperation(String operation)
Set the operation property: The type of operation: get, read, delete, etc.OperationDisplay
withProvider(String provider)
Set the provider property: The name of the provider.OperationDisplay
withResource(String resource)
Set the resource property: The name of the resource type on which the operation is performed.
-
-
-
Method Detail
-
description
public String description()
Get the description property: The description of the operation.- Returns:
- the description value.
-
withDescription
public OperationDisplay withDescription(String description)
Set the description property: The description of the operation.- Parameters:
description
- the description value to set.- Returns:
- the OperationDisplay object itself.
-
provider
public String provider()
Get the provider property: The name of the provider.- Returns:
- the provider value.
-
withProvider
public OperationDisplay withProvider(String provider)
Set the provider property: The name of the provider.- Parameters:
provider
- the provider value to set.- Returns:
- the OperationDisplay object itself.
-
resource
public String resource()
Get the resource property: The name of the resource type on which the operation is performed.- Returns:
- the resource value.
-
withResource
public OperationDisplay withResource(String resource)
Set the resource property: The name of the resource type on which the operation is performed.- Parameters:
resource
- the resource value to set.- Returns:
- the OperationDisplay object itself.
-
operation
public String operation()
Get the operation property: The type of operation: get, read, delete, etc.- Returns:
- the operation value.
-
withOperation
public OperationDisplay withOperation(String operation)
Set the operation property: The type of operation: get, read, delete, etc.- Parameters:
operation
- the operation value to set.- Returns:
- the OperationDisplay object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-