Skip to main content

keyvaluemaps

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

Overview

Namekeyvaluemaps
TypeResource
Idgoogle.apigee.keyvaluemaps

Fields

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

Methods

NameAccessible byRequired ParamsDescription
organizations_apis_keyvaluemaps_createINSERTapisId, organizationsIdCreates a key value map in an API proxy.
organizations_environments_keyvaluemaps_createINSERTenvironmentsId, organizationsIdCreates a key value map in an environment.
organizations_keyvaluemaps_createINSERTorganizationsIdCreates a key value map in an organization.
organizations_apis_keyvaluemaps_deleteDELETEapisId, keyvaluemapsId, organizationsIdDeletes a key value map from an API proxy.
organizations_environments_keyvaluemaps_deleteDELETEenvironmentsId, keyvaluemapsId, organizationsIdDeletes a key value map from an environment.
organizations_keyvaluemaps_deleteDELETEkeyvaluemapsId, organizationsIdDeletes a key value map from an organization.

INSERT example

Use the following StackQL query and manifest file to create a new keyvaluemaps resource.

/*+ create */
INSERT INTO google.apigee.keyvaluemaps (
organizationsId,
encrypted,
name
)
SELECT
'{{ organizationsId }}',
{{ encrypted }},
'{{ name }}'
;

DELETE example

Deletes the specified keyvaluemaps resource.

/*+ delete */
DELETE FROM google.apigee.keyvaluemaps
WHERE keyvaluemapsId = '{{ keyvaluemapsId }}'
AND organizationsId = '{{ organizationsId }}';