keyvaluemaps
Creates, updates, deletes, gets or lists a keyvaluemaps
resource.
Overview
Name | keyvaluemaps |
Type | Resource |
Id | google.apigee.keyvaluemaps |
Fields
SELECT
not supported for this resource, use SHOW METHODS
to view available operations for the resource.
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
organizations_apis_keyvaluemaps_create | INSERT | apisId, organizationsId | Creates a key value map in an API proxy. |
organizations_environments_keyvaluemaps_create | INSERT | environmentsId, organizationsId | Creates a key value map in an environment. |
organizations_keyvaluemaps_create | INSERT | organizationsId | Creates a key value map in an organization. |
organizations_apis_keyvaluemaps_delete | DELETE | apisId, keyvaluemapsId, organizationsId | Deletes a key value map from an API proxy. |
organizations_environments_keyvaluemaps_delete | DELETE | environmentsId, keyvaluemapsId, organizationsId | Deletes a key value map from an environment. |
organizations_keyvaluemaps_delete | DELETE | keyvaluemapsId, organizationsId | Deletes a key value map from an organization. |
INSERT
example
Use the following StackQL query and manifest file to create a new keyvaluemaps
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO google.apigee.keyvaluemaps (
organizationsId,
encrypted,
name
)
SELECT
'{{ organizationsId }}',
{{ encrypted }},
'{{ name }}'
;
- name: your_resource_model_name
props:
- name: encrypted
value: boolean
- name: name
value: string
DELETE
example
Deletes the specified keyvaluemaps
resource.
/*+ delete */
DELETE FROM google.apigee.keyvaluemaps
WHERE keyvaluemapsId = '{{ keyvaluemapsId }}'
AND organizationsId = '{{ organizationsId }}';