attributes_api_product_attribute
Creates, updates, deletes, gets or lists a attributes_api_product_attribute
resource.
Overview
Name | attributes_api_product_attribute |
Type | Resource |
Id | google.apigee.attributes_api_product_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_apiproducts_attributes_update_api_product_attribute | UPDATE | apiproductsId, attributesId, organizationsId | Updates the value of an API product 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 entities also get cached for at least 180 seconds after entity is accessed during runtime. In this case, the 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_api_product_attribute
resource.
/*+ update */
UPDATE google.apigee.attributes_api_product_attribute
SET
name = '{{ name }}',
value = '{{ value }}'
WHERE
apiproductsId = '{{ apiproductsId }}'
AND attributesId = '{{ attributesId }}'
AND organizationsId = '{{ organizationsId }}';