attributes_developer_app_attribute
Creates, updates, deletes, gets or lists a attributes_developer_app_attribute
resource.
Overview
Name | attributes_developer_app_attribute |
Type | Resource |
Id | google.apigee.attributes_developer_app_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_apps_attributes_update_developer_app_attribute | UPDATE | appsId, attributesId, developersId, organizationsId | Updates a developer app attribute. Note: OAuth access tokens and Key Management Service (KMS) entities (apps, developers, and API products) are cached for 180 seconds (current 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_app_attribute
resource.
/*+ update */
UPDATE google.apigee.attributes_developer_app_attribute
SET
name = '{{ name }}',
value = '{{ value }}'
WHERE
appsId = '{{ appsId }}'
AND attributesId = '{{ attributesId }}'
AND developersId = '{{ developersId }}'
AND organizationsId = '{{ organizationsId }}';