'tenantId', 'fixed_ips' => 'fixedIps', 'floating_ips' => 'floatingIps', 'injected_file_content_bytes' => 'injectedFileContentBytes', 'injected_file_path_bytes' => 'injectedFilePathBytes', 'injected_files' => 'injectedFiles', 'key_pairs' => 'keyPairs', 'metadata_items' => 'metadataItems', 'security_group_rules' => 'securityGroupRules', 'security_groups' => 'securityGroups', 'server_group_members' => 'serverGroupMembers', 'server_groups' => 'serverGroups', ]; /** * {@inheritdoc} */ public function retrieve() { $response = $this->execute($this->api->getQuotaSet(), ['tenantId' => (string) $this->tenantId]); $this->populateFromResponse($response); } /** * {@inheritdoc} */ public function delete() { $response = $this->executeWithState($this->api->deleteQuotaSet()); $this->populateFromResponse($response); } /** * {@inheritdoc} */ public function update() { $response = $this->executeWithState($this->api->putQuotaSet()); $this->populateFromResponse($response); } }