Sha256: 63f18e46b142100ad4ae27dc180f9bb102cfdb8d68164590d8d63a527109f358
Contents?: true
Size: 918 Bytes
Versions: 6
Compression:
Stored size: 918 Bytes
Contents
# Create a global variable from test returns "OK" response require "datadog_api_client" api_instance = DatadogAPIClient::V1::SyntheticsAPI.new # there is a valid "synthetics_api_test_multi_step" in the system SYNTHETICS_API_TEST_MULTI_STEP_PUBLIC_ID = ENV["SYNTHETICS_API_TEST_MULTI_STEP_PUBLIC_ID"] body = DatadogAPIClient::V1::SyntheticsGlobalVariableRequest.new({ description: "", name: "GLOBAL_VARIABLE_FROM_TEST_PAYLOAD_EXAMPLESYNTHETIC", tags: [], value: DatadogAPIClient::V1::SyntheticsGlobalVariableValue.new({ secure: false, value: "", }), parse_test_public_id: SYNTHETICS_API_TEST_MULTI_STEP_PUBLIC_ID, parse_test_options: DatadogAPIClient::V1::SyntheticsGlobalVariableParseTestOptions.new({ type: DatadogAPIClient::V1::SyntheticsGlobalVariableParseTestOptionsType::LOCAL_VARIABLE, local_variable_name: "EXTRACTED_VALUE", }), }) p api_instance.create_global_variable(body)
Version data entries
6 entries across 6 versions & 1 rubygems