CompliancesClient Interface

public interface CompliancesClient

An instance of this class provides access to all the operations defined in CompliancesClient.

Method Summary

Modifier and Type Method and Description
abstract ComplianceInner get(String scope, String complianceName)

Details of a specific Compliance.

abstract Response<ComplianceInner> getWithResponse(String scope, String complianceName, Context context)

Details of a specific Compliance.

abstract PagedIterable<ComplianceInner> list(String scope)

The Compliance scores of the specific management group.

abstract PagedIterable<ComplianceInner> list(String scope, Context context)

The Compliance scores of the specific management group.

Method Details

get

public abstract ComplianceInner get(String scope, String complianceName)

Details of a specific Compliance.

Parameters:

scope - The fully qualified Azure Resource manager identifier of the resource.
complianceName - name of the Compliance.

Returns:

compliance of a scope.

getWithResponse

public abstract Response<ComplianceInner> getWithResponse(String scope, String complianceName, Context context)

Details of a specific Compliance.

Parameters:

scope - The fully qualified Azure Resource manager identifier of the resource.
complianceName - name of the Compliance.
context - The context to associate with this operation.

Returns:

compliance of a scope along with Response<T>.

list

public abstract PagedIterable<ComplianceInner> list(String scope)

The Compliance scores of the specific management group.

Parameters:

scope - The fully qualified Azure Resource manager identifier of the resource.

Returns:

list of Compliance objects response as paginated response with PagedIterable<T>.

list

public abstract PagedIterable<ComplianceInner> list(String scope, Context context)

The Compliance scores of the specific management group.

Parameters:

scope - The fully qualified Azure Resource manager identifier of the resource.
context - The context to associate with this operation.

Returns:

list of Compliance objects response as paginated response with PagedIterable<T>.

Applies to