Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove javascript browser variable type #2235

Merged
merged 1 commit into from
Feb 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2025-02-06 17:59:35.241509",
"spec_repo_commit": "b89b292b"
"regenerated": "2025-02-07 15:58:46.331587",
"spec_repo_commit": "1ff7c087"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-02-06 17:59:35.256609",
"spec_repo_commit": "b89b292b"
"regenerated": "2025-02-07 15:58:46.346813",
"spec_repo_commit": "1ff7c087"
}
}
}
2 changes: 0 additions & 2 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14988,15 +14988,13 @@ components:
- element
- email
- global
- javascript
- text
example: text
type: string
x-enum-varnames:
- ELEMENT
- EMAIL
- GLOBAL
- JAVASCRIPT
- TEXT
SyntheticsCIBatchMetadata:
description: Metadata for the Synthetic tests run.
Expand Down
2 changes: 1 addition & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ components:
schema:
type: string
ConfluentAccountID:
description: Confluent Account id.
description: Confluent Account ID.
in: path
name: account_id
required: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ class SyntheticsBrowserVariableType
ELEMENT = "element".freeze
EMAIL = "email".freeze
GLOBAL = "global".freeze
JAVASCRIPT = "javascript".freeze
TEXT = "text".freeze
end
end
16 changes: 8 additions & 8 deletions lib/datadog_api_client/v2/api/confluent_cloud_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def create_confluent_resource(account_id, body, opts = {})
#
# Create a Confluent resource for the account associated with the provided ID.
#
# @param account_id [String] Confluent Account id.
# @param account_id [String] Confluent Account ID.
# @param body [ConfluentResourceRequest] Confluent payload
# @param opts [Hash] the optional parameters
# @return [Array<(ConfluentResourceResponse, Integer, Hash)>] ConfluentResourceResponse data, response status code and response headers
Expand Down Expand Up @@ -174,7 +174,7 @@ def delete_confluent_account(account_id, opts = {})
#
# Delete a Confluent account with the provided account ID.
#
# @param account_id [String] Confluent Account id.
# @param account_id [String] Confluent Account ID.
# @param opts [Hash] the optional parameters
# @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
def delete_confluent_account_with_http_info(account_id, opts = {})
Expand Down Expand Up @@ -239,7 +239,7 @@ def delete_confluent_resource(account_id, resource_id, opts = {})
#
# Delete a Confluent resource with the provided resource id for the account associated with the provided account ID.
#
# @param account_id [String] Confluent Account id.
# @param account_id [String] Confluent Account ID.
# @param resource_id [String] Confluent Account Resource ID.
# @param opts [Hash] the optional parameters
# @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
Expand Down Expand Up @@ -309,7 +309,7 @@ def get_confluent_account(account_id, opts = {})
#
# Get the Confluent account with the provided account ID.
#
# @param account_id [String] Confluent Account id.
# @param account_id [String] Confluent Account ID.
# @param opts [Hash] the optional parameters
# @return [Array<(ConfluentAccountResponse, Integer, Hash)>] ConfluentAccountResponse data, response status code and response headers
def get_confluent_account_with_http_info(account_id, opts = {})
Expand Down Expand Up @@ -374,7 +374,7 @@ def get_confluent_resource(account_id, resource_id, opts = {})
#
# Get a Confluent resource with the provided resource id for the account associated with the provided account ID.
#
# @param account_id [String] Confluent Account id.
# @param account_id [String] Confluent Account ID.
# @param resource_id [String] Confluent Account Resource ID.
# @param opts [Hash] the optional parameters
# @return [Array<(ConfluentResourceResponse, Integer, Hash)>] ConfluentResourceResponse data, response status code and response headers
Expand Down Expand Up @@ -504,7 +504,7 @@ def list_confluent_resource(account_id, opts = {})
#
# Get a Confluent resource for the account associated with the provided ID.
#
# @param account_id [String] Confluent Account id.
# @param account_id [String] Confluent Account ID.
# @param opts [Hash] the optional parameters
# @return [Array<(ConfluentResourcesResponse, Integer, Hash)>] ConfluentResourcesResponse data, response status code and response headers
def list_confluent_resource_with_http_info(account_id, opts = {})
Expand Down Expand Up @@ -569,7 +569,7 @@ def update_confluent_account(account_id, body, opts = {})
#
# Update the Confluent account with the provided account ID.
#
# @param account_id [String] Confluent Account id.
# @param account_id [String] Confluent Account ID.
# @param body [ConfluentAccountUpdateRequest] Confluent payload
# @param opts [Hash] the optional parameters
# @return [Array<(ConfluentAccountResponse, Integer, Hash)>] ConfluentAccountResponse data, response status code and response headers
Expand Down Expand Up @@ -641,7 +641,7 @@ def update_confluent_resource(account_id, resource_id, body, opts = {})
#
# Update a Confluent resource with the provided resource id for the account associated with the provided account ID.
#
# @param account_id [String] Confluent Account id.
# @param account_id [String] Confluent Account ID.
# @param resource_id [String] Confluent Account Resource ID.
# @param body [ConfluentResourceRequest] Confluent payload
# @param opts [Hash] the optional parameters
Expand Down
Loading