Skip to main content

keys_developer_app_key

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

Overview

Namekeys_developer_app_key
TypeResource
Idgoogle.apigee.keys_developer_app_key

Fields

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

Methods

NameAccessible byRequired ParamsDescription
organizations_developers_apps_keys_update_developer_app_keyUPDATEappsId, developersId, keysId, organizationsIdAdds an API product to a developer app key, enabling the app that holds the key to access the API resources bundled in the API product. In addition, you can add attributes to a developer app key. This API replaces the existing attributes with those specified in the request. Include or exclude any existing attributes that you want to retain or delete, respectively. You can use the same key to access all API products associated with the app.

UPDATE example

Updates a keys_developer_app_key resource.

/*+ update */
UPDATE google.apigee.keys_developer_app_key
SET
consumerKey = '{{ consumerKey }}',
apiProducts = '{{ apiProducts }}',
consumerSecret = '{{ consumerSecret }}',
issuedAt = '{{ issuedAt }}',
scopes = '{{ scopes }}',
status = '{{ status }}',
expiresAt = '{{ expiresAt }}',
attributes = '{{ attributes }}',
expiresInSeconds = '{{ expiresInSeconds }}'
WHERE
appsId = '{{ appsId }}'
AND developersId = '{{ developersId }}'
AND keysId = '{{ keysId }}'
AND organizationsId = '{{ organizationsId }}';