Skip to content

Commit 5218d33

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 47a7f4a of spec repo
1 parent a0c08c5 commit 5218d33

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
@@ -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,

0 commit comments

Comments
 (0)