IServiceLevelAgreementManagement.GetServiceLevelObjectives Method

Definition

Gets a list of service level objectives.

Overloads

GetServiceLevelObjectives<T>()

Gets all service level objectives.

GetServiceLevelObjectives<T>(ManagementPackServiceLevelObjectiveCriteria<T>)

Gets all service level objectives that match the specified criteria.

GetServiceLevelObjectives<T>()

Gets all service level objectives.

public:
generic <typename T>
 where T : Microsoft::EnterpriseManagement::Configuration::ManagementPackSLO System::Collections::Generic::IList<T> ^ GetServiceLevelObjectives();
public System.Collections.Generic.IList<T> GetServiceLevelObjectives<T> () where T : Microsoft.EnterpriseManagement.Configuration.ManagementPackSLO;
abstract member GetServiceLevelObjectives : unit -> System.Collections.Generic.IList<'T (requires 'T :> Microsoft.EnterpriseManagement.Configuration.ManagementPackSLO)> (requires 'T :> Microsoft.EnterpriseManagement.Configuration.ManagementPackSLO)
Public Function GetServiceLevelObjectives(Of T As ManagementPackSLO) () As IList(Of T)

Type Parameters

T

The type of object returned.

Of type ManagementPackSLO.

Returns

IList<T>

Type: IList<T>

The list of service level objects.

Applies to

GetServiceLevelObjectives<T>(ManagementPackServiceLevelObjectiveCriteria<T>)

Gets all service level objectives that match the specified criteria.

public:
generic <typename T>
 where T : Microsoft::EnterpriseManagement::Configuration::ManagementPackSLO System::Collections::Generic::IList<T> ^ GetServiceLevelObjectives(Microsoft::EnterpriseManagement::Configuration::ManagementPackServiceLevelObjectiveCriteria<T> ^ criteria);
public System.Collections.Generic.IList<T> GetServiceLevelObjectives<T> (Microsoft.EnterpriseManagement.Configuration.ManagementPackServiceLevelObjectiveCriteria<T> criteria) where T : Microsoft.EnterpriseManagement.Configuration.ManagementPackSLO;
abstract member GetServiceLevelObjectives : Microsoft.EnterpriseManagement.Configuration.ManagementPackServiceLevelObjectiveCriteria<'T (requires 'T :> Microsoft.EnterpriseManagement.Configuration.ManagementPackSLO)> -> System.Collections.Generic.IList<'T (requires 'T :> Microsoft.EnterpriseManagement.Configuration.ManagementPackSLO)> (requires 'T :> Microsoft.EnterpriseManagement.Configuration.ManagementPackSLO)
Public Function GetServiceLevelObjectives(Of T As ManagementPackSLO) (criteria As ManagementPackServiceLevelObjectiveCriteria(Of T)) As IList(Of T)

Type Parameters

T

The type of object returned.

Of type ManagementPackSLO.

Parameters

criteria
ManagementPackServiceLevelObjectiveCriteria<T>

Type: Microsoft.EnterpriseManagement.Configuration.ManagementPackServiceLevelObjectiveCriteria{``0}

The search criteria.

Returns

IList<T>

Type: IList<T>

The list of service level objects.

Applies to