Sha256: 07cc2050aa935899ece98b9637617cd6011bda761a3df4749986c101d1f11895
Contents?: true
Size: 838 Bytes
Versions: 20
Compression:
Stored size: 838 Bytes
Contents
# Create an application key with scopes for this service account returns "Created" response require "datadog_api_client" api_instance = DatadogAPIClient::V2::ServiceAccountsAPI.new # there is a valid "service_account_user" in the system SERVICE_ACCOUNT_USER_DATA_ID = ENV["SERVICE_ACCOUNT_USER_DATA_ID"] body = DatadogAPIClient::V2::ApplicationKeyCreateRequest.new({ data: DatadogAPIClient::V2::ApplicationKeyCreateData.new({ attributes: DatadogAPIClient::V2::ApplicationKeyCreateAttributes.new({ name: "Example-Service-Account", scopes: [ "dashboards_read", "dashboards_write", "dashboards_public_share", ], }), type: DatadogAPIClient::V2::ApplicationKeysType::APPLICATION_KEYS, }), }) p api_instance.create_service_account_application_key(SERVICE_ACCOUNT_USER_DATA_ID, body)
Version data entries
20 entries across 20 versions & 1 rubygems