Skip to main content

keys_app_group_app_key

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

Overview

Namekeys_app_group_app_key
TypeResource
Idgoogle.apigee.keys_app_group_app_key

Fields

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

Methods

NameAccessible byRequired ParamsDescription
organizations_appgroups_apps_keys_update_app_group_app_keyUPDATEappgroupsId, appsId, keysId, organizationsIdAdds an API product to an AppGroupAppKey, enabling the app that holds the key to access the API resources bundled in the API product. In addition, you can add attributes to the AppGroupAppKey. 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_app_group_app_key resource.

/*+ update */
UPDATE google.apigee.keys_app_group_app_key
SET
apiProducts = '{{ apiProducts }}',
appGroupAppKey = '{{ appGroupAppKey }}',
action = '{{ action }}'
WHERE
appgroupsId = '{{ appgroupsId }}'
AND appsId = '{{ appsId }}'
AND keysId = '{{ keysId }}'
AND organizationsId = '{{ organizationsId }}';