PATH:
home
/
lab2454c
/
.trash
/
core
/
vendor
/
twilio
/
sdk
/
src
/
Twilio
/
Rest
/
Preview
/
DeployedDevices
/
Fleet
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\Rest\Preview\DeployedDevices\Fleet; use Twilio\Exceptions\TwilioException; use Twilio\InstanceContext; use Twilio\Options; use Twilio\Values; use Twilio\Version; /** * PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com. */ class DeploymentContext extends InstanceContext { /** * Initialize the DeploymentContext * * @param Version $version Version that contains the resource * @param string $fleetSid The fleet_sid * @param string $sid A string that uniquely identifies the Deployment. */ public function __construct(Version $version, $fleetSid, $sid) { parent::__construct($version); // Path Solution $this->solution = ['fleetSid' => $fleetSid, 'sid' => $sid, ]; $this->uri = '/Fleets/' . \rawurlencode($fleetSid) . '/Deployments/' . \rawurlencode($sid) . ''; } /** * Fetch the DeploymentInstance * * @return DeploymentInstance Fetched DeploymentInstance * @throws TwilioException When an HTTP error occurs. */ public function fetch(): DeploymentInstance { $payload = $this->version->fetch('GET', $this->uri); return new DeploymentInstance( $this->version, $payload, $this->solution['fleetSid'], $this->solution['sid'] ); } /** * Delete the DeploymentInstance * * @return bool True if delete succeeds, false otherwise * @throws TwilioException When an HTTP error occurs. */ public function delete(): bool { return $this->version->delete('DELETE', $this->uri); } /** * Update the DeploymentInstance * * @param array|Options $options Optional Arguments * @return DeploymentInstance Updated DeploymentInstance * @throws TwilioException When an HTTP error occurs. */ public function update(array $options = []): DeploymentInstance { $options = new Values($options); $data = Values::of([ 'FriendlyName' => $options['friendlyName'], 'SyncServiceSid' => $options['syncServiceSid'], ]); $payload = $this->version->update('POST', $this->uri, [], $data); return new DeploymentInstance( $this->version, $payload, $this->solution['fleetSid'], $this->solution['sid'] ); } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString(): string { $context = []; foreach ($this->solution as $key => $value) { $context[] = "$key=$value"; } return '[Twilio.Preview.DeployedDevices.DeploymentContext ' . \implode(' ', $context) . ']'; } }
[-] DeviceOptions.php
[edit]
[-] KeyContext.php
[edit]
[-] DeploymentInstance.php
[edit]
[+]
..
[-] KeyInstance.php
[edit]
[-] KeyOptions.php
[edit]
[-] CertificateInstance.php
[edit]
[-] DeploymentList.php
[edit]
[-] CertificateOptions.php
[edit]
[-] DeploymentContext.php
[edit]
[-] DeviceContext.php
[edit]
[-] KeyPage.php
[edit]
[-] KeyList.php
[edit]
[-] CertificatePage.php
[edit]
[-] DeviceInstance.php
[edit]
[-] DeploymentOptions.php
[edit]
[-] DevicePage.php
[edit]
[-] CertificateList.php
[edit]
[-] DeviceList.php
[edit]
[-] DeploymentPage.php
[edit]
[-] CertificateContext.php
[edit]