Skip to content

Commit f496ef7

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 5c44b04 of spec repo
1 parent a0c08c5 commit f496ef7

3 files changed

Lines changed: 33 additions & 10 deletions

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 27 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97591,19 +97591,19 @@ components:
9759197591
format: int64
9759297592
type: integer
9759397593
tcp_rcv_ooo_pack:
97594-
description: The number of TCP packets received out of order. This indicates network-level packet reordering, which can degrade TCP performance by triggering spurious retransmissions and reducing throughput.
97594+
description: The number of TCP packets received out of order. This indicates network-level packet reordering, which can degrade TCP performance by triggering spurious packet retries and reducing throughput.
9759597595
format: int64
9759697596
type: integer
9759797597
tcp_recovery_count:
97598-
description: The number of TCP fast recovery events. Fast recovery retransmits lost segments detected through duplicate ACKs or selective acknowledgment (SACK) without waiting for a retransmission timeout.
97598+
description: The number of TCP fast recovery events. Fast recovery retransmits lost segments detected through duplicate ACKs or selective acknowledgment (SACK) before a timeout occurs.
9759997599
format: int64
9760097600
type: integer
9760197601
tcp_refusals:
9760297602
description: The number of TCP connections that were refused by the server. Typically this indicates an attempt to connect to an IP/port that is not receiving connections, or a firewall/security misconfiguration.
9760397603
format: int64
9760497604
type: integer
9760597605
tcp_reord_seen:
97606-
description: The number of times reordering of sent packets was detected. Reordering detection adjusts the duplicate ACK threshold, preventing spurious retransmissions caused by out-of-order delivery.
97606+
description: The number of times reordering of sent packets was detected. Reordering detection adjusts the duplicate ACK threshold, preventing spurious packet retries caused by out-of-order delivery.
9760797607
format: int64
9760897608
type: integer
9760997609
tcp_resets:
@@ -97615,7 +97615,7 @@ components:
9761597615
format: int64
9761697616
type: integer
9761797617
tcp_rto_count:
97618-
description: The number of TCP retransmission timeouts (RTOs). An RTO occurs when an ACK is not received within the estimated round-trip time, forcing the sender to retransmit and halve its congestion window.
97618+
description: The number of TCP retry timeouts (RTOs). An RTO occurs when an ACK is not received within the estimated round-trip time, forcing the sender to resend the segment and halve its congestion window.
9761997619
format: int64
9762097620
type: integer
9762197621
tcp_timeouts:
@@ -114577,6 +114577,7 @@ components:
114577114577
monitors_downtime: Set downtimes to suppress alerts from any monitor in an organization. Mute and unmute monitors. The ability to write monitors is not required to set downtimes.
114578114578
monitors_read: View monitors.
114579114579
monitors_write: Edit, delete, and resolve individual monitors.
114580+
network_connections_read: Read Cloud Network Connections.
114580114581
org_connections_read: Read cross organization connections.
114581114582
org_connections_write: Create, edit, and delete cross organization connections.
114582114583
org_management: Edit org configurations, including authentication and certain security preferences such as configuring SAML, renaming an org, configuring allowed login methods, creating child orgs, subscribing & unsubscribing from apps in the marketplace, and enabling & disabling Remote Configuration for the entire organization.
@@ -163019,11 +163020,22 @@ paths:
163019163020
description: OK
163020163021
"400":
163021163022
$ref: "#/components/responses/BadRequestResponse"
163023+
"403":
163024+
$ref: "#/components/responses/ForbiddenResponse"
163022163025
"429":
163023163026
$ref: "#/components/responses/TooManyRequestsResponse"
163027+
security:
163028+
- apiKeyAuth: []
163029+
appKeyAuth: []
163030+
- AuthZ:
163031+
- network_connections_read
163024163032
summary: Get all aggregated connections
163025163033
tags:
163026163034
- Cloud Network Monitoring
163035+
"x-permission":
163036+
operator: OR
163037+
permissions:
163038+
- network_connections_read
163027163039
/api/v2/network/dns/aggregate:
163028163040
get:
163029163041
description: Get all aggregated DNS traffic.
@@ -163090,11 +163102,22 @@ paths:
163090163102
description: OK
163091163103
"400":
163092163104
$ref: "#/components/responses/BadRequestResponse"
163105+
"403":
163106+
$ref: "#/components/responses/ForbiddenResponse"
163093163107
"429":
163094163108
$ref: "#/components/responses/TooManyRequestsResponse"
163109+
security:
163110+
- apiKeyAuth: []
163111+
appKeyAuth: []
163112+
- AuthZ:
163113+
- network_connections_read
163095163114
summary: Get all aggregated DNS traffic
163096163115
tags:
163097163116
- Cloud Network Monitoring
163117+
"x-permission":
163118+
operator: OR
163119+
permissions:
163120+
- network_connections_read
163098163121
/api/v2/oauth2/.well-known/sites:
163099163122
get:
163100163123
description: Retrieve the list of public OAuth2 sites available for the current environment. This endpoint is used for OAuth2 discovery and returns sites where users can authenticate.

