Skip to content
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
30 changes: 15 additions & 15 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54294,7 +54294,7 @@ paths:
appKeyAuth: []
- AuthZ:
- security_monitoring_findings_read
summary: List AWS Scan Options
summary: List AWS scan options
tags:
- Agentless Scanning
post:
Expand Down Expand Up @@ -54327,7 +54327,7 @@ paths:
appKeyAuth: []
- AuthZ:
- org_management
summary: Post AWS Scan Options
summary: Create AWS scan options
tags:
- Agentless Scanning
x-codegen-request-body-name: body
Expand All @@ -54353,7 +54353,7 @@ paths:
appKeyAuth: []
- AuthZ:
- org_management
summary: Delete AWS Scan Options
summary: Delete AWS scan options
tags:
- Agentless Scanning
get:
Expand Down Expand Up @@ -54412,7 +54412,7 @@ paths:
appKeyAuth: []
- AuthZ:
- org_management
summary: Patch AWS Scan Options
summary: Update AWS scan options
tags:
- Agentless Scanning
x-codegen-request-body-name: body
Expand All @@ -54434,7 +54434,7 @@ paths:
appKeyAuth: []
- AuthZ:
- security_monitoring_findings_read
summary: List azure scan options
summary: List Azure scan options
tags:
- Agentless Scanning
post:
Expand All @@ -54460,7 +54460,7 @@ paths:
appKeyAuth: []
- AuthZ:
- org_management
summary: Create azure scan options
summary: Create Azure scan options
tags:
- Agentless Scanning
/api/v2/agentless_scanning/accounts/azure/{subscription_id}:
Expand All @@ -54485,7 +54485,7 @@ paths:
appKeyAuth: []
- AuthZ:
- org_management
summary: Delete azure scan options
summary: Delete Azure scan options
tags:
- Agentless Scanning
get:
Expand Down Expand Up @@ -54553,7 +54553,7 @@ paths:
appKeyAuth: []
- AuthZ:
- org_management
summary: Update azure scan options
summary: Update Azure scan options
tags:
- Agentless Scanning
/api/v2/agentless_scanning/accounts/gcp:
Expand All @@ -54576,7 +54576,7 @@ paths:
appKeyAuth: []
- AuthZ:
- security_monitoring_findings_read
summary: List GCP Scan Options
summary: List GCP scan options
tags:
- Agentless Scanning
post:
Expand Down Expand Up @@ -54609,7 +54609,7 @@ paths:
appKeyAuth: []
- AuthZ:
- org_management
summary: Post GCP Scan Options
summary: Create GCP scan options
tags:
- Agentless Scanning
x-codegen-request-body-name: body
Expand Down Expand Up @@ -54641,7 +54641,7 @@ paths:
appKeyAuth: []
- AuthZ:
- org_management
summary: Delete GCP Scan Options
summary: Delete GCP scan options
tags:
- Agentless Scanning
get:
Expand Down Expand Up @@ -54716,7 +54716,7 @@ paths:
appKeyAuth: []
- AuthZ:
- org_management
summary: Patch GCP Scan Options
summary: Update GCP scan options
tags:
- Agentless Scanning
x-codegen-request-body-name: body
Expand All @@ -54740,7 +54740,7 @@ paths:
appKeyAuth: []
- AuthZ:
- security_monitoring_findings_read
summary: Get AWS On Demand tasks
summary: List AWS on demand tasks
tags:
- Agentless Scanning
x-permission:
Expand Down Expand Up @@ -54777,7 +54777,7 @@ paths:
appKeyAuth: []
- AuthZ:
- org_management
summary: Post an AWS on demand task
summary: Create AWS on demand task
tags:
- Agentless Scanning
x-codegen-request-body-name: body
Expand Down Expand Up @@ -54811,7 +54811,7 @@ paths:
appKeyAuth: []
- AuthZ:
- security_monitoring_findings_read
summary: Get AWS On Demand task by id
summary: Get AWS on demand task
tags:
- Agentless Scanning
x-permission:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Post an AWS on demand task returns "AWS on demand task created successfully." response
// Create AWS on demand task returns "AWS on demand task created successfully." response

