Skip to main content

organizations_api_keys

Creates, updates, deletes, gets or lists an organizations_api_keys resource.

Overview

Nameorganizations_api_keys
TypeResource
Idazure_isv.elastic.organizations_api_keys

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
propertiesobject

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionIdFetch User API Key from internal database, if it was generated and stored while creating the Elasticsearch Organization.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Fetch User API Key from internal database, if it was generated and stored while creating the Elasticsearch Organization.

SELECT
properties
FROM azure_isv.elastic.organizations_api_keys
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;