Skip to main content

attributes_developer_attribute

Creates, updates, deletes, gets or lists a attributes_developer_attribute resource.

Overview

Nameattributes_developer_attribute
TypeResource
Idgoogle.apigee.attributes_developer_attribute

Fields

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

NameAccessible byRequired ParamsDescription
organizations_developers_attributes_update_developer_attributeUPDATEattributesId, developersId, organizationsIdUpdates a developer attribute. Note: OAuth access tokens and Key Management Service (KMS) entities (apps, developers, and API products) are cached for 180 seconds (default). Any custom attributes associated with these entities are cached for at least 180 seconds after the entity is accessed at runtime. Therefore, an ExpiresIn element on the OAuthV2 policy won't be able to expire an access token in less than 180 seconds.

UPDATE example

Updates a attributes_developer_attribute resource.

/*+ update */
UPDATE google.apigee.attributes_developer_attribute
SET
name = '{{ name }}',
value = '{{ value }}'
WHERE
attributesId = '{{ attributesId }}'
AND developersId = '{{ developersId }}'
AND organizationsId = '{{ organizationsId }}';