attributes
Creates, updates, deletes, gets or lists a attributes
resource.
Overview
Name | attributes |
Type | Resource |
Id | google.apigee.attributes |
Fields
Name | Datatype | Description |
---|---|---|
name | string | API key of the attribute. |
value | string | Value of the attribute. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
organizations_apiproducts_attributes_get | SELECT | apiproductsId, attributesId, organizationsId | Gets the value of an API product attribute. |
organizations_apiproducts_attributes_list | SELECT | apiproductsId, organizationsId | Lists all API product attributes. |
organizations_developers_apps_attributes_get | SELECT | appsId, attributesId, developersId, organizationsId | Returns a developer app attribute. |
organizations_developers_apps_attributes_list | SELECT | appsId, developersId, organizationsId | Returns a list of all developer app attributes. |
organizations_developers_attributes_get | SELECT | attributesId, developersId, organizationsId | Returns the value of the specified developer attribute. |
organizations_developers_attributes_list | SELECT | developersId, organizationsId | Returns a list of all developer attributes. |
organizations_apiproducts_attributes_delete | DELETE | apiproductsId, attributesId, organizationsId | Deletes an API product attribute. |
organizations_developers_apps_attributes_delete | DELETE | appsId, attributesId, developersId, organizationsId | Deletes a developer app attribute. |
organizations_developers_attributes_delete | DELETE | attributesId, developersId, organizationsId | Deletes a developer attribute. |
SELECT
examples
Returns a list of all developer attributes.
SELECT
name,
value
FROM google.apigee.attributes
WHERE developersId = '{{ developersId }}'
AND organizationsId = '{{ organizationsId }}';
DELETE
example
Deletes the specified attributes
resource.
/*+ delete */
DELETE FROM google.apigee.attributes
WHERE attributesId = '{{ attributesId }}'
AND developersId = '{{ developersId }}'
AND organizationsId = '{{ organizationsId }}';