lib/datadog_api_client/v2/api/cloud_network_monitoring_api.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def get_aggregated_connections_with_http_info(opts = {})
8181
return_type = opts[:debug_return_type] || 'SingleAggregatedConnectionResponseArray'
8282

8383
# auth_names
84-
auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth]
84+
auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth, :AuthZ]
8585

8686
new_options = opts.merge(
8787
:operation => :get_aggregated_connections,
@@ -159,7 +159,7 @@ def get_aggregated_dns_with_http_info(opts = {})
159159
return_type = opts[:debug_return_type] || 'SingleAggregatedDnsResponseArray'
160160

161161
# auth_names
162-
auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth]
162+
auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth, :AuthZ]
163163

164164
new_options = opts.merge(
165165
:operation => :get_aggregated_dns,

lib/datadog_api_client/v2/models/single_aggregated_connection_response_data_attributes.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,16 +51,16 @@ class SingleAggregatedConnectionResponseDataAttributes
5151
# The number of TCP zero-window probes sent. These probes are sent when the receiver advertises a zero receive window, indicating it cannot accept more data.
5252
attr_accessor :tcp_probe0_count
5353

54-
# The number of TCP packets received out of order. This indicates network-level packet reordering, which can degrade TCP performance by triggering spurious retransmissions and reducing throughput.
54+
# The number of TCP packets received out of order. This indicates network-level packet reordering, which can degrade TCP performance by triggering spurious packet retries and reducing throughput.
5555
attr_accessor :tcp_rcv_ooo_pack
5656

57-
# The number of TCP fast recovery events. Fast recovery retransmits lost segments detected through duplicate ACKs or selective acknowledgment (SACK) without waiting for a retransmission timeout.
57+
# The number of TCP fast recovery events. Fast recovery retransmits lost segments detected through duplicate ACKs or selective acknowledgment (SACK) before a timeout occurs.
5858
attr_accessor :tcp_recovery_count
5959

6060
# The number of TCP connections that were refused by the server. Typically this indicates an attempt to connect to an IP/port that is not receiving connections, or a firewall/security misconfiguration.
6161
attr_accessor :tcp_refusals
6262

63-
# The number of times reordering of sent packets was detected. Reordering detection adjusts the duplicate ACK threshold, preventing spurious retransmissions caused by out-of-order delivery.
63+
# The number of times reordering of sent packets was detected. Reordering detection adjusts the duplicate ACK threshold, preventing spurious packet retries caused by out-of-order delivery.
6464
attr_accessor :tcp_reord_seen
6565

6666
# The number of TCP connections that were reset by the server.
@@ -69,7 +69,7 @@ class SingleAggregatedConnectionResponseDataAttributes
6969
# TCP Retransmits represent detected failures that are retransmitted to ensure delivery. Measured in count of retransmits from the client.
7070
attr_accessor :tcp_retransmits
7171

72-
# The number of TCP retransmission timeouts (RTOs). An RTO occurs when an ACK is not received within the estimated round-trip time, forcing the sender to retransmit and halve its congestion window.
72+
# The number of TCP retry timeouts (RTOs). An RTO occurs when an ACK is not received within the estimated round-trip time, forcing the sender to resend the segment and halve its congestion window.
7373
attr_accessor :tcp_rto_count
7474

7575
# The number of TCP connections that timed out from the perspective of the operating system. This can indicate general connectivity and latency issues.

0 commit comments

Comments
 (0)