Sha256: 9e6a77e066267821e0eb1ba7f3b3e10726747bd4c593ec688fa989f3f2fcb050
Contents?: true
Size: 816 Bytes
Versions: 39
Compression:
Stored size: 816 Bytes
Contents
# Edit an application key owned by current user returns "OK" response require "datadog_api_client" api_instance = DatadogAPIClient::V2::KeyManagementAPI.new # there is a valid "application_key" in the system APPLICATION_KEY_DATA_ATTRIBUTES_NAME = ENV["APPLICATION_KEY_DATA_ATTRIBUTES_NAME"] APPLICATION_KEY_DATA_ID = ENV["APPLICATION_KEY_DATA_ID"] body = DatadogAPIClient::V2::ApplicationKeyUpdateRequest.new({ data: DatadogAPIClient::V2::ApplicationKeyUpdateData.new({ id: APPLICATION_KEY_DATA_ID, type: DatadogAPIClient::V2::ApplicationKeysType::APPLICATION_KEYS, attributes: DatadogAPIClient::V2::ApplicationKeyUpdateAttributes.new({ name: "Application Key for managing dashboards-updated", }), }), }) p api_instance.update_current_user_application_key(APPLICATION_KEY_DATA_ID, body)
Version data entries
39 entries across 39 versions & 1 rubygems