ServiceObjectiveCollection Class

Definition

A class representing a collection of ServiceObjectiveResource and their operations. Each ServiceObjectiveResource in the collection will belong to the same instance of SqlServerResource. To get a ServiceObjectiveCollection instance call the GetServiceObjectives method from an instance of SqlServerResource.

public class ServiceObjectiveCollection : Azure.ResourceManager.ArmCollection, System.Collections.Generic.IAsyncEnumerable<Azure.ResourceManager.Sql.ServiceObjectiveResource>, System.Collections.Generic.IEnumerable<Azure.ResourceManager.Sql.ServiceObjectiveResource>
type ServiceObjectiveCollection = class
    inherit ArmCollection
    interface seq<ServiceObjectiveResource>
    interface IEnumerable
    interface IAsyncEnumerable<ServiceObjectiveResource>
Public Class ServiceObjectiveCollection
Inherits ArmCollection
Implements IAsyncEnumerable(Of ServiceObjectiveResource), IEnumerable(Of ServiceObjectiveResource)
Inheritance
ServiceObjectiveCollection
Implements

Constructors

ServiceObjectiveCollection()

Initializes a new instance of the ServiceObjectiveCollection class for mocking.

Properties

Client

Gets the ArmClient this resource client was created from.

(Inherited from ArmCollection)
Diagnostics

Gets the diagnostic options for this resource client.

(Inherited from ArmCollection)
Endpoint

Gets the base uri for this resource client.

(Inherited from ArmCollection)
Id

Gets the resource identifier.

(Inherited from ArmCollection)
Pipeline

Gets the pipeline for this resource client.

(Inherited from ArmCollection)

Methods

Exists(String, CancellationToken)

Checks to see if the resource exists in azure.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/serviceObjectives/{serviceObjectiveName}
  • Operation Id: ServiceObjectives_Get
  • Default Api Version: 2014-04-01
  • Resource: ServiceObjectiveResource
ExistsAsync(String, CancellationToken)

Checks to see if the resource exists in azure.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/serviceObjectives/{serviceObjectiveName}
  • Operation Id: ServiceObjectives_Get
  • Default Api Version: 2014-04-01
  • Resource: ServiceObjectiveResource
Get(String, CancellationToken)

Gets a database service objective.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/serviceObjectives/{serviceObjectiveName}
  • Operation Id: ServiceObjectives_Get
  • Default Api Version: 2014-04-01
  • Resource: ServiceObjectiveResource
GetAll(CancellationToken)

Returns database service objectives.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/serviceObjectives
  • Operation Id: ServiceObjectives_ListByServer
  • Default Api Version: 2014-04-01
  • Resource: ServiceObjectiveResource
GetAllAsync(CancellationToken)

Returns database service objectives.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/serviceObjectives
  • Operation Id: ServiceObjectives_ListByServer
  • Default Api Version: 2014-04-01
  • Resource: ServiceObjectiveResource
GetAsync(String, CancellationToken)

Gets a database service objective.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/serviceObjectives/{serviceObjectiveName}
  • Operation Id: ServiceObjectives_Get
  • Default Api Version: 2014-04-01
  • Resource: ServiceObjectiveResource
GetIfExists(String, CancellationToken)

Tries to get details for this resource from the service.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/serviceObjectives/{serviceObjectiveName}
  • Operation Id: ServiceObjectives_Get
  • Default Api Version: 2014-04-01
  • Resource: ServiceObjectiveResource
GetIfExistsAsync(String, CancellationToken)

Tries to get details for this resource from the service.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/serviceObjectives/{serviceObjectiveName}
  • Operation Id: ServiceObjectives_Get
  • Default Api Version: 2014-04-01
  • Resource: ServiceObjectiveResource
TryGetApiVersion(ResourceType, String)

Gets the api version override if it has been set for the current client options.

(Inherited from ArmCollection)

Explicit Interface Implementations

IAsyncEnumerable<ServiceObjectiveResource>.GetAsyncEnumerator(CancellationToken)

Returns an enumerator that iterates asynchronously through the collection.

IEnumerable.GetEnumerator()

Returns an enumerator that iterates through a collection.

IEnumerable<ServiceObjectiveResource>.GetEnumerator()

Returns an enumerator that iterates through the collection.

Applies to