attributes_developer_attribute
Creates, updates, deletes, gets or lists a attributes_developer_attribute
resource.
Overview
Name | attributes_developer_attribute |
Type | Resource |
Id | google.apigee.attributes_developer_attribute |
Fields
SELECT
not supported for this resource, use SHOW METHODS
to view available operations for the resource.
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
organizations_developers_attributes_update_developer_attribute | UPDATE | attributesId, developersId, organizationsId | Updates 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 }}';