Skip to main content

entries

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

Overview

Nameentries
TypeResource
Idgoogle.apigee.entries

Fields

NameDatatypeDescription
namestringResource URI that can be used to identify the scope of the key value map entries.
valuestringRequired. Data or payload that is being retrieved and associated with the unique key.

Methods

NameAccessible byRequired ParamsDescription
organizations_apis_keyvaluemaps_entries_getSELECTapisId, entriesId, keyvaluemapsId, organizationsIdGet 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_listSELECTapisId, keyvaluemapsId, organizationsIdLists 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_getSELECTentriesId, environmentsId, keyvaluemapsId, organizationsIdGet 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_listSELECTenvironmentsId, keyvaluemapsId, organizationsIdLists 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_getSELECTentriesId, keyvaluemapsId, organizationsIdGet 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_listSELECTkeyvaluemapsId, organizationsIdLists 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_createINSERTapisId, keyvaluemapsId, organizationsIdCreates 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_createINSERTenvironmentsId, keyvaluemapsId, organizationsIdCreates 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_createINSERTkeyvaluemapsId, organizationsIdCreates 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_deleteDELETEapisId, entriesId, keyvaluemapsId, organizationsIdDeletes 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_deleteDELETEentriesId, environmentsId, keyvaluemapsId, organizationsIdDeletes 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_deleteDELETEentriesId, keyvaluemapsId, organizationsIdDeletes 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_updateREPLACEapisId, entriesId, keyvaluemapsId, organizationsIdUpdate key value entry scoped to an organization, environment, or API proxy for an existing key.
organizations_environments_keyvaluemaps_entries_updateREPLACEentriesId, environmentsId, keyvaluemapsId, organizationsIdUpdate key value entry scoped to an organization, environment, or API proxy for an existing key.
organizations_keyvaluemaps_entries_updateREPLACEentriesId, keyvaluemapsId, organizationsIdUpdate 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.

/*+ create */
INSERT INTO google.apigee.entries (
keyvaluemapsId,
organizationsId,
name,
value
)
SELECT
'{{ keyvaluemapsId }}',
'{{ organizationsId }}',
'{{ name }}',
'{{ value }}'
;

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 }}';