'tenantId', 'security_group_rule' => 'securityGroupRule', 'security_group' => 'securityGroup', 'rbac_policy' => 'rbacPolicy', ]; /** * {@inheritdoc} */ public function retrieve() { $response = $this->execute($this->api->getQuota(), ['tenantId' => (string) $this->tenantId]); $this->populateFromResponse($response); } /** * {@inheritdoc} */ public function update() { $response = $this->executeWithState($this->api->putQuota()); $this->populateFromResponse($response); } /** * {@inheritdoc} */ public function delete() { $this->executeWithState($this->api->deleteQuota()); } }