Skip to content

Commit d8c2ff4

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit e6483e1 of spec repo
1 parent 724b6d5 commit d8c2ff4

2 files changed

Lines changed: 25 additions & 2 deletions

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114750,6 +114750,7 @@ components:
114750114750
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.
114751114751
monitors_read: View monitors.
114752114752
monitors_write: Edit, delete, and resolve individual monitors.
114753+
network_connections_read: Read cloud network connections.
114753114754
org_connections_read: Read cross organization connections.
114754114755
org_connections_write: Create, edit, and delete cross organization connections.
114755114756
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.
@@ -163193,11 +163194,22 @@ paths:
163193163194
description: OK
163194163195
"400":
163195163196
$ref: "#/components/responses/BadRequestResponse"
163197+
"403":
163198+
$ref: "#/components/responses/ForbiddenResponse"
163196163199
"429":
163197163200
$ref: "#/components/responses/TooManyRequestsResponse"
163201+
security:
163202+
- apiKeyAuth: []
163203+
appKeyAuth: []
163204+
- AuthZ:
163205+
- network_connections_read
163198163206
summary: Get all aggregated connections
163199163207
tags:
163200163208
- Cloud Network Monitoring
163209+
"x-permission":
163210+
operator: OR
163211+
permissions:
163212+
- network_connections_read
163201163213
/api/v2/network/dns/aggregate:
163202163214
get:
163203163215
description: Get all aggregated DNS traffic.
@@ -163264,11 +163276,22 @@ paths:
163264163276
description: OK
163265163277
"400":
163266163278
$ref: "#/components/responses/BadRequestResponse"
163279+
"403":
163280+
$ref: "#/components/responses/ForbiddenResponse"
163267163281
"429":
163268163282
$ref: "#/components/responses/TooManyRequestsResponse"
163283+
security:
163284+
- apiKeyAuth: []
163285+
appKeyAuth: []
163286+
- AuthZ:
163287+
- network_connections_read
163269163288
summary: Get all aggregated DNS traffic
163270163289
tags:
163271163290
- Cloud Network Monitoring
163291+
"x-permission":
163292+
operator: OR
163293+
permissions:
163294+
- network_connections_read
163272163295
/api/v2/oauth2/.well-known/sites:
163273163296
get:
163274163297
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,

0 commit comments

Comments
 (0)