entries
Creates, updates, deletes, gets or lists a entries
resource.
Overview
Name | entries |
Type | Resource |
Id | google.apigee.entries |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Resource URI that can be used to identify the scope of the key value map entries. |
value | string | Required. Data or payload that is being retrieved and associated with the unique key. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
organizations_apis_keyvaluemaps_entries_get | SELECT | apisId, entriesId, keyvaluemapsId, organizationsId | Get the key value entry value for a key value map scoped to an organization, environment, or API proxy. Note: Supported for Apigee hybrid 1.8.x and higher. |
organizations_apis_keyvaluemaps_entries_list | SELECT | apisId, keyvaluemapsId, organizationsId | Lists key value entries for key values maps scoped to an organization, environment, or API proxy. Note: Supported for Apigee hybrid 1.8.x and higher. |
organizations_environments_keyvaluemaps_entries_get | SELECT | entriesId, environmentsId, keyvaluemapsId, organizationsId | Get the key value entry value for a key value map scoped to an organization, environment, or API proxy. Note: Supported for Apigee hybrid 1.8.x and higher. |
organizations_environments_keyvaluemaps_entries_list | SELECT | environmentsId, keyvaluemapsId, organizationsId | Lists key value entries for key values maps scoped to an organization, environment, or API proxy. Note: Supported for Apigee hybrid 1.8.x and higher. |
organizations_keyvaluemaps_entries_get | SELECT | entriesId, keyvaluemapsId, organizationsId | Get the key value entry value for a key value map scoped to an organization, environment, or API proxy. Note: Supported for Apigee hybrid 1.8.x and higher. |
organizations_keyvaluemaps_entries_list | SELECT | keyvaluemapsId, organizationsId | Lists key value entries for key values maps scoped to an organization, environment, or API proxy. Note: Supported for Apigee hybrid 1.8.x and higher. |
organizations_apis_keyvaluemaps_entries_create | INSERT | apisId, keyvaluemapsId, organizationsId | Creates key value entries in a key value map scoped to an organization, environment, or API proxy. Note: Supported for Apigee hybrid 1.8.x and higher. |
organizations_environments_keyvaluemaps_entries_create | INSERT | environmentsId, keyvaluemapsId, organizationsId | Creates key value entries in a key value map scoped to an organization, environment, or API proxy. Note: Supported for Apigee hybrid 1.8.x and higher. |
organizations_keyvaluemaps_entries_create | INSERT | keyvaluemapsId, organizationsId | Creates key value entries in a key value map scoped to an organization, environment, or API proxy. Note: Supported for Apigee hybrid 1.8.x and higher. |
organizations_apis_keyvaluemaps_entries_delete | DELETE | apisId, entriesId, keyvaluemapsId, organizationsId | Deletes a key value entry from a key value map scoped to an organization, environment, or API proxy. Notes: After you delete the key value entry, the policy consuming the entry will continue to function with its cached values for a few minutes. This is expected behavior. Supported for Apigee hybrid 1.8.x and higher. |
organizations_environments_keyvaluemaps_entries_delete | DELETE | entriesId, environmentsId, keyvaluemapsId, organizationsId | Deletes a key value entry from a key value map scoped to an organization, environment, or API proxy. Notes: After you delete the key value entry, the policy consuming the entry will continue to function with its cached values for a few minutes. This is expected behavior. Supported for Apigee hybrid 1.8.x and higher. |
organizations_keyvaluemaps_entries_delete | DELETE | entriesId, keyvaluemapsId, organizationsId | Deletes a key value entry from a key value map scoped to an organization, environment, or API proxy. Notes: After you delete the key value entry, the policy consuming the entry will continue to function with its cached values for a few minutes. This is expected behavior. Supported for Apigee hybrid 1.8.x and higher. |
organizations_apis_keyvaluemaps_entries_update | REPLACE | apisId, entriesId, keyvaluemapsId, organizationsId | Update key value entry scoped to an organization, environment, or API proxy for an existing key. |
organizations_environments_keyvaluemaps_entries_update | REPLACE | entriesId, environmentsId, keyvaluemapsId, organizationsId | Update key value entry scoped to an organization, environment, or API proxy for an existing key. |
organizations_keyvaluemaps_entries_update | REPLACE | entriesId, keyvaluemapsId, organizationsId | Update key value entry scoped to an organization, environment, or API proxy for an existing key. |
SELECT
examples
Lists key value entries for key values maps scoped to an organization, environment, or API proxy. Note: Supported for Apigee hybrid 1.8.x and higher.
SELECT
name,
value
FROM google.apigee.entries
WHERE keyvaluemapsId = '{{ keyvaluemapsId }}'
AND organizationsId = '{{ organizationsId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new entries
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO google.apigee.entries (
keyvaluemapsId,
organizationsId,
name,
value
)
SELECT
'{{ keyvaluemapsId }}',
'{{ organizationsId }}',
'{{ name }}',
'{{ value }}'
;
- name: your_resource_model_name
props:
- name: name
value: string
- name: value
value: string
REPLACE
example
Replaces all fields in the specified entries
resource.
/*+ update */
REPLACE google.apigee.entries
SET
name = '{{ name }}',
value = '{{ value }}'
WHERE
entriesId = '{{ entriesId }}'
AND keyvaluemapsId = '{{ keyvaluemapsId }}'
AND organizationsId = '{{ organizationsId }}';
DELETE
example
Deletes the specified entries
resource.
/*+ delete */
DELETE FROM google.apigee.entries
WHERE entriesId = '{{ entriesId }}'
AND keyvaluemapsId = '{{ keyvaluemapsId }}'
AND organizationsId = '{{ organizationsId }}';