-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Regenerate client from commit fc469c89 of spec repo
- Loading branch information
ci.datadog-api-spec
committed
Aug 16, 2024
1 parent
dc1acf7
commit 92d509c
Showing
8 changed files
with
70 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
packages/datadog-api-client-v1/models/SyntheticsLocalVariableParsingOptionsType.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/** | ||
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. | ||
* This product includes software developed at Datadog (https://www.datadoghq.com/). | ||
* Copyright 2020-Present Datadog, Inc. | ||
*/ | ||
|
||
import { UnparsedObject } from "../../datadog-api-client-common/util"; | ||
|
||
/** | ||
* Property of the Synthetic Test Response to extract into a local variable. | ||
*/ | ||
|
||
export type SyntheticsLocalVariableParsingOptionsType = | ||
| typeof GRPC_MESSAGE | ||
| typeof GRPC_METADATA | ||
| typeof HTTP_BODY | ||
| typeof HTTP_HEADER | ||
| typeof HTTP_STATUS_CODE | ||
| UnparsedObject; | ||
export const GRPC_MESSAGE = "grpc_message"; | ||
export const GRPC_METADATA = "grpc_metadata"; | ||
export const HTTP_BODY = "http_body"; | ||
export const HTTP_HEADER = "http_header"; | ||
export const HTTP_STATUS_CODE = "http_status_code"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters