class LoadBalancerHealthMonitor extends OperatorResource implements Creatable, Retrievable, Updateable, Deletable

Represents a Neutron v2 LoadBalancer Health Monitor

Traits

Properties

$id string
$tenantId string
$type string
$delay integer
$timeout integer
$maxRetries integer
$httpMethod string
$urlPath string
$expectedCodes string
$adminStateUp boolean
$poolId string
$pools LoadBalancerPool[]
$operatingStatus string
$provisioningStatus string

Methods

create (array $userOptions) : Creatable

Create a new resource according to the configuration set in the options.

retrieve () : void

Retrieve details of the current resource from the remote API.

update () : void

Update the current resource with the configuration set out in the user options.

delete () : void

Permanently delete this resource.

Details

create(array $userOptions)

Create a new resource according to the configuration set in the options.

Parameters

$userOptions array

Return value

Creatable

Example code

$creatable = $loadBalancerHealthMonitor->create($userOptions);

retrieve()

Retrieve details of the current resource from the remote API.

Return value

void

Example code

$loadBalancerHealthMonitor->retrieve();

update()

Update the current resource with the configuration set out in the user options.

Return value

void

Example code

$loadBalancerHealthMonitor->update();

delete()

Permanently delete this resource.

Return value

void

Example code

$loadBalancerHealthMonitor->delete();