import com.datadog.api.client.ApiClient;
import com.datadog.api.client.ApiException;
Expand Down
2 changes: 1 addition & 1 deletion examples/v2/agentless-scanning/CreateAwsScanOptions.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Post AWS Scan Options returns "Agentless scan options enabled successfully." response
// Create AWS scan options returns "Agentless scan options enabled successfully." response

import com.datadog.api.client.ApiClient;
import com.datadog.api.client.ApiException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Create azure scan options returns "Created" response
// Create Azure scan options returns "Created" response

import com.datadog.api.client.ApiClient;
import com.datadog.api.client.ApiException;
Expand Down
2 changes: 1 addition & 1 deletion examples/v2/agentless-scanning/CreateGcpScanOptions.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Post GCP Scan Options returns "Agentless scan options enabled successfully." response
// Create GCP scan options returns "Agentless scan options enabled successfully." response

import com.datadog.api.client.ApiClient;
import com.datadog.api.client.ApiException;
Expand Down
2 changes: 1 addition & 1 deletion examples/v2/agentless-scanning/DeleteAwsScanOptions.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Delete AWS Scan Options returns "No Content" response
// Delete AWS scan options returns "No Content" response

import com.datadog.api.client.ApiClient;
import com.datadog.api.client.ApiException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Delete azure scan options returns "No Content" response
// Delete Azure scan options returns "No Content" response

import com.datadog.api.client.ApiClient;
import com.datadog.api.client.ApiException;
Expand Down
2 changes: 1 addition & 1 deletion examples/v2/agentless-scanning/DeleteGcpScanOptions.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Delete GCP Scan Options returns "No Content" response
// Delete GCP scan options returns "No Content" response

import com.datadog.api.client.ApiClient;
import com.datadog.api.client.ApiException;
Expand Down
2 changes: 1 addition & 1 deletion examples/v2/agentless-scanning/GetAwsOnDemandTask.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Get AWS On Demand task by id returns "OK." response
// Get AWS on demand task returns "OK." response

import com.datadog.api.client.ApiClient;
import com.datadog.api.client.ApiException;
Expand Down
2 changes: 1 addition & 1 deletion examples/v2/agentless-scanning/ListAwsOnDemandTasks.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Get AWS On Demand tasks returns "OK" response
// List AWS on demand tasks returns "OK" response

import com.datadog.api.client.ApiClient;
import com.datadog.api.client.ApiException;
Expand Down
2 changes: 1 addition & 1 deletion examples/v2/agentless-scanning/ListAwsScanOptions.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// List AWS Scan Options returns "OK" response
// List AWS scan options returns "OK" response

import com.datadog.api.client.ApiClient;
import com.datadog.api.client.ApiException;
Expand Down
2 changes: 1 addition & 1 deletion examples/v2/agentless-scanning/ListAzureScanOptions.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// List azure scan options returns "OK" response
// List Azure scan options returns "OK" response

import com.datadog.api.client.ApiClient;
import com.datadog.api.client.ApiException;
Expand Down
2 changes: 1 addition & 1 deletion examples/v2/agentless-scanning/ListGcpScanOptions.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// List GCP Scan Options returns "OK" response
// List GCP scan options returns "OK" response

import com.datadog.api.client.ApiClient;
import com.datadog.api.client.ApiException;
Expand Down
2 changes: 1 addition & 1 deletion examples/v2/agentless-scanning/UpdateAwsScanOptions.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Patch AWS Scan Options returns "No Content" response
// Update AWS scan options returns "No Content" response

import com.datadog.api.client.ApiClient;
import com.datadog.api.client.ApiException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Update azure scan options returns "OK" response
// Update Azure scan options returns "OK" response

import com.datadog.api.client.ApiClient;
import com.datadog.api.client.ApiException;
Expand Down
2 changes: 1 addition & 1 deletion examples/v2/agentless-scanning/UpdateGcpScanOptions.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Patch GCP Scan Options returns "OK" response
// Update GCP scan options returns "OK" response

import com.datadog.api.client.ApiClient;
import com.datadog.api.client.ApiException;
Expand Down
Loading
Loading