Skip to content
Open
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
39 changes: 5 additions & 34 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38720,10 +38720,6 @@ components:
$ref: "#/components/schemas/FleetConfigurationLayer"
application_monitoring_configuration:
$ref: "#/components/schemas/FleetConfigurationLayer"
datadog_agent_key:
description: The unique agent key identifier.
example: "a1b2c3d4e5f67890a1b2c3d4e5f67890"
type: string
otel_collectors_configuration:
description: >-
Configuration for OpenTelemetry collectors associated with the agent. Present only when the agent has associated OpenTelemetry collectors.
Expand All @@ -38734,9 +38730,6 @@ components:
$ref: "#/components/schemas/FleetConfigurationLayer"
system_probe_configuration:
$ref: "#/components/schemas/FleetConfigurationLayer"
version:
description: The configuration version.
type: string
type: object
FleetAgentDetailV2:
description: Detailed information about a specific Datadog Agent.
Expand Down Expand Up @@ -38896,9 +38889,6 @@ components:
description: An OpenTelemetry collector distribution.
type: string
type: array
otel_collector_version:
description: OpenTelemetry collector version (if applicable).
type: string
otel_collector_versions:
description: List of OpenTelemetry collector versions (if applicable).
items:
Expand Down Expand Up @@ -39082,10 +39072,6 @@ components:
description: An OpenTelemetry collector distribution.
type: string
type: array
otel_collector_version:
description: The primary OpenTelemetry collector version, if applicable.
example: "0.91.0"
type: string
otel_collector_versions:
description: All OpenTelemetry collector versions associated with the agent.
items:
Expand Down Expand Up @@ -39257,9 +39243,6 @@ components:
description: Name of the configuration file.
example: "postgres.yaml"
type: string
fleet_hash:
description: Hash of the configuration file as applied by fleet management.
type: string
type: object
FleetConfigurationLayer:
description: Configuration information organized by layers.
Expand All @@ -39273,9 +39256,6 @@ components:
file_configuration:
description: Configuration from files.
type: string
parsed_configuration:
description: Parsed configuration output.
type: string
remote_configuration:
description: Remote configuration settings.
type: string
Expand Down Expand Up @@ -39418,7 +39398,7 @@ components:
example: "env:prod AND service:web"
type: string
total_hosts:
description: Total number of hosts targeted by the dry run.
description: Total number of hosts targeted by this deployment.
example: 42
format: int64
type: integer
Expand Down Expand Up @@ -40042,25 +40022,16 @@ components:
FleetIntegrationsByStatusV2:
description: Integrations organized by their status.
properties:
cluster_name:
description: The Kubernetes cluster name, if the agent runs in a cluster.
type: string
configuration_files:
description: Configuration files for integrations.
items:
$ref: "#/components/schemas/FleetConfigurationFileV2"
type: array
datadog_agent_key:
description: The unique agent key identifier.
type: string
error_integrations:
description: Integrations with errors.
items:
$ref: "#/components/schemas/FleetIntegrationDetailsV2"
type: array
k8s_cluster_key:
description: The Kubernetes cluster key, if the agent runs in a cluster.
type: string
missing_integrations:
description: Detected but not configured integrations.
items:
Expand Down Expand Up @@ -40434,9 +40405,9 @@ components:
type: integer
start_maintenance_window:
description: |-
Start time of the maintenance window in 24-hour clock format (HH:MM).
Start time of the maintenance window in 24-hour clock format (HHMM).
Deployments are triggered at this time on the specified days.
example: "02:00"
example: "0200"
type: string
timezone:
description: Timezone in IANA Time Zone Database format.
Expand Down Expand Up @@ -143258,7 +143229,7 @@ paths:
- Wed
interval: 1
maintenance_window_duration: 120
start_maintenance_window: "02:00"
start_maintenance_window: "0200"
timezone: America/New_York
status: active
updated_at: "2023-11-14T22:13:19Z"
Expand Down Expand Up @@ -143324,7 +143295,7 @@ paths:
- Wed
interval: 1
maintenance_window_duration: 120
start_maintenance_window: "02:00"
start_maintenance_window: "0200"
timezone: America/New_York
status: active
updated_at: "2023-11-14T22:13:19Z"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,9 @@
@JsonPropertyOrder({
FleetAgentConfigurationFilesV2.JSON_PROPERTY_AGENT_CONFIGURATION,
FleetAgentConfigurationFilesV2.JSON_PROPERTY_APPLICATION_MONITORING_CONFIGURATION,
FleetAgentConfigurationFilesV2.JSON_PROPERTY_DATADOG_AGENT_KEY,
FleetAgentConfigurationFilesV2.JSON_PROPERTY_OTEL_COLLECTORS_CONFIGURATION,
FleetAgentConfigurationFilesV2.JSON_PROPERTY_SECURITY_AGENT_CONFIGURATION,
FleetAgentConfigurationFilesV2.JSON_PROPERTY_SYSTEM_PROBE_CONFIGURATION,
FleetAgentConfigurationFilesV2.JSON_PROPERTY_VERSION
FleetAgentConfigurationFilesV2.JSON_PROPERTY_SYSTEM_PROBE_CONFIGURATION
})
@jakarta.annotation.Generated(
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
Expand All @@ -39,9 +37,6 @@ public class FleetAgentConfigurationFilesV2 {
"application_monitoring_configuration";
private FleetConfigurationLayer applicationMonitoringConfiguration;

public static final String JSON_PROPERTY_DATADOG_AGENT_KEY = "datadog_agent_key";
private String datadogAgentKey;

public static final String JSON_PROPERTY_OTEL_COLLECTORS_CONFIGURATION =
"otel_collectors_configuration";
private List<FleetOtelCollectorConfigurationV2> otelCollectorsConfiguration = null;
Expand All @@ -54,9 +49,6 @@ public class FleetAgentConfigurationFilesV2 {
"system_probe_configuration";
private FleetConfigurationLayer systemProbeConfiguration;

public static final String JSON_PROPERTY_VERSION = "version";
private String version;

public FleetAgentConfigurationFilesV2 agentConfiguration(
FleetConfigurationLayer agentConfiguration) {
this.agentConfiguration = agentConfiguration;
Expand Down Expand Up @@ -110,27 +102,6 @@ public void setApplicationMonitoringConfiguration(
}
}

public FleetAgentConfigurationFilesV2 datadogAgentKey(String datadogAgentKey) {
this.datadogAgentKey = datadogAgentKey;
return this;
}

/**
* The unique agent key identifier.
*
* @return datadogAgentKey
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DATADOG_AGENT_KEY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getDatadogAgentKey() {
return datadogAgentKey;
}

public void setDatadogAgentKey(String datadogAgentKey) {
this.datadogAgentKey = datadogAgentKey;
}

public FleetAgentConfigurationFilesV2 otelCollectorsConfiguration(
List<FleetOtelCollectorConfigurationV2> otelCollectorsConfiguration) {
this.otelCollectorsConfiguration = otelCollectorsConfiguration;
Expand Down Expand Up @@ -227,27 +198,6 @@ public void setSystemProbeConfiguration(FleetConfigurationLayer systemProbeConfi
}
}

public FleetAgentConfigurationFilesV2 version(String version) {
this.version = version;
return this;
}

/**
* The configuration version.
*
* @return version
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getVersion() {
return version;
}

public void setVersion(String version) {
this.version = version;
}

/**
* A container for additional, undeclared properties. This is a holder for any undeclared
* properties as specified with the 'additionalProperties' keyword in the OAS document.
Expand Down Expand Up @@ -310,7 +260,6 @@ public boolean equals(Object o) {
&& Objects.equals(
this.applicationMonitoringConfiguration,
fleetAgentConfigurationFilesV2.applicationMonitoringConfiguration)
&& Objects.equals(this.datadogAgentKey, fleetAgentConfigurationFilesV2.datadogAgentKey)
&& Objects.equals(
this.otelCollectorsConfiguration,
fleetAgentConfigurationFilesV2.otelCollectorsConfiguration)
Expand All @@ -319,7 +268,6 @@ public boolean equals(Object o) {
fleetAgentConfigurationFilesV2.securityAgentConfiguration)
&& Objects.equals(
this.systemProbeConfiguration, fleetAgentConfigurationFilesV2.systemProbeConfiguration)
&& Objects.equals(this.version, fleetAgentConfigurationFilesV2.version)
&& Objects.equals(
this.additionalProperties, fleetAgentConfigurationFilesV2.additionalProperties);
}
Expand All @@ -329,11 +277,9 @@ public int hashCode() {
return Objects.hash(
agentConfiguration,
applicationMonitoringConfiguration,
datadogAgentKey,
otelCollectorsConfiguration,
securityAgentConfiguration,
systemProbeConfiguration,
version,
additionalProperties);
}

Expand All @@ -345,7 +291,6 @@ public String toString() {
sb.append(" applicationMonitoringConfiguration: ")
.append(toIndentedString(applicationMonitoringConfiguration))
.append("\n");
sb.append(" datadogAgentKey: ").append(toIndentedString(datadogAgentKey)).append("\n");
sb.append(" otelCollectorsConfiguration: ")
.append(toIndentedString(otelCollectorsConfiguration))
.append("\n");
Expand All @@ -355,7 +300,6 @@ public String toString() {
sb.append(" systemProbeConfiguration: ")
.append(toIndentedString(systemProbeConfiguration))
.append("\n");
sb.append(" version: ").append(toIndentedString(version)).append("\n");
sb.append(" additionalProperties: ")
.append(toIndentedString(additionalProperties))
.append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
FleetAgentInfoDetailsV2.JSON_PROPERTY_OS_VERSION,
FleetAgentInfoDetailsV2.JSON_PROPERTY_OTEL_COLLECTOR_DEPLOYMENT_TYPES,
FleetAgentInfoDetailsV2.JSON_PROPERTY_OTEL_COLLECTOR_DISTRIBUTIONS,
FleetAgentInfoDetailsV2.JSON_PROPERTY_OTEL_COLLECTOR_VERSION,
FleetAgentInfoDetailsV2.JSON_PROPERTY_OTEL_COLLECTOR_VERSIONS,
FleetAgentInfoDetailsV2.JSON_PROPERTY_OTEL_COLLECTORS,
FleetAgentInfoDetailsV2.JSON_PROPERTY_OTEL_RESOURCE_ATTRIBUTES,
Expand Down Expand Up @@ -151,9 +150,6 @@ public class FleetAgentInfoDetailsV2 {
"otel_collector_distributions";
private List<String> otelCollectorDistributions = null;

public static final String JSON_PROPERTY_OTEL_COLLECTOR_VERSION = "otel_collector_version";
private String otelCollectorVersion;

public static final String JSON_PROPERTY_OTEL_COLLECTOR_VERSIONS = "otel_collector_versions";
private List<String> otelCollectorVersions = null;

Expand Down Expand Up @@ -822,27 +818,6 @@ public void setOtelCollectorDistributions(List<String> otelCollectorDistribution
this.otelCollectorDistributions = otelCollectorDistributions;
}

public FleetAgentInfoDetailsV2 otelCollectorVersion(String otelCollectorVersion) {
this.otelCollectorVersion = otelCollectorVersion;
return this;
}

/**
* OpenTelemetry collector version (if applicable).
*
* @return otelCollectorVersion
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_OTEL_COLLECTOR_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getOtelCollectorVersion() {
return otelCollectorVersion;
}

public void setOtelCollectorVersion(String otelCollectorVersion) {
this.otelCollectorVersion = otelCollectorVersion;
}

public FleetAgentInfoDetailsV2 otelCollectorVersions(List<String> otelCollectorVersions) {
this.otelCollectorVersions = otelCollectorVersions;
return this;
Expand Down Expand Up @@ -1253,7 +1228,6 @@ public boolean equals(Object o) {
this.otelCollectorDeploymentTypes, fleetAgentInfoDetailsV2.otelCollectorDeploymentTypes)
&& Objects.equals(
this.otelCollectorDistributions, fleetAgentInfoDetailsV2.otelCollectorDistributions)
&& Objects.equals(this.otelCollectorVersion, fleetAgentInfoDetailsV2.otelCollectorVersion)
&& Objects.equals(this.otelCollectorVersions, fleetAgentInfoDetailsV2.otelCollectorVersions)
&& Objects.equals(this.otelCollectors, fleetAgentInfoDetailsV2.otelCollectors)
&& Objects.equals(
Expand Down Expand Up @@ -1302,7 +1276,6 @@ public int hashCode() {
osVersion,
otelCollectorDeploymentTypes,
otelCollectorDistributions,
otelCollectorVersion,
otelCollectorVersions,
otelCollectors,
otelResourceAttributes,
Expand Down Expand Up @@ -1360,9 +1333,6 @@ public String toString() {
sb.append(" otelCollectorDistributions: ")
.append(toIndentedString(otelCollectorDistributions))
.append("\n");
sb.append(" otelCollectorVersion: ")
.append(toIndentedString(otelCollectorVersion))
.append("\n");
sb.append(" otelCollectorVersions: ")
.append(toIndentedString(otelCollectorVersions))
.append("\n");
Expand Down
Loading
Loading